diff --git a/.eslintignore b/.eslintignore deleted file mode 100644 index 050fdcd33..000000000 --- a/.eslintignore +++ /dev/null @@ -1,4 +0,0 @@ -node_modules -packages/turf/turf.js -packages/turf/turf.min.js -packages/turf/test.example.js diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index 6c853c6c1..000000000 --- a/.eslintrc.js +++ /dev/null @@ -1,62 +0,0 @@ -const rules = { - "@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_" }], - - "@typescript-eslint/explicit-module-boundary-types": "off", - "@typescript-eslint/no-explicit-any": "off", - "@typescript-eslint/no-non-null-assertion": "off", - "@typescript-eslint/no-var-requires": "off", - "no-constant-condition": "off", - "no-redeclare": "off", - "no-var": "off", - "prefer-const": "off", -}; - -module.exports = { - root: true, - ignorePatterns: ["**/dist/**"], - parser: "@typescript-eslint/parser", - plugins: ["@typescript-eslint"], - extends: [ - "eslint:recommended", - "plugin:@typescript-eslint/recommended", - "plugin:prettier/recommended", - ], - parserOptions: { - ecmaVersion: 6, - sourceType: "module", - }, - env: { es6: true, node: true }, - rules, - - overrides: [ - { - files: ["packages/*/types.ts"], - rules: { - // these are meant to test the typescript typings, unused variables are expected - "@typescript-eslint/no-unused-vars": "off", - }, - }, - { - files: [ - ".eslintrc.js", - "packages/*/bench.js", - "packages/*/test.js", - "packages/turf/rollup.config.js", - "scripts/check-dependencies.js", - ], - env: { - node: true, - }, - }, - { - files: [ - // a few files use browser global variables - "packages/turf-isobands/lib/marchingsquares-isobands.js", - "packages/turf-isolines/lib/marchingsquares-isocontours.js", - ], - env: { - browser: true, - }, - }, - ], -}; diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index da461ef28..caad9aceb 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,9 +1,10 @@ Please provide the following when reporting an issue: -- [ ] The version of Turf you are using, and any other relevant versions. -- [ ] GeoJSON data as a [gist file](https://gist.github.com/) or [geojson.io](http://geojson.io/) (filename extension must be `.geojson`). -- [ ] Snippet of source code or for complex examples use [jsfiddle](https://jsfiddle.net/). -- [ ] Verify this issue hasn't already been reported, or resolved in the latest alpha pre-release. +- [ ] Description of the problem, and how it differs from what you expected. +- [ ] Version of Turf you are using, and of any other relevant software. +- [ ] GeoJSON data as a [gist file](https://gist.github.com/) or [geojson.io](https://geojson.io/) (filename extension must be `.geojson`). Simple reproducible examples are preferrable. +- [ ] Snippet of source code for complex examples using [jsfiddle](https://jsfiddle.net/). +- [ ] Confirmation this issue hasn't already been reported, or is resolved and just hasn't been released yet. diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 3f8e381e8..5a40151ca 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,11 +1,8 @@ -Please fill in this template. Use a meaningful title for the pull request. Include the name of the package modified. +Please provide the following when creating a PR: -- [ ] Is this a bug fix, new functionality, or a breaking change? -- [ ] Have read and followed the steps for [preparing a pull request](https://github.com/Turfjs/turf/blob/master/CONTRIBUTING.md#preparing-a-pull-request). - -Submitting a new TurfJS Module. - -- [ ] Overview description of proposed module. -- [ ] Include JSDocs with a basic example. -- [ ] Execute `./scripts/generate-readmes` to create `README.md`. -- [ ] Add yourself to **contributors** in `package.json` using "Full Name <@GitHub Username>". +- [ ] Meaningful title, including the name of the package being modified. +- [ ] Summary of the changes. +- [ ] Heads up if this is a breaking change. +- [ ] Any issues this [resolves](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests). +- [ ] Inclusion of your details in the `contributors` field of `package.json` - you've earned it! πŸ‘ +- [ ] Confirmation you've read the steps for [preparing a pull request](https://github.com/Turfjs/turf/blob/master/docs/CONTRIBUTING.md#preparing-a-pull-request). diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 20a37f26b..254259cfa 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -17,16 +17,17 @@ jobs: runs-on: ${{matrix.platform}} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2 with: fetch-depth: 0 - - uses: pnpm/action-setup@v2.4.0 + - name: Install pnpm + uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # 4.1.0 with: - version: 8 + run_install: false - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 + uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # 4.3.0 with: node-version: ${{ matrix.node-version }} registry-url: "https://registry.npmjs.org" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fb0245fa1..4547c0bb1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,16 +21,17 @@ jobs: runs-on: ${{matrix.platform}} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2 with: fetch-depth: 0 - - uses: pnpm/action-setup@v2.4.0 + - name: Install pnpm + uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # 4.1.0 with: - version: 8 + run_install: false - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 + uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # 4.3.0 with: node-version: ${{ matrix.node-version }} registry-url: "https://registry.npmjs.org" @@ -50,7 +51,7 @@ jobs: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Create Github Release - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # 2.2.1 with: make_latest: true generate_release_notes: true diff --git a/.github/workflows/turf.yml b/.github/workflows/turf.yml index ba4be2747..fa2147665 100644 --- a/.github/workflows/turf.yml +++ b/.github/workflows/turf.yml @@ -19,19 +19,19 @@ jobs: strategy: matrix: - node-version: [16.x, 18.x, 20.x] + node-version: [18.x, 20.x, 22.x] steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2 - name: Install pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # 4.1.0 with: run_install: false - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 + uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # 4.3.0 with: cache: "pnpm" node-version: ${{ matrix.node-version }} diff --git a/.monorepolint.config.mjs b/.monorepolint.config.mjs index 9bc74770d..a4c8863b4 100644 --- a/.monorepolint.config.mjs +++ b/.monorepolint.config.mjs @@ -221,8 +221,9 @@ export default { devDependencies: { benchmark: "^2.1.4", "npm-run-all": "^4.1.5", - tape: "^5.7.2", - tsx: "^4.6.2", + tape: "^5.9.0", + tsup: "^8.4.0", + tsx: "^4.19.4", }, }, includePackages: [...TS_PACKAGES, ...JS_PACKAGES], @@ -231,26 +232,17 @@ export default { requireDependency({ options: { dependencies: { - tslib: "^2.6.2", + tslib: "^2.8.1", }, devDependencies: { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", - typescript: "^5.2.2", + "@types/tape": "^5.8.1", + typescript: "^5.8.3", }, }, includePackages: TS_PACKAGES, }), - requireDependency({ - options: { - devDependencies: { - rollup: "^2.79.1", - }, - }, - includePackages: [MAIN_PACKAGE], - }), - requireDependency({ options: { dependencies: { diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md deleted file mode 100644 index 8da0e81fe..000000000 --- a/CODE_OF_CONDUCT.md +++ /dev/null @@ -1,75 +0,0 @@ -# Code of Conduct - -## Our Pledge - -In the interest of fostering an open and welcoming environment, we as -contributors and maintainers pledge to making participation in our project and -our community a harassment-free experience for everyone, regardless of age, body -size, disability, ethnicity, gender identity and expression, level of experience, -nationality, personal appearance, race, religion, or sexual identity and -orientation. - -## Our Standards - -Examples of behavior that contributes to creating a positive environment -include: - -* Using welcoming and inclusive language -* Being respectful of differing viewpoints and experiences -* Gracefully accepting constructive criticism -* Focusing on what is best for the community -* Showing empathy towards other community members - -Examples of unacceptable behavior by participants include: - -* The use of sexualized language or imagery and unwelcome sexual attention or -advances -* Trolling, insulting/derogatory comments, and personal or political attacks -* Public or private harassment -* Publishing others' private information, such as a physical or electronic - address, without explicit permission -* Other conduct which could reasonably be considered inappropriate in a - professional setting - -## Our Responsibilities - -Project maintainers are responsible for clarifying the standards of acceptable -behavior and are expected to take appropriate and fair corrective action in -response to any instances of unacceptable behavior. - -Project maintainers have the right and responsibility to remove, edit, or -reject comments, commits, code, wiki edits, issues, and other contributions -that are not aligned to this Code of Conduct, or to ban temporarily or -permanently any contributor for other behaviors that they deem inappropriate, -threatening, offensive, or harmful. - -## Scope - -This Code of Conduct applies both within project spaces and in public spaces -when an individual is representing the project or its community. Examples of -representing a project or community include using an official project e-mail -address, posting via an official social media account, or acting as an appointed -representative at an online or offline event. Representation of a project may be -further defined and clarified by project maintainers. - -## Enforcement - -Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting an organization admin: @morganherlocker, @lyzidiamond, @tcql, or @tmcw. All -complaints will be reviewed and investigated and will result in a response that -is deemed necessary and appropriate to the circumstances. The project team is -obligated to maintain confidentiality with regard to the reporter of an incident. -Further details of specific enforcement policies may be posted separately. - -Project maintainers who do not follow or enforce the Code of Conduct in good -faith may face temporary or permanent repercussions as determined by other -members of the project's leadership. - -## Attribution - -This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, -available at [http://contributor-covenant.org/version/1/4][version] - -[homepage]: http://contributor-covenant.org -[version]: http://contributor-covenant.org/version/1/4/ - diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 53e168cac..000000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,328 +0,0 @@ -## Getting Started - -One of the most important things you can do is report bugs. Please reference [how to report a bug](http://polite.technology/reportabug.html) and when opening an [issue](https://github.com/Turfjs/turf/issues), follow the template. - -To propose an enhancement for Turf, open an [issue](https://github.com/Turfjs/turf/issues), or start a [discussion](https://github.com/Turfjs/turf/discussions). - -To make a code contribution, follow the steps for [how to contribute](#how-to-contribute). - -## Architecture -- GeoJSON is the lingua franca of Turf. It should be used as the data structure for anything that can be represented as geography. -- Most work happens in sub modules. These are found in the `packages` directory prefixed with "turf-". -- Turf modules are small, containing a single exported function. This function is exported from a top-level index file. -- Many turf modules depend on other smaller Turf modules. - -## How to contribute - -If you don't have write access to the Turf repository (most will not), you will need to follow the [Github guidelines](https://docs.github.com/en/get-started/exploring-projects-on-github/contributing-to-a-project) and fork the [Turf repo](https://github.com/Turfjs/turf) to your own account, create a feature branch, and open a Pull Request back to the main Turf repo. - -If you do have write access to the Turf repo (core contributor), you can [clone](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository) it locally. This is required for doing a [release](#release). You can also push feature branches directly to the Turf repo and open PR's against them. Consider prefixing your feature branch names with your initials (for example `tw/my-feature`). - -If you'd like to become a core contributor, just start making contributions, and inquire. - -### Local Setup - -Once you've cloned a Turf repository, and have a terminal open and currenty in the top-level turf directory. Run the following: -- `git checkout master` (if not already) -- `corepack enable pnpm` - - enable pnpm as a package manager. Requires Node 16+. Alternatively just `npm install -g pnpm`. -- `pnpm install` - - install dependencies and build modules -- `pnpm test` - - run all tests and linters - -You're now ready to contribute. - -
-Structure of a Turf module -
- -Turf modules are under the `packages` directory. For example `packages/turf-area`. Here's how they are structured. - -``` -turf- -β”‚ index.js -β”‚ index.d.ts -β”‚ bench.js -β”‚ test.js -β”‚ types.ts -β”‚ package.json -β”‚ README.md -β”‚ LICENSE -β”‚ -└───test - β”‚ - β”œβ”€β”€β”€in - β”‚ points.geojson - β”‚ - └───out - points.geojson -``` -To get started with a new module navigate to the root directory and run -```sh -$ node ./scripts/create-new-module -``` -it will create a new folder inside `packages` with a simple boilerplate for your module. - -* `index.js` - This file contains, in order, the various modules you need to - import, the [JSDocs](http://usejsdoc.org) documentation, and, finally, the - single exported function that the module provides. For more on the types - supported in the documentation, see… -* `index.d.ts` - This is a [TypeScript](https://www.typescriptlang.org/) file - that describes your function’s signature. For more on the types supported in - TypeScript, see… -* `index.ts` - If you prefer to write Typescript instead of Javascript, use this - instead of index.js and index.d.ts. -* `bench.js` - This file uses [Benchmark](https://benchmarkjs.com/) to time - your function. -* `test.js` - This file includes your [tape](https://github.com/substack/tape) - tests. We prefer dynamic testing built from GeoJSON files placed in - `./test/in` that are subsequently written to `./test/out` if your `REGEN` - [environment variable is set](https://askubuntu.com/a/58828) to `true`. If - `REGEN` is set to a different value, then running `pnpm t` will compare the - output of the tests to the files already present in `./test/out`. -* `types.ts` - A file that tests the custom TypeScript types declared in - `index.d.ts`. -* `package.json` - The [node](http://nodejs.org) metadata container file. - Modules imported in `index.js` should be listed here under `dependencies`, - and modules used in `test.js` and/or `bench.js` should be listed under - `devDependencies`. `pnpm install` looks to this file to install dependencies - in `./node_modules`. -* `README.md` - This README is generated _automatically_ by running `pnpm run - docs` from the project root level. **DO NOT edit this file**. -* `LICENCE` - Like the README, this file should not be edited. -* `test/` - This directory holds the GeoJSON files that provide data for - dynamic tests (in `./test/in`) and the results of the tests (in - `./test/out`). The files in `./test/out` should **not** be edited by hand. - They should be generated dynamically by [setting the environment - variable](https://askubuntu.com/a/58828) `REGEN` to `true`, and then the - tests should be checked against these files by setting `REGEN` to some other - value. The resulting out-files can be drag-dropped into - [geojson.io](http://geojson.io) to see, visually, if the module is behaving - appropriately. - -
- -
-Development tips -
-Work in a feature branch when possible -- `git checkout -b my-feature` -- Create it right away off of master. -- This allows you to keep your local master branch clean and in sync with the official remote, for creating new branches at any time. - -As you make code changes -- Run `npm test` from any submodule to make sure tests keep passing as you go. (for example `cd packages/turf-area` and `npm test`) -- Occasionally Run `npm test` at the top-level directory to run test for all modules. - - This will ensure that you haven't introduced errors affecting other turf modules. -
- -
-Cleaning up -
-To reset your current branch, throwing away any partial and uncommitted work -- `git reset --hard` - -Merging branches, deleting branches and other management tasks are left for you to work out on your own. -
- -
-Staying up to date -
-To update your local master branch with the latest code for all branches from the Github remote `origin`. -- `git fetch remote` -
- -## Preparing a pull request - -A simple, complete pull request is more likely to get merged. - -
-But I don't know how -
-If you don't know how to make a solid PR, just submit a draft PR, and ask for feedback. Then improve it and re-ask for feedback until it's ready. -
- -### Pull Request Checklist -- Briefly summarize the need and solution. Link to the issue it's resolving if exists. -- Add tests. Even for bug fixes. Just a simple test case that reproduces the issue and demonstrates it's fixed. -- Update JSDoc comments if the function signature changes or docs need improvement (See for example `packages/turf-area/index.ts`) -- Run a full `npm test` at root level, confirming no cross-module issues. If you don't catch this now, the Github CI will. - -### Guidelines -- Feel free to [ask](#getting-started) if a feature/enhancement is needed/wanted before doing the work. -- Keep pull requests small and focused. -- Avoid large dependencies at all costs. -- Make sure that your code can run in the browser (ie: don't make calls to external services, don't hit the filesystem, etc.). - -### Doc generation - -Know that module README.md files and https://turfjs.org API docs are auto-generated from JSDoc comments. -- As a contributor, all you need to do is update the JSDoc comments. -- For example if you change a top-level Turf functions signature (params, return type) or just want to improve the docs. -- JSDoc comments are found in the top-level index file for each module (for example `turf/packages/turf-area/index.ts`). For example look for `@name`, `@params`, `@returns`, `@example`. - -## Code Style - -We have lots of tooling dedicated to ensuring consistent code. We use [Prettier](https://prettier.io/), [Typescript](https://www.typescriptlang.org/), and [ESLint](https://eslint.org/) to help us deliver quality code. These are checked by the build system and should be enforced at commit time by [Husky](https://typicode.github.io/husky/#/). - -Some of the modules are written in Typescript, others are still plain Javascript. In the javascript modules and any dependencies we include, it is important to only write ES5 code. This ensures good browser compatability for Turf users, and is checked at build time. - -Making sure that the monorepo packages can be managed at scale, we use [Monorepolint](https://github.com/monorepolint/monorepolint) which allows us to programatically manage the various files in each package. - -- Linters are run at commit time, using a pre-commit hook in `.husky/pre-commit`. See the package.json `lint:staged` section. - -## Publishing - -### Prerelease - -A [prerelease](https://github.com/Turfjs/turf/blob/master/.github/workflows/prerelease.yml) action is available that publishes a canary release for every commit or PR merged to the master branch. However, this action is only [enabled](https://github.com/Turfjs/turf/actions/workflows/prerelease.yml) when needed. - -When used, it publishes an alpha release to NPM (e.g. `7.0.0-alpha.116` where 116 is the number of commits to master since the last release tag). -- The version number is calculated by a combination of the output of `git describe` and the `publish:prerelease` script in the root package.json. It is typically setup to do a `minor` prerelease, but can be changed, such as prior to a `major` release. - -### Release - -A turf release is initiated from your local computer, and then built and published remotely via a github actions. - -To make a release as a core contributor, you will need: -- Turf repository write permission -- Turf npm organization publish permission -- A local copy of the Turf Github repository (not a fork!). Starting with a fresh clone will ensure it's clean. - - `git clone git@github.com:Turfjs/turf.git turf-release` - - `cd turf-release` - start at the top-level of the repo - - `pnpm install` - -- If you choose to clean up an existing copy instead, be very careful: - - `git remote -v` - verify your remote origin points to `https://github.com/Turfjs/turf.git` - - `git checkout master` - - `git reset --hard` - reset your local working copy, will lose any uncommitted or unstashed work! - - `git fetch origin` - fetch latest commits - - `git rev-list master...origin/master` - verify local master in sync with remote, command output should be empty - - `pnpm install` - - `pnpm test` - make sure everything is passing - -Before release: -- If necessary, make and merge a PR with any last minute housekeeping items. -- Turf's documentation (README.md files) should already be up to date as it is generated automatically on commit from JSDoc comments in source files. -- Review PR's and decide the new version number to be published (for example 7.0.1 or 7.1.0). - - If there are breaking changes, then it should be a major version bump, e.g. 7.x.x to 8.0.0. This project follows [semantic versioning](https://semver.org/). - -Run the release commands, replace `7.0.0` with your version number -- fetch the latest code from remote origin - - `git fetch origin` - -- create a release branch, replace mf with your initials to make it clear whose branch it is. - - `git checkout origin/master -b mf/release-7.0.0` - -- increment the version number of all packages, without pushing to origin. This will also create a release tag. - - `pnpm lerna version --no-commit-hooks --no-push 7.0.0` - -- stage any files changed by the version command. - - `git add packages/*/package.json` - - `git add lerna.json` -` - -- create new commit on the release branch - - `git commit -m "Release v7.0.0"` - -- Push the release branch and the release tag. - - `git push origin mf/release-7.0.0 --follow-tags` - - The tag will trigger the Github [release](https://github.com/Turfjs/turf/blob/master/.github/workflows/release.yml) action which you can view the status of at - https://github.com/Turfjs/turf/actions. If successful, a new [version](https://www.npmjs.com/package/@turf/turf?activeTab=versions) of all turf packages will have been published on NPM. - -- If the release action was successful, now create a Pull Request for the release and then merge it. - - A link to create the PR should be in the output of the push command - - Use the version number for the PR title (e.g. v7.0.0). - - If a link isn't provided, just create a PR that merges your release branch to master. Here is an example - https://github.com/Turfjs/turf/pull/2615. - - Don't forget to merge your release PR! - -#### Follow-on steps -- As part of the release action, a draft Github release will have been created at https://github.com/Turfjs/turf/releases with an auto-generated changelog. Edit and add to the release notes for readability and completeness, specifically noting any breaking changes. Use past releases as a guide. Be sure to "Save draft" each time, then ask for a review from other contributors. Once ready, click `Publish release`. This will make the release notes publicly accessible and notify all watchers of the project. -- Release a new version of the [API docs](https://github.com/Turfjs/turf-www/blob/master/CONTRIBUTING.md) for the https://turfjs.org website. - -## Documentation - -- API docs for each turf package are extracted from JSDoc comments in the source code into the top-level README.md files. README's are automatically updated on commit using via the pre-commit hook. - -Should you want to generate new README files manually, use `pnpm run docs`: - - **inside a module:** will generate the docs for that module. - - **main folder:** will generate docs for all modules. - -### Documentation - Examples - -**Only build docs for `@turf/center`** - -```bash -$ cd ./turf/packages/turf-center -$ pnpm run docs - -> @turf/center@5.0.4 docs /Users/mac/Github/turf/packages/turf-center -> node ../../scripts/generate-readmes - -Building Docs: @turf/center -``` - -**Builds docs for all modules** - -```bash -$ cd ./turf -$ pnpm run docs -> @ docs /Users/mac/Github/turf -> tsx ./scripts/generate-readmes - -Building Docs: @turf/along -Building Docs: @turf/area -Building Docs: @turf/bbox-clip -Building Docs: @turf/bbox-polygon -Building Docs: @turf/bbox -Building Docs: @turf/bearing -Building Docs: @turf/bezier-spline -Building Docs: @turf/boolean-clockwise -.... -``` - -### Public website - -The [turfjs.org](http://turfjs.org/) website is managed in a [separate repo](https://github.com/Turfjs/turf-www) with its own [contributing guide](https://github.com/Turfjs/turf-www/blob/master/CONTRIBUTING.md). - -## Other Dependencies -- Turf uses [pnpm 8](https://pnpm.io/8.x) and [lerna](https://lernajs.io/) during the testing, packaging and publishing process. - - Lerna will be automatically installed when you run `pnpm install` in the root directory. - - Pnpm will need to be installed on your computer, installers are available via the pnpm website. When using [corepack](https://nodejs.org/api/corepack.html), this is automatically installed when running `pnpm`. - -## Financial contributions - -We also welcome financial contributions in full transparency on our [open collective](https://opencollective.com/turf). -Anyone can file an expense. If the expense makes sense for the development of the community, it will be "merged" in the ledger of our open collective by the core contributors and the person who filed the expense will be reimbursed. - - -## Credits - - -### Contributors - -Thank you to all the people who have already contributed to turf! - - - -### Backers - -Thank you to all our backers! [[Become a backer](https://opencollective.com/turf#backer)] - - - - -### Sponsors - -Thank you to all our sponsors! (please ask your company to also support this open source project by [becoming a sponsor](https://opencollective.com/turf#sponsor)) - - - - - - - - - - - diff --git a/OPEN_COLLECTIVE.md b/OPEN_COLLECTIVE.md deleted file mode 100644 index 5fb33a304..000000000 --- a/OPEN_COLLECTIVE.md +++ /dev/null @@ -1,27 +0,0 @@ -## About Turf.js - -[TurfJS](http://turfjs.org/) is a modular geospatial analysis library for designed for use in the browser as well as Node.js. -We provide almost 150 modules for people to use freely in their applications. -Our most [popular module](https://www.npmjs.com/package/@turf/helpers) is downloaded 50,000 times a week via npm. - - -## Why we're looking for support - -TurfJS is a community-driven project maintained by a small group of core contributors who work on the project in their spare time. -Time is spent supporting users, improving documentation, fixing bugs as well as creating new modules. -Your funding will directly go to development costs, marketing campaigns, promotional events & any other financial costs to operate & maintain TurfJS. - -In particular, we're looking for corporate sponsors who use TurfJS in revenue-generating ways, -either by creating applications for clients, or through use in an app used by customers. -Of course individuals are welcome to support us as well if TurfJS has helped you :) - -## 2017 Achievements - - - Refactoring the codebase to support ES6 modules - - Adding approx 70 new modules/functions - - All new documentation - -## Development goals for Turf.js in the coming year - - - Removing our largest dependency (JSTS) to significantly reduce the size of our compiled code - - Add new modules to bring us closer to feature parity with other geospatial libraries diff --git a/README.md b/README.md index 330bcfa65..3f63130d3 100644 --- a/README.md +++ b/README.md @@ -15,98 +15,33 @@ ***A modular geospatial engine written in JavaScript*** -[turfjs.org](https://turfjs.org/) +[Turf](https://turfjs.org) is a [JavaScript library](https://en.wikipedia.org/wiki/JavaScript_library) for [spatial analysis](https://en.wikipedia.org/wiki/Spatial_analysis). It includes traditional spatial operations, helper functions for creating [GeoJSON](https://geojson.org) data, and data classification and statistics tools. Turf can be added to your website as a client-side module, or you can [run Turf server-side](https://www.npmjs.com/package/@turf/turf) with [Node.js](https://nodejs.org/) (see below). -- - - -[Turf](https://turfjs.org) is a [JavaScript library](https://en.wikipedia.org/wiki/JavaScript_library) for [spatial analysis](https://en.wikipedia.org/wiki/Spatial_analysis). It includes traditional spatial operations, helper functions for creating [GeoJSON](https://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/turf) with [Node.js](https://nodejs.org/) (see below). +## Getting Started -## Installation +Read our [getting started guide](https://turfjs.org/docs/getting-started) to begin working with Turf. -### In Node.js +Or explore the Turf API and examples at [turfjs.org](https://turfjs.org/). -```bash -# get all of turf -npm install @turf/turf +## Runtime support -# or get individual packages -npm install @turf/helpers -npm install @turf/buffer -``` +Turf is currently published to work with any reasonably modern Javascript runtime. -### In browser +Node is a first class citizen, and we recommend using an [Active or Maintenance LTS](https://nodejs.org/en/about/previous-releases) release. -Download the [minified file](https://npmcdn.com/@turf/turf/turf.min.js), and include it in a script tag. This will expose a global variable named `turf`. - -```html - -``` - -You can also include it directly from a CDN: - -```html - -``` - -### TypeScript - -TypeScript definitions are packaged with each module. No DefinitelyTyped packages required. - -### Other languages - -Ports of Turf.js are available in: - -- [Java](https://github.com/mapbox/mapbox-java/tree/master/services-turf/src/main/java/com/mapbox/turf) (Android, Java SE) - - > [The current to-do list for porting to Java](https://github.com/mapbox/mapbox-java/blob/master/docs/turf-port.md) -- [Swift](https://github.com/mapbox/turf-swift/) (iOS, macOS, tvOS, watchOS, Linux) - - > Turf for Swift is **experimental** and its public API is subject to change. Please use with care. -- [Dart/Flutter](https://github.com/dartclub/turf_dart) (Dart Web, Dart Native; Flutter for iOS, Android, macOS, Windows, Linux, Web) - - > The Turf for Dart port is still in progress, the implementation status can be found in the [README](https://github.com/dartclub/turf_dart#components). -- - - - -## 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. - -> **NOTE:** Turf expects data in (longitude, latitude) order per the GeoJSON standard. - -Most Turf functions work with GeoJSON features. These are pieces of data that represent a collection of properties (ie: population, elevation, zipcode, etc.) along with a geometry. GeoJSON has several geometry types such as: - -* Point -* LineString -* Polygon - -Turf provides a few geometry functions of its own. These are nothing more than simple (and optional) wrappers that output plain old GeoJSON. For example, these two methods of creating a point are functionally equivalent: - -```js -// Note order: longitude, latitude. -var point1 = turf.point([-73.988214, 40.749128]); - -var point2 = { - type: 'Feature', - geometry: { - type: 'Point', - // Note order: longitude, latitude. - coordinates: [-73.988214, 40.749128] - }, - properties: {} -}; -``` +Other runtimes, such as Deno or Bun, are not officially supported. We would be very interested to hear your experiences though. ## Browser support -Turf packages are compiled to target ES2017. However, the browser version of @turf/turf is transpiled to also include support for IE11. If you are using these packages and need to target IE11, please transpile the following packages as part of your build: +Turf uses Babel to transpile to a JavaScript version usable by most +modern browsers. Any browser that matches the following criteria as defined by [Browserslist](https://github.com/browserslist/browserslist): -``` -@turf/* -robust-predicates -rbush -tinyqueue -``` +[> 0.25%, last 2 versions, fully supports es5, not dead](https://browsersl.ist/#q=%3E+0.25%25%2C+last+2+versions%2C+fully+supports+es5%2C+not+dead) ## Contributors -This project exists thanks to all the people who contribute. If you are interested in helping, check out the [Contributing Guide](CONTRIBUTING.md). +This project exists thanks to all the people who contribute. If you are interested in helping, check out the [Contributing Guide](docs/CONTRIBUTING.md). diff --git a/SEE_ALSO.md b/SEE_ALSO.md deleted file mode 100644 index f26edea56..000000000 --- a/SEE_ALSO.md +++ /dev/null @@ -1,30 +0,0 @@ -Geospatial analysis software has a few prominent strains: - -* Esri & other closed-source, proprietary libraries -* Open source libraries in the lineage of JTS - -# Python - -* [Shapely](https://pypi.python.org/pypi/Shapely) is a friendly Python binding to GEOS -* [geopandas](http://geopandas.org/) is a layer on top of Shapely and Fiona for PostGIS-like tasks - -# C++ - -* [GEOS](http://trac.osgeo.org/geos/) is a port of JTS to C++ - -# JavaScript - -* [jsts](https://github.com/bjornharrtell/jsts) is a port of JTS to JavaScript - -# Java - -* [JTS](http://tsusiatsoftware.net/jts/main.html) - -# Go - -* [gogeos](http://paulsmith.github.io/gogeos/) is a Go binding to GEOS -* [go.geo](https://github.com/paulmach/go.geo) is a pure-Go implementation of some geometry operations and primitives - -# Postgres - -* [PostGIS](http://postgis.net/) provides geospatial operations within the Postgres database. Advanced operations rely on GEOS. diff --git a/docs/CODE_OF_CONDUCT.md b/docs/CODE_OF_CONDUCT.md new file mode 100644 index 000000000..3c27eb0e7 --- /dev/null +++ b/docs/CODE_OF_CONDUCT.md @@ -0,0 +1,133 @@ + +# Contributor Covenant Code of Conduct + +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, caste, color, religion, or sexual +identity and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment for our +community include: + +* Demonstrating empathy and kindness toward other people +* Being respectful of differing opinions, viewpoints, and experiences +* Giving and gracefully accepting constructive feedback +* Accepting responsibility and apologizing to those affected by our mistakes, + and learning from the experience +* Focusing on what is best not just for us as individuals, but for the overall + community + +Examples of unacceptable behavior include: + +* The use of sexualized language or imagery, and sexual attention or advances of + any kind +* Trolling, insulting or derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or email address, + without their explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Enforcement Responsibilities + +Community leaders are responsible for clarifying and enforcing our standards of +acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful. + +Community leaders have the right and responsibility to remove, edit, or reject +comments, commits, code, wiki edits, issues, and other contributions that are +not aligned to this Code of Conduct, and will communicate reasons for moderation +decisions when appropriate. + +## Scope + +This Code of Conduct applies within all community spaces, and also applies when +an individual is officially representing the community in public spaces. +Examples of representing our community include using an official email address, +posting via an official social media account, or acting as an appointed +representative at an online or offline event. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported to the community leaders responsible for enforcement at +[@morganherlocker](https://github.com/morganherlocker) or [@tmcw](https://github.com/tmcw). +All complaints will be reviewed and investigated promptly and fairly. + +All community leaders are obligated to respect the privacy and security of the +reporter of any incident. + +## Enforcement Guidelines + +Community leaders will follow these Community Impact Guidelines in determining +the consequences for any action they deem in violation of this Code of Conduct: + +### 1. Correction + +**Community Impact**: Use of inappropriate language or other behavior deemed +unprofessional or unwelcome in the community. + +**Consequence**: A private, written warning from community leaders, providing +clarity around the nature of the violation and an explanation of why the +behavior was inappropriate. A public apology may be requested. + +### 2. Warning + +**Community Impact**: A violation through a single incident or series of +actions. + +**Consequence**: A warning with consequences for continued behavior. No +interaction with the people involved, including unsolicited interaction with +those enforcing the Code of Conduct, for a specified period of time. This +includes avoiding interactions in community spaces as well as external channels +like social media. Violating these terms may lead to a temporary or permanent +ban. + +### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including +sustained inappropriate behavior. + +**Consequence**: A temporary ban from any sort of interaction or public +communication with the community for a specified period of time. No public or +private interaction with the people involved, including unsolicited interaction +with those enforcing the Code of Conduct, is allowed during this period. +Violating these terms may lead to a permanent ban. + +### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community +standards, including sustained inappropriate behavior, harassment of an +individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within the +community. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], +version 2.1, available at +[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1]. + +Community Impact Guidelines were inspired by +[Mozilla's code of conduct enforcement ladder][Mozilla CoC]. + +For answers to common questions about this code of conduct, see the FAQ at +[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at +[https://www.contributor-covenant.org/translations][translations]. + +[homepage]: https://www.contributor-covenant.org +[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html +[Mozilla CoC]: https://github.com/mozilla/diversity +[FAQ]: https://www.contributor-covenant.org/faq +[translations]: https://www.contributor-covenant.org/translations diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md new file mode 100644 index 000000000..d42ba6607 --- /dev/null +++ b/docs/CONTRIBUTING.md @@ -0,0 +1,219 @@ +# Contributing to Turf + +## Getting Started + +One of the most important things you can do is report bugs. Please reference [how to report a bug](https://macwright.com/sites/polite.technology/reportabug) and when opening an [issue](https://github.com/Turfjs/turf/issues), follow the template. + +To propose an enhancement for Turf, it's usually best to [start a discussion](https://github.com/Turfjs/turf/discussions) to work through the requirements. Unless you know exactly what you need! In which case [open an issue](https://github.com/Turfjs/turf/issues) to request it. + +To make a code contribution, follow the steps for [how to contribute](#how-to-contribute). + +## Architecture + +- GeoJSON is the lingua franca of Turf. It should be used as the data structure for anything that can be represented as geography. +- Turf is broken into many submodules, or packages. These are found in the `packages` directory prefixed with "turf-". +- Turf packages are small, generally containing a single exported function. +- Many Turf packages depend on other lower level Turf packages. + +## How to contribute + +The best way for a new contributor to help with Turf is to find an open issue, fix it, and then share that back to the project via a pull request (PR). A maintainer will review your PR and get it merged with the rest of the code. + +Here is a great article on how to fork a repo, and start contributing to Turf. + +If you'd like to become a core contributor, just start making contributions, and inquire. + +### Local Setup + +Once you've cloned a Turf repository, and have a terminal open and currenty in the top-level turf directory. Run the following: +- `git checkout master` (if not already) +- `corepack enable pnpm` + - enable pnpm as a package manager. Requires Node 16+. Alternatively just `npm install -g pnpm`. +- `pnpm install` + - install dependencies and build packages +- `pnpm test` + - run all tests and linters + +You're now ready to contribute. + +
+Structure of a Turf package +
+ +Turf packages all live under the `packages` directory. For example `packages/turf-area`. Here's how they are structured. + +``` +turf- +β”‚ index.ts +β”‚ bench.ts +β”‚ test.ts +β”‚ package.json +β”‚ README.md +β”‚ LICENSE +β”‚ +└───test + β”‚ + β”œβ”€β”€β”€in + β”‚ points.geojson + β”‚ + └───out + points.geojson +``` + +* `index.ts` - This file contains the definition of the function including [TypeScript](https://www.typescriptlang.org/) types, function implementation, the embedded [JSDocs](http://usejsdoc.org) documentation, and finally the single exported function that the package provides. +* `bench.ts` - This file uses [Benchmark](https://benchmarkjs.com/) to establish benchmark performance tests for your function. +* `test.ts` - This file includes your [tape](https://github.com/substack/tape) + unit tests. Tests can either be traditional code based tests, or tests that pull in data files and compare inputs to outputs (see below). +* `package.json` - The [node](http://nodejs.org) metadata container file. + Packages imported in `index.ts` should be listed here under `dependencies`, + and packages used in `test.ts` or `bench.ts` should be listed under + `devDependencies`. +* `README.md` - This README is generated _automatically_ by running `pnpm run + docs`. **DO NOT edit this file**. +* `LICENCE` - Like the README, this file should not be edited. +* `test/` - This directory holds the GeoJSON files that provide data for + dynamic tests. Input data in `./test/in`, and expected output data in `./test/out`. +
+ +
+Development tips +
+Work in a feature branch when possible +- `git checkout -b my-feature` +- Create it right away off of master. +- This allows you to keep your local master branch clean and in sync with the official remote. This will ease your ability to keep your local repo up to date with changes other people have made while you work on your feature. + +As you make code changes +- Regularly run `pnpm test` in whatever package you are working in to avoid unintended bugs. +- Occasionally run `pnpm test` at the top-level directory to run test for all packages, to make sure you haven't introduced a problem that affects another package. +
+ +## Preparing a pull request + +A simple, complete pull request is more likely to get merged. + +
+But I don't know how +
+If you don't know how to make a solid PR, submit a draft PR and ask for feedback. Take on any feedback to improve the PR ready. There may be multiple rounds of feedback. While this seems tedious it greatly reduces the risk of someone else +having to revisit the same code any time soon. +
+ +### Pull Request Checklist +- Briefly summarize the need and solution. Link to the issue it's resolving if exists. +- Add tests. Even for bug fixes. A simple test case that reproduces the issue and demonstrates it's fixed. +- Update JSDoc comments if the function signature changes or docs need improvement (See for example `packages/turf-area/index.ts`) +- Run a full `npm test` at root level, confirming no cross-package issues. If you don't catch this now, the Github CI will. + +### Guidelines + +- Feel free to [ask](#getting-started) if a feature/enhancement is needed/wanted before doing the work. +- Keep pull requests small and focused. +- Avoid large dependencies at all costs. +- Make sure that your code can run in the browser (ie: don't make calls to external services, don't hit the filesystem, etc.). + +### Documentation + +The package README.md files and https://turfjs.org API docs are auto-generated from JSDoc comments in each packages' source file. + +As a contributor, all you need to do is keep the JSDoc comments up to date, and the rest is automated. For example if you change a top-level Turf functions signature (params, return type) or just want to improve the descriptiveness of the docs. + +JSDoc comments are found in the top-level index file for each package (for example `packages/turf-area/index.ts`). Look for the `@name`, `@params`, `@returns`, `@example` tags. + +## Code Style + +We have lots of tooling dedicated to ensuring consistent code. We use [Prettier](https://prettier.io/), [TypeScript](https://www.typescriptlang.org/), and [ESLint](https://eslint.org/) to help us deliver quality code. These are checked by the build system and should be enforced at commit time by [Husky](https://typicode.github.io/husky/#/). + +Most packages are written in TypeScript, while a few plain Javascript still linger. You can generally use modern Javascript when modifying Turf itself as all exported code is transpiled to (currently es2017). + +Code for consumption by browsers is transpiled by Babel as described in the README. + +Making sure that the monorepo packages can be managed at scale, we use [Monorepolint](https://github.com/monorepolint/monorepolint) to programmatically ensure the individual packages remain consistent. + +## Documentation + +- API docs for each turf package are extracted from JSDoc comments in the source code into the top-level README.md files. README's are automatically updated on commit via a pre-commit hook. + +Should you want to generate new README files manually, use `pnpm run docs`: + - **inside a package:** will generate the docs for that package. + - **from root folder:** will generate docs for all package. + +### Documentation - Examples + +**Build docs for only `@turf/center`** + +```bash +$ cd ./turf/packages/turf-center +$ pnpm run docs + +> @turf/center@5.0.4 docs /Users/mac/Github/turf/packages/turf-center +> node ../../scripts/generate-readmes + +Building Docs: @turf/center +``` + +**Builds docs for all packages** + +```bash +$ cd ./turf +$ pnpm run docs +> @ docs /Users/mac/Github/turf +> tsx ./scripts/generate-readmes + +Building Docs: @turf/along +Building Docs: @turf/area +Building Docs: @turf/bbox-clip +Building Docs: @turf/bbox-polygon +Building Docs: @turf/bbox +Building Docs: @turf/bearing +Building Docs: @turf/bezier-spline +Building Docs: @turf/boolean-clockwise +.... +``` + +### Public website + +The [turfjs.org](https://turfjs.org/) website is managed in a [separate repo](https://github.com/Turfjs/turf-www) with its own [contributing guide](https://github.com/Turfjs/turf-www/blob/master/CONTRIBUTING.md). + +## Other Dependencies + + - Turf uses [pnpm](https://pnpm.io/) and [lerna](https://lernajs.io/) during the testing, packaging and publishing process. + - Lerna will be automatically installed when you run `pnpm install` in the root directory. + - Pnpm will need to be installed on your computer, installers are available via the pnpm website. When using [corepack](https://nodejs.org/api/corepack.html), this is automatically installed when running `pnpm`. + +## Financial contributions + +We also welcome financial contributions in full transparency on our [open collective](https://opencollective.com/turf). +Anyone can file an expense. If the expense makes sense for the development of the community, it will be "merged" in the ledger of our open collective by the core contributors and the person who filed the expense will be reimbursed. + + +## Credits + + +### Contributors + +Thank you to all the people who have already contributed to turf! + + + +### Backers + +Thank you to all our backers! [[Become a backer](https://opencollective.com/turf#backer)] + + + + +### Sponsors + +Thank you to all our sponsors! (please ask your company to also support this open source project by [becoming a sponsor](https://opencollective.com/turf#sponsor)) + + + + + + + + + + + diff --git a/docs/OPEN_COLLECTIVE.md b/docs/OPEN_COLLECTIVE.md new file mode 100644 index 000000000..7d0a8b1a2 --- /dev/null +++ b/docs/OPEN_COLLECTIVE.md @@ -0,0 +1,30 @@ +## About Turf.js + +[TurfJS](http://turfjs.org/) is a modular geospatial analysis library designed for use in the browser as well as Node.js. +We provide almost 120 modules for people to use freely in their applications. +Our most [popular module](https://www.npmjs.com/package/@turf/helpers) is downloaded 4,200,000 times a week via npm. + + +## Why we're looking for support + +TurfJS is a community-driven project maintained by a small group of core contributors who work on the project in their spare time. +Time is spent investigating issues, supporting users, improving documentation, fixing bugs, and adding new functionality. +Your funding will go directly to development costs, marketing campaigns, promotional events, and other expenses needed to maintain and promote TurfJS. + +In particular, we're looking for corporate sponsors who use TurfJS in revenue-generating ways, either by creating applications for clients, or through use in an app used by customers. +Of course individuals are welcome to support us as well if TurfJS has helped you :) + +## 2024 Achievements + + - First major release in a few years + - Modernised build and publishing infrastructure + - Merged many PRs that had been on hold + - Resolved several long standing bugs + - Overhauled the [documentation website](https://turfjs.org) + +## Goals for 2025 + + - Continue to work through the bug backlog + - Release more often + - Encourage more contributors by engaging with PRs + - Resolve disparities between planar and spherical modes diff --git a/docs/PUBLISHING.md b/docs/PUBLISHING.md new file mode 100644 index 000000000..2ed0f16e3 --- /dev/null +++ b/docs/PUBLISHING.md @@ -0,0 +1,76 @@ +## Publishing + +### Prerelease + +A [prerelease](https://github.com/Turfjs/turf/blob/master/.github/workflows/prerelease.yml) action is available that publishes a canary release for every commit or PR merged to the master branch. However, this action is only [enabled](https://github.com/Turfjs/turf/actions/workflows/prerelease.yml) when needed. + +When used, it publishes an alpha release to NPM (e.g. `7.0.0-alpha.116` where 116 is the number of commits to master since the last release tag). +- The version number is calculated by a combination of the output of `git describe` and the `publish:prerelease` script in the root package.json. It is typically setup to do a `minor` prerelease, but can be changed, such as prior to a `major` release. + +### Release + +A turf release is initiated from your local computer, and then built and published remotely via a github actions. + +To make a release as a core contributor, you will need: +- Turf repository write permission +- Turf npm organization publish permission +- A clean local copy of the Turf Github repository (not a fork!). Starting with a fresh clone will ensure it's clean. + - Depending on your auth method + - `git clone git@github.com:Turfjs/turf.git turf-release` + - or `git clone https://github.com/Turfjs/turf.git turf-release` + - `cd turf-release` - start at the top-level of the repo + - `pnpm install` + - `pnpm test` - make sure everything is passing + +- If you choose to clean up an existing copy instead, be very careful: + - `git remote -v` - verify your remote origin points to `https://github.com/Turfjs/turf.git` + - `git checkout master` + - `git reset --hard` - reset your local working copy, will lose any uncommitted or unstashed work! + - `git fetch origin` - fetch latest commits + - `git rev-list master...origin/master` - verify local master in sync with remote, command output should be empty + - `pnpm install` + - `pnpm test` - make sure everything is passing + +Before release: +- If necessary, make and merge a PR with any last minute housekeeping items. +- Turf's documentation (README.md files) should already be up to date as it is generated automatically on commit from JSDoc comments in source files. +- Review PR's and decide the new version number to be published. See [semantic versioning](https://semver.org/). + +Run the following release commands, replacing `7.0.0` with your version number: + +- create a release branch and switch to it. All building, tagging and publishing will be done on the release branch, and then merged back into master in a later step. + - `git checkout origin/master -b release-7.0.0` + +- increment the version number of all packages, and create a local commit, without pushing to origin. This will also create a release tag. + - `pnpm lerna version --no-commit-hooks --no-push 7.0.0` + +- Push the release branch and the release tag. + - `git push origin release-7.0.0 --follow-tags` + - Pushing the tag will trigger the Github [release](https://github.com/Turfjs/turf/blob/master/.github/workflows/release.yml) action which you can view the status of at - https://github.com/Turfjs/turf/actions. If successful, a new [version](https://www.npmjs.com/package/@turf/turf?activeTab=versions) of all turf packages will have been published on NPM. + +- If the release action was not successful + - commit any changes to master to fix it. + - Make a [prerelease](#prerelease) if helpful to make sure the release action is successful. + - Then reset by deleting your tag and branch locally and remotely. + - `git push --delete origin v7.1.0` + - `git tag --delete v7.1.0` + - `git push -d origin release-7.0.0` + - `git branch -d release-7.0.0` + - Now redo the steps above starting with creating "A clean local copy of the Turf Github repository" + +- If the release action was successful, now create a Pull Request for the release to merge back to master. + - You may be given a link in the output of the branch/tag push command to create the PR. + - If you don't get this message, just go to https://github.com/Turfjs/turf/pulls and you should be prompted at the top to create a PR for this new branch you just pushed. + - If that prompt doesn't appear, then just create a new pull request from the PR page and make sure the title is the version number e.g. `v7.0.0` and that it is merging your release branch -> to master. + - Here is an example PR - https://github.com/Turfjs/turf/pull/2615. + - Get approval for the release PR, then "Squash and merge" it. + - Do not delete this branch in Github after merging, the release tag points to it. If you do, click "Restore branch" at the bottom of the merged PR. + +#### Follow-on steps +- As part of the release action, a draft Github release will have been created at https://github.com/Turfjs/turf/releases with an auto-generated changelog. + - Edit and add to the release notes for readability and completeness, specifically noting any breaking changes. Use past releases as a guide. + - Be sure to "Save draft" each time, then ask for a review or edits from other contributors. + - Try not to leave the notes unpublished more than a day, people rely on these notes for upgrading. + - Once ready, click `Publish release`. This will make the release notes publicly accessible and notify all watchers of the project. + - You can edit and republish your release notes after this, but that will likely notify followers, so best to get it right the first time. +- Release a new version of the [API docs](https://github.com/Turfjs/turf-www/blob/master/CONTRIBUTING.md) for the https://turfjs.org website. diff --git a/docs/SECURITY.md b/docs/SECURITY.md new file mode 100644 index 000000000..25c327210 --- /dev/null +++ b/docs/SECURITY.md @@ -0,0 +1,13 @@ +# Security Policy + +## Supported Versions + +Security updates are applied only to the latest release. + +## Reporting a Vulnerability + +If you have discovered a security vulnerability in this project, please report it privately. **Do not disclose it as a public issue.** This gives us time to work with you to fix the issue before public exposure, reducing the chance that the exploit will be used before a patch is released. + +Please disclose it at [security advisory](https://github.com/Turfjs/turf/security/advisories/new). + +This project is maintained by a team of volunteers on a reasonable-effort basis. As such, please give us at least 90 days to work on a fix before public exposure. diff --git a/docs/SEE_ALSO.md b/docs/SEE_ALSO.md new file mode 100644 index 000000000..5adb1586f --- /dev/null +++ b/docs/SEE_ALSO.md @@ -0,0 +1,40 @@ +## Ports of Turf.js + +Turf has been ported to several other languages, listed below. + +- [Java](https://github.com/mapbox/mapbox-java/tree/master/services-turf/src/main/java/com/mapbox/turf) (Android, Java SE) + - > [The current to-do list for porting to Java](https://github.com/mapbox/mapbox-java/blob/master/docs/turf-port.md) +- [Swift](https://github.com/mapbox/turf-swift/) (iOS, macOS, tvOS, watchOS, Linux) + - > Turf for Swift is **experimental** and its public API is subject to change. Please use with care. +- [Dart/Flutter](https://github.com/dartclub/turf_dart) (Dart Web, Dart Native; Flutter for iOS, Android, macOS, Windows, Linux, Web) + - > The Turf for Dart port is still in progress, the implementation status can be found in the [README](https://github.com/dartclub/turf_dart#components). + +## Other Geospatial Analysis Software + +Below are other geospatial options that aren't specifically ports of Turf. + +### Python + +* [Shapely](https://pypi.python.org/pypi/Shapely) is a friendly Python binding to GEOS +* [geopandas](https://geopandas.org/) is a layer on top of Shapely and Fiona for PostGIS-like tasks + +### C++ + +* [GEOS](https://libgeos.org/) is a port of JTS to C++ + +### JavaScript + +* [jsts](https://github.com/bjornharrtell/jsts) is a port of JTS to JavaScript + +### Java + +* [JTS](https://www.tsusiatsoftware.net/jts/main.html) + +### Go + +* [gogeos](https://paulsmith.github.io/gogeos/) is a Go binding to GEOS +* [go.geo](https://github.com/paulmach/go.geo) is a pure-Go implementation of some geometry operations and primitives + +### Postgres + +* [PostGIS](https://postgis.net/) provides geospatial operations within the Postgres database. Advanced operations rely on GEOS. diff --git a/documentation.yml b/documentation.yml index 9bd89b734..0f5445a78 100644 --- a/documentation.yml +++ b/documentation.yml @@ -1,165 +1,167 @@ toc: - - name: Measurement - - along - - area - - bbox - - bboxPolygon - - bearing - - center - - centerOfMass - - centroid - - destination - - distance - - envelope - - length - - midpoint - - pointOnFeature - - polygonTangents - - pointToLineDistance - - rhumbBearing - - rhumbDestination - - rhumbDistance - - square - - greatCircle - - name: Coordinate Mutation - - cleanCoords - - flip - - rewind - - round - - truncate - - name: Transformation - - bboxClip - - bezierSpline - - buffer - - circle - - clone - - concave - - convex - - difference - - dissolve - - intersect - - lineOffset - - polygonSmooth - - simplify - - tesselate - - transformRotate - - transformTranslate - - transformScale - - union - - voronoi - - name: Feature Conversion - - combine - - explode - - flatten - - lineToPolygon - - polygonize - - polygonToLine - - name: Misc - - kinks - - lineArc - - lineChunk - - lineIntersect - - lineOverlap - - lineSegment - - lineSlice - - lineSliceAlong - - lineSplit - - mask - - nearestPointOnLine - - sector - - shortestPath - - unkinkPolygon - - name: Helper - - featureCollection - - feature - - geometryCollection - - lineString - - multiLineString - - multiPoint - - multiPolygon - - point - - polygon - - name: Random - - randomPosition - - randomPoint - - randomLineString - - randomPolygon - - name: Data - - sample - - name: Interpolation - - interpolate - - isobands - - isolines - - planepoint - - tin - - name: Joins - - pointsWithinPolygon - - tag - - name: Grids - - hexGrid - - pointGrid - - squareGrid - - triangleGrid - - name: Classification - - nearestPoint - - name: Aggregation - - collect - - clustersDbscan - - clustersKmeans - - name: Meta - - coordAll - - coordEach - - coordReduce - - featureEach - - featureReduce - - flattenEach - - flattenReduce - - getCoord - - getCoords - - getGeom - - getType - - geomEach - - geomReduce - - propEach - - propReduce - - segmentEach - - segmentReduce - - getCluster - - clusterEach - - clusterReduce - - name: Assertions - - collectionOf - - containsNumber - - geojsonType - - featureOf - - name: Booleans - - booleanClockwise - - booleanConcave - - booleanContains - - booleanCrosses - - booleanDisjoint - - booleanEqual - - booleanIntersects - - booleanOverlap - - booleanParallel - - booleanPointInPolygon - - booleanPointOnLine - - booleanTouches - - booleanWithin - - name: Unit Conversion - - bearingToAzimuth - - azimuthToBearing - - convertArea - - convertLength - - degreesToRadians - - lengthToRadians - - lengthToDegrees - - radiansToLength - - radiansToDegrees - - toMercator - - toWgs84 + Measurement: + - along + - area + - bbox + - bboxPolygon + - bearing + - center + - centerOfMass + - centroid + - destination + - distance + - envelope + - length + - midpoint + - pointOnFeature + - polygonTangents + - pointToLineDistance + - pointToPolygonDistance + - rhumbBearing + - rhumbDestination + - rhumbDistance + - square + - greatCircle + Coordinate Mutation: + - cleanCoords + - flip + - rewind + - round + - truncate + Transformation: + - bboxClip + - bezierSpline + - buffer + - circle + - clone + - concave + - convex + - difference + - dissolve + - intersect + - lineOffset + - polygonSmooth + - simplify + - tesselate + - transformRotate + - transformTranslate + - transformScale + - union + - voronoi + Feature Conversion: + - combine + - explode + - flatten + - lineToPolygon + - polygonize + - polygonToLine + Misc: + - kinks + - lineArc + - lineChunk + - lineIntersect + - lineOverlap + - lineSegment + - lineSlice + - lineSliceAlong + - lineSplit + - mask + - nearestPointOnLine + - sector + - shortestPath + - unkinkPolygon + Helper: + - featureCollection + - feature + - geometryCollection + - lineString + - multiLineString + - multiPoint + - multiPolygon + - point + - polygon + Random: + - randomPosition + - randomPoint + - randomLineString + - randomPolygon + Data: + - sample + Interpolation: + - interpolate + - isobands + - isolines + - planepoint + - tin + Joins: + - pointsWithinPolygon + - tag + Grids: + - hexGrid + - pointGrid + - squareGrid + - triangleGrid + Classification: + - nearestPoint + Aggregation: + - collect + - clustersDbscan + - clustersKmeans + Meta: + - coordAll + - coordEach + - coordReduce + - featureEach + - featureReduce + - flattenEach + - flattenReduce + - getCoord + - getCoords + - getGeom + - getType + - geomEach + - geomReduce + - propEach + - propReduce + - segmentEach + - segmentReduce + - getCluster + - clusterEach + - clusterReduce + Assertions: + - collectionOf + - containsNumber + - geojsonType + - featureOf + Booleans: + - booleanClockwise + - booleanConcave + - booleanContains + - booleanCrosses + - booleanDisjoint + - booleanEqual + - booleanIntersects + - booleanOverlap + - booleanParallel + - booleanPointInPolygon + - booleanPointOnLine + - booleanTouches + - booleanWithin + Unit Conversion: + - bearingToAzimuth + - azimuthToBearing + - convertArea + - convertLength + - degreesToRadians + - lengthToRadians + - lengthToDegrees + - radiansToLength + - radiansToDegrees + - toMercator + - toWgs84 paths: GeoJSON: "https://tools.ietf.org/html/rfc7946#section-3" + GeoJsonProperties: "https://tools.ietf.org/html/rfc7946#section-3.2" GeometryCollection: "https://tools.ietf.org/html/rfc7946#section-3.1.8" Point: "https://tools.ietf.org/html/rfc7946#section-3.1.2" Points: "https://tools.ietf.org/html/rfc7946#section-3.1.2" diff --git a/eslint.config.mjs b/eslint.config.mjs new file mode 100644 index 000000000..91012a564 --- /dev/null +++ b/eslint.config.mjs @@ -0,0 +1,87 @@ +import globals from "globals"; +import js from "@eslint/js"; +import tsEslint from "typescript-eslint"; +import prettierRecommended from "eslint-plugin-prettier/recommended"; + +export default tsEslint.config( + js.configs.recommended, + tsEslint.configs.recommended, + { + ignores: [ + "**/dist/**/*", + "**/node_modules", + "packages/turf/turf.js", + "packages/turf/turf.min.js", + "packages/turf/test.example.js", + ], + }, + { + plugins: { + "@typescript-eslint": tsEslint.plugin, + }, + + languageOptions: { + globals: { + ...globals.node, + }, + + parser: tsEslint.parser, + ecmaVersion: 6, + sourceType: "module", + }, + + rules: { + "@typescript-eslint/no-unused-vars": [ + "error", + { + argsIgnorePattern: "^_", + }, + ], + + "@typescript-eslint/explicit-module-boundary-types": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/no-var-requires": "off", + "no-constant-condition": "off", + "no-redeclare": "off", + "no-var": "off", + "prefer-const": "off", + }, + }, + { + files: ["packages/*/types.ts", "packages/*/test.ts"], + + rules: { + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-unused-expressions": "off", + }, + }, + { + files: [ + "**/.eslintrc.js", + "packages/*/bench.js", + "packages/*/test.js", + "packages/turf/rollup.config.js", + "scripts/check-dependencies.js", + ], + + languageOptions: { + globals: { + ...globals.node, + }, + }, + }, + { + files: [ + "packages/turf-isobands/lib/marchingsquares-isobands.js", + "packages/turf-isolines/lib/marchingsquares-isocontours.js", + ], + + languageOptions: { + globals: { + ...globals.browser, + }, + }, + }, + prettierRecommended +); diff --git a/lerna.json b/lerna.json index 28286581b..a9018eb48 100644 --- a/lerna.json +++ b/lerna.json @@ -1,7 +1,7 @@ { "$schema": "node_modules/lerna/schemas/lerna-schema.json", "npmClient": "pnpm", - "version": "7.0.0", + "version": "7.2.0", "command": { "publish": { "registry": "https://registry.npmjs.org" diff --git a/package.json b/package.json index 3521f6e87..bf56ae864 100644 --- a/package.json +++ b/package.json @@ -27,40 +27,41 @@ ], "*": "prettier --write --ignore-unknown" }, - "packageManager": "pnpm@8.15.8+sha512.d1a029e1a447ad90bc96cd58b0fad486d2993d531856396f7babf2d83eb1823bb83c5a3d0fc18f675b2d10321d49eb161fece36fe8134aa5823ecd215feed392", + "packageManager": "pnpm@10.10.0+sha256.fa0f513aa8191764d2b6b432420788c270f07b4f999099b65bb2010eec702a30", "devDependencies": { - "@monorepolint/cli": "0.5.0-alpha.132", - "@monorepolint/config": "0.5.0-alpha.132", - "@monorepolint/core": "0.5.0-alpha.132", - "@monorepolint/rules": "0.5.0-alpha.132", - "@types/node": "18.11.9", - "@typescript-eslint/eslint-plugin": "^6.10.0", - "@typescript-eslint/parser": "^6.10.0", - "acorn": "^7.4.1", + "@eslint/eslintrc": "^3.3.1", + "@eslint/js": "^9.25.1", + "@monorepolint/cli": "0.5.0", + "@monorepolint/config": "0.5.0", + "@monorepolint/core": "0.5.0", + "@monorepolint/rules": "0.5.0", + "@types/node": "22.15.3", + "acorn": "^8.14.1", "camelcase": "^8.0.0", "d3-queue": "*", "decamelize": "^6.0.0", - "dependency-tree": "^11.0.0", + "dependency-tree": "^11.1.1", "documentation": "^14.0.3", - "es-check": "^7.1.1", - "eslint": "^8.53.0", - "eslint-config-prettier": "^9.0.0", - "eslint-plugin-prettier": "^5.0.1", + "es-check": "^9.0.0", + "eslint": "^9.25.1", + "eslint-config-prettier": "^10.1.2", + "eslint-plugin-prettier": "^5.2.6", "esm": "^3.2.25", - "fs-extra": "^11.1.1", - "glob": "^10.3.10", - "husky": "^9.0.0", - "lerna": "^8.1.7", - "lint-staged": "^15.2.8", + "fs-extra": "^11.3.0", + "glob": "^11.0.2", + "globals": "^16.0.0", + "husky": "^9.1.7", + "lerna": "^8.2.2", + "lint-staged": "^15.5.1", "load-json-file": "^7.0.1", - "meow": "^12.1.1", + "meow": "^13.2.0", "npm-run-all": "^4.1.5", - "prettier": "^3.3.3", + "prettier": "^3.5.3", "progress": "^2.0.3", - "ts-node": "^9.0.0", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "typescript-eslint": "^8.31.1", "yamljs": "^0.3.0" } } diff --git a/packages/turf-along/README.md b/packages/turf-along/README.md index e172218e8..9351ea33f 100644 --- a/packages/turf-along/README.md +++ b/packages/turf-along/README.md @@ -8,11 +8,11 @@ Takes a [LineString][1] and returns a [Point][2] at a specified distance along t ### Parameters -* `line` **[Feature][3]<[LineString][1]>** input line +* `line` **([Feature][3]<[LineString][1]> | [LineString][1])** input line * `distance` **[number][4]** distance along the line -* `options` **[Object][5]?** Optional parameters +* `options` **[Object][5]?** Optional parameters (optional, default `{}`) - * `options.units` **[string][6]** can be degrees, radians, miles, or kilometers (optional, default `"kilometers"`) + * `options.units` **Units** Supports all valid Turf [Units][6]. (optional, default `"kilometers"`) ### Examples @@ -38,7 +38,7 @@ Returns **[Feature][3]<[Point][2]>** Point `distance` `units` along the line [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[6]: https://turfjs.org/docs/api/types/Units diff --git a/packages/turf-along/index.ts b/packages/turf-along/index.ts index f881729b6..c5b5d762d 100644 --- a/packages/turf-along/index.ts +++ b/packages/turf-along/index.ts @@ -8,11 +8,11 @@ import { getGeom } from "@turf/invariant"; /** * Takes a {@link LineString} and returns a {@link Point} at a specified distance along the line. * - * @name along - * @param {Feature} line input line + * @function + * @param {Feature|LineString} line input line * @param {number} distance distance along the line * @param {Object} [options] Optional parameters - * @param {string} [options.units="kilometers"] can be degrees, radians, miles, or kilometers + * @param {Units} [options.units="kilometers"] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @returns {Feature} Point `distance` `units` along the line * @example * var line = turf.lineString([[-83, 30], [-84, 36], [-78, 41]]); diff --git a/packages/turf-along/package.json b/packages/turf-along/package.json index 8278e2604..5da53bdfb 100644 --- a/packages/turf-along/package.json +++ b/packages/turf-along/package.json @@ -1,7 +1,7 @@ { "name": "@turf/along", - "version": "7.0.0", - "description": "turf along module", + "version": "7.2.0", + "description": "Calculates a point along a line at a specific distance", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -53,22 +53,22 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/bearing": "workspace:^", - "@turf/destination": "workspace:^", - "@turf/distance": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/bearing": "workspace:*", + "@turf/destination": "workspace:*", + "@turf/distance": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-angle/index.ts b/packages/turf-angle/index.ts index c7a386c5b..9f6d328d3 100644 --- a/packages/turf-angle/index.ts +++ b/packages/turf-angle/index.ts @@ -6,7 +6,7 @@ import { rhumbBearing } from "@turf/rhumb-bearing"; * Finds the angle formed by two adjacent segments defined by 3 points. The result will be the (positive clockwise) * angle with origin on the `startPoint-midPoint` segment, or its explementary angle if required. * - * @name angle + * @function * @param {Coord} startPoint Start Point Coordinates * @param {Coord} midPoint Mid Point Coordinates * @param {Coord} endPoint End Point Coordinates @@ -49,19 +49,23 @@ function angle( const B = endPoint; // Main - const azimuthAO = bearingToAzimuth( - options.mercator !== true ? bearing(A, O) : rhumbBearing(A, O) + const azimuthOA = bearingToAzimuth( + options.mercator !== true ? bearing(O, A) : rhumbBearing(O, A) ); - const azimuthBO = bearingToAzimuth( - options.mercator !== true ? bearing(B, O) : rhumbBearing(B, O) + let azimuthOB = bearingToAzimuth( + options.mercator !== true ? bearing(O, B) : rhumbBearing(O, B) ); - const angleAO = Math.abs(azimuthAO - azimuthBO); + // If OB "trails" OA advance OB one revolution so we get the clockwise angle. + if (azimuthOB < azimuthOA) { + azimuthOB = azimuthOB + 360; + } + const angleAOB = azimuthOB - azimuthOA; // Explementary angle if (options.explementary === true) { - return 360 - angleAO; + return 360 - angleAOB; } - return angleAO; + return angleAOB; } export { angle }; diff --git a/packages/turf-angle/package.json b/packages/turf-angle/package.json index 44092bac8..99335e572 100644 --- a/packages/turf-angle/package.json +++ b/packages/turf-angle/package.json @@ -1,7 +1,7 @@ { "name": "@turf/angle", - "version": "7.0.0", - "description": "turf angle module", + "version": "7.2.0", + "description": "Finds the angle formed by two adjacent segments.", "author": "Turf Authors", "contributors": [ "Denis <@DenisCarriere>" @@ -52,27 +52,27 @@ "test:tape": "tsx test.ts" }, "devDependencies": { - "@turf/distance": "workspace:^", - "@turf/sector": "workspace:^", - "@turf/truncate": "workspace:^", + "@turf/distance": "workspace:*", + "@turf/sector": "workspace:*", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", - "glob": "^10.3.10", + "glob": "^11.0.2", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/bearing": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/rhumb-bearing": "workspace:^", + "@turf/bearing": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/rhumb-bearing": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-angle/test.ts b/packages/turf-angle/test.ts index a90afb5bb..5b7985117 100644 --- a/packages/turf-angle/test.ts +++ b/packages/turf-angle/test.ts @@ -1,101 +1,186 @@ import test from "tape"; -import path from "path"; -import { fileURLToPath } from "url"; -import { glob } from "glob"; -import { loadJsonFileSync } from "load-json-file"; -import { writeJsonFileSync } from "write-json-file"; -import { sector } from "@turf/sector"; -import { bearing } from "@turf/bearing"; -import { truncate } from "@turf/truncate"; -import { distance } from "@turf/distance"; -import { point, round, lineString, featureCollection } from "@turf/helpers"; +import { point, round } from "@turf/helpers"; import { angle } from "./index.js"; -const __dirname = path.dirname(fileURLToPath(import.meta.url)); +test("turf-angle -- across 0 bearing", (t) => { + t.equal(round(angle([-1, 1], [0, 0], [1, 1])), 90, "90 degrees"); -test("turf-angle", (t) => { - glob - .sync(path.join(__dirname, "test", "in", "*.json")) - .forEach((filepath) => { - // Input - const { name } = path.parse(filepath); - const geojson = loadJsonFileSync(filepath); - const [start, mid, end] = geojson.features; + t.end(); +}); - // Results - const angleProperties = { - interiorAngle: round(angle(start, mid, end), 6), - interiorMercatorAngle: round( - angle(start, mid, end, { mercator: true }), - 6 - ), - explementary: false, - fill: "#F00", - stroke: "#F00", - "fill-opacity": 0.3, - }; - const angleExplementaryProperties = { - explementaryAngle: round( - angle(start, mid, end, { explementary: true }), - 6 - ), - explementaryMercatorAngle: round( - angle(start, mid, end, { explementary: true, mercator: true }), - 6 - ), +test("turf-angle -- 90 degrees", (t) => { + t.equal( + round(angle([124, -17], [124, -22], [131, -22]), 6), + 91.312527, + "91.312527 degrees" + ); + t.equal( + round(angle([124, -17], [124, -22], [131, -22], { explementary: true }), 6), + 268.687473, + "268.687473 degrees explementary" + ); + t.equal( + round(angle([124, -17], [124, -22], [131, -22], { mercator: true }), 6), + 90, + "90 degrees mercator" + ); + t.equal( + round( + angle([124, -17], [124, -22], [131, -22], { explementary: true, - fill: "#00F", - stroke: "#00F", - "fill-opacity": 0.3, - }; - const results = featureCollection([ - truncate( - sector( - mid, - distance(mid, start) / 3, - bearing(mid, start), - bearing(mid, end), - { properties: angleProperties } - ) - ), - truncate( - sector( - mid, - distance(mid, start) / 2, - bearing(mid, end), - bearing(mid, start), - { properties: angleExplementaryProperties } - ) - ), - lineString( - [ - start.geometry.coordinates, - mid.geometry.coordinates, - end.geometry.coordinates, - ], - { "stroke-width": 4, stroke: "#222" } - ), - start, - mid, - end, - ]); + mercator: true, + }), + 6 + ), + 270, + "270 degrees explementary mercator" + ); + t.end(); +}); - // Save results - const expected = filepath.replace( - path.join("test", "in"), - path.join("test", "out") - ); - if (process.env.REGEN) writeJsonFileSync(expected, results); - t.deepEqual(results, loadJsonFileSync(expected), name); - }); +test("turf-angle -- 180 degrees", (t) => { + t.equal(round(angle([3, -1], [2, 0], [1, 1]), 6), 180, "180 degrees"); + + t.end(); +}); + +test("turf-angle -- obtuse", (t) => { + t.equal( + round(angle([48.5, 5.5], [51.5, 12], [59, 15.5]), 6), + 218.715175, + "218.715175 degrees" + ); + t.equal( + round( + angle([48.5, 5.5], [51.5, 12], [59, 15.5], { explementary: true }), + 6 + ), + 141.284825, + "141.284825 degrees explementary" + ); + t.equal( + round(angle([48.5, 5.5], [51.5, 12], [59, 15.5], { mercator: true }), 6), + 219.826106, + "219.826106 degrees mercator" + ); + t.equal( + round( + angle([48.5, 5.5], [51.5, 12], [59, 15.5], { + explementary: true, + mercator: true, + }), + 6 + ), + 140.173894, + "140.173894 degrees explementary mercator" + ); + t.end(); +}); + +test("turf-angle -- obtuse bigger", (t) => { + t.equal( + round(angle([48.5, 5.5], [51.5, 12], [46.5, 19]), 6), + 121.330117, + "121.330117 degrees" + ); + t.equal( + round( + angle([48.5, 5.5], [51.5, 12], [46.5, 19], { explementary: true }), + 6 + ), + 238.669883, + "238.669883 degrees explementary" + ); + t.equal( + round(angle([48.5, 5.5], [51.5, 12], [46.5, 19], { mercator: true }), 6), + 120.970546, + "120.970546" + ); + t.equal( + round( + angle([48.5, 5.5], [51.5, 12], [46.5, 19], { + explementary: true, + mercator: true, + }), + 6 + ), + 239.029454, + "239.029454 degrees explementary mercator" + ); + t.end(); +}); + +test("turf-angle -- acute", (t) => { + t.equal( + round(angle([48.5, 5.5], [51.5, 12], [44.5, 10.5]), 6), + 53.608314, + "53.608314 degrees" + ); + t.equal( + round( + angle([48.5, 5.5], [51.5, 12], [44.5, 10.5], { explementary: true }), + 6 + ), + 306.391686, + "306.391686 degrees explementary" + ); + t.equal( + round(angle([48.5, 5.5], [51.5, 12], [44.5, 10.5], { mercator: true }), 6), + 53.166357, + "53.166357 degrees mercator" + ); + t.equal( + round( + angle([48.5, 5.5], [51.5, 12], [44.5, 10.5], { + explementary: true, + mercator: true, + }), + 6 + ), + 306.833643, + "306.833643 degrees explementary mercator" + ); + t.end(); +}); + +test("turf-angle -- acute inverse", (t) => { + t.equal( + round(angle([44.5, 10.5], [51.5, 12], [48.5, 5.5]), 6), + 306.391686, + "306.391686 degrees" + ); + t.equal( + round( + angle([44.5, 10.5], [51.5, 12], [48.5, 5.5], { explementary: true }), + 6 + ), + 53.608314, + "53.608314 degrees explementary" + ); + t.equal( + round(angle([44.5, 10.5], [51.5, 12], [48.5, 5.5], { mercator: true }), 6), + 306.833643, + "306.833643 degrees mercator" + ); + t.equal( + round( + angle([44.5, 10.5], [51.5, 12], [48.5, 5.5], { + explementary: true, + mercator: true, + }), + 6 + ), + 53.166357, + "53.166357 degrees explementary mercator" + ); t.end(); }); test("turf-angle -- simple", (t) => { t.equal(round(angle([5, 5], [5, 6], [3, 4])), 45, "45 degrees"); - t.equal(round(angle([3, 4], [5, 6], [5, 5])), 45, "45 degrees -- inverse"); + t.equal(round(angle([3, 4], [5, 6], [5, 5])), 315, "315 degrees -- inverse"); t.equal( - round(angle([3, 4], [5, 6], [5, 5], { explementary: true })), + round(angle([5, 5], [5, 6], [3, 4], { explementary: true })), 360 - 45, "explementary angle" ); @@ -139,3 +224,19 @@ test("turf-angle -- throws", (t) => { t.end(); }); + +test("turf-angle -- 2703", (t) => { + const start = [0, 1]; + const mid = [0, 0]; + const end = [1, 0]; + const a = angle(start, mid, end); + t.equal(a, 90, "90 clockwise"); + + const start2 = [0, 1]; + const mid2 = [0, 0]; + const end2 = [-1, 0]; + const a2 = angle(start2, mid2, end2); + t.equal(a2, 270, "270 clockwise"); + + t.end(); +}); diff --git a/packages/turf-angle/test/in/90-degrees.json b/packages/turf-angle/test/in/90-degrees.json deleted file mode 100644 index d0040b712..000000000 --- a/packages/turf-angle/test/in/90-degrees.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "marker-color": "#008000", - "name": "start" - }, - "geometry": { - "type": "Point", - "coordinates": [124, -17] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#00F", - "name": "middle" - }, - "geometry": { - "type": "Point", - "coordinates": [124, -22] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#F00", - "name": "end" - }, - "geometry": { - "type": "Point", - "coordinates": [131, -22] - } - } - ] -} diff --git a/packages/turf-angle/test/in/acute-inverse.json b/packages/turf-angle/test/in/acute-inverse.json deleted file mode 100644 index 9d13168b4..000000000 --- a/packages/turf-angle/test/in/acute-inverse.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "marker-color": "#008000", - "name": "start" - }, - "geometry": { - "type": "Point", - "coordinates": [48.5, 5.5] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#00F", - "name": "middle" - }, - "geometry": { - "type": "Point", - "coordinates": [51.5, 12] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#F00", - "name": "end" - }, - "geometry": { - "type": "Point", - "coordinates": [44.5, 10.5] - } - } - ] -} diff --git a/packages/turf-angle/test/in/acute.json b/packages/turf-angle/test/in/acute.json deleted file mode 100644 index 50a544abc..000000000 --- a/packages/turf-angle/test/in/acute.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "marker-color": "#008000", - "name": "start" - }, - "geometry": { - "type": "Point", - "coordinates": [44.5, 10.5] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#00F", - "name": "middle" - }, - "geometry": { - "type": "Point", - "coordinates": [51.5, 12] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#F00", - "name": "end" - }, - "geometry": { - "type": "Point", - "coordinates": [48.5, 5.5] - } - } - ] -} diff --git a/packages/turf-angle/test/in/obtuse-bigger.json b/packages/turf-angle/test/in/obtuse-bigger.json deleted file mode 100644 index b5fb55dbf..000000000 --- a/packages/turf-angle/test/in/obtuse-bigger.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "marker-color": "#008000", - "name": "start" - }, - "geometry": { - "type": "Point", - "coordinates": [48.5, 5.5] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#00F", - "name": "middle" - }, - "geometry": { - "type": "Point", - "coordinates": [51.5, 12] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#F00", - "name": "end" - }, - "geometry": { - "type": "Point", - "coordinates": [46.5, 19] - } - } - ] -} diff --git a/packages/turf-angle/test/in/obtuse.json b/packages/turf-angle/test/in/obtuse.json deleted file mode 100644 index 39c54b171..000000000 --- a/packages/turf-angle/test/in/obtuse.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "marker-color": "#008000", - "name": "start" - }, - "geometry": { - "type": "Point", - "coordinates": [48.5, 5.5] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#00F", - "name": "middle" - }, - "geometry": { - "type": "Point", - "coordinates": [51.5, 12] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#F00", - "name": "end" - }, - "geometry": { - "type": "Point", - "coordinates": [59, 15.5] - } - } - ] -} diff --git a/packages/turf-angle/test/out/90-degrees.json b/packages/turf-angle/test/out/90-degrees.json deleted file mode 100644 index 4265337bb..000000000 --- a/packages/turf-angle/test/out/90-degrees.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "interiorAngle": 88.687473, - "interiorMercatorAngle": 90, - "explementary": false, - "fill": "#F00", - "stroke": "#F00", - "fill-opacity": 0.3 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [124, -22], - [124, -20.333333], - [124.04425, -20.333844], - [124.088474, -20.335376], - [124.132644, -20.337929], - [124.176735, -20.341501], - [124.22072, -20.346089], - [124.264573, -20.351692], - [124.308266, -20.358305], - [124.351775, -20.365925], - [124.395073, -20.374547], - [124.438134, -20.384166], - [124.480932, -20.394777], - [124.523441, -20.406372], - [124.565636, -20.418945], - [124.607491, -20.432488], - [124.648981, -20.446993], - [124.690081, -20.462452], - [124.730767, -20.478855], - [124.771013, -20.496192], - [124.810795, -20.514453], - [124.850089, -20.533627], - [124.888872, -20.553702], - [124.92712, -20.574667], - [124.964809, -20.596508], - [125.001917, -20.619212], - [125.038421, -20.642766], - [125.074299, -20.667156], - [125.109529, -20.692366], - [125.144089, -20.718382], - [125.177958, -20.745187], - [125.211115, -20.772767], - [125.24354, -20.801103], - [125.275212, -20.830179], - [125.306113, -20.859977], - [125.336223, -20.89048], - [125.365524, -20.921668], - [125.393996, -20.953523], - [125.421623, -20.986025], - [125.448387, -21.019156], - [125.474271, -21.052893], - [125.499259, -21.087218], - [125.523336, -21.122109], - [125.546485, -21.157546], - [125.568692, -21.193505], - [125.589943, -21.229966], - [125.610224, -21.266907], - [125.629523, -21.304304], - [125.647826, -21.342135], - [125.665122, -21.380377], - [125.681399, -21.419006], - [125.696646, -21.457999], - [125.710855, -21.497332], - [125.724014, -21.536981], - [125.736115, -21.576922], - [125.74715, -21.617129], - [125.757111, -21.657579], - [125.76599, -21.698246], - [125.773783, -21.739105], - [125.780482, -21.780132], - [125.786084, -21.8213], - [125.790582, -21.862586], - [125.793975, -21.903962], - [125.796258, -21.945403], - [125.797429, -21.986885], - [125.797488, -22.028381], - [124, -22] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "explementaryAngle": 271.312527, - "explementaryMercatorAngle": 270, - "explementary": true, - "fill": "#00F", - "stroke": "#00F", - "fill-opacity": 0.3 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [124, -22], - [126.696439, -22.035218], - [126.688162, -22.218141], - [126.665416, -22.400012], - [126.628265, -22.579849], - [126.576855, -22.75668], - [126.511409, -22.929545], - [126.43223, -23.097499], - [126.339701, -23.259623], - [126.234279, -23.415026], - [126.116502, -23.56285], - [125.986979, -23.702275], - [125.846392, -23.832527], - [125.695492, -23.952877], - [125.535093, -24.062653], - [125.366071, -24.161238], - [125.189356, -24.248076], - [125.005929, -24.322678], - [124.816814, -24.384621], - [124.623073, -24.433554], - [124.4258, -24.4692], - [124.22611, -24.491355], - [124.025137, -24.499893], - [123.82402, -24.494767], - [123.623903, -24.476005], - [123.425921, -24.443714], - [123.231195, -24.398077], - [123.040823, -24.339354], - [122.855878, -24.267878], - [122.677392, -24.184053], - [122.506359, -24.088353], - [122.343722, -23.981317], - [122.19037, -23.863547], - [122.047134, -23.735703], - [121.91478, -23.598499], - [121.794008, -23.452698], - [121.685447, -23.29911], - [121.589651, -23.138582], - [121.507098, -22.971999], - [121.43819, -22.800274], - [121.383249, -22.624344], - [121.34252, -22.445167], - [121.316165, -22.263713], - [121.304272, -22.080961], - [121.306846, -21.897892], - [121.323819, -21.715488], - [121.355046, -21.53472], - [121.400308, -21.356549], - [121.459317, -21.181918], - [121.531712, -21.011749], - [121.617071, -20.846936], - [121.714905, -20.688343], - [121.824667, -20.5368], - [121.94575, -20.393097], - [122.077498, -20.25798], - [122.2192, -20.132151], - [122.370104, -20.016261], - [122.529412, -19.910908], - [122.696289, -19.816638], - [122.869865, -19.733934], - [123.049239, -19.663222], - [123.233486, -19.604865], - [123.421658, -19.559163], - [123.612788, -19.526351], - [123.805898, -19.506596], - [124, -19.5], - [124, -22] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "stroke-width": 4, - "stroke": "#222" - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [124, -17], - [124, -22], - [131, -22] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#008000", - "name": "start" - }, - "geometry": { - "type": "Point", - "coordinates": [124, -17] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#00F", - "name": "middle" - }, - "geometry": { - "type": "Point", - "coordinates": [124, -22] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#F00", - "name": "end" - }, - "geometry": { - "type": "Point", - "coordinates": [131, -22] - } - } - ] -} diff --git a/packages/turf-angle/test/out/acute-inverse.json b/packages/turf-angle/test/out/acute-inverse.json deleted file mode 100644 index e92c2c4b9..000000000 --- a/packages/turf-angle/test/out/acute-inverse.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "interiorAngle": 52.698136, - "interiorMercatorAngle": 53.166357, - "explementary": false, - "fill": "#F00", - "stroke": "#F00", - "fill-opacity": 0.3 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [51.5, 12], - [50.487833, 9.836074], - [50.455818, 9.850776], - [50.424022, 9.865934], - [50.392451, 9.881546], - [50.361111, 9.897607], - [50.33001, 9.914115], - [50.299154, 9.931065], - [50.268549, 9.948455], - [50.238202, 9.966281], - [50.20812, 9.984538], - [50.178308, 10.003224], - [50.148772, 10.022334], - [50.11952, 10.041864], - [50.090557, 10.06181], - [50.06189, 10.082168], - [50.033523, 10.102934], - [50.005465, 10.124103], - [49.977719, 10.145671], - [49.950293, 10.167633], - [49.923192, 10.189986], - [49.896422, 10.212723], - [49.869988, 10.23584], - [49.843896, 10.259333], - [49.818152, 10.283196], - [49.792761, 10.307425], - [49.767728, 10.332014], - [49.743059, 10.356958], - [49.718759, 10.382253], - [49.694834, 10.407892], - [49.671288, 10.43387], - [49.648126, 10.460182], - [49.625353, 10.486822], - [49.602975, 10.513785], - [49.580996, 10.541065], - [49.559421, 10.568656], - [49.538254, 10.596553], - [49.5175, 10.624749], - [49.497163, 10.653239], - [49.477248, 10.682016], - [49.45776, 10.711075], - [49.438701, 10.740409], - [49.420077, 10.770013], - [49.401892, 10.79988], - [49.384149, 10.830003], - [49.366852, 10.860377], - [49.350005, 10.890995], - [49.333613, 10.92185], - [49.317677, 10.952936], - [49.302203, 10.984247], - [49.287192, 11.015775], - [49.27265, 11.047515], - [49.258578, 11.079459], - [49.24498, 11.1116], - [49.231858, 11.143933], - [49.219217, 11.17645], - [49.207059, 11.209144], - [49.195385, 11.242008], - [49.1842, 11.275035], - [49.173506, 11.308219], - [49.163304, 11.341552], - [49.153598, 11.375027], - [49.144389, 11.408638], - [49.13568, 11.442376], - [49.127473, 11.476235], - [49.119769, 11.510208], - [51.5, 12] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "explementaryAngle": 307.301864, - "explementaryMercatorAngle": 306.833643, - "explementary": true, - "fill": "#00F", - "stroke": "#00F", - "fill-opacity": 0.3 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [51.5, 12], - [47.932822, 11.25803], - [47.880206, 11.551701], - [47.852657, 11.848643], - [47.850444, 12.1468], - [47.873667, 12.4441], - [47.922251, 12.738471], - [47.995945, 13.027852], - [48.094321, 13.310212], - [48.216776, 13.583558], - [48.362528, 13.845956], - [48.530626, 14.095541], - [48.719947, 14.330532], - [48.929209, 14.549244], - [49.156971, 14.750105], - [49.401646, 14.931665], - [49.661512, 15.092608], - [49.934722, 15.231766], - [50.21932, 15.348124], - [50.513252, 15.440832], - [50.814387, 15.509212], - [51.120533, 15.552762], - [51.429455, 15.571163], - [51.738892, 15.564279], - [52.046582, 15.532161], - [52.350276, 15.475046], - [52.647759, 15.393351], - [52.93687, 15.287676], - [53.215519, 15.158792], - [53.481702, 15.007641], - [53.733522, 14.835322], - [53.969197, 14.643085], - [54.187077, 14.43232], - [54.385654, 14.204546], - [54.563573, 13.961397], - [54.719638, 13.704611], - [54.852817, 13.436018], - [54.962251, 13.157522], - [55.047257, 12.871091], - [55.107326, 12.57874], - [55.142126, 12.282518], - [55.151503, 11.984494], - [55.135477, 11.686742], - [55.094241, 11.391327], - [55.028156, 11.100292], - [54.93775, 10.815644], - [54.823708, 10.539341], - [54.68687, 10.27328], - [54.528225, 10.019281], - [54.3489, 9.779083], - [54.150154, 9.554324], - [53.933373, 9.346538], - [53.700055, 9.157138], - [53.451804, 8.987415], - [53.190318, 8.838522], - [52.917382, 8.71147], - [52.634852, 8.607124], - [52.344643, 8.526191], - [52.048723, 8.46922], - [51.749093, 8.4366], - [51.447779, 8.42855], - [51.146818, 8.445126], - [50.848244, 8.486215], - [50.554078, 8.551539], - [50.266308, 8.640653], - [49.986887, 8.752953], - [51.5, 12] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "stroke-width": 4, - "stroke": "#222" - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [48.5, 5.5], - [51.5, 12], - [44.5, 10.5] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#008000", - "name": "start" - }, - "geometry": { - "type": "Point", - "coordinates": [48.5, 5.5] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#00F", - "name": "middle" - }, - "geometry": { - "type": "Point", - "coordinates": [51.5, 12] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#F00", - "name": "end" - }, - "geometry": { - "type": "Point", - "coordinates": [44.5, 10.5] - } - } - ] -} diff --git a/packages/turf-angle/test/out/acute.json b/packages/turf-angle/test/out/acute.json deleted file mode 100644 index a71ae6582..000000000 --- a/packages/turf-angle/test/out/acute.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "interiorAngle": 52.698136, - "interiorMercatorAngle": 53.166357, - "explementary": false, - "fill": "#F00", - "stroke": "#F00", - "fill-opacity": 0.3 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [51.5, 12], - [49.15854, 11.518357], - [49.124843, 11.711158], - [49.107647, 11.906037], - [49.107107, 12.101642], - [49.123262, 12.296609], - [49.156037, 12.489577], - [49.205239, 12.679197], - [49.27056, 12.864137], - [49.351579, 13.043099], - [49.447757, 13.214821], - [49.55845, 13.37809], - [49.682904, 13.531749], - [49.820264, 13.674709], - [49.969578, 13.805952], - [50.129802, 13.924543], - [50.299812, 14.029634], - [50.478406, 14.120476], - [50.664316, 14.196415], - [50.856218, 14.256907], - [51.052739, 14.301518], - [51.252473, 14.329928], - [51.453985, 14.34193], - [51.655827, 14.33744], - [51.85655, 14.31649], - [52.054711, 14.279229], - [52.248891, 14.225927], - [52.437699, 14.156966], - [52.619788, 14.072842], - [52.793863, 13.974157], - [52.958691, 13.861619], - [53.113112, 13.736031], - [53.256043, 13.598289], - [53.38649, 13.449375], - [53.503554, 13.290346], - [53.606434, 13.122329], - [53.694435, 12.946513], - [53.766969, 12.764138], - [53.823562, 12.576487], - [53.863854, 12.384879], - [53.887599, 12.190654], - [53.894669, 11.995171], - [53.885052, 11.799792], - [53.858849, 11.605877], - [53.816276, 11.414772], - [53.757661, 11.227801], - [53.683439, 11.046258], - [53.594149, 10.871395], - [53.490431, 10.704419], - [53.373021, 10.54648], - [53.242743, 10.398663], - [53.100509, 10.261983], - [52.947306, 10.137378], - [52.784194, 10.025703], - [52.612299, 9.927722], - [52.4328, 9.844107], - [52.246931, 9.775428], - [52.055961, 9.722157], - [51.861198, 9.684656], - [51.66397, 9.663183], - [51.465624, 9.657885], - [51.267512, 9.668796], - [51.070987, 9.695843], - [50.877388, 9.738842], - [50.688039, 9.797497], - [50.504234, 9.871408], - [51.5, 12] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "explementaryAngle": 307.301864, - "explementaryMercatorAngle": 306.833643, - "explementary": true, - "fill": "#00F", - "stroke": "#00F", - "fill-opacity": 0.3 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [51.5, 12], - [50.011338, 8.805989], - [49.964224, 8.827611], - [49.917429, 8.849905], - [49.870962, 8.872865], - [49.824834, 8.896487], - [49.779053, 8.920766], - [49.733629, 8.945697], - [49.688572, 8.971274], - [49.643892, 8.997493], - [49.599597, 9.024348], - [49.555696, 9.051832], - [49.5122, 9.079942], - [49.469117, 9.10867], - [49.426456, 9.138011], - [49.384226, 9.167958], - [49.342435, 9.198506], - [49.301094, 9.229647], - [49.26021, 9.261376], - [49.219792, 9.293686], - [49.179848, 9.32657], - [49.140388, 9.360022], - [49.101419, 9.394034], - [49.062949, 9.428599], - [49.024986, 9.46371], - [48.98754, 9.499359], - [48.950617, 9.53554], - [48.914225, 9.572245], - [48.878372, 9.609465], - [48.843067, 9.647194], - [48.808315, 9.685423], - [48.774125, 9.724145], - [48.740504, 9.763351], - [48.707459, 9.803033], - [48.674998, 9.843183], - [48.643126, 9.883792], - [48.611852, 9.924852], - [48.581181, 9.966355], - [48.551121, 10.008291], - [48.521677, 10.050652], - [48.492857, 10.093429], - [48.464666, 10.136613], - [48.437111, 10.180196], - [48.410197, 10.224167], - [48.38393, 10.268518], - [48.358317, 10.313239], - [48.333362, 10.358321], - [48.309072, 10.403755], - [48.285451, 10.449531], - [48.262506, 10.495639], - [48.24024, 10.54207], - [48.218658, 10.588814], - [48.197767, 10.635862], - [48.17757, 10.683202], - [48.158072, 10.730826], - [48.139277, 10.778723], - [48.121189, 10.826884], - [48.103814, 10.875298], - [48.087154, 10.923954], - [48.071213, 10.972843], - [48.055996, 11.021955], - [48.041505, 11.071279], - [48.027744, 11.120804], - [48.014717, 11.17052], - [48.002426, 11.220418], - [47.990875, 11.270485], - [51.5, 12] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "stroke-width": 4, - "stroke": "#222" - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [44.5, 10.5], - [51.5, 12], - [48.5, 5.5] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#008000", - "name": "start" - }, - "geometry": { - "type": "Point", - "coordinates": [44.5, 10.5] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#00F", - "name": "middle" - }, - "geometry": { - "type": "Point", - "coordinates": [51.5, 12] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#F00", - "name": "end" - }, - "geometry": { - "type": "Point", - "coordinates": [48.5, 5.5] - } - } - ] -} diff --git a/packages/turf-angle/test/out/obtuse-bigger.json b/packages/turf-angle/test/out/obtuse-bigger.json deleted file mode 100644 index 63f021668..000000000 --- a/packages/turf-angle/test/out/obtuse-bigger.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "interiorAngle": 120.447846, - "interiorMercatorAngle": 120.970546, - "explementary": false, - "fill": "#F00", - "stroke": "#F00", - "fill-opacity": 0.3 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [51.5, 12], - [50.487833, 9.836074], - [50.415688, 9.870001], - [50.344705, 9.906244], - [50.274961, 9.944764], - [50.20653, 9.985519], - [50.139487, 10.028467], - [50.073904, 10.07356], - [50.009852, 10.120751], - [49.9474, 10.169988], - [49.886617, 10.221219], - [49.827567, 10.274389], - [49.770315, 10.32944], - [49.714924, 10.386313], - [49.661454, 10.444947], - [49.609964, 10.505278], - [49.56051, 10.567243], - [49.513147, 10.630774], - [49.467926, 10.695802], - [49.424898, 10.762257], - [49.384111, 10.830068], - [49.34561, 10.899161], - [49.309438, 10.969462], - [49.275636, 11.040894], - [49.244242, 11.113381], - [49.215292, 11.186844], - [49.188819, 11.261202], - [49.164853, 11.336377], - [49.143422, 11.412286], - [49.124552, 11.488846], - [49.108264, 11.565975], - [49.09458, 11.643588], - [49.083515, 11.721602], - [49.075084, 11.79993], - [49.069299, 11.878489], - [49.066168, 11.957192], - [49.065696, 12.035953], - [49.067887, 12.114687], - [49.072741, 12.193306], - [49.080254, 12.271725], - [49.090421, 12.349859], - [49.103233, 12.427621], - [49.118679, 12.504926], - [49.136743, 12.58169], - [49.157408, 12.657827], - [49.180655, 12.733254], - [49.206459, 12.807888], - [49.234795, 12.881646], - [49.265633, 12.954447], - [49.298942, 13.026211], - [49.334688, 13.096859], - [49.372832, 13.166311], - [49.413335, 13.234492], - [49.456154, 13.301325], - [49.501244, 13.366736], - [49.548555, 13.430652], - [49.598038, 13.493003], - [49.64964, 13.553719], - [49.703304, 13.612733], - [49.758972, 13.669977], - [49.816583, 13.72539], - [49.876076, 13.778908], - [49.937384, 13.830471], - [50.000441, 13.880023], - [50.065177, 13.927507], - [50.131521, 13.972871], - [51.5, 12] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "explementaryAngle": 239.552154, - "explementaryMercatorAngle": 239.029454, - "explementary": true, - "fill": "#00F", - "stroke": "#00F", - "fill-opacity": 0.3 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [51.5, 12], - [49.438664, 14.956465], - [49.641509, 15.081264], - [49.85254, 15.192891], - [50.07084, 15.290851], - [50.295457, 15.374712], - [50.525406, 15.4441], - [50.759673, 15.498708], - [50.997223, 15.538293], - [51.237005, 15.562678], - [51.477954, 15.571755], - [51.719002, 15.565483], - [51.959077, 15.543891], - [52.197114, 15.507073], - [52.432059, 15.455195], - [52.662874, 15.388488], - [52.88854, 15.307247], - [53.108067, 15.211834], - [53.320497, 15.10267], - [53.524905, 14.98024], - [53.720408, 14.845083], - [53.906169, 14.697794], - [54.081395, 14.539021], - [54.245349, 14.369457], - [54.397344, 14.189844], - [54.536752, 14.000964], - [54.663004, 13.803636], - [54.775592, 13.598714], - [54.874069, 13.387083], - [54.958053, 13.169651], - [55.027225, 12.947351], - [55.081334, 12.721134], - [55.12019, 12.491961], - [55.143671, 12.260809], - [55.15172, 12.028654], - [55.144342, 11.796478], - [55.121608, 11.565259], - [55.083651, 11.33597], - [55.030665, 11.10957], - [54.962907, 10.887009], - [54.880689, 10.669215], - [54.784382, 10.457096], - [54.674414, 10.251534], - [54.551265, 10.053385], - [54.415465, 9.86347], - [54.267596, 9.682576], - [54.108285, 9.511453], - [53.938204, 9.350808], - [53.758066, 9.201305], - [53.568623, 9.063562], - [53.370664, 8.938146], - [53.165008, 8.825577], - [52.952508, 8.726317], - [52.73404, 8.640776], - [52.510503, 8.569307], - [52.282818, 8.512204], - [52.051921, 8.469703], - [51.818759, 8.441978], - [51.584289, 8.429144], - [51.349473, 8.431253], - [51.115275, 8.448297], - [50.882655, 8.480206], - [50.652569, 8.526848], - [50.42596, 8.588031], - [50.203762, 8.663503], - [49.986887, 8.752953], - [51.5, 12] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "stroke-width": 4, - "stroke": "#222" - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [48.5, 5.5], - [51.5, 12], - [46.5, 19] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#008000", - "name": "start" - }, - "geometry": { - "type": "Point", - "coordinates": [48.5, 5.5] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#00F", - "name": "middle" - }, - "geometry": { - "type": "Point", - "coordinates": [51.5, 12] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#F00", - "name": "end" - }, - "geometry": { - "type": "Point", - "coordinates": [46.5, 19] - } - } - ] -} diff --git a/packages/turf-angle/test/out/obtuse.json b/packages/turf-angle/test/out/obtuse.json deleted file mode 100644 index 5c2a544c5..000000000 --- a/packages/turf-angle/test/out/obtuse.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "interiorAngle": 220.958265, - "interiorMercatorAngle": 219.826106, - "explementary": false, - "fill": "#F00", - "stroke": "#F00", - "fill-opacity": 0.3 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [51.5, 12], - [50.487833, 9.836074], - [50.358618, 9.898909], - [50.233379, 9.969168], - [50.112553, 10.046605], - [49.996566, 10.130951], - [49.885824, 10.22191], - [49.780719, 10.319164], - [49.681622, 10.422375], - [49.588884, 10.53118], - [49.502838, 10.6452], - [49.42379, 10.764034], - [49.352026, 10.887265], - [49.287806, 11.014462], - [49.231365, 11.145177], - [49.18291, 11.278951], - [49.142624, 11.415312], - [49.11066, 11.553779], - [49.087142, 11.693864], - [49.072167, 11.835071], - [49.0658, 11.976901], - [49.068078, 12.11885], - [49.079005, 12.260414], - [49.098557, 12.401089], - [49.126679, 12.540375], - [49.163284, 12.677773], - [49.208255, 12.812793], - [49.261445, 12.944952], - [49.322676, 13.073774], - [49.391742, 13.198797], - [49.468406, 13.31957], - [49.552404, 13.435659], - [49.643443, 13.546643], - [49.741204, 13.65212], - [49.845343, 13.751709], - [49.95549, 13.845048], - [50.071254, 13.931797], - [50.192218, 14.011641], - [50.317949, 14.084288], - [50.447992, 14.149474], - [50.581878, 14.206959], - [50.719119, 14.256534], - [50.859217, 14.298017], - [51.001659, 14.331256], - [51.145927, 14.356129], - [51.291492, 14.372545], - [51.43782, 14.380443], - [51.584377, 14.379796], - [51.730624, 14.370604], - [51.876026, 14.352902], - [52.020051, 14.326755], - [52.162172, 14.292258], - [52.301869, 14.249539], - [52.438634, 14.198753], - [52.571968, 14.140087], - [52.701388, 14.073756], - [52.826426, 14], - [52.94663, 13.919091], - [53.061568, 13.831323], - [53.17083, 13.737014], - [53.274026, 13.636509], - [53.37079, 13.530172], - [53.460782, 13.418389], - [53.543687, 13.301563], - [53.619216, 13.180118], - [53.68711, 13.05449], - [51.5, 12] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "explementaryAngle": 139.041735, - "explementaryMercatorAngle": 140.173894, - "explementary": true, - "fill": "#00F", - "stroke": "#00F", - "fill-opacity": 0.3 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [51.5, 12], - [54.787546, 13.574894], - [54.846609, 13.449936], - [54.900628, 13.32285], - [54.949533, 13.193828], - [54.993256, 13.063064], - [55.031743, 12.930753], - [55.064944, 12.797093], - [55.092818, 12.662285], - [55.115333, 12.526529], - [55.132464, 12.390028], - [55.144195, 12.252984], - [55.150515, 12.1156], - [55.151426, 11.97808], - [55.146932, 11.840628], - [55.13705, 11.703446], - [55.121802, 11.566736], - [55.101218, 11.430701], - [55.075335, 11.29554], - [55.044199, 11.161451], - [55.007863, 11.028631], - [54.966386, 10.897275], - [54.919835, 10.767575], - [54.868285, 10.639721], - [54.811817, 10.513899], - [54.750517, 10.390292], - [54.684482, 10.269082], - [54.61381, 10.150444], - [54.538611, 10.034551], - [54.458997, 9.921571], - [54.375087, 9.81167], - [54.287007, 9.705005], - [54.194889, 9.601733], - [54.098867, 9.502002], - [53.999084, 9.405957], - [53.895687, 9.313739], - [53.788828, 9.225479], - [53.678662, 9.141306], - [53.565351, 9.061341], - [53.449059, 8.985701], - [53.329956, 8.914495], - [53.208215, 8.847825], - [53.084012, 8.785788], - [52.957528, 8.728474], - [52.828944, 8.675965], - [52.698447, 8.628338], - [52.566224, 8.585661], - [52.432468, 8.547995], - [52.29737, 8.515396], - [52.161125, 8.48791], - [52.023929, 8.465577], - [51.88598, 8.448429], - [51.747475, 8.436491], - [51.608615, 8.42978], - [51.469598, 8.428306], - [51.330626, 8.432071], - [51.191897, 8.441069], - [51.05361, 8.455288], - [50.915966, 8.474707], - [50.779162, 8.499299], - [50.643394, 8.529026], - [50.508859, 8.563847], - [50.37575, 8.603712], - [50.244259, 8.648562], - [50.114576, 8.698333], - [49.986887, 8.752953], - [51.5, 12] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "stroke-width": 4, - "stroke": "#222" - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [48.5, 5.5], - [51.5, 12], - [59, 15.5] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#008000", - "name": "start" - }, - "geometry": { - "type": "Point", - "coordinates": [48.5, 5.5] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#00F", - "name": "middle" - }, - "geometry": { - "type": "Point", - "coordinates": [51.5, 12] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#F00", - "name": "end" - }, - "geometry": { - "type": "Point", - "coordinates": [59, 15.5] - } - } - ] -} diff --git a/packages/turf-area/README.md b/packages/turf-area/README.md index aeba55da9..a9568d096 100644 --- a/packages/turf-area/README.md +++ b/packages/turf-area/README.md @@ -4,11 +4,11 @@ ## area -Takes one or more features and returns their area in square meters. +Calculates the geodesic area in square meters of one or more polygons. ### Parameters -* `geojson` **[GeoJSON][1]** input GeoJSON feature(s) +* `geojson` **[GeoJSON][1]** input polygon(s) as [Geometry][2], [Feature][3], or [FeatureCollection][4] ### Examples @@ -22,11 +22,17 @@ var addToMap = [polygon] polygon.properties.area = area ``` -Returns **[number][2]** area in square meters +Returns **[number][5]** area in square meters [1]: https://tools.ietf.org/html/rfc7946#section-3 -[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number +[2]: https://tools.ietf.org/html/rfc7946#section-3.1 + +[3]: https://tools.ietf.org/html/rfc7946#section-3.2 + +[4]: https://tools.ietf.org/html/rfc7946#section-3.3 + +[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number diff --git a/packages/turf-area/index.ts b/packages/turf-area/index.ts index 51887938f..ff016ec7b 100644 --- a/packages/turf-area/index.ts +++ b/packages/turf-area/index.ts @@ -3,10 +3,10 @@ import { earthRadius } from "@turf/helpers"; import { geomReduce } from "@turf/meta"; /** - * Takes one or more features and returns their area in square meters. + * Calculates the geodesic area in square meters of one or more polygons. * - * @name area - * @param {GeoJSON} geojson input GeoJSON feature(s) + * @function + * @param {GeoJSON} geojson input polygon(s) as {@link Geometry}, {@link Feature}, or {@link FeatureCollection} * @returns {number} area in square meters * @example * var polygon = turf.polygon([[[125, -15], [113, -22], [154, -27], [144, -15], [125, -15]]]); diff --git a/packages/turf-area/package.json b/packages/turf-area/package.json index db8651529..4272946d5 100644 --- a/packages/turf-area/package.json +++ b/packages/turf-area/package.json @@ -1,7 +1,7 @@ { "name": "@turf/area", - "version": "7.0.0", - "description": "turf area module", + "version": "7.2.0", + "description": "Calculates the geodesic area in square meters of one or more polygons.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -52,20 +52,20 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-bbox-clip/index.ts b/packages/turf-bbox-clip/index.ts index 8d9221a5b..765dc3942 100644 --- a/packages/turf-bbox-clip/index.ts +++ b/packages/turf-bbox-clip/index.ts @@ -22,7 +22,7 @@ import { lineclip, polygonclip } from "./lib/lineclip.js"; * [lineclip](https://github.com/mapbox/lineclip). * May result in degenerate edges when clipping Polygons. * - * @name bboxClip + * @function * @param {Feature} feature feature to clip to the bbox * @param {BBox} bbox extent in [minX, minY, maxX, maxY] order * @returns {Feature} clipped Feature diff --git a/packages/turf-bbox-clip/package.json b/packages/turf-bbox-clip/package.json index 582203ce2..2701a4adb 100644 --- a/packages/turf-bbox-clip/package.json +++ b/packages/turf-bbox-clip/package.json @@ -1,7 +1,7 @@ { "name": "@turf/bbox-clip", - "version": "7.0.0", - "description": "turf bbox-clip module", + "version": "7.2.0", + "description": "Takes a Feature and a bbox and clips the feature to the bbox using lineclip.", "author": "Turf Authors", "contributors": [ "Tim Channell <@tcql>", @@ -57,22 +57,22 @@ "test:tape": "tsx test.ts" }, "devDependencies": { - "@turf/bbox": "workspace:^", + "@turf/bbox": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-bbox-polygon/README.md b/packages/turf-bbox-polygon/README.md index f0368d043..7e99be723 100644 --- a/packages/turf-bbox-polygon/README.md +++ b/packages/turf-bbox-polygon/README.md @@ -11,8 +11,8 @@ Takes a bbox and returns an equivalent [polygon][1]. * `bbox` **[BBox][2]** extent in \[minX, minY, maxX, maxY] order * `options` **[Object][3]** Optional parameters (optional, default `{}`) - * `options.properties` **Properties** Translate properties to Polygon (optional, default `{}`) - * `options.id` **([string][4] | [number][5])** Translate Id to Polygon (optional, default `{}`) + * `options.properties` **[GeoJsonProperties][4]** Translate properties to Polygon (optional, default `{}`) + * `options.id` **([string][5] | [number][6])** Translate Id to Polygon (optional, default `{}`) ### Examples @@ -25,7 +25,7 @@ var poly = turf.bboxPolygon(bbox); var addToMap = [poly] ``` -Returns **[Feature][6]<[Polygon][1]>** a Polygon representation of the bounding box +Returns **[Feature][4]<[Polygon][1]>** a Polygon representation of the bounding box [1]: https://tools.ietf.org/html/rfc7946#section-3.1.6 @@ -33,11 +33,11 @@ Returns **[Feature][6]<[Polygon][1]>** a Polygon representation of the bounding [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[4]: https://tools.ietf.org/html/rfc7946#section-3.2 -[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number +[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String -[6]: https://tools.ietf.org/html/rfc7946#section-3.2 +[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number diff --git a/packages/turf-bbox-polygon/index.ts b/packages/turf-bbox-polygon/index.ts index 7da8fd1ee..6ae88a4a4 100644 --- a/packages/turf-bbox-polygon/index.ts +++ b/packages/turf-bbox-polygon/index.ts @@ -4,10 +4,10 @@ import { polygon, Id } from "@turf/helpers"; /** * Takes a bbox and returns an equivalent {@link Polygon|polygon}. * - * @name bboxPolygon + * @function * @param {BBox} bbox extent in [minX, minY, maxX, maxY] order * @param {Object} [options={}] Optional parameters - * @param {Properties} [options.properties={}] Translate properties to Polygon + * @param {GeoJsonProperties} [options.properties={}] Translate properties to Polygon * @param {string|number} [options.id={}] Translate Id to Polygon * @returns {Feature} a Polygon representation of the bounding box * @example diff --git a/packages/turf-bbox-polygon/package.json b/packages/turf-bbox-polygon/package.json index bbd33fd3c..0ecab3906 100644 --- a/packages/turf-bbox-polygon/package.json +++ b/packages/turf-bbox-polygon/package.json @@ -1,7 +1,7 @@ { "name": "@turf/bbox-polygon", - "version": "7.0.0", - "description": "turf bbox-polygon module", + "version": "7.2.0", + "description": "Converts a bounding box to a GeoJSON polygon.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -53,17 +53,17 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/helpers": "workspace:^", + "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-bbox/index.ts b/packages/turf-bbox/index.ts index f3a414368..ddfe803c3 100644 --- a/packages/turf-bbox/index.ts +++ b/packages/turf-bbox/index.ts @@ -6,7 +6,7 @@ import { coordEach } from "@turf/meta"; * Calculates the bounding box for any GeoJSON object, including FeatureCollection. * Uses geojson.bbox if available and options.recompute is not set. * - * @name bbox + * @function * @param {GeoJSON} geojson any GeoJSON object * @param {Object} [options={}] Optional parameters * @param {boolean} [options.recompute] Whether to ignore an existing bbox property on geojson diff --git a/packages/turf-bbox/package.json b/packages/turf-bbox/package.json index b09d66c03..34ebca02a 100644 --- a/packages/turf-bbox/package.json +++ b/packages/turf-bbox/package.json @@ -1,7 +1,7 @@ { "name": "@turf/bbox", - "version": "7.0.0", - "description": "turf bbox module", + "version": "7.2.0", + "description": "Generates a bounding box around a GeoJSON feature.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -54,18 +54,18 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-bearing/index.ts b/packages/turf-bearing/index.ts index dbe25c28c..b7b8050a3 100644 --- a/packages/turf-bearing/index.ts +++ b/packages/turf-bearing/index.ts @@ -2,13 +2,13 @@ import { Coord, degreesToRadians, radiansToDegrees } from "@turf/helpers"; import { getCoord } from "@turf/invariant"; // http://en.wikipedia.org/wiki/Haversine_formula -// http://www.movable-type.co.uk/scripts/latlong.html +// http://www.movable-type.co.uk/scripts/latlong.html#bearing /** * Takes two {@link Point|points} and finds the geographic bearing between them, * i.e. the angle measured in degrees from the north line (0 degrees) * - * @name bearing + * @function * @param {Coord} start starting Point * @param {Coord} end ending Point * @param {Object} [options={}] Optional parameters diff --git a/packages/turf-bearing/package.json b/packages/turf-bearing/package.json index a928651e4..56991cdf8 100644 --- a/packages/turf-bearing/package.json +++ b/packages/turf-bearing/package.json @@ -1,7 +1,7 @@ { "name": "@turf/bearing", - "version": "7.0.0", - "description": "turf bearing module", + "version": "7.2.0", + "description": "Takes two points and finds the geographic bearing between them.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -49,21 +49,21 @@ "test:tape": "tsx test.ts" }, "devDependencies": { - "@turf/destination": "workspace:^", + "@turf/destination": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-bezier-spline/index.ts b/packages/turf-bezier-spline/index.ts index 1334bbfc6..99599877b 100644 --- a/packages/turf-bezier-spline/index.ts +++ b/packages/turf-bezier-spline/index.ts @@ -10,7 +10,7 @@ import { Spline } from "./lib/spline.js"; * * The bezier spline implementation is by [Leszek Rybicki](http://leszek.rybicki.cc/). * - * @name bezierSpline + * @function * @param {Feature} line input LineString * @param {Object} [options={}] Optional parameters * @param {Object} [options.properties={}] Translate properties to output diff --git a/packages/turf-bezier-spline/package.json b/packages/turf-bezier-spline/package.json index a26c7cb75..400a34e74 100644 --- a/packages/turf-bezier-spline/package.json +++ b/packages/turf-bezier-spline/package.json @@ -1,7 +1,7 @@ { "name": "@turf/bezier-spline", - "version": "7.0.0", - "description": "turf bezier-spline module", + "version": "7.2.0", + "description": "Smooths a line into a curve using BΓ©zier splines, great for visualizing routes.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -53,20 +53,20 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-clockwise/index.ts b/packages/turf-boolean-clockwise/index.ts index a0579731e..16ae29c2f 100644 --- a/packages/turf-boolean-clockwise/index.ts +++ b/packages/turf-boolean-clockwise/index.ts @@ -4,7 +4,7 @@ import { getCoords } from "@turf/invariant"; /** * Takes a ring and return true or false whether or not the ring is clockwise or counter-clockwise. * - * @name booleanClockwise + * @function * @param {Feature|LineString|Array>} line to be evaluated * @returns {boolean} true/false * @example diff --git a/packages/turf-boolean-clockwise/package.json b/packages/turf-boolean-clockwise/package.json index 497b1006a..492a1324b 100755 --- a/packages/turf-boolean-clockwise/package.json +++ b/packages/turf-boolean-clockwise/package.json @@ -1,7 +1,7 @@ { "name": "@turf/boolean-clockwise", - "version": "7.0.0", - "description": "turf boolean-clockwise module", + "version": "7.2.0", + "description": "Takes a ring and return true or false whether or not the ring is clockwise or counter-clockwise.", "author": "Turf Authors", "contributors": [ "Morgan Herlocker <@morganherlocker>", @@ -57,20 +57,20 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", - "glob": "^10.3.10", + "glob": "^11.0.2", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-concave/index.ts b/packages/turf-boolean-concave/index.ts index 25d97e95c..0d4404a7f 100644 --- a/packages/turf-boolean-concave/index.ts +++ b/packages/turf-boolean-concave/index.ts @@ -4,7 +4,7 @@ import { getGeom } from "@turf/invariant"; /** * Takes a polygon and return true or false as to whether it is concave or not. * - * @name booleanConcave + * @function * @param {Feature} polygon to be evaluated * @returns {boolean} true/false * @example diff --git a/packages/turf-boolean-concave/package.json b/packages/turf-boolean-concave/package.json index a8c6e7765..377331eb7 100644 --- a/packages/turf-boolean-concave/package.json +++ b/packages/turf-boolean-concave/package.json @@ -1,7 +1,7 @@ { "name": "@turf/boolean-concave", - "version": "7.0.0", - "description": "turf boolean-concave module", + "version": "7.2.0", + "description": "Takes a polygon and return true or false as to whether it is concave or not.", "author": "Turf Authors", "contributors": [ "Rowan Winsemius <@rowanwins>" @@ -56,20 +56,20 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", - "glob": "^10.3.10", + "glob": "^11.0.2", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-contains/index.ts b/packages/turf-boolean-contains/index.ts index c7397fda8..98e390331 100644 --- a/packages/turf-boolean-contains/index.ts +++ b/packages/turf-boolean-contains/index.ts @@ -19,7 +19,7 @@ import { getGeom } from "@turf/invariant"; * must not intersect the exterior of the primary (geometry a). * Boolean-contains returns the exact opposite result of the `@turf/boolean-within`. * - * @name booleanContains + * @function * @param {Geometry|Feature} feature1 GeoJSON Feature or Geometry * @param {Geometry|Feature} feature2 GeoJSON Feature or Geometry * @returns {boolean} true/false diff --git a/packages/turf-boolean-contains/package.json b/packages/turf-boolean-contains/package.json index bb92c46b6..dd0c3eebb 100644 --- a/packages/turf-boolean-contains/package.json +++ b/packages/turf-boolean-contains/package.json @@ -1,7 +1,7 @@ { "name": "@turf/boolean-contains", - "version": "7.0.0", - "description": "turf boolean-contains module", + "version": "7.2.0", + "description": "Determines whether the second geometry is completely within the first geometry.", "author": "Turf Authors", "contributors": [ "Rowan Winsemius <@rowanwins>", @@ -56,25 +56,25 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "boolean-jsts": "*", "boolean-shapely": "*", - "glob": "^10.3.10", + "glob": "^11.0.2", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/bbox": "workspace:^", - "@turf/boolean-point-in-polygon": "workspace:^", - "@turf/boolean-point-on-line": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/bbox": "workspace:*", + "@turf/boolean-point-in-polygon": "workspace:*", + "@turf/boolean-point-on-line": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-crosses/index.ts b/packages/turf-boolean-crosses/index.ts index f706bb179..0b611ef31 100644 --- a/packages/turf-boolean-crosses/index.ts +++ b/packages/turf-boolean-crosses/index.ts @@ -13,7 +13,7 @@ import { point } from "@turf/helpers"; * Boolean-Crosses returns t (TRUE) for only multipoint/polygon, multipoint/linestring, linestring/linestring, linestring/polygon, and linestring/multipolygon comparisons. * Other comparisons are not supported as they are outside the OpenGIS Simple Features spec and may give unexpected results. * - * @name booleanCrosses + * @function * @param {Geometry|Feature} feature1 GeoJSON Feature or Geometry * @param {Geometry|Feature} feature2 GeoJSON Feature or Geometry * @returns {boolean} true/false diff --git a/packages/turf-boolean-crosses/package.json b/packages/turf-boolean-crosses/package.json index 13a2391d1..68c76231b 100644 --- a/packages/turf-boolean-crosses/package.json +++ b/packages/turf-boolean-crosses/package.json @@ -1,7 +1,7 @@ { "name": "@turf/boolean-crosses", - "version": "7.0.0", - "description": "turf boolean-crosses module", + "version": "7.2.0", + "description": "Checks if two geometries cross each other.", "author": "Turf Authors", "contributors": [ "Rowan Winsemius <@rowanwins>", @@ -56,24 +56,24 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "boolean-shapely": "*", - "glob": "^10.3.10", + "glob": "^11.0.2", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/boolean-point-in-polygon": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/line-intersect": "workspace:^", - "@turf/polygon-to-line": "workspace:^", + "@turf/boolean-point-in-polygon": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/line-intersect": "workspace:*", + "@turf/polygon-to-line": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-disjoint/README.md b/packages/turf-boolean-disjoint/README.md index 6ef10acd1..5e3140afb 100644 --- a/packages/turf-boolean-disjoint/README.md +++ b/packages/turf-boolean-disjoint/README.md @@ -12,7 +12,7 @@ Boolean-disjoint returns (TRUE) if the intersection of the two geometries is an * `feature2` **([Geometry][1] | [Feature][2]\)** GeoJSON Feature or Geometry * `options` **[Object][3]** Optional parameters (optional, default `{}`) - * `options.ignoreSelfIntersections` **[boolean][4]** ignores self-intersections on input features (optional, default `false`) + * `options.ignoreSelfIntersections` **[boolean][4]** ignore self-intersections on input features (optional, default `true`) ### Examples diff --git a/packages/turf-boolean-disjoint/index.ts b/packages/turf-boolean-disjoint/index.ts index b682dfda6..0b8158eb1 100644 --- a/packages/turf-boolean-disjoint/index.ts +++ b/packages/turf-boolean-disjoint/index.ts @@ -14,11 +14,11 @@ import { polygonToLine } from "@turf/polygon-to-line"; /** * Boolean-disjoint returns (TRUE) if the intersection of the two geometries is an empty set. * - * @name booleanDisjoint + * @function * @param {Geometry|Feature} feature1 GeoJSON Feature or Geometry * @param {Geometry|Feature} feature2 GeoJSON Feature or Geometry * @param {Object} [options={}] Optional parameters - * @param {boolean} [options.ignoreSelfIntersections=false] ignores self-intersections on input features + * @param {boolean} [options.ignoreSelfIntersections=true] ignore self-intersections on input features * @returns {boolean} true if the intersection is an empty set, false otherwise * @example * var point = turf.point([2, 2]); @@ -30,13 +30,12 @@ import { polygonToLine } from "@turf/polygon-to-line"; function booleanDisjoint( feature1: Feature | Geometry, feature2: Feature | Geometry, - options: { + { + ignoreSelfIntersections = true, + }: { ignoreSelfIntersections?: boolean; - } = {} + } = { ignoreSelfIntersections: true } ): boolean { - const ignoreSelfIntersections: boolean = - options.ignoreSelfIntersections ?? false; - let bool = true; flattenEach(feature1, (flatten1) => { flattenEach(feature2, (flatten2) => { @@ -65,7 +64,6 @@ function booleanDisjoint( function disjoint(geom1: any, geom2: any, ignoreSelfIntersections: boolean) { switch (geom1.type) { case "Point": - /* eslint-disable @typescript-eslint/no-unused-vars */ switch (geom2.type) { case "Point": return !compareCoords(geom1.coordinates, geom2.coordinates); diff --git a/packages/turf-boolean-disjoint/package.json b/packages/turf-boolean-disjoint/package.json index ae063fd86..8f0179e78 100644 --- a/packages/turf-boolean-disjoint/package.json +++ b/packages/turf-boolean-disjoint/package.json @@ -1,7 +1,7 @@ { "name": "@turf/boolean-disjoint", - "version": "7.0.0", - "description": "turf boolean-disjoint module", + "version": "7.2.0", + "description": "Checks if two geometries have no overlapping areas.", "author": "Turf Authors", "contributors": [ "Rowan Winsemius <@rowanwins>", @@ -56,23 +56,23 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "boolean-shapely": "*", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/boolean-point-in-polygon": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/line-intersect": "workspace:^", - "@turf/meta": "workspace:^", - "@turf/polygon-to-line": "workspace:^", + "@turf/boolean-point-in-polygon": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/line-intersect": "workspace:*", + "@turf/meta": "workspace:*", + "@turf/polygon-to-line": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-disjoint/test.ts b/packages/turf-boolean-disjoint/test.ts index ac92db184..391fe2571 100644 --- a/packages/turf-boolean-disjoint/test.ts +++ b/packages/turf-boolean-disjoint/test.ts @@ -14,7 +14,7 @@ test("turf-boolean-disjoint", (t) => { .sync(path.join(__dirname, "test", "true", "**", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; - const geojson = loadJsonFileSync(filepath); + const geojson: GeoJSON.FeatureCollection = loadJsonFileSync(filepath); const feature1 = geojson.features[0]; const feature2 = geojson.features[1]; const result = disjoint(feature1, feature2); @@ -30,7 +30,7 @@ test("turf-boolean-disjoint", (t) => { .sync(path.join(__dirname, "test", "false", "**", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; - const geojson = loadJsonFileSync(filepath); + const geojson: GeoJSON.FeatureCollection = loadJsonFileSync(filepath); const feature1 = geojson.features[0]; const feature2 = geojson.features[1]; const result = disjoint(feature1, feature2); @@ -117,64 +117,95 @@ test("turf-boolean-disjoin with ignoreSelfIntersections option", (t) => { }, }; - // Test without ignoringSelfIntersections option (default behavior) + const selfIntersectingPolygon: GeoJSON.Feature = { + type: "Feature", + properties: {}, + geometry: { + type: "Polygon", + coordinates: [ + [ + [1.5, 1], + [2, 1.5], + + [3, 0.5], + [-1, 3], + [1.5, 1], + ], + ], + }, + }; + + // Test with ignoringSelfIntersections = true (default behavior) let result = disjoint(selfIntersectingLineString, nonIntersectingLineString); - t.false( + t.true( result, - "[false] " + - "selfIntersectingLineString-LineString (ignoreSelfIntersections=false)" + "[true] " + + "selfIntersectingLineString-LineString (ignoreSelfIntersections=true)" ); result = disjoint(selfIntersectingLineString, intersectingLineString); t.false( result, "[false] " + - "selfIntersectingLineString-LineString (ignoreSelfIntersections=false)" + "selfIntersectingLineString-LineString (ignoreSelfIntersections=true)" ); result = disjoint(selfIntersectingLineString, intersectingPolygon); t.false( result, "[false] " + - "selfIntersectingLineString-Polygon (ignoreSelfIntersections=false)" + "selfIntersectingLineString-Polygon (ignoreSelfIntersections=true)" ); result = disjoint(selfIntersectingLineString, nonIntersectingPolygon); + t.true( + result, + "[true] " + + "selfIntersectingLineString-Polygon (ignoreSelfIntersections=true)" + ); + result = disjoint(selfIntersectingPolygon, nonIntersectingPolygon); + t.true( + result, + "[true] " + "selfIntersectingPolygon-Polygon (ignoreSelfIntersections=true)" + ); + + // Test with ignoringSelfIntersections option set to false + result = disjoint(selfIntersectingLineString, nonIntersectingLineString, { + ignoreSelfIntersections: false, + }); + t.false( + result, + "[false] " + + "selfIntersectingLineString-LineString (ignoreSelfIntersections=false)" + ); + result = disjoint(selfIntersectingLineString, intersectingLineString, { + ignoreSelfIntersections: false, + }); + t.false( + result, + "[false] " + + "selfIntersectingLineString-LineString (ignoreSelfIntersections=false)" + ); + result = disjoint(selfIntersectingLineString, intersectingPolygon, { + ignoreSelfIntersections: false, + }); t.false( result, "[false] " + "selfIntersectingLineString-Polygon (ignoreSelfIntersections=false)" ); - - // Test with ignoringSelfIntersections option - result = disjoint(selfIntersectingLineString, nonIntersectingLineString, { - ignoreSelfIntersections: true, - }); - t.true( - result, - "[true] " + - "selfIntersectingLineString-LineString (ignoreSelfIntersections=true)" - ); - result = disjoint(selfIntersectingLineString, intersectingLineString, { - ignoreSelfIntersections: true, - }); - t.false( - result, - "[false] " + - "selfIntersectingLineString-LineString (ignoreSelfIntersections=true)" - ); - result = disjoint(selfIntersectingLineString, intersectingPolygon, { - ignoreSelfIntersections: true, - }); - t.false( - result, - "[false] " + - "selfIntersectingLineString-Polygon (ignoreSelfIntersections=true)" - ); result = disjoint(selfIntersectingLineString, nonIntersectingPolygon, { - ignoreSelfIntersections: true, + ignoreSelfIntersections: false, }); - t.true( + t.false( result, - "[true] " + - "selfIntersectingLineString-Polygon (ignoreSelfIntersections=true)" + "[false] " + + "selfIntersectingLineString-Polygon (ignoreSelfIntersections=false)" + ); + result = disjoint(selfIntersectingPolygon, nonIntersectingPolygon, { + ignoreSelfIntersections: false, + }); + t.false( + result, + "[false] " + + "selfIntersectingPolygon-Polygon (ignoreSelfIntersections=false)" ); t.end(); diff --git a/packages/turf-boolean-equal/index.ts b/packages/turf-boolean-equal/index.ts index 9e009bfa2..4d44f279e 100644 --- a/packages/turf-boolean-equal/index.ts +++ b/packages/turf-boolean-equal/index.ts @@ -7,7 +7,7 @@ import { getGeom } from "@turf/invariant"; * Determine whether two geometries of the same type have identical X,Y coordinate values. * See http://edndoc.esri.com/arcsde/9.0/general_topics/understand_spatial_relations.htm * - * @name booleanEqual + * @function * @param {Geometry|Feature} feature1 GeoJSON input * @param {Geometry|Feature} feature2 GeoJSON input * @param {Object} [options={}] Optional parameters diff --git a/packages/turf-boolean-equal/package.json b/packages/turf-boolean-equal/package.json index e27c58fb2..0867a709a 100644 --- a/packages/turf-boolean-equal/package.json +++ b/packages/turf-boolean-equal/package.json @@ -1,7 +1,7 @@ { "name": "@turf/boolean-equal", - "version": "7.0.0", - "description": "turf boolean-equal module", + "version": "7.2.0", + "description": "Determine whether two geometries of the same type have identical X,Y coordinate values", "author": "Turf Authors", "contributors": [ "Tom MacWright <@tmcw>", @@ -59,23 +59,23 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "boolean-shapely": "*", - "glob": "^10.3.10", + "glob": "^11.0.2", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/clean-coords": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/clean-coords": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", "geojson-equality-ts": "^1.0.2", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-intersects/README.md b/packages/turf-boolean-intersects/README.md index 2ad0ceadb..910856c88 100644 --- a/packages/turf-boolean-intersects/README.md +++ b/packages/turf-boolean-intersects/README.md @@ -12,7 +12,7 @@ Boolean-intersects returns (TRUE) if the intersection of the two geometries is N * `feature2` **([Geometry][1] | [Feature][2]\)** GeoJSON Feature or Geometry * `options` **[Object][3]** Optional parameters (optional, default `{}`) - * `options.ignoreSelfIntersections` **[boolean][4]** ignores self-intersections on input features (optional, default `false`) + * `options.ignoreSelfIntersections` **[boolean][4]** ignore self-intersections on input features (optional, default `true`) ### Examples diff --git a/packages/turf-boolean-intersects/index.ts b/packages/turf-boolean-intersects/index.ts index 32ee289b7..50b08925f 100644 --- a/packages/turf-boolean-intersects/index.ts +++ b/packages/turf-boolean-intersects/index.ts @@ -5,11 +5,11 @@ import { flattenEach } from "@turf/meta"; /** * Boolean-intersects returns (TRUE) if the intersection of the two geometries is NOT an empty set. * - * @name booleanIntersects + * @function * @param {Geometry|Feature} feature1 GeoJSON Feature or Geometry * @param {Geometry|Feature} feature2 GeoJSON Feature or Geometry * @param {Object} [options={}] Optional parameters - * @param {boolean} [options.ignoreSelfIntersections=false] ignores self-intersections on input features + * @param {boolean} [options.ignoreSelfIntersections=true] ignore self-intersections on input features * @returns {boolean} true if geometries intersect, false otherwise * @example * var point1 = turf.point([2, 2]); @@ -30,13 +30,12 @@ import { flattenEach } from "@turf/meta"; function booleanIntersects( feature1: Feature | Geometry, feature2: Feature | Geometry, - options: { + { + ignoreSelfIntersections = true, + }: { ignoreSelfIntersections?: boolean; } = {} ) { - const ignoreSelfIntersections: boolean = - options.ignoreSelfIntersections ?? false; - let bool = false; flattenEach(feature1, (flatten1) => { flattenEach(feature2, (flatten2) => { diff --git a/packages/turf-boolean-intersects/package.json b/packages/turf-boolean-intersects/package.json index 2d51e6179..c77eaf80c 100644 --- a/packages/turf-boolean-intersects/package.json +++ b/packages/turf-boolean-intersects/package.json @@ -1,7 +1,7 @@ { "name": "@turf/boolean-intersects", - "version": "7.0.0", - "description": "turf boolean-intersects module", + "version": "7.2.0", + "description": "Checks if two geometries overlap in any way.", "author": "Turf Authors", "contributors": [ "Rowan Winsemius <@rowanwins>", @@ -57,21 +57,21 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "boolean-shapely": "*", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/boolean-disjoint": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/boolean-disjoint": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-intersects/test.ts b/packages/turf-boolean-intersects/test.ts index 0dc261338..f42de2774 100644 --- a/packages/turf-boolean-intersects/test.ts +++ b/packages/turf-boolean-intersects/test.ts @@ -122,62 +122,62 @@ test("turf-boolean-intersects with ignoreSelfIntersections option", (t) => { selfIntersectingLineString, nonIntersectingLineString ); - t.true( + t.false( result, - "[true] " + - "selfIntersectingLineString-LineString (ignoreSelfIntersections=false)" + "[false] " + + "selfIntersectingLineString-LineString (ignoreSelfIntersections=true)" ); result = intersects(selfIntersectingLineString, intersectingLineString); t.true( result, "[true] " + - "selfIntersectingLineString-LineString (ignoreSelfIntersections=false)" + "selfIntersectingLineString-LineString (ignoreSelfIntersections=true)" ); result = intersects(selfIntersectingLineString, intersectingPolygon); t.true( result, "[true] " + - "selfIntersectingLineString-Polygon (ignoreSelfIntersections=false)" + "selfIntersectingLineString-Polygon (ignoreSelfIntersections=true)" ); result = intersects(selfIntersectingLineString, nonIntersectingPolygon); - t.true( + t.false( result, - "[true] " + - "selfIntersectingLineString-Polygon (ignoreSelfIntersections=false)" + "[false] " + + "selfIntersectingLineString-Polygon (ignoreSelfIntersections=true)" ); // Test with ignoringSelfIntersections option result = intersects(selfIntersectingLineString, nonIntersectingLineString, { - ignoreSelfIntersections: true, + ignoreSelfIntersections: false, }); - t.false( + t.true( result, - "[false] " + - "selfIntersectingLineString-LineString (ignoreSelfIntersections=true)" + "[true] " + + "selfIntersectingLineString-LineString (ignoreSelfIntersections=false)" ); result = intersects(selfIntersectingLineString, intersectingLineString, { - ignoreSelfIntersections: true, + ignoreSelfIntersections: false, }); t.true( result, "[true] " + - "selfIntersectingLineString-LineString (ignoreSelfIntersections=true)" + "selfIntersectingLineString-LineString (ignoreSelfIntersections=false)" ); result = intersects(selfIntersectingLineString, intersectingPolygon, { - ignoreSelfIntersections: true, + ignoreSelfIntersections: false, }); t.true( result, "[true] " + - "selfIntersectingLineString-Polygon (ignoreSelfIntersections=true)" + "selfIntersectingLineString-Polygon (ignoreSelfIntersections=false)" ); result = intersects(selfIntersectingLineString, nonIntersectingPolygon, { - ignoreSelfIntersections: true, + ignoreSelfIntersections: false, }); - t.false( + t.true( result, - "[false] " + - "selfIntersectingLineString-Polygon (ignoreSelfIntersections=true)" + "[true] " + + "selfIntersectingLineString-Polygon (ignoreSelfIntersections=false)" ); t.end(); diff --git a/packages/turf-boolean-overlap/index.ts b/packages/turf-boolean-overlap/index.ts index fc989ace7..898ae3d7c 100644 --- a/packages/turf-boolean-overlap/index.ts +++ b/packages/turf-boolean-overlap/index.ts @@ -12,7 +12,7 @@ import { geojsonEquality } from "geojson-equality-ts"; * * In other words, it returns true if the two geometries overlap, provided that neither completely contains the other. * - * @name booleanOverlap + * @function * @param {Geometry|Feature} feature1 input * @param {Geometry|Feature} feature2 input * @returns {boolean} true/false diff --git a/packages/turf-boolean-overlap/package.json b/packages/turf-boolean-overlap/package.json index 84c477d9c..831857772 100755 --- a/packages/turf-boolean-overlap/package.json +++ b/packages/turf-boolean-overlap/package.json @@ -1,7 +1,7 @@ { "name": "@turf/boolean-overlap", - "version": "7.0.0", - "description": "turf boolean-overlap module", + "version": "7.2.0", + "description": "Checks if two geometries have an area of overlap without one being completely contained inside the other.", "author": "Turf Authors", "contributors": [ "Tim Channell <@tcql>", @@ -58,25 +58,25 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "boolean-shapely": "*", - "glob": "^10.3.10", + "glob": "^11.0.2", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/line-intersect": "workspace:^", - "@turf/line-overlap": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/line-intersect": "workspace:*", + "@turf/line-overlap": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "geojson-equality-ts": "^1.0.2", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-parallel/index.ts b/packages/turf-boolean-parallel/index.ts index ddab0c7da..10dadb900 100644 --- a/packages/turf-boolean-parallel/index.ts +++ b/packages/turf-boolean-parallel/index.ts @@ -7,7 +7,7 @@ import { bearingToAzimuth } from "@turf/helpers"; /** * Boolean-Parallel returns True if each segment of `line1` is parallel to the correspondent segment of `line2` * - * @name booleanParallel + * @function * @param {Geometry|Feature} line1 GeoJSON Feature or Geometry * @param {Geometry|Feature} line2 GeoJSON Feature or Geometry * @returns {boolean} true/false if the lines are parallel diff --git a/packages/turf-boolean-parallel/package.json b/packages/turf-boolean-parallel/package.json index a156fcf6d..35f985299 100644 --- a/packages/turf-boolean-parallel/package.json +++ b/packages/turf-boolean-parallel/package.json @@ -1,7 +1,7 @@ { "name": "@turf/boolean-parallel", - "version": "7.0.0", - "description": "turf boolean-parallel module", + "version": "7.2.0", + "description": "Determine whether each segment of a line is parallel to the correspondent segment of another line.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>" @@ -55,22 +55,22 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/clean-coords": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/line-segment": "workspace:^", - "@turf/rhumb-bearing": "workspace:^", + "@turf/clean-coords": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/line-segment": "workspace:*", + "@turf/rhumb-bearing": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-point-in-polygon/index.ts b/packages/turf-boolean-point-in-polygon/index.ts index b114d927c..b383cd9b8 100644 --- a/packages/turf-boolean-point-in-polygon/index.ts +++ b/packages/turf-boolean-point-in-polygon/index.ts @@ -16,7 +16,7 @@ import { getCoord, getGeom } from "@turf/invariant"; * 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 booleanPointInPolygon + * @function * @param {Coord} point input point * @param {Feature} polygon input polygon or multipolygon * @param {Object} [options={}] Optional parameters diff --git a/packages/turf-boolean-point-in-polygon/package.json b/packages/turf-boolean-point-in-polygon/package.json index 4e96f614d..1c97fbbd3 100644 --- a/packages/turf-boolean-point-in-polygon/package.json +++ b/packages/turf-boolean-point-in-polygon/package.json @@ -1,7 +1,7 @@ { "name": "@turf/boolean-point-in-polygon", - "version": "7.0.0", - "description": "turf boolean-point-in-polygon module", + "version": "7.2.0", + "description": "Checks if a point is inside an area, like a city boundary.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -54,19 +54,19 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", "point-in-polygon-hao": "^1.1.0", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-point-on-line/index.ts b/packages/turf-boolean-point-on-line/index.ts index 3d36c316b..df9c62522 100644 --- a/packages/turf-boolean-point-on-line/index.ts +++ b/packages/turf-boolean-point-on-line/index.ts @@ -6,7 +6,7 @@ import { getCoord, getCoords } from "@turf/invariant"; * Returns true if a point is on a line. Accepts a optional parameter to ignore the * start and end vertices of the linestring. * - * @name booleanPointOnLine + * @function * @param {Coord} pt GeoJSON Point * @param {Feature} line GeoJSON LineString * @param {Object} [options={}] Optional parameters @@ -97,6 +97,25 @@ function isPointOnLineSegment( } else if (cross !== 0) { return false; } + + // Special cases for zero length lines + // https://github.com/Turfjs/turf/issues/2750 + if (Math.abs(dxl) === Math.abs(dyl) && Math.abs(dxl) === 0) { + // Zero length line. + if (excludeBoundary) { + // To be on a zero length line pt has to be on the start (and end), BUT we + // are excluding start and end from possible matches. + return false; + } + if (pt[0] === lineSegmentStart[0] && pt[1] === lineSegmentStart[1]) { + // If point is same as start (and end) it's on the line segment + return true; + } else { + // Otherwise point is somewhere else + return false; + } + } + if (!excludeBoundary) { if (Math.abs(dxl) >= Math.abs(dyl)) { return dxl > 0 ? x1 <= x && x <= x2 : x2 <= x && x <= x1; diff --git a/packages/turf-boolean-point-on-line/package.json b/packages/turf-boolean-point-on-line/package.json index 0343a0ea9..17c7bfb4c 100644 --- a/packages/turf-boolean-point-on-line/package.json +++ b/packages/turf-boolean-point-on-line/package.json @@ -1,7 +1,7 @@ { "name": "@turf/boolean-point-on-line", - "version": "7.0.0", - "description": "turf boolean-point-on-line module", + "version": "7.2.0", + "description": "Checks if a point lies directly on a line, like a path or road.", "author": "Turf Authors", "contributors": [ "Rowan Winsemius <@rowanwins>" @@ -53,21 +53,21 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", - "glob": "^10.3.10", + "glob": "^11.0.2", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-point-on-line/test.ts b/packages/turf-boolean-point-on-line/test.ts index bbf9d39fa..dbcccb258 100644 --- a/packages/turf-boolean-point-on-line/test.ts +++ b/packages/turf-boolean-point-on-line/test.ts @@ -3,7 +3,10 @@ import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; -import { booleanPointOnLine as pointOnLine } from "./index.js"; +import { point, lineString } from "@turf/helpers"; +import booleanPointOnLine, { + booleanPointOnLine as pointOnLine, +} from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); @@ -36,3 +39,33 @@ test("turf-boolean-point-on-line", (t) => { }); t.end(); }); + +test("turf-boolean-point-on-line - issue 2750", (t) => { + // Issue 2750 was that in the first test below where point is on a different + // longitude to a zero length line booleanPointOnLine gave the correct result, + // while the second test where a point on the SAME longitude, but nowhere + // near, that zero length line incorrectly returned true. + t.false( + booleanPointOnLine( + point([2, 13]), + lineString([ + [1, 1], + [1, 1], + ]) + ), + "#2750 different longitude point not on zero length line" + ); + + t.false( + booleanPointOnLine( + point([1, 13]), + lineString([ + [1, 1], + [1, 1], + ]) + ), + "#2750 same longitude point not on zero length line" + ); + + t.end(); +}); diff --git a/packages/turf-boolean-touches/index.ts b/packages/turf-boolean-touches/index.ts index dafc15001..a1f4d7791 100644 --- a/packages/turf-boolean-touches/index.ts +++ b/packages/turf-boolean-touches/index.ts @@ -6,7 +6,8 @@ import { getGeom } from "@turf/invariant"; /** * Boolean-touches true if none of the points common to both geometries * intersect the interiors of both geometries. - * @name booleanTouches + * + * @function * @param {Geometry|Feature} feature1 GeoJSON Feature or Geometry * @param {Geometry|Feature} feature2 GeoJSON Feature or Geometry * @returns {boolean} true/false diff --git a/packages/turf-boolean-touches/package.json b/packages/turf-boolean-touches/package.json index 366395fb6..670185241 100644 --- a/packages/turf-boolean-touches/package.json +++ b/packages/turf-boolean-touches/package.json @@ -1,7 +1,7 @@ { "name": "@turf/boolean-touches", - "version": "7.0.0", - "description": "turf boolean-touches module", + "version": "7.2.0", + "description": "Determine whether none of the points common to both geometries intersect the interiors of both geometries.", "author": "Turf Authors", "contributors": [ "Rowan Winsemius <@rowanwins>" @@ -58,24 +58,24 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "boolean-jsts": "*", "boolean-shapely": "*", - "glob": "^10.3.10", + "glob": "^11.0.2", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/boolean-point-in-polygon": "workspace:^", - "@turf/boolean-point-on-line": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/boolean-point-in-polygon": "workspace:*", + "@turf/boolean-point-on-line": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-valid/index.ts b/packages/turf-boolean-valid/index.ts index f50488ac9..b61d79f3f 100644 --- a/packages/turf-boolean-valid/index.ts +++ b/packages/turf-boolean-valid/index.ts @@ -9,7 +9,7 @@ import { booleanPointOnLine as isPointOnLine } from "@turf/boolean-point-on-line /** * booleanValid checks if the geometry is a valid according to the OGC Simple Feature Specification. * - * @name booleanValid + * @function * @param {Geometry|Feature} feature GeoJSON Feature or Geometry * @returns {boolean} true/false * @example diff --git a/packages/turf-boolean-valid/package.json b/packages/turf-boolean-valid/package.json index 8a185c91a..f7d4b1612 100644 --- a/packages/turf-boolean-valid/package.json +++ b/packages/turf-boolean-valid/package.json @@ -1,7 +1,7 @@ { "name": "@turf/boolean-valid", - "version": "7.0.0", - "description": "turf boolean-valid module", + "version": "7.2.0", + "description": "Checks if the geometry is a valid according to the OGC Simple Feature Specification.", "author": "Turf Authors", "contributors": [ "Rowan Winsemius <@rowanwins>", @@ -56,30 +56,30 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "boolean-jsts": "*", "boolean-shapely": "*", - "glob": "^10.3.10", + "glob": "^11.0.2", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/bbox": "workspace:^", - "@turf/boolean-crosses": "workspace:^", - "@turf/boolean-disjoint": "workspace:^", - "@turf/boolean-overlap": "workspace:^", - "@turf/boolean-point-in-polygon": "workspace:^", - "@turf/boolean-point-on-line": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/line-intersect": "workspace:^", + "@turf/bbox": "workspace:*", + "@turf/boolean-crosses": "workspace:*", + "@turf/boolean-disjoint": "workspace:*", + "@turf/boolean-overlap": "workspace:*", + "@turf/boolean-point-in-polygon": "workspace:*", + "@turf/boolean-point-on-line": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/line-intersect": "workspace:*", "@types/geojson": "^7946.0.10", "geojson-polygon-self-intersections": "^1.2.1", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-within/index.ts b/packages/turf-boolean-within/index.ts index 762195e40..db0bf0b0a 100644 --- a/packages/turf-boolean-within/index.ts +++ b/packages/turf-boolean-within/index.ts @@ -19,7 +19,7 @@ import { getGeom } from "@turf/invariant"; * must not intersect the exterior of the secondary (geometry b). * Boolean-within returns the exact opposite result of the `@turf/boolean-contains`. * - * @name booleanWithin + * @function * @param {Geometry|Feature} feature1 GeoJSON Feature or Geometry * @param {Geometry|Feature} feature2 GeoJSON Feature or Geometry * @returns {boolean} true/false diff --git a/packages/turf-boolean-within/package.json b/packages/turf-boolean-within/package.json index fd1333093..f7322b1d4 100644 --- a/packages/turf-boolean-within/package.json +++ b/packages/turf-boolean-within/package.json @@ -1,7 +1,7 @@ { "name": "@turf/boolean-within", - "version": "7.0.0", - "description": "turf boolean-within module", + "version": "7.2.0", + "description": "Determines whether the first geometry is completely within the second geometry.", "author": "Turf Authors", "contributors": [ "Rowan Winsemius <@rowanwins>" @@ -58,25 +58,25 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "boolean-jsts": "*", "boolean-shapely": "*", - "glob": "^10.3.10", + "glob": "^11.0.2", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/bbox": "workspace:^", - "@turf/boolean-point-in-polygon": "workspace:^", - "@turf/boolean-point-on-line": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/bbox": "workspace:*", + "@turf/boolean-point-in-polygon": "workspace:*", + "@turf/boolean-point-on-line": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-buffer/README.md b/packages/turf-buffer/README.md index 664fbd028..967c3f8ec 100644 --- a/packages/turf-buffer/README.md +++ b/packages/turf-buffer/README.md @@ -4,7 +4,7 @@ ## buffer -Calculates a buffer for input features for a given radius. Units supported are miles, kilometers, and degrees. +Calculates a buffer for input features for a given radius. When using a negative radius, the resulting geometry may be invalid if it's too small compared to the radius magnitude. If the input is a @@ -18,7 +18,7 @@ the input, or even be empty. * `radius` **[number][4]** distance to draw the buffer (negative values are allowed) * `options` **[Object][5]** Optional parameters (optional, default `{}`) - * `options.units` **[string][6]** any of the options supported by turf units (optional, default `"kilometers"`) + * `options.units` **Units** Supports all valid Turf [Units][6]. (optional, default `"kilometers"`) * `options.steps` **[number][4]** number of steps (optional, default `8`) ### Examples @@ -43,7 +43,7 @@ Returns **([FeatureCollection][1] | [Feature][3]<([Polygon][7] | [MultiPolygon][ [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[6]: https://turfjs.org/docs/api/types/Units [7]: https://tools.ietf.org/html/rfc7946#section-3.1.6 diff --git a/packages/turf-buffer/index.js b/packages/turf-buffer/index.js index 78f897c42..c059be84b 100644 --- a/packages/turf-buffer/index.js +++ b/packages/turf-buffer/index.js @@ -13,7 +13,7 @@ import { const { BufferOp, GeoJSONReader, GeoJSONWriter } = jsts; /** - * Calculates a buffer for input features for a given radius. Units supported are miles, kilometers, and degrees. + * Calculates a buffer for input features for a given radius. * * When using a negative radius, the resulting geometry may be invalid if * it's too small compared to the radius magnitude. If the input is a @@ -21,11 +21,11 @@ const { BufferOp, GeoJSONReader, GeoJSONWriter } = jsts; * FeatureCollection - i.e., the output collection may have fewer members than * the input, or even be empty. * - * @name buffer + * @function * @param {FeatureCollection|Geometry|Feature} geojson input to be buffered * @param {number} radius distance to draw the buffer (negative values are allowed) * @param {Object} [options={}] Optional parameters - * @param {string} [options.units="kilometers"] any of the options supported by turf units + * @param {Units} [options.units="kilometers"] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @param {number} [options.steps=8] number of steps * @returns {FeatureCollection|Feature|undefined} buffered features * @example @@ -80,7 +80,7 @@ function buffer(geojson, radius, options) { * @private * @param {Feature} geojson input to be buffered * @param {number} radius distance to draw the buffer - * @param {string} [units='kilometers'] any of the options supported by turf units + * @param {Units} [units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @param {number} [steps=8] number of steps * @returns {Feature} buffered feature */ diff --git a/packages/turf-buffer/package.json b/packages/turf-buffer/package.json index f862b018c..03fc04b9c 100644 --- a/packages/turf-buffer/package.json +++ b/packages/turf-buffer/package.json @@ -1,7 +1,7 @@ { "name": "@turf/buffer", - "version": "7.0.0", - "description": "turf buffer module", + "version": "7.2.0", + "description": "Creates a buffer around a GeoJSON feature.", "author": "Turf Authors", "contributors": [ "Tom MacWright <@tmcw>", @@ -60,24 +60,24 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/truncate": "workspace:^", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/bbox": "workspace:^", - "@turf/center": "workspace:^", - "@turf/helpers": "workspace:^", + "@turf/bbox": "workspace:*", + "@turf/center": "workspace:*", + "@turf/helpers": "workspace:*", "@turf/jsts": "^2.7.1", - "@turf/meta": "workspace:^", - "@turf/projection": "workspace:^", + "@turf/meta": "workspace:*", + "@turf/projection": "workspace:*", "@types/geojson": "^7946.0.10", "d3-geo": "1.7.1" } diff --git a/packages/turf-center-mean/index.ts b/packages/turf-center-mean/index.ts index c94733c79..3d8814f90 100644 --- a/packages/turf-center-mean/index.ts +++ b/packages/turf-center-mean/index.ts @@ -5,7 +5,7 @@ import { isNumber, point, Id } from "@turf/helpers"; /** * Takes a {@link Feature} or {@link FeatureCollection} and returns the mean center. Can be weighted. * - * @name centerMean + * @function * @param {GeoJSON} geojson GeoJSON to be centered * @param {Object} [options={}] Optional parameters * @param {Object} [options.properties={}] Translate GeoJSON Properties to Point diff --git a/packages/turf-center-mean/package.json b/packages/turf-center-mean/package.json index 41a3c90df..a66e22205 100644 --- a/packages/turf-center-mean/package.json +++ b/packages/turf-center-mean/package.json @@ -1,7 +1,7 @@ { "name": "@turf/center-mean", - "version": "7.0.0", - "description": "turf center-mean module", + "version": "7.2.0", + "description": "Takes a Feature or FeatureCollection and returns the mean center.", "author": "Turf Authors", "contributors": [ "Moacir P. de SΓ‘ Pereira <@muziejus>" @@ -58,25 +58,25 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/center": "workspace:^", - "@turf/truncate": "workspace:^", + "@turf/center": "workspace:*", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", - "glob": "^10.3.10", + "glob": "^11.0.2", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/bbox": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/bbox": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-center-median/index.ts b/packages/turf-center-median/index.ts index 9475ee3b6..b0240ece9 100644 --- a/packages/turf-center-median/index.ts +++ b/packages/turf-center-median/index.ts @@ -43,7 +43,7 @@ import { featureEach } from "@turf/meta"; * Statistics for Geographers_, 3rd ed., New York: The Guilford * Press, 2009, 150–151. * - * @name centerMedian + * @function * @param {FeatureCollection} features Any GeoJSON Feature Collection * @param {Object} [options={}] Optional parameters * @param {string} [options.weight] the property name used to weight the center diff --git a/packages/turf-center-median/package.json b/packages/turf-center-median/package.json index 003050698..2dfa6de21 100644 --- a/packages/turf-center-median/package.json +++ b/packages/turf-center-median/package.json @@ -1,7 +1,7 @@ { "name": "@turf/center-median", - "version": "7.0.0", - "description": "turf center-median module", + "version": "7.2.0", + "description": "Takes a FeatureCollection of points and calculates the median center.", "author": "Turf Authors", "contributors": [ "Moacir P. de SΓ‘ Pereira <@muziejus>" @@ -52,28 +52,28 @@ "test:tape": "tsx test.ts" }, "devDependencies": { - "@turf/center": "workspace:^", - "@turf/center-of-mass": "workspace:^", - "@turf/random": "workspace:^", - "@turf/truncate": "workspace:^", + "@turf/center": "workspace:*", + "@turf/center-of-mass": "workspace:*", + "@turf/random": "workspace:*", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/center-mean": "workspace:^", - "@turf/centroid": "workspace:^", - "@turf/distance": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/center-mean": "workspace:*", + "@turf/centroid": "workspace:*", + "@turf/distance": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-center-of-mass/index.ts b/packages/turf-center-of-mass/index.ts index f24b55d51..819bd5583 100644 --- a/packages/turf-center-of-mass/index.ts +++ b/packages/turf-center-of-mass/index.ts @@ -8,7 +8,7 @@ import { coordEach } from "@turf/meta"; /** * Takes any {@link Feature} or a {@link FeatureCollection} and returns its [center of mass](https://en.wikipedia.org/wiki/Center_of_mass) using this formula: [Centroid of Polygon](https://en.wikipedia.org/wiki/Centroid#Centroid_of_polygon). * - * @name centerOfMass + * @function * @param {GeoJSON} geojson GeoJSON to be centered * @param {Object} [options={}] Optional Parameters * @param {Object} [options.properties={}] Translate Properties to Feature diff --git a/packages/turf-center-of-mass/package.json b/packages/turf-center-of-mass/package.json index 97a0ab2f8..c6a292f59 100644 --- a/packages/turf-center-of-mass/package.json +++ b/packages/turf-center-of-mass/package.json @@ -1,7 +1,7 @@ { "name": "@turf/center-of-mass", - "version": "7.0.0", - "description": "turf center-of-mass module", + "version": "7.2.0", + "description": "Finds the β€œbalance point” of irregular shapes, like a country outline.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -51,24 +51,24 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", - "glob": "^10.3.10", + "glob": "^11.0.2", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/centroid": "workspace:^", - "@turf/convex": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/centroid": "workspace:*", + "@turf/convex": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-center/index.ts b/packages/turf-center/index.ts index 5a599b35b..f23c8697c 100644 --- a/packages/turf-center/index.ts +++ b/packages/turf-center/index.ts @@ -5,7 +5,7 @@ import { point, Id, AllGeoJSON } from "@turf/helpers"; /** * Takes a {@link Feature} or {@link FeatureCollection} and returns the absolute center point of all features. * - * @name center + * @function * @param {GeoJSON} geojson GeoJSON to be centered * @param {Object} [options={}] Optional parameters * @param {Object} [options.properties={}] Translate GeoJSON Properties to Point diff --git a/packages/turf-center/package.json b/packages/turf-center/package.json index b6a90d7d0..7b9bd6f21 100644 --- a/packages/turf-center/package.json +++ b/packages/turf-center/package.json @@ -1,7 +1,7 @@ { "name": "@turf/center", - "version": "7.0.0", - "description": "turf center module", + "version": "7.2.0", + "description": "Finds the central point of a GeoJSON feature, like a city or a park. Ideal for placing labels or markers.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -54,24 +54,24 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/bbox-polygon": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/bbox-polygon": "workspace:*", + "@turf/meta": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", - "glob": "^10.3.10", + "glob": "^11.0.2", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/bbox": "workspace:^", - "@turf/helpers": "workspace:^", + "@turf/bbox": "workspace:*", + "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-centroid/index.ts b/packages/turf-centroid/index.ts index 7a6ac39cf..0a662e806 100644 --- a/packages/turf-centroid/index.ts +++ b/packages/turf-centroid/index.ts @@ -5,7 +5,7 @@ import { coordEach } from "@turf/meta"; /** * Computes the centroid as the mean of all vertices within the object. * - * @name centroid + * @function * @param {GeoJSON} geojson GeoJSON to be centered * @param {Object} [options={}] Optional Parameters * @param {Object} [options.properties={}] an Object that is used as the {@link Feature}'s properties diff --git a/packages/turf-centroid/package.json b/packages/turf-centroid/package.json index f214e38b5..611478290 100644 --- a/packages/turf-centroid/package.json +++ b/packages/turf-centroid/package.json @@ -1,7 +1,7 @@ { "name": "@turf/centroid", - "version": "7.0.0", - "description": "turf centroid module", + "version": "7.2.0", + "description": "Determines the geometric center of a polygon or shape.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -53,21 +53,21 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", - "glob": "^10.3.10", + "glob": "^11.0.2", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-circle/README.md b/packages/turf-circle/README.md index 89fdaa522..38c334e49 100644 --- a/packages/turf-circle/README.md +++ b/packages/turf-circle/README.md @@ -4,17 +4,17 @@ ## circle -Takes a [Point][1] and calculates the circle polygon given a radius in degrees, radians, miles, or kilometers; and steps for precision. +Takes a [Point][1] and calculates the circle polygon given a radius in [Units][2]; and steps for precision. ### Parameters -* `center` **([Feature][2]<[Point][1]> | [Array][3]<[number][4]>)** center point -* `radius` **[number][4]** radius of the circle -* `options` **[Object][5]** Optional parameters (optional, default `{}`) +* `center` **([Feature][3]<[Point][1]> | [Array][4]<[number][5]>)** center point +* `radius` **[number][5]** radius of the circle +* `options` **[Object][6]** Optional parameters (optional, default `{}`) - * `options.steps` **[number][4]** number of steps (optional, default `64`) - * `options.units` **[string][6]** miles, kilometers, degrees, or radians (optional, default `'kilometers'`) - * `options.properties` **[Object][5]** properties (optional, default `{}`) + * `options.steps` **[number][5]** number of steps (optional, default `64`) + * `options.units` **Units** Supports all valid Turf [Units][2] (optional, default `'kilometers'`) + * `options.properties` **[Object][6]** properties (optional, default `{}`) ### Examples @@ -28,19 +28,19 @@ var circle = turf.circle(center, radius, options); var addToMap = [turf.point(center), circle] ``` -Returns **[Feature][2]<[Polygon][7]>** circle polygon +Returns **[Feature][3]<[Polygon][7]>** circle polygon [1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 -[2]: https://tools.ietf.org/html/rfc7946#section-3.2 +[2]: https://turfjs.org/docs/api/types/Units -[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array +[3]: https://tools.ietf.org/html/rfc7946#section-3.2 -[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number +[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array -[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object +[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number -[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [7]: https://tools.ietf.org/html/rfc7946#section-3.1.6 diff --git a/packages/turf-circle/index.ts b/packages/turf-circle/index.ts index dd4d8d57f..397d74f1e 100644 --- a/packages/turf-circle/index.ts +++ b/packages/turf-circle/index.ts @@ -3,14 +3,14 @@ import { destination } from "@turf/destination"; import { polygon, Units } from "@turf/helpers"; /** - * Takes a {@link Point} and calculates the circle polygon given a radius in degrees, radians, miles, or kilometers; and steps for precision. + * Takes a {@link Point} and calculates the circle polygon given a radius in {@link https://turfjs.org/docs/api/types/Units Units}; and steps for precision. * - * @name circle + * @function * @param {Feature|number[]} center center point * @param {number} radius radius of the circle * @param {Object} [options={}] Optional parameters * @param {number} [options.steps=64] number of steps - * @param {string} [options.units='kilometers'] miles, kilometers, degrees, or radians + * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @param {Object} [options.properties={}] properties * @returns {Feature} circle polygon * @example diff --git a/packages/turf-circle/package.json b/packages/turf-circle/package.json index 7ab568c60..45fba299e 100644 --- a/packages/turf-circle/package.json +++ b/packages/turf-circle/package.json @@ -1,7 +1,7 @@ { "name": "@turf/circle", - "version": "7.0.0", - "description": "turf circle module", + "version": "7.2.0", + "description": "Takes a point and calculates the circle polygon given a radius.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -55,22 +55,22 @@ }, "devDependencies": { "@placemarkio/check-geojson": "^0.1.12", - "@turf/truncate": "workspace:^", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/destination": "workspace:^", - "@turf/helpers": "workspace:^", + "@turf/destination": "workspace:*", + "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-clean-coords/index.ts b/packages/turf-clean-coords/index.ts index a1ff53c02..9c8660252 100644 --- a/packages/turf-clean-coords/index.ts +++ b/packages/turf-clean-coords/index.ts @@ -1,13 +1,15 @@ import { Position } from "geojson"; import { feature } from "@turf/helpers"; import { getCoords, getType } from "@turf/invariant"; +import { booleanPointOnLine } from "@turf/boolean-point-on-line"; +import { lineString } from "@turf/helpers"; // To-Do => Improve Typescript GeoJSON handling /** * Removes redundant coordinates from any GeoJSON Geometry. * - * @name cleanCoords + * @function * @param {Geometry|Feature} geojson Feature or Geometry * @param {Object} [options={}] Optional parameters * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated @@ -99,61 +101,70 @@ function cleanCoords( * @returns {Array} Cleaned coordinates */ function cleanLine(line: Position[], type: string) { - var points = getCoords(line); + const points = getCoords(line); // handle "clean" segment if (points.length === 2 && !equals(points[0], points[1])) return points; - var newPoints = []; - var secondToLast = points.length - 1; - var newPointsLength = newPoints.length; + const newPoints = []; - newPoints.push(points[0]); - for (var i = 1; i < secondToLast; i++) { - var prevAddedPoint = newPoints[newPoints.length - 1]; + // Segments based approach. With initial segment a-b, keep comparing to a + // longer segment a-c and as long as b is still on a-c, b is a redundant + // point. + let a = 0, + b = 1, + c = 2; + + // Guaranteed we'll use the first point. + newPoints.push(points[a]); + // While there is still room to extend the segment ... + while (c < points.length) { + if (booleanPointOnLine(points[b], lineString([points[a], points[c]]))) { + // b is on a-c, so we can discard point b, and extend a-b to be the same + // as a-c as the basis for comparison during the next iteration. + b = c; + } else { + // b is NOT on a-c, suggesting a-c is not an extension of a-b. Commit a-b + // as a necessary segment. + newPoints.push(points[b]); + + // Make our a-b for the next iteration start from the end of the segment + // that was just locked in i.e. next a-b should be the current b-(b+1). + a = b; + b++; + c = b; + } + // Plan to look at the next point during the next iteration. + c++; + } + // No remaining points, so commit the current a-b segment. + newPoints.push(points[b]); + + if (type === "Polygon" || type === "MultiPolygon") { + // For polygons need to make sure the start / end point wasn't one of the + // points that needed to be cleaned. + // https://github.com/Turfjs/turf/issues/2406 + // For points [a, b, c, ..., z, a] + // if a is on line b-z, it too can be removed. New array becomes + // [b, c, ..., z, b] if ( - points[i][0] === prevAddedPoint[0] && - points[i][1] === prevAddedPoint[1] - ) - continue; - else { - newPoints.push(points[i]); - newPointsLength = newPoints.length; - if (newPointsLength > 2) { - if ( - isPointOnLineSegment( - newPoints[newPointsLength - 3], - newPoints[newPointsLength - 1], - newPoints[newPointsLength - 2] - ) - ) - newPoints.splice(newPoints.length - 2, 1); - } + booleanPointOnLine( + newPoints[0], + lineString([newPoints[1], newPoints[newPoints.length - 2]]) + ) + ) { + newPoints.shift(); // Discard starting point. + newPoints.pop(); // Discard closing point. + newPoints.push(newPoints[0]); // Duplicate the new closing point to end of array. + } + + // (Multi)Polygons must have at least 4 points and be closed. + if (newPoints.length < 4) { + throw new Error("invalid polygon, fewer than 4 points"); + } + if (!equals(newPoints[0], newPoints[newPoints.length - 1])) { + throw new Error("invalid polygon, first and last points not equal"); } } - newPoints.push(points[points.length - 1]); - newPointsLength = newPoints.length; - - // (Multi)Polygons must have at least 4 points, but a closed LineString with only 3 points is acceptable - if ( - (type === "Polygon" || type === "MultiPolygon") && - equals(points[0], points[points.length - 1]) && - newPointsLength < 4 - ) { - throw new Error("invalid polygon"); - } - - if (type === "LineString" && newPointsLength < 3) { - return newPoints; - } - - if ( - isPointOnLineSegment( - newPoints[newPointsLength - 3], - newPoints[newPointsLength - 1], - newPoints[newPointsLength - 2] - ) - ) - newPoints.splice(newPoints.length - 2, 1); return newPoints; } @@ -170,35 +181,5 @@ function equals(pt1: Position, pt2: Position) { return pt1[0] === pt2[0] && pt1[1] === pt2[1]; } -/** - * Returns if `point` is on the segment between `start` and `end`. - * Borrowed from `@turf/boolean-point-on-line` to speed up the evaluation (instead of using the module as dependency) - * - * @private - * @param {Position} start coord pair of start of line - * @param {Position} end coord pair of end of line - * @param {Position} point coord pair of point to check - * @returns {boolean} true/false - */ -function isPointOnLineSegment(start: Position, end: Position, point: Position) { - var x = point[0], - y = point[1]; - var startX = start[0], - startY = start[1]; - var endX = end[0], - endY = end[1]; - - var dxc = x - startX; - var dyc = y - startY; - var dxl = endX - startX; - var dyl = endY - startY; - var cross = dxc * dyl - dyc * dxl; - - if (cross !== 0) return false; - else if (Math.abs(dxl) >= Math.abs(dyl)) - return dxl > 0 ? startX <= x && x <= endX : endX <= x && x <= startX; - else return dyl > 0 ? startY <= y && y <= endY : endY <= y && y <= startY; -} - export { cleanCoords }; export default cleanCoords; diff --git a/packages/turf-clean-coords/package.json b/packages/turf-clean-coords/package.json index 999bc68d9..050929d88 100644 --- a/packages/turf-clean-coords/package.json +++ b/packages/turf-clean-coords/package.json @@ -1,10 +1,11 @@ { "name": "@turf/clean-coords", - "version": "7.0.0", - "description": "turf clean-coords module", + "version": "7.2.0", + "description": "Removes redundant coordinates from a GeoJSON Geometry.", "author": "Turf Authors", "contributors": [ - "Stefano Borghi <@stebogit>" + "Stefano Borghi <@stebogit>", + "James Beard <@smallsaucepan>" ], "license": "MIT", "bugs": { @@ -54,22 +55,24 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/truncate": "workspace:^", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", + "geojson-equality-ts": "^1.0.2", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/boolean-point-on-line": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-clean-coords/test.ts b/packages/turf-clean-coords/test.ts index 60f77f4cf..8bd99215f 100644 --- a/packages/turf-clean-coords/test.ts +++ b/packages/turf-clean-coords/test.ts @@ -1,6 +1,7 @@ import fs from "fs"; import test from "tape"; import path from "path"; +import { geojsonEquality } from "geojson-equality-ts"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { truncate } from "@turf/truncate"; @@ -38,7 +39,10 @@ test("turf-clean-coords", (t) => { if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); - t.deepEqual(results, loadJsonFileSync(directories.out + filename), name); + t.true( + geojsonEquality(results, loadJsonFileSync(directories.out + filename)), + name + ); }); t.end(); }); @@ -151,3 +155,166 @@ test("turf-clean-coords -- prevent input mutation", (t) => { t.deepEqual(multiPolyBefore, multiPoly, "multiPolygon should NOT be mutated"); t.end(); }); + +test("turf-clean-coords - north south lines - issue 2305", (t) => { + // From https://github.com/Turfjs/turf/issues/2305#issue-1287442870 + t.deepEqual( + cleanCoords( + lineString([ + [0, 0], + [0, 1], + [0, 0], + ]) + ), + lineString([ + [0, 0], + [0, 1], + [0, 0], + ]), + "northern turnaround point is kept" + ); + + // From https://github.com/Turfjs/turf/issues/2305#issue-1287442870 + t.deepEqual( + cleanCoords( + lineString([ + [0, 0], + [0, 0], + [0, 2], + [0, 2], + [0, 0], + ]) + ), + lineString([ + [0, 0], + [0, 2], + [0, 0], + ]), + "northern turnaround point is kept" + ); + + t.end(); +}); + +test("turf-clean-coords - overly aggressive removal - issue 2740", (t) => { + // Issue 2740 is cleanCoords was too aggresive at removing points. + t.deepEqual( + cleanCoords( + lineString([ + [0, 0], + [0, 2], + [0, 0], + ]) + ), + lineString([ + [0, 0], + [0, 2], + [0, 0], + ]), + "north-south retraced line turnaround point kept" + ); + + t.deepEqual( + cleanCoords( + lineString([ + [0, 0], + [0, 1], + [0, 2], + [0, 3], + [0, 0], + ]) + ), + lineString([ + [0, 0], + [0, 3], + [0, 0], + ]), + "north-south retraced line properly cleaned" + ); + + t.deepEqual( + cleanCoords( + lineString([ + [0, 0], + [0, 1], + [0, 2], + [0, -2], + [0, -1], + [0, 0], + ]) + ), + lineString([ + [0, 0], + [0, 2], + [0, -2], + [0, 0], + ]), + "north-south retraced past origin and back to start line properly cleaned" + ); + + t.end(); +}); + +test("turf-clean-coords - start point protected - issue 2406", (t) => { + t.true( + geojsonEquality( + cleanCoords( + polygon([ + [ + [1, 3], // a + [3, 3], // b + [3, 1], // c + [3, -3], // d + [-3, -3], // e + [-3, 3], // f + [1, 3], // a + ], + ]) + ), + polygon([ + [ + [-3, 3], // f + [3, 3], // b + [3, -3], // d + [-3, -3], // e + [-3, 3], // f + ], + ]) + ), + "polygon start point (a) was also removed" + ); + + t.end(); +}); + +test("turf-clean-coords - multipolygon - issue #918", (t) => { + // Copied from turf-simplify as (at heart) it's cleanCoords that's being + // tested here. + // simplify hangs on this input #918 + t.throws( + () => + cleanCoords( + multiPolygon([ + [ + [ + [0, 90], + [0, 90], + [0, 90], + [0, 90], + [0, 90], + [0, 90], + [0, 90], + [0, 90], + [0, 90], + [0, 90], + [0, 90], + ], + ], + ]) + ), + /invalid polygon/, + "invalid polygon" + ); + + t.end(); +}); diff --git a/packages/turf-clone/index.ts b/packages/turf-clone/index.ts index 206ec7318..72aa3db1c 100644 --- a/packages/turf-clone/index.ts +++ b/packages/turf-clone/index.ts @@ -5,7 +5,7 @@ import { AllGeoJSON } from "@turf/helpers"; * Returns a cloned copy of the passed GeoJSON Object, including possible 'Foreign Members'. * ~3-5x faster than the common JSON.parse + JSON.stringify combo method. * - * @name clone + * @function * @param {GeoJSON} geojson GeoJSON Object * @returns {GeoJSON} cloned GeoJSON Object * @example diff --git a/packages/turf-clone/package.json b/packages/turf-clone/package.json index 534675975..58e7b95a8 100644 --- a/packages/turf-clone/package.json +++ b/packages/turf-clone/package.json @@ -1,7 +1,7 @@ { "name": "@turf/clone", - "version": "7.0.0", - "description": "turf clone module", + "version": "7.2.0", + "description": "Returns a cloned copy of the passed GeoJSON Object, including possible 'Foreign Members'.", "author": "Turf Authors", "contributors": [ "Denis Carriere <@DenisCarriere>" @@ -53,19 +53,19 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/meta": "workspace:^", + "@turf/meta": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/helpers": "workspace:^", + "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-clone/test.ts b/packages/turf-clone/test.ts index 7e47d9ca0..4564e794d 100644 --- a/packages/turf-clone/test.ts +++ b/packages/turf-clone/test.ts @@ -3,6 +3,7 @@ import { point, lineString, polygon, + feature, featureCollection, geometryCollection, } from "@turf/helpers"; @@ -319,3 +320,29 @@ test("turf-clone -- Feature with null geometry", (t) => { t.deepEqual(fc, cloned); t.end(); }); + +test("turf-clone -- Feature with property called 'length', issue #1621", (t) => { + const f = feature( + { type: "Point", coordinates: [0, 0] }, + { + processed: { + length: { + orig: 123.456, + opti: 100.0, + }, + }, + } + ); + + // Clone + const cloned = clone(f); + + t.deepEqual(f, cloned, "cloned feature should be deeply equal"); + t.equal( + cloned.properties.processed.length.orig, + 123.456, + "'orig' property should be preserved on 'processed.length' element" + ); + + t.end(); +}); diff --git a/packages/turf-clusters-dbscan/README.md b/packages/turf-clusters-dbscan/README.md index 2b4c8d107..0fc6b5639 100644 --- a/packages/turf-clusters-dbscan/README.md +++ b/packages/turf-clusters-dbscan/README.md @@ -2,19 +2,38 @@ +## Dbscan + +Point classification within the cluster. + +Type: (`"core"` | `"edge"` | `"noise"`) + +## DbscanProps + +**Extends GeoJsonProperties** + +Properties assigned to each clustered point. + +Type: [object][1] + +### Properties + +* `dbscan` **[Dbscan][2]?** type of point it has been classified as +* `cluster` **[number][3]?** associated clusterId + ## clustersDbscan -Takes a set of [points][1] and partition them into clusters according to [https://en.wikipedia.org/wiki/DBSCAN][2] data clustering algorithm. +Takes a set of [points][4] and partition them into clusters according to [DBSCAN's][5] data clustering algorithm. ### Parameters -* `points` **[FeatureCollection][3]<[Point][1]>** to be clustered -* `maxDistance` **[number][4]** Maximum Distance between any point of the cluster to generate the clusters (kilometers by default, see options) -* `options` **[Object][5]** Optional parameters (optional, default `{}`) +* `points` **[FeatureCollection][6]<[Point][4]>** to be clustered +* `maxDistance` **[number][3]** Maximum Distance between any point of the cluster to generate the clusters (kilometers by default, see options) +* `options` **[Object][1]** Optional parameters (optional, default `{}`) - * `options.units` **[string][6]** in which `maxDistance` is expressed, can be degrees, radians, miles, or kilometers (optional, default `"kilometers"`) - * `options.mutate` **[boolean][7]** Allows GeoJSON input to be mutated (optional, default `false`) - * `options.minPoints` **[number][4]** Minimum number of points to generate a single cluster, + * `options.units` **Units** in which `maxDistance` is expressed, Supports all valid Turf [Units][7] (optional, default `"kilometers"`) + * `options.mutate` **[boolean][8]** Allows GeoJSON input to be mutated (optional, default `false`) + * `options.minPoints` **[number][3]** Minimum number of points to generate a single cluster, points which do not meet this requirement will be classified as an 'edge' or 'noise'. (optional, default `3`) ### Examples @@ -29,22 +48,26 @@ var clustered = turf.clustersDbscan(points, maxDistance); var addToMap = [clustered]; ``` -Returns **[FeatureCollection][3]<[Point][1]>** Clustered Points with an additional two properties associated to each Feature:* {number} cluster - the associated clusterId +Returns **[FeatureCollection][6]<[Point][4], [DbscanProps][9]>** Clustered Points with an additional two properties associated to each Feature:* {number} cluster - the associated clusterId * {string} dbscan - type of point it has been classified as ('core'|'edge'|'noise') -[1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 +[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[2]: DBSCAN's +[2]: #dbscan -[3]: https://tools.ietf.org/html/rfc7946#section-3.3 +[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number -[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number +[4]: https://tools.ietf.org/html/rfc7946#section-3.1.2 -[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object +[5]: https://en.wikipedia.org/wiki/DBSCAN -[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[6]: https://tools.ietf.org/html/rfc7946#section-3.3 -[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean +[7]: https://turfjs.org/docs/api/types/Units + +[8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean + +[9]: #dbscanprops diff --git a/packages/turf-clusters-dbscan/index.ts b/packages/turf-clusters-dbscan/index.ts index fa89f4e8b..930c77e89 100644 --- a/packages/turf-clusters-dbscan/index.ts +++ b/packages/turf-clusters-dbscan/index.ts @@ -4,7 +4,21 @@ import { distance } from "@turf/distance"; import { degreesToRadians, lengthToDegrees, Units } from "@turf/helpers"; import { rbush as RBush } from "./lib/rbush-export.js"; +/** + * Point classification within the cluster. + * + * @typedef {"core" | "edge" | "noise"} Dbscan + */ type Dbscan = "core" | "edge" | "noise"; + +/** + * Properties assigned to each clustered point. + * + * @extends GeoJsonProperties + * @typedef {object} DbscanProps + * @property {Dbscan} [dbscan] type of point it has been classified as + * @property {number} [cluster] associated clusterId + */ type DbscanProps = GeoJsonProperties & { dbscan?: Dbscan; cluster?: number; @@ -20,17 +34,17 @@ type IndexedPoint = { }; /** - * Takes a set of {@link Point|points} and partition them into clusters according to {@link DBSCAN's|https://en.wikipedia.org/wiki/DBSCAN} data clustering algorithm. + * Takes a set of {@link Point|points} and partition them into clusters according to {@link https://en.wikipedia.org/wiki/DBSCAN|DBSCAN's} data clustering algorithm. * - * @name clustersDbscan + * @function * @param {FeatureCollection} points to be clustered * @param {number} maxDistance Maximum Distance between any point of the cluster to generate the clusters (kilometers by default, see options) * @param {Object} [options={}] Optional parameters - * @param {string} [options.units="kilometers"] in which `maxDistance` is expressed, can be degrees, radians, miles, or kilometers + * @param {Units} [options.units="kilometers"] in which `maxDistance` is expressed, Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @param {boolean} [options.mutate=false] Allows GeoJSON input to be mutated * @param {number} [options.minPoints=3] Minimum number of points to generate a single cluster, * points which do not meet this requirement will be classified as an 'edge' or 'noise'. - * @returns {FeatureCollection} Clustered Points with an additional two properties associated to each Feature: + * @returns {FeatureCollection} Clustered Points with an additional two properties associated to each Feature: * - {number} cluster - the associated clusterId * - {string} dbscan - type of point it has been classified as ('core'|'edge'|'noise') * @example diff --git a/packages/turf-clusters-dbscan/package.json b/packages/turf-clusters-dbscan/package.json index 91d956189..33a6d757a 100644 --- a/packages/turf-clusters-dbscan/package.json +++ b/packages/turf-clusters-dbscan/package.json @@ -1,7 +1,7 @@ { "name": "@turf/clusters-dbscan", - "version": "7.0.0", - "description": "turf clusters-dbscan module", + "version": "7.2.0", + "description": "Takes a set of points and partition them into clusters according to DBSCAN's data clustering algorithm.", "author": "Turf Authors", "contributors": [ "Lukasz <@uhho>", @@ -60,29 +60,29 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/centroid": "workspace:^", - "@turf/clusters": "workspace:^", + "@turf/centroid": "workspace:*", + "@turf/clusters": "workspace:*", "@types/benchmark": "^2.1.5", "@types/rbush": "^3.0.2", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "chromatism": "^3.0.0", "concaveman": "^1.2.1", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/clone": "workspace:^", - "@turf/distance": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/clone": "workspace:*", + "@turf/distance": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "rbush": "^3.0.1", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-clusters-kmeans/index.ts b/packages/turf-clusters-kmeans/index.ts index fdc85be83..df7e44141 100644 --- a/packages/turf-clusters-kmeans/index.ts +++ b/packages/turf-clusters-kmeans/index.ts @@ -12,7 +12,7 @@ type KmeansProps = GeoJsonProperties & { * Takes a set of {@link Point|points} and partition them into clusters using the k-mean . * It uses the [k-means algorithm](https://en.wikipedia.org/wiki/K-means_clustering) * - * @name clustersKmeans + * @function * @param {FeatureCollection} points to be clustered * @param {Object} [options={}] Optional parameters * @param {number} [options.numberOfClusters=Math.sqrt(numberOfPoints/2)] numberOfClusters that will be generated diff --git a/packages/turf-clusters-kmeans/package.json b/packages/turf-clusters-kmeans/package.json index f9bdcbc82..8bbde39c3 100644 --- a/packages/turf-clusters-kmeans/package.json +++ b/packages/turf-clusters-kmeans/package.json @@ -1,7 +1,7 @@ { "name": "@turf/clusters-kmeans", - "version": "7.0.0", - "description": "turf clusters-kmeans module", + "version": "7.2.0", + "description": "Takes a set of points and partition them into clusters using the k-means algorithm.", "author": "Turf Authors", "contributors": [ "David GΓ³mez Matarrodona <@solzimer>", @@ -59,30 +59,30 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/centroid": "workspace:^", - "@turf/clusters": "workspace:^", - "@turf/random": "workspace:^", + "@turf/centroid": "workspace:*", + "@turf/clusters": "workspace:*", + "@turf/random": "workspace:*", "@types/benchmark": "^2.1.5", "@types/skmeans": "^0.11.7", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "chromatism": "^3.0.0", "concaveman": "^1.2.1", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/clone": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/clone": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "skmeans": "0.9.7", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-clusters/README.md b/packages/turf-clusters/README.md index 51531ab0f..0183e7a6a 100644 --- a/packages/turf-clusters/README.md +++ b/packages/turf-clusters/README.md @@ -60,7 +60,7 @@ clusterEach * `geojson` **[FeatureCollection][1]** GeoJSON Features * `property` **([string][4] | [number][3])** GeoJSON property key/value used to create clusters -* `callback` **[Function][2]** a method that takes (cluster, clusterValue, currentIndex) +* `callback` **[clusterEachCallback][5]** a method that takes (cluster, clusterValue, currentIndex) ### Examples @@ -126,6 +126,8 @@ Type: [Function][2] * `currentIndex` **[number][3]?** The index of the current element being processed in the array. Starts at index 0, if an initialValue is provided, and at index 1 otherwise. +Returns **void** + ## clusterReduce Reduce clusters in GeoJSON Features, similar to Array.reduce() @@ -134,7 +136,7 @@ Reduce clusters in GeoJSON Features, similar to Array.reduce() * `geojson` **[FeatureCollection][1]** GeoJSON Features * `property` **([string][4] | [number][3])** GeoJSON property key/value used to create clusters -* `callback` **[Function][2]** a method that takes (previousValue, cluster, clusterValue, currentIndex) +* `callback` **[clusterReduceCallback][6]** a method that takes (previousValue, cluster, clusterValue, currentIndex) * `initialValue` **any?** Value to use as the first argument to the first call of the callback. ### Examples @@ -182,6 +184,10 @@ Returns **any** The value that results from the reduction. [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[5]: #clustereachcallback + +[6]: #clusterreducecallback + --- diff --git a/packages/turf-clusters/index.ts b/packages/turf-clusters/index.ts index 0d72b2abc..e1bd22343 100644 --- a/packages/turf-clusters/index.ts +++ b/packages/turf-clusters/index.ts @@ -10,7 +10,7 @@ import { featureCollection } from "@turf/helpers"; /** * Get Cluster * - * @name getCluster + * @function * @param {FeatureCollection} geojson GeoJSON Features * @param {*} filter Filter used on GeoJSON properties to get Cluster * @returns {FeatureCollection} Single Cluster filtered by GeoJSON Properties @@ -60,7 +60,7 @@ function getCluster< * * @callback clusterEachCallback * @param {FeatureCollection} [cluster] The current cluster being processed. - * @param {*} [clusterValue] Value used to create cluster being processed. + * @param {any} [clusterValue] Value used to create cluster being processed. * @param {number} [currentIndex] The index of the current element being processed in the array.Starts at index 0 * @returns {void} */ @@ -68,10 +68,10 @@ function getCluster< /** * clusterEach * - * @name clusterEach + * @function * @param {FeatureCollection} geojson GeoJSON Features * @param {string|number} property GeoJSON property key/value used to create clusters - * @param {Function} callback a method that takes (cluster, clusterValue, currentIndex) + * @param {clusterEachCallback} callback a method that takes (cluster, clusterValue, currentIndex) * @returns {void} * @example * var geojson = turf.featureCollection([ @@ -158,17 +158,18 @@ function clusterEach< * @param {*} [clusterValue] Value used to create cluster being processed. * @param {number} [currentIndex] The index of the current element being processed in the * array. Starts at index 0, if an initialValue is provided, and at index 1 otherwise. + * @returns {void} */ /** * Reduce clusters in GeoJSON Features, similar to Array.reduce() * - * @name clusterReduce + * @function * @param {FeatureCollection} geojson GeoJSON Features * @param {string|number} property GeoJSON property key/value used to create clusters - * @param {Function} callback a method that takes (previousValue, cluster, clusterValue, currentIndex) - * @param {*} [initialValue] Value to use as the first argument to the first call of the callback. - * @returns {*} The value that results from the reduction. + * @param {clusterReduceCallback} callback a method that takes (previousValue, cluster, clusterValue, currentIndex) + * @param {any} [initialValue] Value to use as the first argument to the first call of the callback. + * @returns {any} The value that results from the reduction. * @example * var geojson = turf.featureCollection([ * turf.point([0, 0]), diff --git a/packages/turf-clusters/package.json b/packages/turf-clusters/package.json index 42327c96d..38b58aa93 100644 --- a/packages/turf-clusters/package.json +++ b/packages/turf-clusters/package.json @@ -1,7 +1,7 @@ { "name": "@turf/clusters", - "version": "7.0.0", - "description": "turf clusters module", + "version": "7.2.0", + "description": "Group points into clusters based on their spatial proximity or properties.", "author": "Turf Authors", "contributors": [ "Denis Carriere <@DenisCarriere>" @@ -57,18 +57,18 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-collect/index.ts b/packages/turf-collect/index.ts index bde4e7c06..2811a522a 100644 --- a/packages/turf-collect/index.ts +++ b/packages/turf-collect/index.ts @@ -18,7 +18,7 @@ interface Entry { * `inProperty` values from those points, and adds them as an array to `outProperty` * on the polygon. * - * @name collect + * @function * @param {FeatureCollection} polygons polygons with values on which to aggregate * @param {FeatureCollection} points points to be aggregated * @param {string} inProperty property to be nested from diff --git a/packages/turf-collect/package.json b/packages/turf-collect/package.json index 4960b76c1..c7ed0106e 100644 --- a/packages/turf-collect/package.json +++ b/packages/turf-collect/package.json @@ -1,7 +1,7 @@ { "name": "@turf/collect", - "version": "7.0.0", - "description": "turf collect module", + "version": "7.2.0", + "description": "Merges a specified property from a FeatureCollection of points into a FeatureCollection of polygons.", "author": "Turf Authors", "contributors": [ "Rowan Winsemius <@rowanwins>" @@ -58,20 +58,20 @@ "devDependencies": { "@types/benchmark": "^2.1.5", "@types/rbush": "^3.0.2", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/bbox": "workspace:^", - "@turf/boolean-point-in-polygon": "workspace:^", - "@turf/helpers": "workspace:^", + "@turf/bbox": "workspace:*", + "@turf/boolean-point-in-polygon": "workspace:*", + "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", "rbush": "^3.0.1", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-combine/index.ts b/packages/turf-combine/index.ts index e3e72a4a4..21650bff5 100644 --- a/packages/turf-combine/index.ts +++ b/packages/turf-combine/index.ts @@ -15,7 +15,7 @@ import { featureEach } from "@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 + * @function * @param {FeatureCollection} fc a FeatureCollection of any type * @returns {FeatureCollection} a FeatureCollection of corresponding type to input * @example diff --git a/packages/turf-combine/package.json b/packages/turf-combine/package.json index 4a179baea..55b91c19b 100644 --- a/packages/turf-combine/package.json +++ b/packages/turf-combine/package.json @@ -1,7 +1,7 @@ { "name": "@turf/combine", - "version": "7.0.0", - "description": "turf combine module", + "version": "7.2.0", + "description": "Combines a FeatureCollection of Point, LineString, or Polygon features into MultiPoint, MultiLineString, or MultiPolygon features.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -53,18 +53,18 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-concave/README.md b/packages/turf-concave/README.md index eb903ad4c..6bfe759f3 100644 --- a/packages/turf-concave/README.md +++ b/packages/turf-concave/README.md @@ -14,7 +14,7 @@ Internally, this uses [turf-tin][2] to generate geometries. * `options.maxEdge` **[number][5]** the length (in 'units') of an edge necessary for part of the hull to become concave. (optional, default `Infinity`) - * `options.units` **[string][6]** can be degrees, radians, miles, or kilometers (optional, default `'kilometers'`) + * `options.units` **Units** Supports all valid Turf [Units][6]. (optional, default `'kilometers'`) ### Examples @@ -47,7 +47,7 @@ Returns **([Feature][7]<([Polygon][8] | [MultiPolygon][9])> | null)** a concave [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number -[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[6]: https://turfjs.org/docs/api/types/Units [7]: https://tools.ietf.org/html/rfc7946#section-3.2 diff --git a/packages/turf-concave/index.ts b/packages/turf-concave/index.ts index d0a87b5c5..0a0a63f06 100644 --- a/packages/turf-concave/index.ts +++ b/packages/turf-concave/index.ts @@ -16,12 +16,12 @@ import { dissolve } from "./lib/turf-dissolve.js"; * Takes a set of {@link Point|points} and returns a concave hull Polygon or MultiPolygon. * Internally, this uses [turf-tin](https://github.com/Turfjs/turf-tin) to generate geometries. * - * @name concave + * @function * @param {FeatureCollection} points input points * @param {Object} [options={}] Optional parameters * @param {number} [options.maxEdge=Infinity] the length (in 'units') of an edge necessary for part of the * hull to become concave. - * @param {string} [options.units='kilometers'] can be degrees, radians, miles, or kilometers + * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @returns {Feature<(Polygon|MultiPolygon)>|null} a concave hull (null value is returned if unable to compute hull) * @example * var points = turf.featureCollection([ diff --git a/packages/turf-concave/package.json b/packages/turf-concave/package.json index cf8b5fd5b..94a0e3672 100644 --- a/packages/turf-concave/package.json +++ b/packages/turf-concave/package.json @@ -1,7 +1,7 @@ { "name": "@turf/concave", - "version": "7.0.0", - "description": "turf concave module", + "version": "7.2.0", + "description": "Creates a concave hull around points.", "author": "Turf Authors", "contributors": [ "Tom MacWright <@tmcw>", @@ -63,28 +63,28 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "@types/topojson-client": "3.1.3", "@types/topojson-server": "3.0.3", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/clone": "workspace:^", - "@turf/distance": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/meta": "workspace:^", - "@turf/tin": "workspace:^", + "@turf/clone": "workspace:*", + "@turf/distance": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/meta": "workspace:*", + "@turf/tin": "workspace:*", "@types/geojson": "^7946.0.10", "topojson-client": "3.x", "topojson-server": "3.x", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-convex/index.ts b/packages/turf-convex/index.ts index d89cc7c4d..d7969ec59 100644 --- a/packages/turf-convex/index.ts +++ b/packages/turf-convex/index.ts @@ -10,7 +10,7 @@ import concaveman from "concaveman"; * 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 + * @function * @param {GeoJSON} geojson input Feature or FeatureCollection * @param {Object} [options={}] Optional parameters * @param {number} [options.concavity=Infinity] 1 - thin shape. Infinity - convex hull. diff --git a/packages/turf-convex/package.json b/packages/turf-convex/package.json index 1dae22443..3ebb1b6d1 100644 --- a/packages/turf-convex/package.json +++ b/packages/turf-convex/package.json @@ -1,7 +1,7 @@ { "name": "@turf/convex", - "version": "7.0.0", - "description": "turf convex module", + "version": "7.2.0", + "description": "Creates a convex hull around points", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -51,22 +51,22 @@ "devDependencies": { "@types/benchmark": "^2.1.5", "@types/concaveman": "^1.1.6", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", - "glob": "^10.3.10", + "glob": "^11.0.2", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "concaveman": "^1.2.1", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-destination/README.md b/packages/turf-destination/README.md index c2f0f5880..fa4e51525 100644 --- a/packages/turf-destination/README.md +++ b/packages/turf-destination/README.md @@ -15,7 +15,7 @@ This uses the [Haversine formula][2] to account for global curvature. * `bearing` **[number][4]** ranging from -180 to 180 * `options` **[Object][5]** Optional parameters (optional, default `{}`) - * `options.units` **[string][6]** miles, kilometers, degrees, or radians (optional, default `'kilometers'`) + * `options.units` **Units** Supports all valid Turf [Units][6] (optional, default `'kilometers'`) * `options.properties` **[Object][5]** Translate properties to Point (optional, default `{}`) ### Examples @@ -46,7 +46,7 @@ Returns **[Feature][7]<[Point][1]>** destination point [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[6]: https://turfjs.org/docs/api/types/Units [7]: https://tools.ietf.org/html/rfc7946#section-3.2 diff --git a/packages/turf-destination/index.ts b/packages/turf-destination/index.ts index ab6d110e1..4cc7d401e 100644 --- a/packages/turf-destination/index.ts +++ b/packages/turf-destination/index.ts @@ -16,12 +16,12 @@ import { getCoord } from "@turf/invariant"; * 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 + * @function * @param {Coord} origin starting point * @param {number} distance distance from the origin point * @param {number} bearing ranging from -180 to 180 * @param {Object} [options={}] Optional parameters - * @param {string} [options.units='kilometers'] miles, kilometers, degrees, or radians + * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @param {Object} [options.properties={}] Translate properties to Point * @returns {Feature} destination point * @example @@ -66,7 +66,9 @@ function destination

( ); const lng = radiansToDegrees(longitude2); const lat = radiansToDegrees(latitude2); - + if (coordinates1[2] !== undefined) { + return point([lng, lat, coordinates1[2]], options.properties); + } return point([lng, lat], options.properties); } diff --git a/packages/turf-destination/package.json b/packages/turf-destination/package.json index df8f3ea1a..6b905b18a 100644 --- a/packages/turf-destination/package.json +++ b/packages/turf-destination/package.json @@ -1,8 +1,11 @@ { "name": "@turf/destination", - "version": "7.0.0", + "version": "7.2.0", "description": "turf destination module", "author": "Turf Authors", + "contributors": [ + "Pavel Rozvora <@prozvora>" + ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" @@ -53,23 +56,23 @@ "test:tape": "tsx test.ts" }, "devDependencies": { - "@turf/truncate": "workspace:^", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", - "glob": "^10.3.10", + "glob": "^11.0.2", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-destination/test/in/point-0-with-elevation.geojson b/packages/turf-destination/test/in/point-0-with-elevation.geojson new file mode 100644 index 000000000..6a89c09bb --- /dev/null +++ b/packages/turf-destination/test/in/point-0-with-elevation.geojson @@ -0,0 +1,10 @@ +{ + "type": "Feature", + "properties": { + "bearing": 0 + }, + "geometry": { + "type": "Point", + "coordinates": [-75, 38.10096062273525, 100] + } +} diff --git a/packages/turf-destination/test/out/point-0-with-elevation.geojson b/packages/turf-destination/test/out/point-0-with-elevation.geojson new file mode 100644 index 000000000..d8fa826d7 --- /dev/null +++ b/packages/turf-destination/test/out/point-0-with-elevation.geojson @@ -0,0 +1,34 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "bearing": 0 + }, + "geometry": { + "type": "Point", + "coordinates": [-75, 38.10096062273525, 100] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-75, 39.000281, 100] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [-75, 38.10096062273525, 100], + [-75, 39.000281, 100] + ] + } + } + ] +} diff --git a/packages/turf-difference/index.ts b/packages/turf-difference/index.ts index 8629db4b0..e0d2af195 100644 --- a/packages/turf-difference/index.ts +++ b/packages/turf-difference/index.ts @@ -1,12 +1,12 @@ import { Polygon, MultiPolygon, Feature, FeatureCollection } from "geojson"; -import polygonClipping, { Geom } from "polygon-clipping"; +import * as polyclip from "polyclip-ts"; import { polygon, multiPolygon } from "@turf/helpers"; import { geomEach } from "@turf/meta"; /** * Finds the difference between multiple {@link Polygon|polygons} by clipping the subsequent polygon from the first. * - * @name difference + * @function * @param {FeatureCollection} features input Polygon features * @returns {Feature|null} a Polygon or MultiPolygon feature showing the area of `polygon1` excluding the area of `polygon2` (if empty returns `null`) * @example @@ -39,10 +39,10 @@ import { geomEach } from "@turf/meta"; function difference( features: FeatureCollection ): Feature | null { - const geoms: Array = []; + const geoms: Array = []; geomEach(features, (geom) => { - geoms.push(geom.coordinates as Geom); + geoms.push(geom.coordinates as polyclip.Geom); }); if (geoms.length < 2) { @@ -51,7 +51,7 @@ function difference( const properties = features.features[0].properties || {}; - const differenced = polygonClipping.difference(geoms[0], ...geoms.slice(1)); + const differenced = polyclip.difference(geoms[0], ...geoms.slice(1)); if (differenced.length === 0) return null; if (differenced.length === 1) return polygon(differenced[0], properties); return multiPolygon(differenced, properties); diff --git a/packages/turf-difference/package.json b/packages/turf-difference/package.json index e1625a8ee..9de580ed1 100644 --- a/packages/turf-difference/package.json +++ b/packages/turf-difference/package.json @@ -1,7 +1,7 @@ { "name": "@turf/difference", - "version": "7.0.0", - "description": "turf difference module", + "version": "7.2.0", + "description": "Finds the difference between multiple polygons by clipping the subsequent polygon from the first.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -50,22 +50,22 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", - "glob": "^10.3.10", + "glob": "^11.0.2", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "polygon-clipping": "^0.15.3", - "tslib": "^2.6.2" + "polyclip-ts": "^0.16.8", + "tslib": "^2.8.1" } } diff --git a/packages/turf-difference/test.ts b/packages/turf-difference/test.ts index d261d175c..6b1a15b1d 100644 --- a/packages/turf-difference/test.ts +++ b/packages/turf-difference/test.ts @@ -117,3 +117,243 @@ test("turf-difference - complete overlap", (t) => { t.deepEqual(result, null, "difference should be null"); t.end(); }); + +test("difference - unable to complete output ring - issue 2409", (t) => { + // Test examples copied from https://github.com/Turfjs/turf/issues/2409 + const area1 = polygon([ + [ + [11.79926, 59.307999], + [18.80383, 60.15596], + [18.73765340635914, 60.23951348693759], + [18.58133, 60.34301], + [11.79926, 59.307999], + ], + ]); + + const area1_subtract = polygon([ + [ + [11.79926, 59.307999], + [18.80383, 60.15596], + [ + 18.73765340635913, // Subtract 1 to final digit + 60.23951348693759, + ], + [18.58133, 60.34301], + [11.79926, 59.307999], + ], + ]); + + const area1_add = polygon([ + [ + [11.79926, 59.307999], + [18.80383, 60.15596], + [ + 18.73765340635915, // Add 1 to final digit + 60.23951348693759, + ], + [18.58133, 60.34301], + [11.79926, 59.307999], + ], + ]); + + const area2 = polygon([ + [ + [18.35554, 60.35768], + [18.58133, 60.34301], + [18.75959, 60.22499], + [18.80383, 60.15596], + [18.35554, 60.35768], + ], + ]); + + t.doesNotThrow( + () => difference(featureCollection([area1, area2])), + "[area1, area2] should not throw" + ); + t.doesNotThrow( + () => difference(featureCollection([area1_subtract, area2])), + "[area1_subtract, area2] should not throw" + ); + t.doesNotThrow( + () => difference(featureCollection([area1_add, area2])), + "[area1_add, area2] should not throw" + ); + + t.end(); +}); + +test("difference - unable to complete output ring - issue 2277", (t) => { + // Test example copied from https://github.com/Turfjs/turf/issues/2277 + const poly1 = polygon([ + [ + [54.56658645236534, 24.445194105819738], + [54.56658654953498, 24.441605817571325], + [54.57000000000001, 24.43981171174874], + [54.57341345046501, 24.441605817571325], + [54.573413547634665, 24.445194105819738], + [54.57000000000001, 24.44698828825126], + [54.56658645236534, 24.445194105819738], + ], + [ + [54.56795530519258, 24.44447467409078], + [54.57000000000001, 24.4455493756693], + [54.57204469480743, 24.44447467409078], + [54.57204465994316, 24.442325298422087], + [54.57000000000001, 24.441250624330703], + [54.56795534005685, 24.442325298422087], + [54.56795530519258, 24.44447467409078], + ], + ]); + + const poly2 = polygon([ + [ + [54.569778932416476, 24.441366817541834], + [54.56977894449294, 24.441074136738756], + [54.57000000000001, 24.441190327160086], + [54.57084694057397, 24.440745161222193], + [54.57084693745136, 24.44028034081218], + [54.571147760242575, 24.44043845608456], + [54.57114771720956, 24.441853864959285], + [54.57080496898934, 24.4416737163564], + [54.57080502276297, 24.441026402022757], + [54.57074511559248, 24.441057889217532], + [54.57074509421786, 24.441642246152345], + [54.57000000000001, 24.441250624330703], + [54.569778932416476, 24.441366817541834], + ], + ]); + + t.doesNotThrow( + () => difference(featureCollection([poly1, poly2])), + "[poly1, poly2] should not throw" + ); + + t.end(); +}); + +test("difference - maximum call stack size exceeded - issue 2479", (t) => { + // Test example copied from https://github.com/Turfjs/turf/issues/2479 + const poly1 = polygon([ + [ + [49.93317115095019, 20.170898437500004], + [49.93927561914192, 20.16278743743897], + [49.941126142253154, 20.165448188781742], + [49.934096538617936, 20.174009799957275], + [49.93317115095019, 20.170898437500004], + ], + ]); + + const poly2 = polygon([ + [ + [49.93317115095019, 20.170898437500004], + [49.933680058500165, 20.170222252607346], + [49.933758735535065, 20.170222252607346], + [49.933803934349285, 20.170152112841606], + [49.933803934349285, 20.170057658905122], + [49.934306839656294, 20.169389449185992], + [49.93434632011994, 20.16945071518421], + [49.93434632011994, 20.16959099471569], + [49.93448191656261, 20.16980141401291], + [49.93457231419105, 20.16980141401291], + [49.93466271181949, 20.16966113448143], + [49.93484350707638, 20.16966113448143], + [49.93520509759015, 20.169100016355515], + [49.93529549521859, 20.169100016355515], + [49.935928278617695, 20.168118059635166], + [49.936018676246135, 20.168118059635166], + [49.93660626083101, 20.167206242680553], + [49.93660626083101, 20.167065963149074], + [49.9367870560879, 20.166785404086117], + [49.9367870560879, 20.166645124554638], + [49.93714864660167, 20.166084006428722], + [49.93714864660167, 20.165613543475054], + [49.93742361679489, 20.16524819088677], + [49.93755543592966, 20.165452748537067], + [49.938504611028314, 20.16397981345654], + [49.938504611028314, 20.163811875057462], + [49.93927561914192, 20.16278743743897], + [49.941126142253154, 20.165448188781742], + [49.93988364085967, 20.16696147663808], + [49.93981537664073, 20.166855543851856], + [49.93958938256963, 20.167206242680553], + [49.93958938256963, 20.167319864563666], + [49.934096538617936, 20.174009799957275], + [49.93317115095019, 20.170898437500004], + ], + ]); + + t.doesNotThrow( + () => difference(featureCollection([poly1, poly2])), + "[poly1, poly2] should not throw" + ); + + t.end(); +}); + +test("difference - unable to find segment - issue 2306", (t) => { + // Test example copied from https://github.com/Turfjs/turf/issues/2306 + const poly1 = polygon([ + [ + [10.299138347373786, 48.460352133145804], + [10.299142854373908, 48.46034913552448], + [10.299142854373908, 48.460339214732976], + [10.299225267807545, 48.46033958029495], + [10.29927355737747, 48.46034017606536], + [10.29927355737747, 48.46034613790316], + [10.299266796877285, 48.46035363195647], + [10.299257782877039, 48.46035363195647], + [10.299251022376856, 48.46035812838846], + [10.299251022376856, 48.46036507625937], + [10.299195961284822, 48.4603647734974], + [10.299201445375504, 48.46036112600978], + [10.29919468487532, 48.460356629577795], + [10.299187924375136, 48.46035812838846], + [10.299187924375136, 48.46036112600978], + [10.299193387184792, 48.460364759343314], + [10.299138347373786, 48.460364456698365], + [10.299138347373786, 48.460352133145804], + ], + [ + [10.299142854373908, 48.46035812838846], + [10.299145107873969, 48.46035962719912], + [10.2991608823744, 48.46035812838846], + [10.299158628874338, 48.46035363195647], + [10.299149614874093, 48.46035363195647], + [10.299142854373908, 48.46035812838846], + ], + ]); + + const poly2 = polygon([ + [ + [10.299138347373786, 48.46036049139952], + [10.299187924375136, 48.46036028454162], + [10.299187924375136, 48.46036112600978], + [10.29919468487532, 48.46036562244176], + [10.299201445375504, 48.46036112600978], + [10.299200103800315, 48.46036023372349], + [10.299208777179729, 48.46036019753419], + [10.299209806197382, 48.46031596598246], + [10.299250947482829, 48.460316111877646], + [10.299251022376856, 48.460316161689924], + [10.299251022376856, 48.46031915931125], + [10.299257677970186, 48.46032358596932], + [10.299256707063519, 48.46035434748375], + [10.299251022376856, 48.46035812838846], + [10.299251022376856, 48.4603761141164], + [10.299246515376732, 48.46037911173772], + [10.299246515376732, 48.4603872476338], + [10.29919425093356, 48.460374326689575], + [10.299190177875197, 48.460371617684416], + [10.299188312254989, 48.46037285851485], + [10.299138347373786, 48.460360506074], + [10.299138347373786, 48.46036049139952], + ], + ]); + + t.doesNotThrow( + () => difference(featureCollection([poly1, poly2])), + "[poly1, poly2] should not throw" + ); + + t.end(); +}); diff --git a/packages/turf-difference/test/out/issue-#721-inverse.geojson b/packages/turf-difference/test/out/issue-#721-inverse.geojson index 477c61842..9bacfc3c0 100644 --- a/packages/turf-difference/test/out/issue-#721-inverse.geojson +++ b/packages/turf-difference/test/out/issue-#721-inverse.geojson @@ -92,6 +92,42 @@ ] ] } + }, + { + "type": "Feature", + "properties": { + "fill-opacity": 1, + "fill": "#0F0" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-0.6462588068806041, 44.80608667910215], + [-0.6462588068796641, 44.80608667910137], + [-0.6461987, 44.8060367], + [-0.6462588068806041, 44.80608667910215] + ] + ], + [ + [ + [-0.6461042, 44.8059451], + [-0.6461041344154723, 44.805944903377586], + [-0.6461041344154722, 44.805944903377586], + [-0.6461042, 44.8059451] + ] + ], + [ + [ + [-0.6460471709105139, 44.80564743856641], + [-0.6460421, 44.8056729], + [-0.6460471709104708, 44.80564743856663], + [-0.6460471709105139, 44.80564743856641] + ] + ] + ] + } } ] } diff --git a/packages/turf-difference/test/out/issue-#721.geojson b/packages/turf-difference/test/out/issue-#721.geojson index f9e4aad75..08606ca52 100644 --- a/packages/turf-difference/test/out/issue-#721.geojson +++ b/packages/turf-difference/test/out/issue-#721.geojson @@ -113,17 +113,16 @@ [-0.6460168, 44.8047948], [-0.6460827, 44.8050017], [-0.6461218, 44.8051741], - [-0.6461158838109077, 44.80524109574131], - [-0.646107941865921, 44.80533857879061], - [-0.646093673696575, 44.80541109474097], + [-0.6461073, 44.8053383], [-0.6460848, 44.8054585], - [-0.6460471709105139, 44.80564743856641], + [-0.6460471709104708, 44.80564743856663], [-0.6460422277450562, 44.805672561504906], [-0.6460542976856232, 44.80579530680288], [-0.646069093721612, 44.80583985137739], - [-0.6461041344154722, 44.805944903377586], + [-0.6460542, 44.8057952], + [-0.6461041344154723, 44.805944903377586], [-0.6461991369724274, 44.80603699057963], - [-0.6462588068806041, 44.80608667910215], + [-0.6462588068796641, 44.80608667910137], [-0.6463809, 44.8061882], [-0.646437, 44.806159], [-0.64649, 44.80611], @@ -138,6 +137,13 @@ [-0.6465049, 44.8055554], [-0.6471907, 44.8053946], [-0.6474134, 44.805326] + ], + [ + [-0.6461073, 44.8053383], + [-0.6461158838109077, 44.80524109574131], + [-0.646107941865921, 44.80533857879061], + [-0.646093673696575, 44.80541109474097], + [-0.6461073, 44.8053383] ] ] } diff --git a/packages/turf-directional-mean/index.ts b/packages/turf-directional-mean/index.ts index bb21d837b..ab92794e3 100644 --- a/packages/turf-directional-mean/index.ts +++ b/packages/turf-directional-mean/index.ts @@ -36,7 +36,8 @@ interface DirectionalMeanLine extends Feature { * This module calculate the average angle of a set of lines, measuring the trend of it. * It can be used in both project coordinate system and geography coordinate system. * It can handle segments of line or the whole line. - * @name directionalMean + * + * @function * @param {FeatureCollection} lines * @param {object} [options={}] * @param {boolean} [options.planar=true] whether the spatial reference system is projected or geographical. diff --git a/packages/turf-directional-mean/package.json b/packages/turf-directional-mean/package.json index 5d8ae150d..d181d54f4 100644 --- a/packages/turf-directional-mean/package.json +++ b/packages/turf-directional-mean/package.json @@ -1,7 +1,7 @@ { "name": "@turf/directional-mean", - "version": "7.0.0", - "description": "turf directional-mean module", + "version": "7.2.0", + "description": "Calculates the average angle of a set of lines, measuring the trend of it.", "author": "Turf Authors", "contributors": [ "Haoming Zhuang <@zhuang-hao-ming>" @@ -53,25 +53,25 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/bearing": "workspace:^", - "@turf/centroid": "workspace:^", - "@turf/destination": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/length": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/bearing": "workspace:*", + "@turf/centroid": "workspace:*", + "@turf/destination": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/length": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-dissolve/README.md b/packages/turf-dissolve/README.md index 803ecf10d..e5cdc706f 100644 --- a/packages/turf-dissolve/README.md +++ b/packages/turf-dissolve/README.md @@ -4,15 +4,16 @@ ## dissolve -Dissolves a FeatureCollection of [polygon][1] features, filtered by an optional property name:value. -Note that [mulitpolygon][2] features within the collection are not supported +Dissolves a FeatureCollection of [Polygon][1] features, filtered by an optional property name:value. +Note that [MultiPolygon][2] features within the collection are not supported ### Parameters -* `featureCollection` **[FeatureCollection][3]<[Polygon][4]>** input feature collection to be dissolved -* `options` **[Object][5]** Optional parameters (optional, default `{}`) +* `fc` **[FeatureCollection][3]<[Polygon][1]>** +* `options` **[Object][4]** Optional parameters (optional, default `{}`) - * `options.propertyName` **[string][6]?** features with the same `propertyName` value will be dissolved. + * `options.propertyName` **[string][5]?** features with the same `propertyName` value will be dissolved. +* `featureCollection` **[FeatureCollection][3]<[Polygon][1]>** input feature collection to be dissolved ### Examples @@ -29,19 +30,17 @@ var dissolved = turf.dissolve(features, {propertyName: 'combine'}); var addToMap = [features, dissolved] ``` -Returns **[FeatureCollection][3]<[Polygon][4]>** a FeatureCollection containing the dissolved polygons +Returns **[FeatureCollection][3]<[Polygon][1]>** a FeatureCollection containing the dissolved polygons -[1]: polygon +[1]: https://tools.ietf.org/html/rfc7946#section-3.1.6 -[2]: mulitpolygon +[2]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [3]: https://tools.ietf.org/html/rfc7946#section-3.3 -[4]: https://tools.ietf.org/html/rfc7946#section-3.1.6 +[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object - -[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String diff --git a/packages/turf-dissolve/index.ts b/packages/turf-dissolve/index.ts index fd5a5eb2d..8736e733a 100644 --- a/packages/turf-dissolve/index.ts +++ b/packages/turf-dissolve/index.ts @@ -3,13 +3,13 @@ import { featureCollection, isObject, multiPolygon } from "@turf/helpers"; import { collectionOf } from "@turf/invariant"; import { featureEach } from "@turf/meta"; import { flatten } from "@turf/flatten"; -import polygonClipping, { Geom } from "polygon-clipping"; +import * as polyclip from "polyclip-ts"; /** - * Dissolves a FeatureCollection of {@link polygon} features, filtered by an optional property name:value. - * Note that {@link mulitpolygon} features within the collection are not supported + * Dissolves a FeatureCollection of {@link Polygon} features, filtered by an optional property name:value. + * Note that {@link MultiPolygon} features within the collection are not supported * - * @name dissolve + * @function * @param {FeatureCollection} featureCollection input feature collection to be dissolved * @param {Object} [options={}] Optional parameters * @param {string} [options.propertyName] features with the same `propertyName` value will be dissolved. @@ -45,12 +45,12 @@ function dissolve( if (!propertyName) { return flatten( multiPolygon( - polygonClipping.union.apply( + polyclip.union.apply( null, // List of polygons expressed as Position[][][] a.k.a. Geom[] fc.features.map(function (f) { return f.geometry.coordinates; - }) as [Geom, ...Geom[]] + }) as [polyclip.Geom, ...polyclip.Geom[]] ) ) ); @@ -76,12 +76,12 @@ function dissolve( // Export each group of polygons as a separate feature. for (let i = 0; i < vals.length; i++) { const mp = multiPolygon( - polygonClipping.union.apply( + polyclip.union.apply( null, // List of polygons expressed as Position[][][] a.k.a. Geom[] (uniquePropertyVals[vals[i]] as Feature[]).map(function (f) { return f.geometry.coordinates; - }) as [Geom, ...Geom[]] + }) as [polyclip.Geom, ...polyclip.Geom[]] ) ); if (mp && mp.properties) { diff --git a/packages/turf-dissolve/package.json b/packages/turf-dissolve/package.json index dee35fed2..df965fe87 100644 --- a/packages/turf-dissolve/package.json +++ b/packages/turf-dissolve/package.json @@ -1,7 +1,7 @@ { "name": "@turf/dissolve", - "version": "7.0.0", - "description": "turf dissolve module", + "version": "7.2.0", + "description": "Dissolves a FeatureCollection of Polygon features.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -53,23 +53,23 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/flatten": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/flatten": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "polygon-clipping": "^0.15.3", - "tslib": "^2.6.2" + "polyclip-ts": "^0.16.8", + "tslib": "^2.8.1" } } diff --git a/packages/turf-dissolve/test.ts b/packages/turf-dissolve/test.ts index 93d5858d5..710bf6830 100644 --- a/packages/turf-dissolve/test.ts +++ b/packages/turf-dissolve/test.ts @@ -115,3 +115,42 @@ test("dissolve -- properties", (t) => { t.end(); }); + +test("dissolve - unable to complete output ring - issue 2420", (t) => { + // Test example copied from https://github.com/Turfjs/turf/issues/2420 + + const poly1 = polygon([ + [ + [54.674471560746106, -2.669669459403366], + [54.66827243056676, -2.590808846502601], + [54.61818656347785, -2.5731465650016876], + [54.59479733372542, -2.5582148982951005], + [54.52907798654607, -2.5983186383573154], + [54.533564730328536, -2.68329182348515], + [54.58040270977906, -2.713147336590615], + [54.60545643615633, -2.7220126907386035], + [54.674471560746106, -2.669669459403366], + ], + ]); + + const poly2 = polygon([ + [ + [54.59029423717366, -2.4733591205361], + [54.59479733372542, -2.5582148982951005], + [54.61818656347788, -2.573146565001703], + [54.66827243056676, -2.590808846502601], + [54.73723247700517, -2.538498282632361], + [54.730995571183335, -2.4597687064449976], + [54.655899262660675, -2.433377660227877], + [54.59029423717366, -2.4733591205361], + ], + ]); + + // This used to fail with "Unable to complete output ring ..." + t.doesNotThrow( + () => dissolve(featureCollection([poly1, poly2])), + "does not throw" + ); + + t.end(); +}); diff --git a/packages/turf-dissolve/test/out/hexagons-issue#742.geojson b/packages/turf-dissolve/test/out/hexagons-issue#742.geojson index fe6d3c997..6090be998 100644 --- a/packages/turf-dissolve/test/out/hexagons-issue#742.geojson +++ b/packages/turf-dissolve/test/out/hexagons-issue#742.geojson @@ -22,21 +22,21 @@ [-76.663, 45.456], [-76.659, 45.462], [-76.6606, 45.4648], - [-76.65799999999996, 45.46566666666668], + [-76.658, 45.465666666666664], [-76.652, 45.467], - [-76.64964705882352, 45.471117647058826], + [-76.64964705882353, 45.471117647058826], [-76.644, 45.473], [-76.64, 45.479], [-76.644, 45.485], [-76.653, 45.488], [-76.662, 45.485], - [-76.66400000000002, 45.482], + [-76.664, 45.482], [-76.666, 45.48133333333333], [-76.672, 45.48], - [-76.67392, 45.476639999999996], - [-76.67542857142858, 45.47714285714286], + [-76.67392, 45.47664], + [-76.67542857142857, 45.47714285714286], [-76.678, 45.481], - [-76.68639999999999, 45.4838], + [-76.6864, 45.4838], [-76.687, 45.485], [-76.6921724137931, 45.48655172413793], [-76.693, 45.488], @@ -100,16 +100,16 @@ [-76.5, 45.592], [-76.49523529411765, 45.590411764705884], [-76.495, 45.59], - [-76.49200000000002, 45.58933333333334], + [-76.492, 45.589333333333336], [-76.491, 45.589], [-76.4908, 45.58906666666667], [-76.486, 45.588], [-76.477, 45.59], [-76.473, 45.597], [-76.477, 45.603], - [-76.48176470588236, 45.60458823529412], + [-76.48176470588236, 45.604588235294116], [-76.482, 45.605], - [-76.48481249999999, 45.605624999999996], + [-76.4848125, 45.605625], [-76.485, 45.606], [-76.494, 45.609], [-76.503, 45.606], @@ -175,9 +175,9 @@ [-76.35857142857142, 45.41914285714286], [-76.356, 45.42], [-76.353, 45.426], - [-76.35331249999999, 45.426624999999994], - [-76.34899999999996, 45.42566666666665], - [-76.34657142857144, 45.42485714285714], + [-76.3533125, 45.426625], + [-76.349, 45.425666666666665], + [-76.34657142857142, 45.42485714285714], [-76.346, 45.424], [-76.337, 45.421], [-76.328, 45.424], @@ -185,16 +185,16 @@ [-76.328, 45.437], [-76.33405454545455, 45.438345454545455], [-76.335, 45.44], - [-76.34100000000004, 45.44133333333334], + [-76.341, 45.44133333333333], [-76.346, 45.443], [-76.355, 45.44], [-76.359, 45.434], [-76.35829411764706, 45.432764705882356], [-76.365, 45.435], [-76.374, 45.432], - [-76.37457142857143, 45.43114285714285], + [-76.37457142857143, 45.43114285714286], [-76.378, 45.43], - [-76.3797142857143, 45.427428571428564], + [-76.37971428571429, 45.42742857142857], [-76.387, 45.425], [-76.39, 45.419] ] @@ -259,7 +259,7 @@ [-76.291, 45.343], [-76.3, 45.34], [-76.303, 45.334], - [-76.3027857142857, 45.3335], + [-76.30278571428572, 45.3335], [-76.303, 45.333] ] ] @@ -304,12 +304,12 @@ [-76.232, 44.886], [-76.228, 44.892], [-76.232, 44.899], - [-76.24012903225805, 44.90080645161291], + [-76.24012903225807, 44.9008064516129], [-76.24, 44.901], [-76.244, 44.907], - [-76.24571428571427, 44.90757142857142], + [-76.24571428571429, 44.90757142857143], [-76.246, 44.908], - [-76.25164000000001, 44.90988], + [-76.25164, 44.90988], [-76.251, 44.911], [-76.255, 44.917], [-76.264, 44.92], @@ -389,7 +389,7 @@ [-76.217, 45.221], [-76.214, 45.214], [-76.205, 45.212], - [-76.19717391304349, 45.21373913043478], + [-76.19717391304347, 45.21373913043478], [-76.201, 45.208], [-76.197, 45.201], [-76.188, 45.199], @@ -397,8 +397,8 @@ [-76.175, 45.208], [-76.179, 45.214], [-76.188, 45.217], - [-76.19576470588235, 45.214411764705886], - [-76.19435294117646, 45.21688235294118], + [-76.19576470588235, 45.21441176470588], + [-76.19435294117648, 45.21688235294118], [-76.188, 45.219], [-76.184, 45.225], [-76.18422535211268, 45.225394366197186], @@ -409,10 +409,10 @@ [-76.17, 45.243], [-76.179, 45.246], [-76.188, 45.243], - [-76.18857142857144, 45.24214285714286], + [-76.18857142857142, 45.24214285714286], [-76.195, 45.24], [-76.198, 45.234], - [-76.19791304347825, 45.23379710144928], + [-76.19791304347827, 45.23379710144928], [-76.206, 45.232], [-76.20764705882353, 45.22911764705882], [-76.214, 45.227], @@ -457,15 +457,15 @@ [-76.133, 45.123], [-76.124, 45.121], [-76.115, 45.123], - [-76.11358823529412, 45.12547058823529], + [-76.11358823529412, 45.125470588235295], [-76.112, 45.126], [-76.108, 45.132], [-76.112, 45.139], - [-76.1151304347826, 45.13969565217391], + [-76.11513043478261, 45.13969565217391], [-76.115, 45.14], [-76.118, 45.146], [-76.127, 45.149], - [-76.13, 45.147999999999996], + [-76.13, 45.148], [-76.129, 45.15], [-76.132, 45.157], [-76.141, 45.159], @@ -609,7 +609,7 @@ [-76.046, 44.889], [-76.042, 44.883], [-76.033, 44.88], - [-76.02780000000001, 44.88173333333334], + [-76.0278, 44.88173333333334], [-76.02, 44.88], [-76.011, 44.882], [-76.007, 44.889], @@ -627,7 +627,7 @@ [-76.045, 44.906], [-76.041, 44.9], [-76.038, 44.899], - [-76.04028571428572, 44.89557142857144], + [-76.04028571428572, 44.89557142857143], [-76.042, 44.895], [-76.046, 44.889] ] @@ -684,15 +684,15 @@ [-75.968, 45.279], [-75.9652, 45.2748], [-75.964, 45.272], - [-75.96023636363635, 45.27116363636364], + [-75.96023636363637, 45.27116363636364], [-75.959, 45.269], - [-75.95039130434782, 45.26708695652174], + [-75.95039130434783, 45.26708695652174], [-75.947, 45.262], [-75.938, 45.259], [-75.929, 45.262], - [-75.92757142857143, 45.26414285714285], + [-75.92757142857143, 45.26414285714286], [-75.922, 45.266], - [-75.92085714285714, 45.26771428571429], + [-75.92085714285714, 45.267714285714284], [-75.914, 45.27], [-75.91356521739131, 45.27065217391304], [-75.912, 45.271], @@ -700,14 +700,14 @@ [-75.912, 45.284], [-75.921, 45.287], [-75.93, 45.284], - [-75.9304347826087, 45.28334782608695], + [-75.9304347826087, 45.28334782608696], [-75.932, 45.283], - [-75.93216666666667, 45.2826111111111], + [-75.93216666666666, 45.28261111111111], [-75.934, 45.282], [-75.93530434782609, 45.28004347826087], [-75.93912903225807, 45.2791935483871], [-75.941, 45.282], - [-75.94435294117646, 45.28311764705882], + [-75.94435294117648, 45.28311764705882], [-75.946, 45.286], [-75.955, 45.288], [-75.964, 45.286], @@ -788,14 +788,14 @@ [-75.928, 45.285], [-75.919, 45.288], [-75.915, 45.294], - [-75.91829411764705, 45.29976470588235], + [-75.91829411764706, 45.29976470588235], [-75.916, 45.299], - [-75.91257142857143, 45.30014285714285], + [-75.91257142857143, 45.30014285714286], [-75.914, 45.298], [-75.91, 45.291], - [-75.90700000000004, 45.29033333333334], + [-75.907, 45.290333333333336], [-75.9, 45.288], - [-75.895, 45.28966666666666], + [-75.895, 45.28966666666667], [-75.89, 45.288], [-75.88268, 45.29044], [-75.88161538461539, 45.288576923076924], @@ -817,20 +817,20 @@ [-75.895, 45.313], [-75.892, 45.307], [-75.8914, 45.3068], - [-75.89085714285714, 45.30571428571428], - [-75.89399999999996, 45.304666666666655], + [-75.89085714285714, 45.30571428571429], + [-75.894, 45.30466666666667], [-75.901, 45.307], - [-75.90442857142857, 45.30585714285715], + [-75.90442857142857, 45.30585714285714], [-75.903, 45.308], [-75.907, 45.315], - [-75.90880000000001, 45.3156], + [-75.9088, 45.3156], [-75.909, 45.316], [-75.918, 45.319], [-75.927, 45.316], [-75.931, 45.31], [-75.927, 45.304], [-75.92594117647059, 45.30364705882353], - [-75.92521818181818, 45.302381818181814], + [-75.92521818181818, 45.30238181818182], [-75.928, 45.303], [-75.937, 45.301], [-75.941, 45.294] @@ -847,7 +847,7 @@ [ [-75.94, 45.351], [-75.936, 45.345], - [-75.92952000000001, 45.342839999999995], + [-75.92952, 45.34284], [-75.93, 45.342], [-75.926, 45.336], [-75.92211764705883, 45.33470588235294], @@ -904,7 +904,7 @@ [-75.84590909090909, 45.39336363636364], [-75.843, 45.389], [-75.834, 45.386], - [-75.8305, 45.38716666666667], + [-75.8305, 45.387166666666666], [-75.83, 45.387], [-75.821, 45.39], [-75.817, 45.396], @@ -922,7 +922,7 @@ [ [-75.84164705882353, 45.40288235294118], [-75.8406, 45.40253333333333], - [-75.84135211267605, 45.4023661971831], + [-75.84135211267606, 45.4023661971831], [-75.84164705882353, 45.40288235294118] ] ] @@ -939,9 +939,9 @@ [-75.85, 45.187], [-75.841, 45.184], [-75.832, 45.187], - [-75.82860869565218, 45.192086956521734], + [-75.82860869565218, 45.19208695652174], [-75.82, 45.194], - [-75.81873684210525, 45.19694736842105], + [-75.81873684210527, 45.19694736842105], [-75.814, 45.198], [-75.81, 45.205], [-75.814, 45.211], @@ -949,7 +949,7 @@ [-75.832, 45.211], [-75.83371428571428, 45.20842857142857], [-75.838, 45.207], - [-75.84142857142858, 45.201857142857136], + [-75.84142857142857, 45.20185714285714], [-75.85, 45.199], [-75.854, 45.193] ] @@ -1008,6 +1008,7 @@ [-75.836, 45.312], [-75.821, 45.317], [-75.82042857142856, 45.31785714285714], + [-75.82, 45.318], [-75.811, 45.321], [-75.807, 45.327], [-75.811, 45.334], @@ -1017,7 +1018,7 @@ [-75.83, 45.334], [-75.83094117647059, 45.332352941176474], [-75.832, 45.332], - [-75.83234782608695, 45.33147826086957], + [-75.83234782608696, 45.33147826086957], [-75.839, 45.33], [-75.83931578947369, 45.32926315789474], [-75.845, 45.328], @@ -1097,7 +1098,7 @@ [-75.818, 45.347], [-75.809, 45.345], [-75.80038028169014, 45.34691549295775], - [-75.799, 45.344500000000004], + [-75.799, 45.3445], [-75.801, 45.341], [-75.797, 45.335], [-75.788, 45.332], @@ -1106,7 +1107,7 @@ [-75.777, 45.336], [-75.77558064516128, 45.33812903225807], [-75.775, 45.338], - [-75.76714084507043, 45.339746478873245], + [-75.76714084507043, 45.33974647887324], [-75.765, 45.336], [-75.76398591549295, 45.33577464788733], [-75.765, 45.334], @@ -1119,21 +1120,21 @@ [-75.744, 45.343], [-75.747, 45.349], [-75.756, 45.352], - [-75.76363636363637, 45.34945454545454], + [-75.76363636363637, 45.34945454545455], [-75.766, 45.353], [-75.775, 45.356], - [-75.78020000000001, 45.35426666666667], + [-75.7802, 45.35426666666667], [-75.7835, 45.355], [-75.779, 45.356], [-75.77629577464789, 45.360732394366195], [-75.773, 45.36], [-75.764, 45.362], - [-75.76067605633803, 45.367816901408446], + [-75.76067605633803, 45.36781690140845], [-75.757, 45.367], - [-75.75474999999999, 45.3675], + [-75.75475, 45.3675], [-75.74901408450704, 45.36622535211268], [-75.752, 45.361], - [-75.74823076923077, 45.35534615384615], + [-75.74823076923077, 45.355346153846156], [-75.749, 45.354], [-75.745, 45.348], [-75.743, 45.344], @@ -1142,7 +1143,7 @@ [-75.739, 45.337], [-75.735625, 45.335875], [-75.736, 45.335], - [-75.73371428571429, 45.33042857142856], + [-75.73371428571429, 45.33042857142857], [-75.734, 45.33], [-75.73261538461539, 45.327576923076926], [-75.733, 45.327], @@ -1155,7 +1156,7 @@ [-75.694, 45.325], [-75.685, 45.327], [-75.681, 45.334], - [-75.68227272727272, 45.33590909090909], + [-75.68227272727273, 45.33590909090909], [-75.682, 45.336], [-75.68016666666666, 45.33875], [-75.679, 45.337], @@ -1176,14 +1177,14 @@ [-75.616, 45.342], [-75.612, 45.348], [-75.616, 45.354], - [-75.6195, 45.35516666666666], + [-75.6195, 45.35516666666667], [-75.611, 45.358], [-75.607, 45.364], [-75.611, 45.371], [-75.61274193548387, 45.37138709677419], [-75.611, 45.374], [-75.615, 45.38], - [-75.6165, 45.380500000000005], + [-75.6165, 45.3805], [-75.61390909090909, 45.38136363636364], [-75.611, 45.377], [-75.60909090909091, 45.376363636363635], @@ -1193,36 +1194,36 @@ [-75.588, 45.368], [-75.584, 45.375], [-75.588, 45.381], - [-75.58990909090909, 45.38163636363637], + [-75.58990909090909, 45.38163636363636], [-75.589, 45.383], [-75.593, 45.389], [-75.602, 45.392], - [-75.60671428571428, 45.39042857142857], + [-75.60671428571429, 45.39042857142857], [-75.609, 45.395], - [-75.60906122448979, 45.39514285714287], + [-75.60906122448979, 45.39514285714286], [-75.608, 45.397], [-75.61018181818181, 45.40027272727273], [-75.608, 45.401], [-75.60495652173913, 45.405565217391306], [-75.603, 45.406], - [-75.60252941176469, 45.40682352941177], + [-75.6025294117647, 45.40682352941177], [-75.596, 45.409], - [-75.59527272727273, 45.410090909090904], + [-75.59527272727273, 45.41009090909091], [-75.595, 45.41], [-75.586, 45.413], [-75.582, 45.419], [-75.586, 45.425], - [-75.58666666666667, 45.42522222222222], + [-75.58666666666667, 45.425222222222224], [-75.587, 45.426], - [-75.59300000000003, 45.42733333333334], + [-75.593, 45.42733333333333], [-75.595, 45.428], [-75.5954, 45.42786666666667], [-75.596, 45.428], [-75.605, 45.426], - [-75.60520000000001, 45.42593333333333], - [-75.60640000000001, 45.4262], + [-75.6052, 45.42593333333333], + [-75.6064, 45.4262], [-75.604, 45.427], - [-75.60371428571429, 45.427428571428564], + [-75.60371428571429, 45.42742857142857], [-75.596, 45.43], [-75.592, 45.436], [-75.59374647887324, 45.439056338028166], @@ -1238,42 +1239,42 @@ [-75.595, 45.457], [-75.604, 45.454], [-75.608, 45.448], - [-75.60624, 45.444919999999996], - [-75.60799999999998, 45.44433333333334], + [-75.60624, 45.44492], + [-75.608, 45.44433333333333], [-75.614, 45.443], [-75.61433333333333, 45.44222222222222], [-75.615, 45.442], - [-75.61524999999999, 45.4415], - [-75.61965217391305, 45.44052173913043], + [-75.61525, 45.4415], + [-75.61965217391304, 45.44052173913043], [-75.616, 45.446], [-75.62, 45.453], [-75.629, 45.455], [-75.638, 45.453], [-75.6388, 45.4516], [-75.64, 45.452], - [-75.64084000000001, 45.451719999999995], + [-75.64084, 45.45172], [-75.641, 45.452], [-75.65, 45.454], [-75.659, 45.452], - [-75.66030434782608, 45.448956521739134], + [-75.66030434782608, 45.44895652173913], [-75.661, 45.45], [-75.67, 45.452], [-75.679, 45.45], - [-75.68091304347827, 45.44713043478261], + [-75.68091304347826, 45.44713043478261], [-75.686, 45.446], [-75.689, 45.439], [-75.68857142857142, 45.43814285714286], [-75.689, 45.438], - [-75.68979999999999, 45.436400000000006], + [-75.6898, 45.4364], [-75.694, 45.435], [-75.698, 45.429], - [-75.69683636363636, 45.42696363636363], + [-75.69683636363636, 45.42696363636364], [-75.697, 45.427], [-75.706, 45.425], - [-75.70952941176469, 45.41882352941177], + [-75.7095294117647, 45.41882352941177], [-75.715, 45.417], [-75.719, 45.411], - [-75.7166923076923, 45.407538461538465], + [-75.71669230769231, 45.407538461538465], [-75.717, 45.407], [-75.7159090909091, 45.40536363636364], [-75.717, 45.405], @@ -1282,28 +1283,29 @@ [-75.739, 45.412], [-75.7424909090909, 45.40589090909091], [-75.751, 45.404], - [-75.75136363636365, 45.403363636363636], + [-75.75136363636364, 45.403363636363636], [-75.753, 45.403], - [-75.75370588235293, 45.40176470588236], + [-75.75370588235295, 45.40176470588235], + [-75.759, 45.4], [-75.762, 45.399], [-75.766, 45.393], [-75.762, 45.386], - [-75.758, 45.385111111111115], + [-75.758, 45.38511111111111], [-75.763, 45.384], - [-75.76321818181819, 45.383618181818186], + [-75.76321818181817, 45.38361818181818], [-75.766, 45.383], [-75.76952, 45.37684], [-75.773, 45.378], - [-75.77449999999999, 45.377500000000005], + [-75.7745, 45.3775], [-75.782, 45.38], [-75.791, 45.377], [-75.79265217391304, 45.37452173913044], [-75.795, 45.374], [-75.799, 45.367], - [-75.79866666666668, 45.366499999999995], + [-75.79866666666666, 45.3665], [-75.801, 45.363], [-75.797, 45.356], - [-75.79249999999999, 45.355], + [-75.7925, 45.355], [-75.79612903225807, 45.354193548387094], [-75.8, 45.36], [-75.809, 45.363], @@ -1312,21 +1314,21 @@ ], [ [-75.74034375, 45.38853125], - [-75.74033333333333, 45.388555555555556], + [-75.74033333333334, 45.388555555555556], [-75.738, 45.38933333333333], [-75.735, 45.39], - [-75.73493548387097, 45.390096774193545], + [-75.73493548387097, 45.39009677419355], [-75.73378947368421, 45.389842105263156], [-75.74034375, 45.38853125] ], [ - [-75.7371090909091, 45.37130909090909], + [-75.73710909090909, 45.371309090909094], [-75.73617073170732, 45.372951219512196], [-75.733, 45.372], [-75.724, 45.375], [-75.721, 45.381], [-75.724, 45.388], - [-75.72925000000001, 45.38916666666667], + [-75.72925, 45.38916666666667], [-75.721, 45.391], [-75.71904081632653, 45.39557142857143], [-75.717, 45.392], @@ -1338,18 +1340,18 @@ [-75.683, 45.403], [-75.68, 45.41], [-75.683, 45.416], - [-75.68385714285714, 45.416285714285706], - [-75.6845, 45.417249999999996], + [-75.68385714285715, 45.41628571428571], + [-75.6845, 45.41725], [-75.684, 45.418], [-75.68516363636364, 45.42003636363636], [-75.685, 45.42], [-75.676, 45.422], - [-75.67510526315789, 45.42408771929825], + [-75.67510526315789, 45.42408771929824], [-75.6722, 45.424733333333336], [-75.67, 45.424], - [-75.669, 45.42433333333333], + [-75.669, 45.42433333333334], [-75.668, 45.424], - [-75.65972000000001, 45.42676], + [-75.65972, 45.42676], [-75.657, 45.422], [-75.648, 45.42], [-75.64683870967743, 45.420258064516126], @@ -1359,7 +1361,7 @@ [-75.654, 45.411], [-75.65, 45.405], [-75.641, 45.402], - [-75.63854545454546, 45.40281818181818], + [-75.63854545454545, 45.40281818181818], [-75.636, 45.399], [-75.63327272727273, 45.39809090909091], [-75.634, 45.397], @@ -1374,7 +1376,7 @@ [-75.6359090909091, 45.37236363636364], [-75.63335294117647, 45.368529411764705], [-75.641, 45.367], - [-75.64273913043479, 45.36294202898551], + [-75.64273913043478, 45.36294202898551], [-75.643, 45.363], [-75.6448, 45.3626], [-75.646, 45.363], @@ -1385,7 +1387,7 @@ [-75.679, 45.357], [-75.683, 45.351], [-75.68033333333334, 45.347], - [-75.6806153846154, 45.346576923076924], + [-75.68061538461538, 45.346576923076924], [-75.682, 45.349], [-75.691, 45.351], [-75.69373913043478, 45.35039130434782], @@ -1401,7 +1403,7 @@ [-75.713, 45.377], [-75.717, 45.37], [-75.713, 45.364], - [-75.71166666666666, 45.36355555555556], + [-75.71166666666667, 45.36355555555556], [-75.711, 45.362], [-75.708, 45.361333333333334], [-75.714, 45.36], @@ -1409,28 +1411,30 @@ [-75.714, 45.347], [-75.71244, 45.34648], [-75.71342253521127, 45.344760563380284], - [-75.71867272727272, 45.34592727272727], + [-75.71867272727273, 45.34592727272727], + [-75.721, 45.35], [-75.72315384615385, 45.35376923076923], [-75.723, 45.354], - [-75.72330769230769, 45.35453846153846], + [-75.7233076923077, 45.35453846153846], [-75.723, 45.355], - [-75.72466666666666, 45.357499999999995], + [-75.72466666666666, 45.3575], + [-75.723, 45.36], [-75.721, 45.363], [-75.725, 45.37], [-75.734, 45.372], - [-75.7371090909091, 45.37130909090909] + [-75.73710909090909, 45.371309090909094] ], [ - [-75.63419999999999, 45.43593333333334], + [-75.6342, 45.43593333333333], [-75.631, 45.437], - [-75.63071428571429, 45.437571428571424], + [-75.63071428571429, 45.43757142857143], [-75.629, 45.437], [-75.62233333333333, 45.43922222222222], [-75.62482608695652, 45.43340579710145], - [-75.629, 45.43433333333334], - [-75.62976470588235, 45.43458823529412], + [-75.629, 45.434333333333335], + [-75.62976470588235, 45.434588235294115], [-75.63, 45.435], - [-75.63419999999999, 45.43593333333334] + [-75.6342, 45.43593333333333] ] ] } @@ -1449,7 +1453,7 @@ [-75.796, 45.413], [-75.79633333333334, 45.4135], [-75.796, 45.414], - [-75.79626666666667, 45.41446666666666], + [-75.79626666666667, 45.41446666666667], [-75.795, 45.417], [-75.798, 45.423], [-75.807, 45.426], @@ -1478,7 +1482,7 @@ [-75.795, 45.386], [-75.798, 45.392], [-75.807, 45.395], - [-75.8075, 45.39483333333334], + [-75.8075, 45.39483333333333], [-75.808, 45.395], [-75.817, 45.392], [-75.821, 45.386] @@ -1497,7 +1501,7 @@ [-75.811, 45.263], [-75.802, 45.26], [-75.793, 45.263], - [-75.79265217391304, 45.26352173913044], + [-75.79265217391304, 45.26352173913043], [-75.792, 45.262], [-75.782, 45.26], [-75.773, 45.262], @@ -1505,7 +1509,7 @@ [-75.773, 45.275], [-75.782, 45.278], [-75.792, 45.275], - [-75.79220000000001, 45.2746], + [-75.7922, 45.2746], [-75.793, 45.276], [-75.802, 45.278], [-75.811, 45.276], @@ -1526,7 +1530,7 @@ [-75.786, 45.435], [-75.77863636363637, 45.43663636363636], [-75.779, 45.436], - [-75.77553846153846, 45.43080769230769], + [-75.77553846153846, 45.430807692307695], [-75.776, 45.43], [-75.77, 45.421], [-75.761, 45.418], @@ -1535,7 +1539,7 @@ [-75.746, 45.413], [-75.737, 45.416], [-75.733, 45.422], - [-75.73328571428573, 45.422428571428576], + [-75.73328571428571, 45.42242857142857], [-75.726, 45.42], [-75.717, 45.423], [-75.71534782608695, 45.42547826086957], @@ -1549,18 +1553,18 @@ [-75.722, 45.453], [-75.7225, 45.452125], [-75.723, 45.453], - [-75.72398181818181, 45.45321818181819], + [-75.72398181818181, 45.45321818181818], [-75.725, 45.455], - [-75.72964516129032, 45.45603225806451], + [-75.72964516129032, 45.45603225806452], [-75.729, 45.457], - [-75.72935714285714, 45.45762499999999], + [-75.72935714285714, 45.457625], [-75.728, 45.46], - [-75.72927272727273, 45.461909090909096], + [-75.72927272727273, 45.46190909090909], [-75.729, 45.462], [-75.725, 45.468], [-75.7251690140845, 45.468295774647885], [-75.722, 45.469], - [-75.71969230769231, 45.47303846153846], + [-75.71969230769231, 45.473038461538465], [-75.717, 45.469], [-75.71281690140844, 45.46807042253521], [-75.714, 45.466], @@ -1572,22 +1576,22 @@ [-75.69, 45.455], [-75.6882, 45.4592], [-75.687, 45.461], - [-75.68724489795918, 45.46142857142857], + [-75.68724489795919, 45.46142857142857], [-75.687, 45.462], [-75.68857142857142, 45.46514285714286], [-75.688, 45.466], [-75.69173333333333, 45.47253333333333], [-75.689, 45.478], - [-75.68985714285714, 45.479714285714294], + [-75.68985714285714, 45.47971428571429], [-75.68954545454545, 45.48018181818182], [-75.689, 45.48], - [-75.68709090909091, 45.48063636363636], + [-75.68709090909091, 45.480636363636364], [-75.684, 45.476], [-75.675, 45.473], [-75.666, 45.476], [-75.66587096774194, 45.476193548387094], [-75.665, 45.476], - [-75.6584, 45.47746666666667], + [-75.6584, 45.477466666666665], [-75.651, 45.475], [-75.648, 45.476], [-75.645, 45.475], @@ -1595,7 +1599,7 @@ [-75.639, 45.475], [-75.63, 45.478], [-75.626, 45.484], - [-75.62969230769231, 45.490461538461545], + [-75.62969230769231, 45.49046153846154], [-75.628, 45.493], [-75.63092307692308, 45.49811538461538], [-75.629, 45.501], @@ -1605,9 +1609,9 @@ [-75.655, 45.501], [-75.65442857142857, 45.500142857142855], [-75.657, 45.501], - [-75.66557142857144, 45.49814285714285], + [-75.66557142857143, 45.49814285714286], [-75.663, 45.502], - [-75.66392307692307, 45.50361538461539], + [-75.66392307692308, 45.50361538461539], [-75.663, 45.505], [-75.667, 45.512], [-75.676, 45.514], @@ -1618,7 +1622,7 @@ [-75.68586956521739, 45.49730434782609], [-75.689, 45.498], [-75.698, 45.496], - [-75.70128571428572, 45.490249999999996], + [-75.70128571428572, 45.49025], [-75.704, 45.495], [-75.713, 45.497], [-75.7148, 45.4966], @@ -1626,19 +1630,19 @@ [-75.72, 45.49766666666667], [-75.724, 45.499], [-75.733, 45.496], - [-75.73557142857143, 45.492142857142866], + [-75.73557142857143, 45.49214285714286], [-75.737, 45.495], [-75.747, 45.498], [-75.756, 45.495], [-75.76, 45.488], [-75.756, 45.482], - [-75.74915999999999, 45.47972], + [-75.74916, 45.47972], [-75.753, 45.473], [-75.75119354838709, 45.470290322580645], [-75.757, 45.469], - [-75.75791836734695, 45.46685714285715], + [-75.75791836734695, 45.466857142857144], [-75.758, 45.467], - [-75.76294366197183, 45.4680985915493], + [-75.76294366197183, 45.46809859154929], [-75.759, 45.475], [-75.763, 45.481], [-75.772, 45.484], @@ -1651,18 +1655,18 @@ [-75.767, 45.451], [-75.76372727272727, 45.452090909090906], [-75.761, 45.448], - [-75.7567142857143, 45.44657142857143], + [-75.75671428571428, 45.44657142857143], [-75.753, 45.441], [-75.744, 45.438], - [-75.74040000000001, 45.4392], + [-75.7404, 45.4392], [-75.738, 45.435], [-75.73538709677419, 45.43441935483871], [-75.739, 45.429], - [-75.7387142857143, 45.42857142857143], + [-75.73871428571428, 45.42857142857143], [-75.746, 45.431], - [-75.75028571428572, 45.42957142857142], + [-75.75028571428571, 45.42957142857143], [-75.75, 45.43], - [-75.75323076923077, 45.43565384615384], + [-75.75323076923077, 45.43565384615385], [-75.753, 45.436], [-75.757, 45.443], [-75.766, 45.445], @@ -1674,18 +1678,18 @@ [-75.799, 45.444] ], [ - [-75.73649999999999, 45.48316666666667], - [-75.73519999999999, 45.486200000000004], - [-75.735, 45.48649999999999], - [-75.73364000000001, 45.48412], - [-75.73649999999999, 45.48316666666667] + [-75.7365, 45.48316666666667], + [-75.7352, 45.4862], + [-75.735, 45.4865], + [-75.73364, 45.48412], + [-75.7365, 45.48316666666667] ], [ - [-75.72095652173913, 45.48043478260869], + [-75.72095652173913, 45.4804347826087], [-75.719, 45.48], [-75.71801818181818, 45.48021818181818], [-75.7193076923077, 45.477961538461535], - [-75.72095652173913, 45.48043478260869] + [-75.72095652173913, 45.4804347826087] ] ] } @@ -1742,15 +1746,16 @@ [-75.76560869565218, 45.28091304347826], [-75.765, 45.28], [-75.7570909090909, 45.27736363636364], - [-75.75857142857143, 45.27514285714285], + [-75.75857142857143, 45.27514285714286], [-75.759, 45.275], [-75.763, 45.269], [-75.759, 45.262], [-75.75, 45.26], [-75.741, 45.262], [-75.73942105263158, 45.26568421052632], + [-75.738, 45.266], [-75.729, 45.268], - [-75.72788, 45.269960000000005], + [-75.72788, 45.26996], [-75.719, 45.267], [-75.71168, 45.26944], [-75.708, 45.263], @@ -1758,7 +1763,7 @@ [-75.69, 45.263], [-75.686, 45.27], [-75.69, 45.276], - [-75.69879999999998, 45.278933333333335], + [-75.6988, 45.278933333333335], [-75.694, 45.28], [-75.69, 45.287], [-75.694, 45.293], @@ -1766,7 +1771,7 @@ [-75.712, 45.293], [-75.71366666666667, 45.2905], [-75.714, 45.291], - [-75.71523529411765, 45.29141176470588], + [-75.71523529411765, 45.291411764705884], [-75.719, 45.298], [-75.723, 45.304], [-75.732, 45.307], @@ -1780,21 +1785,21 @@ [-75.77, 45.287] ], [ - [-75.74614285714286, 45.28171428571428], + [-75.74614285714286, 45.28171428571429], [-75.7454, 45.2832], [-75.743, 45.284], [-75.73966666666666, 45.289], [-75.737, 45.285], - [-75.73576470588236, 45.284588235294116], + [-75.73576470588235, 45.284588235294116], [-75.73482352941177, 45.28294117647059], [-75.738, 45.284], - [-75.74549999999999, 45.281499999999994], - [-75.74614285714286, 45.28171428571428] + [-75.7455, 45.2815], + [-75.74614285714286, 45.28171428571429] ], [ [-75.70808695652174, 45.27913043478261], [-75.703, 45.278], - [-75.7, 45.27866666666666], + [-75.7, 45.278666666666666], [-75.70636363636363, 45.276545454545456], [-75.70808695652174, 45.27913043478261] ] @@ -1929,12 +1934,12 @@ [-75.654, 45.364], [-75.65, 45.37], [-75.654, 45.376], - [-75.65454545454546, 45.37618181818181], + [-75.65454545454546, 45.37618181818182], [-75.654, 45.377], - [-75.65564285714285, 45.379875000000006], + [-75.65564285714285, 45.379875], [-75.655, 45.381], [-75.659, 45.387], - [-75.66416000000001, 45.38872], + [-75.66416, 45.38872], [-75.664, 45.389], [-75.668, 45.395], [-75.677, 45.398], @@ -1978,7 +1983,7 @@ [-75.651, 45.011], [-75.642, 45.013], [-75.638, 45.02], - [-75.63825806451614, 45.02038709677419], + [-75.63825806451612, 45.02038709677419], [-75.631, 45.022], [-75.63078181818182, 45.02238181818182], [-75.628, 45.023], @@ -1986,7 +1991,7 @@ [-75.628, 45.036], [-75.637, 45.039], [-75.649, 45.035], - [-75.65157142857143, 45.031142857142854], + [-75.65157142857143, 45.03114285714286], [-75.658, 45.029], [-75.65857142857143, 45.02814285714286], [-75.662, 45.027], @@ -2066,7 +2071,7 @@ [-75.619, 45.138], [-75.61, 45.135], [-75.601, 45.138], - [-75.60073913043477, 45.13839130434783], + [-75.60073913043479, 45.13839130434783], [-75.598, 45.139], [-75.594, 45.146], [-75.598, 45.152], @@ -2141,7 +2146,7 @@ [-75.594, 45.311], [-75.585, 45.313], [-75.581, 45.32], - [-75.58361538461538, 45.32392307692307], + [-75.58361538461538, 45.32392307692308], [-75.583, 45.325], [-75.587, 45.331], [-75.591, 45.338], @@ -2262,7 +2267,7 @@ [-75.561, 45.462], [-75.558, 45.455], [-75.548, 45.453], - [-75.54575, 45.453500000000005], + [-75.54575, 45.4535], [-75.548, 45.449], [-75.545, 45.442], [-75.536, 45.44], @@ -2273,40 +2278,41 @@ [-75.512, 45.444], [-75.509, 45.445], [-75.5, 45.447], - [-75.49952941176471, 45.44782352941176], + [-75.49952941176471, 45.447823529411764], [-75.496, 45.449], - [-75.49582608695651, 45.449260869565215], + [-75.49582608695653, 45.449260869565215], [-75.49439130434783, 45.449579710144924], [-75.492, 45.444], [-75.483, 45.442], [-75.474, 45.444], [-75.47, 45.451], [-75.474, 45.457], - [-75.47657142857142, 45.45785714285714], + [-75.47657142857143, 45.457857142857144], [-75.475, 45.461], [-75.478, 45.468], [-75.47865454545455, 45.46814545454546], [-75.482, 45.474], - [-75.48500000000001, 45.47466666666667], + [-75.485, 45.474666666666664], [-75.492, 45.477], [-75.501, 45.474], [-75.504, 45.468], - [-75.50373333333334, 45.46746666666667], + [-75.50373333333333, 45.46746666666667], [-75.504, 45.467], - [-75.50272727272727, 45.465090909090904], + [-75.50272727272727, 45.46509090909091], [-75.506, 45.464], [-75.506125, 45.46375], [-75.514, 45.462], - [-75.51447058823528, 45.46117647058824], + [-75.5144705882353, 45.461176470588235], + [-75.518, 45.46], [-75.521, 45.459], - [-75.52372727272727, 45.4549090909091], + [-75.52372727272727, 45.45490909090909], [-75.527, 45.456], - [-75.52850000000001, 45.4555], + [-75.5285, 45.4555], [-75.5322, 45.45673333333333], [-75.531, 45.457], - [-75.53066666666668, 45.45777777777777], + [-75.53066666666666, 45.45777777777778], [-75.53, 45.458], - [-75.52947826086957, 45.45878260869566], + [-75.52947826086957, 45.45878260869565], [-75.524, 45.46], [-75.52268421052632, 45.463070175438595], [-75.514, 45.465], @@ -2318,15 +2324,15 @@ [-75.503, 45.485], [-75.513, 45.487], [-75.522, 45.485], - [-75.52288524590165, 45.482934426229505], + [-75.52288524590163, 45.482934426229505], [-75.526, 45.482], - [-75.52615384615385, 45.4816923076923], + [-75.52615384615385, 45.481692307692306], [-75.528, 45.486], [-75.537, 45.488], [-75.547, 45.486], [-75.55, 45.479], [-75.547, 45.473], - [-75.54359574468084, 45.471978723404256], + [-75.54359574468086, 45.471978723404256], [-75.548, 45.471], [-75.558, 45.468], [-75.561, 45.462] @@ -2443,13 +2449,13 @@ [ [-75.494, 45.492], [-75.49, 45.486], - [-75.48957142857144, 45.48585714285714], + [-75.48957142857142, 45.48585714285714], [-75.489, 45.485], [-75.48, 45.482], [-75.471, 45.485], [-75.467, 45.491], [-75.471, 45.497], - [-75.47142857142856, 45.497142857142855], + [-75.47142857142858, 45.497142857142855], [-75.472, 45.498], [-75.481, 45.501], [-75.49, 45.498], @@ -2547,7 +2553,7 @@ [ [-75.456, 45.345], [-75.453, 45.339], - [-75.45214285714286, 45.33871428571428], + [-75.45214285714286, 45.33871428571429], [-75.449, 45.334], [-75.44, 45.331], [-75.431, 45.334], @@ -2577,15 +2583,15 @@ [-75.431, 45.533], [-75.421, 45.536], [-75.418, 45.542], - [-75.42016666666667, 45.54705555555555], + [-75.42016666666666, 45.54705555555555], [-75.42, 45.547], [-75.411, 45.55], [-75.407, 45.556], [-75.411, 45.562], [-75.41276470588235, 45.562588235294115], [-75.413, 45.563], - [-75.41600000000003, 45.56366666666668], - [-75.41614285714286, 45.56371428571429], + [-75.416, 45.56366666666667], + [-75.41614285714286, 45.56371428571428], [-75.419, 45.568], [-75.428, 45.571], [-75.437, 45.568], @@ -2658,7 +2664,7 @@ [-75.391, 45.582], [-75.401, 45.585], [-75.403, 45.588], - [-75.41058823529413, 45.590529411764706], + [-75.41058823529411, 45.590529411764706], [-75.412, 45.593], [-75.421, 45.595], [-75.43, 45.593], @@ -2702,7 +2708,7 @@ [-75.401, 45.51], [-75.397, 45.517], [-75.401, 45.523], - [-75.40142857142858, 45.523142857142865], + [-75.40142857142857, 45.52314285714286], [-75.402, 45.524], [-75.411, 45.527], [-75.42, 45.524], @@ -2780,9 +2786,9 @@ [ [-75.359, 45.331], [-75.356, 45.325], - [-75.3554705882353, 45.32482352941177], + [-75.35547058823529, 45.324823529411766], [-75.355, 45.324], - [-75.34899999999996, 45.322666666666656], + [-75.349, 45.32266666666667], [-75.347, 45.322], [-75.3466, 45.32213333333333], [-75.346, 45.322], @@ -2871,12 +2877,12 @@ "coordinates": [ [ [-75.316, 45.546], - [-75.3133846153846, 45.54207692307692], + [-75.31338461538462, 45.54207692307692], [-75.314, 45.541], [-75.31, 45.535], [-75.301, 45.532], [-75.292, 45.535], - [-75.29, 45.538000000000004], + [-75.29, 45.538], [-75.287, 45.539], [-75.283, 45.545], [-75.2846, 45.5478], @@ -2884,7 +2890,7 @@ [-75.286, 45.558], [-75.296, 45.56], [-75.305, 45.558], - [-75.30663157894737, 45.55419298245614], + [-75.30663157894737, 45.554192982456144], [-75.312, 45.553], [-75.316, 45.546] ] @@ -3029,13 +3035,13 @@ [-75.241, 45.588], [-75.232, 45.591], [-75.228, 45.597], - [-75.2282857142857, 45.5975], + [-75.22828571428572, 45.5975], [-75.228, 45.598], [-75.232, 45.604], [-75.241, 45.607], [-75.25, 45.604], [-75.254, 45.598], - [-75.2537142857143, 45.5975], + [-75.25371428571428, 45.5975], [-75.254, 45.597] ] ] @@ -3075,15 +3081,15 @@ [-75.242, 45.29], [-75.238, 45.284], [-75.229, 45.281], - [-75.22200000000001, 45.283333333333324], + [-75.222, 45.28333333333333], [-75.219, 45.284], - [-75.21719999999999, 45.28820000000001], + [-75.2172, 45.2882], [-75.216, 45.29], - [-75.21624489795917, 45.29042857142857], + [-75.21624489795919, 45.29042857142857], [-75.216, 45.291], [-75.219, 45.297], [-75.228, 45.3], - [-75.235, 45.29766666666667], + [-75.235, 45.297666666666665], [-75.238, 45.297], [-75.242, 45.29] ] @@ -3202,7 +3208,7 @@ [-75.09447826086956, 45.30721739130435], [-75.095, 45.306], [-75.092, 45.3], - [-75.09152, 45.299839999999996], + [-75.09152, 45.29984], [-75.092, 45.299], [-75.088, 45.293], [-75.079, 45.29], @@ -3211,7 +3217,7 @@ [-75.06907692307692, 45.30438461538461], [-75.068, 45.306], [-75.072, 45.313], - [-75.07643478260869, 45.31398550724637], + [-75.0764347826087, 45.31398550724638], [-75.076, 45.315], [-75.079, 45.321], [-75.089, 45.324], @@ -3298,7 +3304,7 @@ [-74.9975, 45.52616666666667], [-74.997, 45.526], [-74.988, 45.529], - [-74.98514285714285, 45.53328571428571], + [-74.98514285714286, 45.53328571428571], [-74.98, 45.535], [-74.977, 45.541], [-74.98, 45.547], @@ -3306,7 +3312,7 @@ [-74.998, 45.547], [-75.00052173913043, 45.543217391304346], [-75.006, 45.542], - [-75.0064705882353, 45.54117647058823], + [-75.00647058823529, 45.54117647058823], [-75.007, 45.541], [-75.011, 45.535] ] @@ -3404,12 +3410,12 @@ [-74.921, 45.543], [-74.912, 45.541], [-74.902, 45.543], - [-74.90178947368422, 45.543491228070174], + [-74.9017894736842, 45.543491228070174], [-74.895, 45.545], [-74.891, 45.552], [-74.895, 45.558], [-74.904, 45.561], - [-74.91094736842106, 45.558684210526316], + [-74.91094736842105, 45.558684210526316], [-74.912, 45.559], [-74.921, 45.556], [-74.924, 45.55] @@ -3446,7 +3452,7 @@ [ [-74.913, 45.347], [-74.909, 45.341], - [-74.90852000000001, 45.34084], + [-74.90852, 45.34084], [-74.909, 45.34], [-74.905, 45.334], [-74.896, 45.331], diff --git a/packages/turf-dissolve/test/out/polysWithoutProperty.geojson b/packages/turf-dissolve/test/out/polysWithoutProperty.geojson index 4c40c01c9..a25a35080 100644 --- a/packages/turf-dissolve/test/out/polysWithoutProperty.geojson +++ b/packages/turf-dissolve/test/out/polysWithoutProperty.geojson @@ -42,7 +42,7 @@ ], [ [0.7659179283564485, 0.10986321392741416], - [0.851440429687502, 0.2524007161458367], + [0.851440429687502, 0.25240071614583665], [0.851440429687502, 0.10986321392741416], [0.7659179283564485, 0.10986321392741416] ] diff --git a/packages/turf-dissolve/test/out/simplified-issue.geojson b/packages/turf-dissolve/test/out/simplified-issue.geojson index ba38ca1aa..bc18e1fe0 100644 --- a/packages/turf-dissolve/test/out/simplified-issue.geojson +++ b/packages/turf-dissolve/test/out/simplified-issue.geojson @@ -12,7 +12,7 @@ [-75.818, 45.347], [-75.809, 45.345], [-75.80038028169014, 45.34691549295775], - [-75.799, 45.344500000000004], + [-75.799, 45.3445], [-75.801, 45.341], [-75.797, 45.335], [-75.788, 45.332], @@ -21,7 +21,7 @@ [-75.777, 45.336], [-75.77558064516128, 45.33812903225807], [-75.775, 45.338], - [-75.76714084507043, 45.339746478873245], + [-75.76714084507043, 45.33974647887324], [-75.765, 45.336], [-75.76398591549295, 45.33577464788733], [-75.765, 45.334], @@ -34,21 +34,21 @@ [-75.744, 45.343], [-75.747, 45.349], [-75.756, 45.352], - [-75.76363636363637, 45.34945454545454], + [-75.76363636363637, 45.34945454545455], [-75.766, 45.353], [-75.775, 45.356], - [-75.78020000000001, 45.35426666666667], + [-75.7802, 45.35426666666667], [-75.7835, 45.355], [-75.779, 45.356], [-75.77629577464789, 45.360732394366195], [-75.773, 45.36], [-75.764, 45.362], - [-75.76067605633803, 45.367816901408446], + [-75.76067605633803, 45.36781690140845], [-75.757, 45.367], - [-75.75474999999999, 45.3675], + [-75.75475, 45.3675], [-75.74901408450704, 45.36622535211268], [-75.752, 45.361], - [-75.74823076923077, 45.35534615384615], + [-75.74823076923077, 45.355346153846156], [-75.749, 45.354], [-75.745, 45.348], [-75.743, 45.344], @@ -57,7 +57,7 @@ [-75.739, 45.337], [-75.735625, 45.335875], [-75.736, 45.335], - [-75.73371428571429, 45.33042857142856], + [-75.73371428571429, 45.33042857142857], [-75.734, 45.33], [-75.73261538461539, 45.327576923076926], [-75.733, 45.327], @@ -70,7 +70,7 @@ [-75.694, 45.325], [-75.685, 45.327], [-75.681, 45.334], - [-75.68227272727272, 45.33590909090909], + [-75.68227272727273, 45.33590909090909], [-75.682, 45.336], [-75.68016666666666, 45.33875], [-75.679, 45.337], @@ -91,14 +91,14 @@ [-75.616, 45.342], [-75.612, 45.348], [-75.616, 45.354], - [-75.6195, 45.35516666666666], + [-75.6195, 45.35516666666667], [-75.611, 45.358], [-75.607, 45.364], [-75.611, 45.371], [-75.61274193548387, 45.37138709677419], [-75.611, 45.374], [-75.615, 45.38], - [-75.6165, 45.380500000000005], + [-75.6165, 45.3805], [-75.61390909090909, 45.38136363636364], [-75.611, 45.377], [-75.60909090909091, 45.376363636363635], @@ -108,34 +108,34 @@ [-75.588, 45.368], [-75.584, 45.375], [-75.588, 45.381], - [-75.58990909090909, 45.38163636363637], + [-75.58990909090909, 45.38163636363636], [-75.589, 45.383], [-75.593, 45.389], [-75.602, 45.392], - [-75.60671428571428, 45.39042857142857], + [-75.60671428571429, 45.39042857142857], [-75.609, 45.395], - [-75.60906122448979, 45.39514285714287], + [-75.60906122448979, 45.39514285714286], [-75.608, 45.397], [-75.61018181818181, 45.40027272727273], [-75.608, 45.401], [-75.60495652173913, 45.405565217391306], [-75.603, 45.406], - [-75.60252941176469, 45.40682352941177], + [-75.6025294117647, 45.40682352941177], [-75.596, 45.409], [-75.59527272727273, 45.41009090909091], [-75.595, 45.41], [-75.586, 45.413], [-75.582, 45.419], [-75.586, 45.425], - [-75.58666666666667, 45.42522222222222], + [-75.58666666666667, 45.425222222222224], [-75.587, 45.426], - [-75.59300000000003, 45.42733333333334], + [-75.593, 45.42733333333333], [-75.595, 45.428], [-75.5954, 45.42786666666667], [-75.596, 45.428], [-75.605, 45.426], - [-75.60520000000001, 45.42593333333333], - [-75.60640000000001, 45.4262], + [-75.6052, 45.42593333333333], + [-75.6064, 45.4262], [-75.604, 45.427], [-75.60371428571429, 45.42742857142857], [-75.596, 45.43], @@ -153,42 +153,42 @@ [-75.595, 45.457], [-75.604, 45.454], [-75.608, 45.448], - [-75.60624, 45.444919999999996], - [-75.60799999999998, 45.44433333333334], + [-75.60624, 45.44492], + [-75.608, 45.44433333333333], [-75.614, 45.443], [-75.61433333333333, 45.44222222222222], [-75.615, 45.442], - [-75.61524999999999, 45.4415], - [-75.61965217391305, 45.44052173913043], + [-75.61525, 45.4415], + [-75.61965217391304, 45.44052173913043], [-75.616, 45.446], [-75.62, 45.453], [-75.629, 45.455], [-75.638, 45.453], [-75.6388, 45.4516], [-75.64, 45.452], - [-75.64084000000001, 45.451719999999995], + [-75.64084, 45.45172], [-75.641, 45.452], [-75.65, 45.454], [-75.659, 45.452], - [-75.66030434782608, 45.448956521739134], + [-75.66030434782608, 45.44895652173913], [-75.661, 45.45], [-75.67, 45.452], [-75.679, 45.45], - [-75.68091304347827, 45.44713043478261], + [-75.68091304347826, 45.44713043478261], [-75.686, 45.446], [-75.689, 45.439], [-75.68857142857142, 45.43814285714286], [-75.689, 45.438], - [-75.68979999999999, 45.436400000000006], + [-75.6898, 45.4364], [-75.694, 45.435], [-75.698, 45.429], - [-75.69683636363636, 45.42696363636363], + [-75.69683636363636, 45.42696363636364], [-75.697, 45.427], [-75.706, 45.425], - [-75.70952941176469, 45.41882352941177], + [-75.7095294117647, 45.41882352941177], [-75.715, 45.417], [-75.719, 45.411], - [-75.7166923076923, 45.407538461538465], + [-75.71669230769231, 45.407538461538465], [-75.717, 45.407], [-75.7159090909091, 45.40536363636364], [-75.717, 45.405], @@ -197,28 +197,29 @@ [-75.739, 45.412], [-75.7424909090909, 45.40589090909091], [-75.751, 45.404], - [-75.75136363636365, 45.403363636363636], + [-75.75136363636364, 45.403363636363636], [-75.753, 45.403], - [-75.75370588235293, 45.40176470588236], + [-75.75370588235295, 45.40176470588235], + [-75.759, 45.4], [-75.762, 45.399], [-75.766, 45.393], [-75.762, 45.386], - [-75.75800000000001, 45.385111111111115], + [-75.758, 45.38511111111111], [-75.763, 45.384], - [-75.76321818181819, 45.383618181818186], + [-75.76321818181817, 45.38361818181818], [-75.766, 45.383], [-75.76952, 45.37684], [-75.773, 45.378], - [-75.77449999999999, 45.377500000000005], + [-75.7745, 45.3775], [-75.782, 45.38], [-75.791, 45.377], [-75.79265217391304, 45.37452173913044], [-75.795, 45.374], [-75.799, 45.367], - [-75.79866666666668, 45.366499999999995], + [-75.79866666666666, 45.3665], [-75.801, 45.363], [-75.797, 45.356], - [-75.79249999999999, 45.355], + [-75.7925, 45.355], [-75.79612903225807, 45.354193548387094], [-75.8, 45.36], [-75.809, 45.363], @@ -227,21 +228,21 @@ ], [ [-75.74034375, 45.38853125], - [-75.74033333333333, 45.388555555555556], + [-75.74033333333334, 45.388555555555556], [-75.738, 45.38933333333333], [-75.735, 45.39], - [-75.73493548387097, 45.390096774193545], + [-75.73493548387097, 45.39009677419355], [-75.73378947368421, 45.389842105263156], [-75.74034375, 45.38853125] ], [ - [-75.7371090909091, 45.37130909090909], + [-75.73710909090909, 45.371309090909094], [-75.73617073170732, 45.372951219512196], [-75.733, 45.372], [-75.724, 45.375], [-75.721, 45.381], [-75.724, 45.388], - [-75.72925000000001, 45.38916666666667], + [-75.72925, 45.38916666666667], [-75.721, 45.391], [-75.71904081632653, 45.39557142857143], [-75.717, 45.392], @@ -253,18 +254,18 @@ [-75.683, 45.403], [-75.68, 45.41], [-75.683, 45.416], - [-75.68385714285714, 45.416285714285706], - [-75.6845, 45.417249999999996], + [-75.68385714285715, 45.41628571428571], + [-75.6845, 45.41725], [-75.684, 45.418], [-75.68516363636364, 45.42003636363636], [-75.685, 45.42], [-75.676, 45.422], - [-75.67510526315789, 45.42408771929825], + [-75.67510526315789, 45.42408771929824], [-75.6722, 45.424733333333336], [-75.67, 45.424], - [-75.66900000000001, 45.42433333333333], + [-75.669, 45.42433333333334], [-75.668, 45.424], - [-75.65972000000001, 45.42676], + [-75.65972, 45.42676], [-75.657, 45.422], [-75.648, 45.42], [-75.64683870967743, 45.420258064516126], @@ -289,7 +290,7 @@ [-75.6359090909091, 45.37236363636364], [-75.63335294117647, 45.368529411764705], [-75.641, 45.367], - [-75.64273913043479, 45.36294202898551], + [-75.64273913043478, 45.36294202898551], [-75.643, 45.363], [-75.6448, 45.3626], [-75.646, 45.363], @@ -300,7 +301,7 @@ [-75.679, 45.357], [-75.683, 45.351], [-75.68033333333334, 45.347], - [-75.6806153846154, 45.346576923076924], + [-75.68061538461538, 45.346576923076924], [-75.682, 45.349], [-75.691, 45.351], [-75.69373913043478, 45.35039130434782], @@ -316,7 +317,7 @@ [-75.713, 45.377], [-75.717, 45.37], [-75.713, 45.364], - [-75.71166666666666, 45.36355555555556], + [-75.71166666666667, 45.36355555555556], [-75.711, 45.362], [-75.708, 45.361333333333334], [-75.714, 45.36], @@ -324,28 +325,30 @@ [-75.714, 45.347], [-75.71244, 45.34648], [-75.71342253521127, 45.344760563380284], - [-75.71867272727272, 45.34592727272727], + [-75.71867272727273, 45.34592727272727], + [-75.721, 45.35], [-75.72315384615385, 45.35376923076923], [-75.723, 45.354], - [-75.72330769230769, 45.35453846153846], + [-75.7233076923077, 45.35453846153846], [-75.723, 45.355], - [-75.72466666666666, 45.357499999999995], + [-75.72466666666666, 45.3575], + [-75.723, 45.36], [-75.721, 45.363], [-75.725, 45.37], [-75.734, 45.372], - [-75.7371090909091, 45.37130909090909] + [-75.73710909090909, 45.371309090909094] ], [ - [-75.63419999999999, 45.43593333333334], + [-75.6342, 45.43593333333333], [-75.631, 45.437], - [-75.63071428571429, 45.437571428571424], + [-75.63071428571429, 45.43757142857143], [-75.629, 45.437], [-75.62233333333333, 45.43922222222222], [-75.62482608695652, 45.43340579710145], - [-75.629, 45.43433333333334], - [-75.62976470588235, 45.43458823529412], + [-75.629, 45.434333333333335], + [-75.62976470588235, 45.434588235294115], [-75.63, 45.435], - [-75.63419999999999, 45.43593333333334] + [-75.6342, 45.43593333333333] ] ] } diff --git a/packages/turf-distance-weight/index.ts b/packages/turf-distance-weight/index.ts index cdac777c7..bb966dd2b 100644 --- a/packages/turf-distance-weight/index.ts +++ b/packages/turf-distance-weight/index.ts @@ -5,6 +5,8 @@ import { featureEach } from "@turf/meta"; /** * calcualte the Minkowski p-norm distance between two features. + * + * @function * @param feature1 point feature * @param feature2 point feature * @param p p-norm 1=} fc FeatureCollection. * @param {Object} [options] option object. * @param {number} [options.threshold=10000] If the distance between neighbor and diff --git a/packages/turf-distance-weight/package.json b/packages/turf-distance-weight/package.json index 0aa0e1d81..90bc6892b 100644 --- a/packages/turf-distance-weight/package.json +++ b/packages/turf-distance-weight/package.json @@ -1,7 +1,7 @@ { "name": "@turf/distance-weight", - "version": "7.0.0", - "description": "turf distance-weight module", + "version": "7.2.0", + "description": "Calculate the influence or weight of points over an area based on their distances.", "author": "Turf Authors", "contributors": [ "Haoming Zhuang <@zhuang-hao-ming>" @@ -53,22 +53,22 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/centroid": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/centroid": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-distance/README.md b/packages/turf-distance/README.md index f521aa5f8..9b0aee7bd 100644 --- a/packages/turf-distance/README.md +++ b/packages/turf-distance/README.md @@ -13,7 +13,7 @@ This uses the [Haversine formula][2] to account for global curvature. * `to` **[Coord][1]** destination coordinate * `options` **[Object][3]** Optional parameters (optional, default `{}`) - * `options.units` **[string][4]** can be degrees, radians, miles, or kilometers (optional, default `'kilometers'`) + * `options.units` **Units** Supports all valid Turf [Units][4]. (optional, default `'kilometers'`) ### Examples @@ -38,7 +38,7 @@ Returns **[number][5]** distance between the two coordinates [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[4]: https://turfjs.org/docs/api/types/Units [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number diff --git a/packages/turf-distance/index.ts b/packages/turf-distance/index.ts index 3c19e6a2f..1d6b34ee3 100644 --- a/packages/turf-distance/index.ts +++ b/packages/turf-distance/index.ts @@ -8,11 +8,11 @@ import { radiansToLength, degreesToRadians, Coord, Units } from "@turf/helpers"; * Calculates the distance between two {@link Coord|coordinates} 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 + * @function * @param {Coord} from origin coordinate * @param {Coord} to destination coordinate * @param {Object} [options={}] Optional parameters - * @param {string} [options.units='kilometers'] can be degrees, radians, miles, or kilometers + * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @returns {number} distance between the two coordinates * @example * var from = turf.point([-75.343, 39.984]); diff --git a/packages/turf-distance/package.json b/packages/turf-distance/package.json index 9f19ac50a..14ececd37 100644 --- a/packages/turf-distance/package.json +++ b/packages/turf-distance/package.json @@ -1,7 +1,7 @@ { "name": "@turf/distance", - "version": "7.0.0", - "description": "turf distance module", + "version": "7.2.0", + "description": "Measures the straight-line distance between two points, like cities or landmarks.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -52,20 +52,20 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-ellipse/README.md b/packages/turf-ellipse/README.md index cb49376e9..0d14f78d4 100644 --- a/packages/turf-ellipse/README.md +++ b/packages/turf-ellipse/README.md @@ -16,7 +16,7 @@ Takes a [Point][1] and calculates the ellipse polygon given two semi-axes expres * `options.angle` **[number][3]** angle of rotation in decimal degrees, positive clockwise (optional, default `0`) * `options.pivot` **[Coord][2]** point around which any rotation will be performed (optional, default `center`) * `options.steps` **[number][3]** number of steps (optional, default `64`) - * `options.units` **[string][5]** unit of measurement for axes (optional, default `'kilometers'`) + * `options.units` **Units** unit of measurement for axes. Supports all valid Turf [Units][5] (optional, default `'kilometers'`) * `options.properties` **[Object][4]** properties (optional, default `{}`) ### Examples @@ -41,7 +41,7 @@ Returns **[Feature][6]<[Polygon][7]>** ellipse polygon [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[5]: https://turfjs.org/docs/api/types/Units [6]: https://tools.ietf.org/html/rfc7946#section-3.2 diff --git a/packages/turf-ellipse/index.ts b/packages/turf-ellipse/index.ts index 06182b972..22d678d80 100644 --- a/packages/turf-ellipse/index.ts +++ b/packages/turf-ellipse/index.ts @@ -1,15 +1,16 @@ import { - degreesToRadians, polygon, isObject, isNumber, Coord, Units, + point, + radiansToDegrees, } from "@turf/helpers"; -import { rhumbDestination } from "@turf/rhumb-destination"; +import { destination } from "@turf/destination"; import { transformRotate } from "@turf/transform-rotate"; import { getCoord } from "@turf/invariant"; -import { GeoJsonProperties, Feature, Polygon } from "geojson"; +import { GeoJsonProperties, Feature, Polygon, Position } from "geojson"; /** * Takes a {@link Point} and calculates the ellipse polygon given two semi-axes expressed in variable units and steps for precision. @@ -21,7 +22,7 @@ import { GeoJsonProperties, Feature, Polygon } from "geojson"; * @param {number} [options.angle=0] angle of rotation in decimal degrees, positive clockwise * @param {Coord} [options.pivot=center] point around which any rotation will be performed * @param {number} [options.steps=64] number of steps - * @param {string} [options.units='kilometers'] unit of measurement for axes + * @param {Units} [options.units='kilometers'] unit of measurement for axes. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @param {Object} [options.properties={}] properties * @returns {Feature} ellipse polygon * @example @@ -47,12 +48,11 @@ function ellipse( ): Feature { // Optional params options = options || {}; - const steps = options.steps || 64; + let steps = options.steps || 64; const units = options.units || "kilometers"; - const angle = options.angle || 0; + let angle = options.angle || 0; const pivot = options.pivot || center; const properties = options.properties || {}; - // validation if (!center) throw new Error("center is required"); if (!xSemiAxis) throw new Error("xSemiAxis is required"); @@ -61,62 +61,99 @@ function ellipse( if (!isNumber(steps)) throw new Error("steps must be a number"); if (!isNumber(angle)) throw new Error("angle must be a number"); - const centerCoords = getCoord(center); - if (units !== "degrees") { - const xDest = rhumbDestination(center, xSemiAxis, 90, { units }); - const yDest = rhumbDestination(center, ySemiAxis, 0, { units }); - xSemiAxis = getCoord(xDest)[0] - centerCoords[0]; - ySemiAxis = getCoord(yDest)[1] - centerCoords[1]; - } + const centerCoords = getCoord( + transformRotate(point(getCoord(center)), angle, { pivot }) + ); - const coordinates: number[][] = []; - for (let i = 0; i < steps; i += 1) { - const stepAngle = (i * -360) / steps; - let x = - (xSemiAxis * ySemiAxis) / - Math.sqrt( - Math.pow(ySemiAxis, 2) + - Math.pow(xSemiAxis, 2) * Math.pow(getTanDeg(stepAngle), 2) - ); - let y = - (xSemiAxis * ySemiAxis) / - Math.sqrt( - Math.pow(xSemiAxis, 2) + - Math.pow(ySemiAxis, 2) / Math.pow(getTanDeg(stepAngle), 2) - ); + angle = -90 + angle; - if (stepAngle < -90 && stepAngle >= -270) x = -x; - if (stepAngle < -180 && stepAngle >= -360) y = -y; - if (units === "degrees") { - const angleRad = degreesToRadians(angle); - const newx = x * Math.cos(angleRad) + y * Math.sin(angleRad); - const newy = y * Math.cos(angleRad) - x * Math.sin(angleRad); - x = newx; - y = newy; + // Divide steps by 4 for one quadrant + steps = Math.ceil(steps / 4); + + let quadrantParameters = []; + let parameters = []; + + const a = xSemiAxis; + const b = ySemiAxis; + + // Gradient x intersect + const c = b; + + // Gradient of line + const m = (a - b) / (Math.PI / 2); + + // Area under line + const A = ((a + b) * Math.PI) / 4; + + // Weighting function + const v = 0.5; + + const k = steps; + + let w = 0; + let x = 0; + + for (let i = 0; i < steps; i++) { + x += w; + + if (m === 0) { + // It's a circle, so use simplified c*w - A/k == 0 + w = A / k / c; + } else { + // Otherwise, use full (v*m)*w^2 + (m*x+c)*w - A/k == 0 + // Solve as quadratic ax^2 + bx + c = 0 + w = + (-(m * x + c) + + Math.sqrt(Math.pow(m * x + c, 2) - 4 * (v * m) * -(A / k))) / + (2 * (v * m)); + } + if (x != 0) { + // easier to add it later to avoid having twice the same point + quadrantParameters.push(x); } - - coordinates.push([x + centerCoords[0], y + centerCoords[1]]); } - coordinates.push(coordinates[0]); - if (units === "degrees") { - return polygon([coordinates], properties); - } else { - return transformRotate(polygon([coordinates], properties), angle, { - pivot, - }); - } -} -/** - * Get Tan Degrees - * - * @private - * @param {number} deg Degrees - * @returns {number} Tan Degrees - */ -function getTanDeg(deg: number) { - const rad = (deg * Math.PI) / 180; - return Math.tan(rad); + //NE + parameters.push(0); + for (let i = 0; i < quadrantParameters.length; i++) { + parameters.push(quadrantParameters[i]); + } + //NW + parameters.push(Math.PI / 2); + for (let i = 0; i < quadrantParameters.length; i++) { + parameters.push( + Math.PI - quadrantParameters[quadrantParameters.length - i - 1] + ); + } + //SW + parameters.push(Math.PI); + for (let i = 0; i < quadrantParameters.length; i++) { + parameters.push(Math.PI + quadrantParameters[i]); + } + //SE + parameters.push((3 * Math.PI) / 2); + for (let i = 0; i < quadrantParameters.length; i++) { + parameters.push( + 2 * Math.PI - quadrantParameters[quadrantParameters.length - i - 1] + ); + } + parameters.push(0); + + // We can now construct the ellipse + const coords: Position[] = []; + for (const param of parameters) { + const theta = Math.atan2(b * Math.sin(param), a * Math.cos(param)); + const r = Math.sqrt( + (Math.pow(a, 2) * Math.pow(b, 2)) / + (Math.pow(a * Math.sin(theta), 2) + Math.pow(b * Math.cos(theta), 2)) + ); + coords.push( + destination(centerCoords, r, angle + radiansToDegrees(theta), { + units: units, + }).geometry.coordinates + ); + } + return polygon([coords], properties); } export { ellipse }; diff --git a/packages/turf-ellipse/package.json b/packages/turf-ellipse/package.json index ea2b1e369..cdacca6e8 100644 --- a/packages/turf-ellipse/package.json +++ b/packages/turf-ellipse/package.json @@ -1,10 +1,11 @@ { "name": "@turf/ellipse", - "version": "7.0.0", - "description": "turf ellipse module", + "version": "7.2.0", + "description": "Takes a Point and calculates the ellipse polygon given two semi-axes expressed in variable units and steps for precision.", "author": "Turf Authors", "contributors": [ - "Moacir P. de SÑ Pereira <@muziejus>" + "Moacir P. de SÑ Pereira <@muziejus>", + "Pavel Rozvora <@prozvora>" ], "license": "MIT", "bugs": { @@ -53,28 +54,30 @@ }, "devDependencies": { "@placemarkio/check-geojson": "^0.1.12", - "@turf/bbox-polygon": "workspace:^", - "@turf/circle": "workspace:^", - "@turf/destination": "workspace:^", - "@turf/truncate": "workspace:^", + "@turf/area": "workspace:*", + "@turf/bbox-polygon": "workspace:*", + "@turf/circle": "workspace:*", + "@turf/intersect": "workspace:*", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", - "glob": "^10.3.10", + "glob": "^11.0.2", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/rhumb-destination": "workspace:^", - "@turf/transform-rotate": "workspace:^", + "@turf/destination": "workspace:*", + "@turf/distance": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/transform-rotate": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-ellipse/test.ts b/packages/turf-ellipse/test.ts index 62d206533..12cdee9c2 100644 --- a/packages/turf-ellipse/test.ts +++ b/packages/turf-ellipse/test.ts @@ -1,5 +1,4 @@ import test from "tape"; -import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; @@ -7,124 +6,101 @@ import { writeJsonFileSync } from "write-json-file"; import { circle } from "@turf/circle"; import { truncate } from "@turf/truncate"; import { check } from "@placemarkio/check-geojson"; -import { bboxPolygon } from "@turf/bbox-polygon"; -import { rhumbDestination } from "@turf/rhumb-destination"; -// import { destination } from '@turf/destination'; import { featureCollection } from "@turf/helpers"; +import { intersect } from "@turf/intersect"; +import { area } from "@turf/area"; import { ellipse } from "./index.js"; +import fs from "fs"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); +const directories = { + in: path.join(__dirname, "test", "in") + path.sep, + out: path.join(__dirname, "test", "out") + path.sep, +}; + +const fixtures = fs.readdirSync(directories.in).map((filename) => { + return { + filename, + name: path.parse(filename).name, + geojson: loadJsonFileSync(directories.in + filename), + }; +}); + test("turf-ellipse", (t) => { - glob - .sync(path.join(__dirname, "test", "in", "*.json")) - .forEach((filepath) => { - // Define params - const { name } = path.parse(filepath); - const geojson = loadJsonFileSync(filepath); - const center = geojson.geometry.coordinates; - let { xSemiAxis, ySemiAxis, steps, angle, units } = geojson.properties; - angle = angle || 0; - const options = { steps, angle, units }; - const maxAxis = Math.max(xSemiAxis, ySemiAxis); + fixtures.forEach((fixture) => { + console.log(fixture.filename); + const filename = fixture.filename; + const name = fixture.name; + const geojson = fixture.geojson; + const center = geojson.geometry.coordinates; + let { xSemiAxis, ySemiAxis, steps, angle, units, accuracy } = + geojson.properties; + angle = angle || 0; + const options = { + steps: steps, + angle: angle, + units: units, + accuracy: accuracy, + }; + const maxAxis = Math.max(xSemiAxis, ySemiAxis); - // Styled results - const maxDestination0 = rhumbDestination(center, maxAxis, angle, { - units, - }); - const maxDestination90 = rhumbDestination(center, maxAxis, angle + 90, { - units, - }); - const maxDestination180 = rhumbDestination(center, maxAxis, angle + 180, { - units, - }); - const maxDestination270 = rhumbDestination(center, maxAxis, angle + 270, { - units, - }); + const results = featureCollection([ + geojson, + truncate(colorize(circle(center, maxAxis, options), "#F00")), + truncate( + colorize(ellipse(center, xSemiAxis, ySemiAxis, options), "#00F") + ), + truncate( + colorize( + ellipse(center, xSemiAxis, ySemiAxis, { + steps, + angle: angle + 90, + units, + accuracy: accuracy, + }), + "#0F0" + ) + ), + ]); - const xDestination0 = rhumbDestination(center, xSemiAxis, angle, { - units, - }); - const xDestination90 = rhumbDestination(center, xSemiAxis, angle + 90, { - units, - }); - const xDestination180 = rhumbDestination(center, xSemiAxis, angle + 180, { - units, - }); - const xDestination270 = rhumbDestination(center, xSemiAxis, angle + 270, { - units, - }); + // Save to file + const out = path.join(directories.out, filename); + if (process.env.REGEN) writeJsonFileSync(out, results); + t.deepEqual(results, loadJsonFileSync(out), name); + }); + t.end(); +}); - const yDestination0 = rhumbDestination(center, ySemiAxis, angle, { - units, - }); - const yDestination90 = rhumbDestination(center, ySemiAxis, angle + 90, { - units, - }); - const yDestination180 = rhumbDestination(center, ySemiAxis, angle + 180, { - units, - }); - const yDestination270 = rhumbDestination(center, ySemiAxis, angle + 270, { - units, - }); +test("turf-ellipse -- circle consistency", (t) => { + const ellipseGeom = truncate(ellipse([0, 60], 2000, 2000, { steps: 300 })); + const circleGeom = truncate(circle([0, 60], 2000, { steps: 300 })); + const intersectionGeom = intersect( + featureCollection([ellipseGeom, circleGeom]) + ); + const areaIntersection = + intersectionGeom != null ? area(intersectionGeom.geometry) : 0; + const areaCircle = circleGeom != null ? area(circleGeom.geometry) : 0; + t.true( + Math.abs(areaIntersection - areaCircle) / areaCircle < 0.00001, + "both areas are equal" + ); + t.end(); +}); - const bboxX = colorize( - bboxPolygon([ - xDestination270.geometry.coordinates[0], - yDestination180.geometry.coordinates[1], - xDestination90.geometry.coordinates[0], - yDestination0.geometry.coordinates[1], - ]), - "#FFF" - ); - const bboxY = colorize( - bboxPolygon([ - yDestination270.geometry.coordinates[0], - xDestination180.geometry.coordinates[1], - yDestination90.geometry.coordinates[0], - xDestination0.geometry.coordinates[1], - ]), - "#666" - ); - const bboxMax = colorize( - bboxPolygon([ - maxDestination270.geometry.coordinates[0], - maxDestination180.geometry.coordinates[1], - maxDestination90.geometry.coordinates[0], - maxDestination0.geometry.coordinates[1], - ]), - "#000" - ); - - const results = featureCollection([ - bboxX, - bboxY, - bboxMax, - geojson, - truncate(colorize(circle(center, maxAxis, options), "#F00")), - truncate( - colorize(ellipse(center, xSemiAxis, ySemiAxis, options), "#00F") - ), - truncate( - colorize( - ellipse(center, xSemiAxis, ySemiAxis, { - steps, - angle: angle + 90, - units, - }), - "#0F0" - ) - ), - ]); - - // Save to file - const out = filepath.replace( - path.join("test", "in"), - path.join("test", "out") - ); - if (process.env.REGEN) writeJsonFileSync(out, results); - t.deepEqual(results, loadJsonFileSync(out), name); - }); +test("turf-ellipse -- rotation consistency", (t) => { + const ellipseGeom = ellipse([0, 60], 2000, 2000, { angle: 0 }); + const ellipseTurnedGeom = ellipse([0, 60], 2000, 2000, { angle: 90 }); + const intersectionGeom = intersect( + featureCollection([ellipseGeom, ellipseTurnedGeom]) + ); + const areaIntersection = + intersectionGeom != null ? area(intersectionGeom.geometry) : 0; + const areaEllipse = ellipseGeom != null ? area(ellipseGeom.geometry) : 0; + t.true( + Math.abs(areaIntersection - areaEllipse) / areaEllipse < 0.00001, + "both areas are equal" + ); t.end(); }); diff --git a/packages/turf-ellipse/test/in/rotation-degrees.json b/packages/turf-ellipse/test/in/rotation-degrees.json index 496e8da0a..2effdb4b9 100644 --- a/packages/turf-ellipse/test/in/rotation-degrees.json +++ b/packages/turf-ellipse/test/in/rotation-degrees.json @@ -4,7 +4,7 @@ "units": "degrees", "xSemiAxis": 0.125, "ySemiAxis": 0.025, - "angle": 45 + "angle": 30 }, "geometry": { "type": "Point", diff --git a/packages/turf-ellipse/test/in/rotation.json b/packages/turf-ellipse/test/in/rotation.json index bcb5f8806..bd2778680 100644 --- a/packages/turf-ellipse/test/in/rotation.json +++ b/packages/turf-ellipse/test/in/rotation.json @@ -3,7 +3,7 @@ "properties": { "xSemiAxis": 5, "ySemiAxis": 1, - "angle": 45 + "angle": 30 }, "geometry": { "type": "Point", diff --git a/packages/turf-ellipse/test/in/simple-with-elevation.json b/packages/turf-ellipse/test/in/simple-with-elevation.json new file mode 100644 index 000000000..9092acee0 --- /dev/null +++ b/packages/turf-ellipse/test/in/simple-with-elevation.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "properties": { + "xSemiAxis": 5, + "ySemiAxis": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.9975, 40.730833, 120] + } +} diff --git a/packages/turf-ellipse/test/out/anti-meridian-degrees.json b/packages/turf-ellipse/test/out/anti-meridian-degrees.json index 9dc93cef4..4a2824aa2 100644 --- a/packages/turf-ellipse/test/out/anti-meridian-degrees.json +++ b/packages/turf-ellipse/test/out/anti-meridian-degrees.json @@ -1,72 +1,6 @@ { "type": "FeatureCollection", "features": [ - { - "type": "Feature", - "bbox": [-232.28458782435735, -27, -127.71541217564265, -7.000000000000003], - "properties": { - "stroke-width": 6, - "stroke": "#FFF", - "fill": "#FFF", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-232.28458782435735, -27], - [-127.71541217564265, -27], - [-127.71541217564265, -7.000000000000003], - [-232.28458782435735, -7.000000000000003], - [-232.28458782435735, -27] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [-190.4569175648715, -66.99999999999999, -169.5430824351285, 33], - "properties": { - "stroke-width": 6, - "stroke": "#666", - "fill": "#666", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-190.4569175648715, -66.99999999999999], - [-169.5430824351285, -66.99999999999999], - [-169.5430824351285, 33], - [-190.4569175648715, 33], - [-190.4569175648715, -66.99999999999999] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [-232.28458782435735, -66.99999999999999, -127.71541217564265, 33], - "properties": { - "stroke-width": 6, - "stroke": "#000", - "fill": "#000", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-232.28458782435735, -66.99999999999999], - [-127.71541217564265, -66.99999999999999], - [-127.71541217564265, 33], - [-232.28458782435735, 33], - [-232.28458782435735, -66.99999999999999] - ] - ] - } - }, { "type": "Feature", "properties": { @@ -172,71 +106,71 @@ "type": "Polygon", "coordinates": [ [ - [-130, -17], - [-135.144121, -12.582082], - [-144.548397, -9.948238], - [-152.477908, -8.651265], - [-158.259476, -7.99478], - [-162.477758, -7.634166], - [-165.662441, -7.419949], - [-168.161441, -7.284346], - [-170.194193, -7.194193], - [-171.901575, -7.132041], - [-173.37709, -7.088114], - [-174.685172, -7.056655], - [-175.872005, -7.034139], - [-176.972101, -7.018353], - [-178.012448, -7.007904], - [-179.015277, -7.00194], + [-231.255224, -10.832176], + [-229.537115, -9.171208], + [-226.785333, -8.318289], + [-223.616357, -7.809288], + [-220.237616, -7.490076], + [-216.750783, -7.287067], + [-213.215132, -7.158857], + [-209.668909, -7.079876], + [-206.138464, -7.033411], + [-202.642783, -7.008151], + [-199.195982, -6.996301], + [-195.808785, -6.992459], + [-192.489461, -6.992913], + [-189.24444, -6.99517], + [-186.078735, -6.997636], + [-182.996251, -6.999388], [-180, -7], - [-180.984723, -7.00194], - [-181.987552, -7.007904], - [-183.027899, -7.018353], - [-184.127995, -7.034139], - [-185.314828, -7.056655], - [-186.62291, -7.088114], - [-188.098425, -7.132041], - [-189.805807, -7.194193], - [-191.838559, -7.284346], - [-194.337559, -7.419949], - [-197.522242, -7.634166], - [-201.740524, -7.99478], - [-207.522092, -8.651265], - [-215.451603, -9.948238], - [-224.855879, -12.582082], - [-230, -17], - [-224.855879, -21.417918], - [-215.451603, -24.051762], - [-207.522092, -25.348735], - [-201.740524, -26.00522], - [-197.522242, -26.365834], - [-194.337559, -26.580051], - [-191.838559, -26.715654], - [-189.805807, -26.805807], - [-188.098425, -26.867959], - [-186.62291, -26.911886], - [-185.314828, -26.943345], - [-184.127995, -26.965861], - [-183.027899, -26.981647], - [-181.987552, -26.992096], - [-180.984723, -26.99806], + [-177.003749, -6.999388], + [-173.921265, -6.997636], + [-170.75556, -6.99517], + [-167.510539, -6.992913], + [-164.191215, -6.992459], + [-160.804018, -6.996301], + [-157.357217, -7.008151], + [-153.861536, -7.033411], + [-150.331091, -7.079876], + [-146.784868, -7.158857], + [-143.249217, -7.287067], + [-139.762384, -7.490076], + [-136.383643, -7.809288], + [-133.214667, -8.318289], + [-130.462885, -9.171208], + [-128.744776, -10.832176], + [-129.549848, -13.068509], + [-131.704315, -15.006667], + [-134.457899, -16.764622], + [-137.558403, -18.370546], + [-140.881596, -19.832788], + [-144.353404, -21.153602], + [-147.923695, -22.333485], + [-151.555203, -23.372894], + [-155.218208, -24.273002], + [-158.887798, -25.036029], + [-162.542409, -25.665364], + [-166.163061, -26.16555], + [-169.732965, -26.542201], + [-173.237347, -26.80186], + [-176.663352, -26.951832], [-180, -27], - [-179.015277, -26.99806], - [-178.012448, -26.992096], - [-176.972101, -26.981647], - [-175.872005, -26.965861], - [-174.685172, -26.943345], - [-173.37709, -26.911886], - [-171.901575, -26.867959], - [-170.194193, -26.805807], - [-168.161441, -26.715654], - [-165.662441, -26.580051], - [-162.477758, -26.365834], - [-158.259476, -26.00522], - [-152.477908, -25.348735], - [-144.548397, -24.051762], - [-135.144121, -21.417918], - [-130, -17] + [-183.336648, -26.951832], + [-186.762653, -26.80186], + [-190.267035, -26.542201], + [-193.836939, -26.16555], + [-197.457591, -25.665364], + [-201.112202, -25.036029], + [-204.781792, -24.273002], + [-208.444797, -23.372894], + [-212.076305, -22.333485], + [-215.646596, -21.153602], + [-219.118404, -19.832788], + [-222.441597, -18.370546], + [-225.542101, -16.764622], + [-228.295685, -15.006667], + [-230.450152, -13.068509], + [-231.255224, -10.832176] ] ] } @@ -253,71 +187,71 @@ "type": "Polygon", "coordinates": [ [ - [-180, -67], - [-175.582082, -61.855879], - [-172.948238, -52.451603], - [-171.651265, -44.522092], - [-170.99478, -38.740524], - [-170.634166, -34.522242], - [-170.419949, -31.337559], - [-170.284346, -28.838559], - [-170.194193, -26.805807], - [-170.132041, -25.098425], - [-170.088114, -23.62291], - [-170.056655, -22.314828], - [-170.034139, -21.127995], - [-170.018353, -20.027899], - [-170.007904, -18.987552], - [-170.00194, -17.984723], - [-170, -17], - [-170.00194, -16.015277], - [-170.007904, -15.012448], - [-170.018353, -13.972101], - [-170.034139, -12.872005], - [-170.056655, -11.685172], - [-170.088114, -10.37709], - [-170.132041, -8.901575], - [-170.194193, -7.194193], - [-170.284346, -5.161441], - [-170.419949, -2.662441], - [-170.634166, 0.522242], - [-170.99478, 4.740524], - [-171.651265, 10.522092], - [-172.948238, 18.451603], - [-175.582082, 27.855879], [-180, 33], - [-184.417918, 27.855879], - [-187.051762, 18.451603], - [-188.348735, 10.522092], - [-189.00522, 4.740524], - [-189.365834, 0.522242], - [-189.580051, -2.662441], - [-189.715654, -5.161441], - [-189.805807, -7.194193], - [-189.867959, -8.901575], - [-189.911886, -10.37709], - [-189.943345, -11.685172], - [-189.965861, -12.872005], - [-189.981647, -13.972101], - [-189.992096, -15.012448], - [-189.99806, -16.015277], - [-190, -17], - [-189.99806, -17.984723], - [-189.992096, -18.987552], - [-189.981647, -20.027899], - [-189.965861, -21.127995], - [-189.943345, -22.314828], - [-189.911886, -23.62291], - [-189.867959, -25.098425], - [-189.805807, -26.805807], - [-189.715654, -28.838559], - [-189.580051, -31.337559], - [-189.365834, -34.522242], - [-189.00522, -38.740524], - [-188.348735, -44.522092], - [-187.051762, -52.451603], - [-184.417918, -61.855879], - [-180, -67] + [-177.649663, 31.703957], + [-176.075902, 29.197049], + [-174.899856, 26.193732], + [-173.977415, 22.936144], + [-173.23134, 19.54281], + [-172.614036, 16.082418], + [-172.093927, 12.598902], + [-171.649083, 9.122233], + [-171.263795, 5.673775], + [-170.926553, 2.269246], + [-170.628782, -1.079531], + [-170.364019, -4.363529], + [-170.127356, -7.575789], + [-169.915059, -10.710919], + [-169.724292, -13.764747], + [-169.55293, -16.734064], + [-169.394938, -19.704191], + [-169.246345, -22.760568], + [-169.109071, -25.900205], + [-168.985952, -29.119223], + [-168.881153, -32.41262], + [-168.800816, -35.773947], + [-168.754065, -39.194852], + [-168.754629, -42.664405], + [-168.823498, -46.168062], + [-168.993438, -49.685982], + [-169.316859, -53.190124], + [-169.880034, -56.638822], + [-170.829705, -59.965537], + [-172.425015, -63.051999], + [-175.146105, -65.648285], + [-180, -67], + [-184.853895, -65.648285], + [-187.574985, -63.051999], + [-189.170295, -59.965537], + [-190.119966, -56.638822], + [-190.683141, -53.190124], + [-191.006562, -49.685982], + [-191.176502, -46.168062], + [-191.245371, -42.664405], + [-191.245935, -39.194852], + [-191.199184, -35.773947], + [-191.118847, -32.41262], + [-191.014048, -29.119223], + [-190.890929, -25.900205], + [-190.753655, -22.760568], + [-190.605062, -19.704191], + [-190.44707, -16.734064], + [-190.275708, -13.764747], + [-190.084941, -10.710919], + [-189.872644, -7.575789], + [-189.635981, -4.363529], + [-189.371218, -1.079531], + [-189.073447, 2.269246], + [-188.736205, 5.673775], + [-188.350917, 9.122233], + [-187.906073, 12.598902], + [-187.385964, 16.082418], + [-186.76866, 19.54281], + [-186.022585, 22.936144], + [-185.100144, 26.193732], + [-183.924098, 29.197049], + [-182.350337, 31.703957], + [-180, 33] ] ] } diff --git a/packages/turf-ellipse/test/out/anti-meridian.json b/packages/turf-ellipse/test/out/anti-meridian.json index affda5a80..68b1e8c35 100644 --- a/packages/turf-ellipse/test/out/anti-meridian.json +++ b/packages/turf-ellipse/test/out/anti-meridian.json @@ -1,78 +1,6 @@ { "type": "FeatureCollection", "features": [ - { - "type": "Feature", - "bbox": [ - -180.4702059453939, -17.089932036372456, -179.5297940546061, -16.910067963627547 - ], - "properties": { - "stroke-width": 6, - "stroke": "#FFF", - "fill": "#FFF", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-180.4702059453939, -17.089932036372456], - [-179.5297940546061, -17.089932036372456], - [-179.5297940546061, -16.910067963627547], - [-180.4702059453939, -16.910067963627547], - [-180.4702059453939, -17.089932036372456] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -180.09404118907878, -17.44966018186227, -179.90595881092122, -16.55033981813773 - ], - "properties": { - "stroke-width": 6, - "stroke": "#666", - "fill": "#666", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-180.09404118907878, -17.44966018186227], - [-179.90595881092122, -17.44966018186227], - [-179.90595881092122, -16.55033981813773], - [-180.09404118907878, -16.55033981813773], - [-180.09404118907878, -17.44966018186227] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -180.4702059453939, -17.44966018186227, -179.5297940546061, -16.55033981813773 - ], - "properties": { - "stroke-width": 6, - "stroke": "#000", - "fill": "#000", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-180.4702059453939, -17.44966018186227], - [-179.5297940546061, -17.44966018186227], - [-179.5297940546061, -16.55033981813773], - [-180.4702059453939, -16.55033981813773], - [-180.4702059453939, -17.44966018186227] - ] - ] - } - }, { "type": "Feature", "properties": { @@ -177,71 +105,71 @@ "type": "Polygon", "coordinates": [ [ - [-179.529794, -17], - [-179.581966, -16.958827], - [-179.674097, -16.935174], - [-179.749219, -16.923927], - [-179.802884, -16.918352], - [-179.841585, -16.915326], - [-179.870604, -16.91354], - [-179.893277, -16.912415], - [-179.911669, -16.911669], - [-179.927087, -16.911156], - [-179.940394, -16.910793], - [-179.95218, -16.910534], - [-179.962865, -16.910349], - [-179.972765, -16.910219], - [-179.982124, -16.910133], - [-179.991144, -16.910084], + [-180.470205, -16.999461], + [-180.457964, -16.979142], + [-180.434333, -16.965124], + [-180.406011, -16.954269], + [-180.375269, -16.945497], + [-180.343224, -16.938267], + [-180.310525, -16.932253], + [-180.277591, -16.927239], + [-180.244707, -16.923072], + [-180.21208, -16.919634], + [-180.17986, -16.916835], + [-180.148164, -16.9146], + [-180.117078, -16.91287], + [-180.086671, -16.911592], + [-180.056997, -16.910724], + [-180.028096, -16.910227], [-180, -16.910068], - [-180.008856, -16.910084], - [-180.017876, -16.910133], - [-180.027235, -16.910219], - [-180.037135, -16.910349], - [-180.04782, -16.910534], - [-180.059606, -16.910793], - [-180.072913, -16.911156], - [-180.088331, -16.911669], - [-180.106723, -16.912415], - [-180.129396, -16.91354], - [-180.158415, -16.915326], - [-180.197116, -16.918352], - [-180.250781, -16.923927], - [-180.325903, -16.935174], - [-180.418034, -16.958827], - [-180.470206, -17], - [-180.418034, -17.041173], - [-180.325903, -17.064826], - [-180.250781, -17.076073], - [-180.197116, -17.081648], - [-180.158415, -17.084674], - [-180.129396, -17.08646], - [-180.106723, -17.087585], - [-180.088331, -17.088331], - [-180.072913, -17.088844], - [-180.059606, -17.089207], - [-180.04782, -17.089466], - [-180.037135, -17.089651], - [-180.027235, -17.089781], - [-180.017876, -17.089867], - [-180.008856, -17.089916], + [-179.971904, -16.910227], + [-179.943003, -16.910724], + [-179.913329, -16.911592], + [-179.882922, -16.91287], + [-179.851836, -16.9146], + [-179.82014, -16.916835], + [-179.78792, -16.919634], + [-179.755293, -16.923072], + [-179.722409, -16.927239], + [-179.689475, -16.932253], + [-179.656776, -16.938267], + [-179.624731, -16.945497], + [-179.593989, -16.954269], + [-179.565667, -16.965124], + [-179.542036, -16.979142], + [-179.529795, -16.999461], + [-179.541936, -17.019834], + [-179.565507, -17.033955], + [-179.593793, -17.044926], + [-179.624514, -17.053815], + [-179.656551, -17.061158], + [-179.689251, -17.067276], + [-179.722194, -17.072384], + [-179.755092, -17.076635], + [-179.787739, -17.080146], + [-179.81998, -17.083007], + [-179.851701, -17.085293], + [-179.882813, -17.087063], + [-179.913247, -17.088371], + [-179.942949, -17.08926], + [-179.971877, -17.089769], [-180, -17.089932], - [-179.991144, -17.089916], - [-179.982124, -17.089867], - [-179.972765, -17.089781], - [-179.962865, -17.089651], - [-179.95218, -17.089466], - [-179.940394, -17.089207], - [-179.927087, -17.088844], - [-179.911669, -17.088331], - [-179.893277, -17.087585], - [-179.870604, -17.08646], - [-179.841585, -17.084674], - [-179.802884, -17.081648], - [-179.749219, -17.076073], - [-179.674097, -17.064826], - [-179.581966, -17.041173], - [-179.529794, -17] + [-180.028123, -17.089769], + [-180.057051, -17.08926], + [-180.086753, -17.088371], + [-180.117187, -17.087063], + [-180.148299, -17.085293], + [-180.18002, -17.083007], + [-180.212261, -17.080146], + [-180.244908, -17.076635], + [-180.277806, -17.072384], + [-180.310749, -17.067276], + [-180.343449, -17.061158], + [-180.375486, -17.053815], + [-180.406207, -17.044926], + [-180.434493, -17.033955], + [-180.458064, -17.019834], + [-180.470205, -16.999461] ] ] } @@ -258,71 +186,71 @@ "type": "Polygon", "coordinates": [ [ - [-180, -17.44966], - [-179.9569, -17.399812], - [-179.932155, -17.311716], - [-179.920399, -17.239871], - [-179.914578, -17.188544], - [-179.911421, -17.151527], - [-179.90956, -17.123771], - [-179.908388, -17.102083], - [-179.907612, -17.084491], - [-179.907079, -17.069743], - [-179.906703, -17.057015], - [-179.906435, -17.045742], - [-179.906244, -17.035521], - [-179.90611, -17.026051], - [-179.906023, -17.017099], - [-179.905973, -17.008471], - [-179.905959, -17], - [-179.905978, -16.991529], - [-179.906031, -16.982901], - [-179.906123, -16.973949], - [-179.906261, -16.964479], - [-179.906458, -16.954258], - [-179.906732, -16.942985], - [-179.907114, -16.930257], - [-179.907654, -16.915509], - [-179.908438, -16.897917], - [-179.90962, -16.876229], - [-179.911492, -16.848473], - [-179.914664, -16.811456], - [-179.920501, -16.760129], - [-179.932268, -16.688284], - [-179.956992, -16.600188], [-180, -16.55034], - [-180.043009, -16.600276], - [-180.067732, -16.688391], - [-180.079499, -16.760226], - [-180.085336, -16.811538], - [-180.088508, -16.848541], - [-180.09038, -16.876286], - [-180.091562, -16.897965], - [-180.092346, -16.915549], - [-180.092886, -16.93029], - [-180.093268, -16.943012], - [-180.093542, -16.95428], - [-180.093739, -16.964496], - [-180.093877, -16.973961], - [-180.093969, -16.98291], - [-180.094022, -16.991533], - [-180.094041, -17], - [-180.094027, -17.008467], - [-180.093977, -17.01709], - [-180.09389, -17.026039], - [-180.093756, -17.035504], - [-180.093565, -17.04572], - [-180.093297, -17.056988], - [-180.092921, -17.06971], - [-180.092388, -17.084451], - [-180.091612, -17.102035], - [-180.09044, -17.123714], - [-180.088579, -17.151459], - [-180.085422, -17.188462], - [-180.079601, -17.239774], - [-180.067845, -17.311609], - [-180.0431, -17.399724], - [-180, -17.44966] + [-179.978774, -16.561997], + [-179.964091, -16.584565], + [-179.952697, -16.61163], + [-179.943474, -16.641017], + [-179.935858, -16.671656], + [-179.929514, -16.702924], + [-179.924218, -16.734422], + [-179.91981, -16.765874], + [-179.916167, -16.797083], + [-179.913197, -16.827904], + [-179.910821, -16.858226], + [-179.908978, -16.887966], + [-179.907613, -16.917056], + [-179.90668, -16.945447], + [-179.90614, -16.973098], + [-179.905959, -16.999978], + [-179.906114, -17.026859], + [-179.906626, -17.054511], + [-179.907531, -17.082902], + [-179.908869, -17.111994], + [-179.910686, -17.141735], + [-179.913037, -17.172059], + [-179.915986, -17.202882], + [-179.919609, -17.234095], + [-179.924003, -17.26555], + [-179.92929, -17.297052], + [-179.935633, -17.328324], + [-179.943257, -17.358968], + [-179.952501, -17.388359], + [-179.963931, -17.415429], + [-179.978674, -17.438], + [-180, -17.44966], + [-180.021326, -17.438], + [-180.036069, -17.415429], + [-180.047499, -17.388359], + [-180.056743, -17.358968], + [-180.064367, -17.328324], + [-180.07071, -17.297052], + [-180.075997, -17.26555], + [-180.080391, -17.234095], + [-180.084014, -17.202882], + [-180.086963, -17.172059], + [-180.089314, -17.141735], + [-180.091131, -17.111994], + [-180.092469, -17.082902], + [-180.093374, -17.054511], + [-180.093886, -17.026859], + [-180.094041, -16.999978], + [-180.09386, -16.973098], + [-180.09332, -16.945447], + [-180.092387, -16.917056], + [-180.091022, -16.887966], + [-180.089179, -16.858226], + [-180.086803, -16.827904], + [-180.083833, -16.797083], + [-180.08019, -16.765874], + [-180.075782, -16.734422], + [-180.070486, -16.702924], + [-180.064142, -16.671656], + [-180.056526, -16.641017], + [-180.047303, -16.61163], + [-180.035909, -16.584565], + [-180.021226, -16.561997], + [-180, -16.55034] ] ] } diff --git a/packages/turf-ellipse/test/out/northern-latitudes-degrees.json b/packages/turf-ellipse/test/out/northern-latitudes-degrees.json index d68fce32b..6f56b7636 100644 --- a/packages/turf-ellipse/test/out/northern-latitudes-degrees.json +++ b/packages/turf-ellipse/test/out/northern-latitudes-degrees.json @@ -1,72 +1,6 @@ { "type": "FeatureCollection", "features": [ - { - "type": "Feature", - "bbox": [-112.1397763927165, 73, -75.8602236072835, 75.00000000000001], - "properties": { - "stroke-width": 6, - "stroke": "#FFF", - "fill": "#FFF", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-112.1397763927165, 73], - [-75.8602236072835, 73], - [-75.8602236072835, 75.00000000000001], - [-112.1397763927165, 75.00000000000001], - [-112.1397763927165, 73] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [-97.62795527854331, 69.00000000000001, -90.37204472145669, 79], - "properties": { - "stroke-width": 6, - "stroke": "#666", - "fill": "#666", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-97.62795527854331, 69.00000000000001], - [-90.37204472145669, 69.00000000000001], - [-90.37204472145669, 79], - [-97.62795527854331, 79], - [-97.62795527854331, 69.00000000000001] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [-112.1397763927165, 69.00000000000001, -75.8602236072835, 79], - "properties": { - "stroke-width": 6, - "stroke": "#000", - "fill": "#000", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-112.1397763927165, 69.00000000000001], - [-75.8602236072835, 69.00000000000001], - [-75.8602236072835, 79], - [-112.1397763927165, 79], - [-112.1397763927165, 69.00000000000001] - ] - ] - } - }, { "type": "Feature", "properties": { @@ -172,71 +106,71 @@ "type": "Polygon", "coordinates": [ [ - [-89, 74], - [-89.514412, 74.441792], - [-90.45484, 74.705176], - [-91.247791, 74.834874], - [-91.825948, 74.900522], - [-92.247776, 74.936583], - [-92.566244, 74.958005], - [-92.816144, 74.971565], - [-93.019419, 74.980581], - [-93.190158, 74.986796], - [-93.337709, 74.991189], - [-93.468517, 74.994334], - [-93.587201, 74.996586], - [-93.69721, 74.998165], - [-93.801245, 74.99921], - [-93.901528, 74.999806], + [-111.609696, 73.256451], + [-111.404311, 73.510243], + [-110.70689, 73.730954], + [-109.783251, 73.928702], + [-108.725348, 74.106339], + [-107.580194, 74.2652], + [-106.376848, 74.406176], + [-105.135467, 74.53002], + [-103.871136, 74.637455], + [-102.595732, 74.729222], + [-101.318919, 74.806086], + [-100.04873, 74.86884], + [-98.79192, 74.918302], + [-97.554199, 74.955305], + [-96.340385, 74.980693], + [-95.154529, 74.995312], [-94, 75], - [-94.098472, 74.999806], - [-94.198755, 74.99921], - [-94.30279, 74.998165], - [-94.412799, 74.996586], - [-94.531483, 74.994334], - [-94.662291, 74.991189], - [-94.809842, 74.986796], - [-94.980581, 74.980581], - [-95.183856, 74.971565], - [-95.433756, 74.958005], - [-95.752224, 74.936583], - [-96.174052, 74.900522], - [-96.752209, 74.834874], - [-97.54516, 74.705176], - [-98.485588, 74.441792], - [-99, 74], - [-98.485588, 73.558208], - [-97.54516, 73.294824], - [-96.752209, 73.165126], - [-96.174052, 73.099478], - [-95.752224, 73.063417], - [-95.433756, 73.041995], - [-95.183856, 73.028435], - [-94.980581, 73.019419], - [-94.809842, 73.013204], - [-94.662291, 73.008811], - [-94.531483, 73.005666], - [-94.412799, 73.003414], - [-94.30279, 73.001835], - [-94.198755, 73.00079], - [-94.098472, 73.000194], + [-92.845471, 74.995312], + [-91.659615, 74.980693], + [-90.445801, 74.955305], + [-89.20808, 74.918302], + [-87.95127, 74.86884], + [-86.681081, 74.806086], + [-85.404268, 74.729222], + [-84.128864, 74.637455], + [-82.864533, 74.53002], + [-81.623152, 74.406176], + [-80.419806, 74.2652], + [-79.274652, 74.106339], + [-78.216749, 73.928702], + [-77.29311, 73.730954], + [-76.595689, 73.510243], + [-76.390304, 73.256451], + [-77.042091, 73.076913], + [-78.015528, 72.994911], + [-79.115088, 72.954647], + [-80.276835, 72.936876], + [-81.469995, 72.932154], + [-82.676747, 72.935073], + [-83.885546, 72.942272], + [-85.088332, 72.951565], + [-86.279178, 72.9615], + [-87.45357, 72.971111], + [-88.607982, 72.979764], + [-89.73962, 72.987065], + [-90.846251, 72.992792], + [-91.92609, 72.996848], + [-92.977713, 72.999229], [-94, 73], - [-93.901528, 73.000194], - [-93.801245, 73.00079], - [-93.69721, 73.001835], - [-93.587201, 73.003414], - [-93.468517, 73.005666], - [-93.337709, 73.008811], - [-93.190158, 73.013204], - [-93.019419, 73.019419], - [-92.816144, 73.028435], - [-92.566244, 73.041995], - [-92.247776, 73.063417], - [-91.825948, 73.099478], - [-91.247791, 73.165126], - [-90.45484, 73.294824], - [-89.514412, 73.558208], - [-89, 74] + [-95.022287, 72.999229], + [-96.07391, 72.996848], + [-97.153749, 72.992792], + [-98.26038, 72.987065], + [-99.392018, 72.979764], + [-100.54643, 72.971111], + [-101.720822, 72.9615], + [-102.911668, 72.951565], + [-104.114454, 72.942272], + [-105.323253, 72.935073], + [-106.530005, 72.932154], + [-107.723165, 72.936876], + [-108.884912, 72.954647], + [-109.984472, 72.994911], + [-110.957909, 73.076913], + [-111.609696, 73.256451] ] ] } @@ -253,71 +187,71 @@ "type": "Polygon", "coordinates": [ [ - [-94, 69], - [-93.558208, 69.514412], - [-93.294824, 70.45484], - [-93.165126, 71.247791], - [-93.099478, 71.825948], - [-93.063417, 72.247776], - [-93.041995, 72.566244], - [-93.028435, 72.816144], - [-93.019419, 73.019419], - [-93.013204, 73.190158], - [-93.008811, 73.337709], - [-93.005666, 73.468517], - [-93.003414, 73.587201], - [-93.001835, 73.69721], - [-93.00079, 73.801245], - [-93.000194, 73.901528], - [-93, 74], - [-93.000194, 74.098472], - [-93.00079, 74.198755], - [-93.001835, 74.30279], - [-93.003414, 74.412799], - [-93.005666, 74.531483], - [-93.008811, 74.662291], - [-93.013204, 74.809842], - [-93.019419, 74.980581], - [-93.028435, 75.183856], - [-93.041995, 75.433756], - [-93.063417, 75.752224], - [-93.099478, 76.174052], - [-93.165126, 76.752209], - [-93.294824, 77.54516], - [-93.558208, 78.485588], [-94, 79], - [-94.441792, 78.485588], - [-94.705176, 77.54516], - [-94.834874, 76.752209], - [-94.900522, 76.174052], - [-94.936583, 75.752224], - [-94.958005, 75.433756], - [-94.971565, 75.183856], - [-94.980581, 74.980581], - [-94.986796, 74.809842], - [-94.991189, 74.662291], - [-94.994334, 74.531483], - [-94.996586, 74.412799], - [-94.998165, 74.30279], - [-94.99921, 74.198755], - [-94.999806, 74.098472], - [-95, 74], - [-94.999806, 73.901528], - [-94.99921, 73.801245], - [-94.998165, 73.69721], - [-94.996586, 73.587201], - [-94.994334, 73.468517], - [-94.991189, 73.337709], - [-94.986796, 73.190158], - [-94.980581, 73.019419], - [-94.971565, 72.816144], - [-94.958005, 72.566244], - [-94.936583, 72.247776], - [-94.900522, 71.825948], - [-94.834874, 71.247791], - [-94.705176, 70.45484], - [-94.441792, 69.514412], - [-94, 69] + [-92.829533, 78.868122], + [-92.063446, 78.613133], + [-91.514439, 78.307836], + [-91.1101, 77.976934], + [-90.810522, 77.632522], + [-90.590161, 77.281607], + [-90.431305, 76.928659], + [-90.321068, 76.576722], + [-90.249767, 76.227955], + [-90.209956, 75.883941], + [-90.195813, 75.545863], + [-90.202719, 75.21462], + [-90.226974, 74.890901], + [-90.265581, 74.575235], + [-90.316097, 74.26803], + [-90.376515, 73.969595], + [-90.447416, 73.671357], + [-90.530789, 73.364764], + [-90.627066, 73.050162], + [-90.736781, 72.727995], + [-90.860599, 72.398831], + [-90.999361, 72.063398], + [-91.154149, 71.722628], + [-91.326376, 71.377739], + [-91.517927, 71.030336], + [-91.731383, 70.682588], + [-91.970405, 70.337519], + [-92.240431, 69.999537], + [-92.550102, 69.675491], + [-92.914615, 69.377145], + [-93.365745, 69.128445], + [-94, 69], + [-94.634255, 69.128445], + [-95.085385, 69.377145], + [-95.449898, 69.675491], + [-95.759569, 69.999537], + [-96.029595, 70.337519], + [-96.268617, 70.682588], + [-96.482073, 71.030336], + [-96.673624, 71.377739], + [-96.845851, 71.722628], + [-97.000639, 72.063398], + [-97.139401, 72.398831], + [-97.263219, 72.727995], + [-97.372934, 73.050162], + [-97.469211, 73.364764], + [-97.552584, 73.671357], + [-97.623485, 73.969595], + [-97.683903, 74.26803], + [-97.734419, 74.575235], + [-97.773026, 74.890901], + [-97.797281, 75.21462], + [-97.804187, 75.545863], + [-97.790044, 75.883941], + [-97.750233, 76.227955], + [-97.678932, 76.576722], + [-97.568695, 76.928659], + [-97.409839, 77.281607], + [-97.189478, 77.632522], + [-96.8899, 77.976934], + [-96.485561, 78.307836], + [-95.936554, 78.613133], + [-95.170467, 78.868122], + [-94, 79] ] ] } diff --git a/packages/turf-ellipse/test/out/northern-latitudes.json b/packages/turf-ellipse/test/out/northern-latitudes.json index 451887bfa..135b4e6cd 100644 --- a/packages/turf-ellipse/test/out/northern-latitudes.json +++ b/packages/turf-ellipse/test/out/northern-latitudes.json @@ -1,78 +1,6 @@ { "type": "FeatureCollection", "features": [ - { - "type": "Feature", - "bbox": [ - -95.63134703033796, 73.91006796362754, -92.36865296966204, 74.08993203637246 - ], - "properties": { - "stroke-width": 6, - "stroke": "#FFF", - "fill": "#FFF", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-95.63134703033796, 73.91006796362754], - [-92.36865296966204, 73.91006796362754], - [-92.36865296966204, 74.08993203637246], - [-95.63134703033796, 74.08993203637246], - [-95.63134703033796, 73.91006796362754] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -94.32626940606758, 73.55033981813773, -93.67373059393242, 74.44966018186227 - ], - "properties": { - "stroke-width": 6, - "stroke": "#666", - "fill": "#666", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-94.32626940606758, 73.55033981813773], - [-93.67373059393242, 73.55033981813773], - [-93.67373059393242, 74.44966018186227], - [-94.32626940606758, 74.44966018186227], - [-94.32626940606758, 73.55033981813773] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -95.63134703033796, 73.55033981813773, -92.36865296966204, 74.44966018186227 - ], - "properties": { - "stroke-width": 6, - "stroke": "#000", - "fill": "#000", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-95.63134703033796, 73.55033981813773], - [-92.36865296966204, 73.55033981813773], - [-92.36865296966204, 74.44966018186227], - [-95.63134703033796, 74.44966018186227], - [-95.63134703033796, 73.55033981813773] - ] - ] - } - }, { "type": "Feature", "properties": { @@ -242,135 +170,135 @@ "type": "Polygon", "coordinates": [ [ - [-92.368653, 74], - [-92.782084, 74.059832], - [-93.203223, 74.078476], - [-93.431704, 74.084299], - [-93.564304, 74.086665], - [-93.649362, 74.08783], - [-93.708311, 74.088483], - [-93.751588, 74.088883], - [-93.784783, 74.089146], - [-93.811133, 74.089327], - [-93.832637, 74.089458], - [-93.850588, 74.089554], - [-93.865863, 74.089628], - [-93.879074, 74.089685], - [-93.890664, 74.08973], - [-93.900958, 74.089766], - [-93.910204, 74.089796], - [-93.918592, 74.08982], - [-93.92627, 74.08984], - [-93.933358, 74.089857], - [-93.93995, 74.089871], - [-93.946126, 74.089883], - [-93.951951, 74.089893], - [-93.95748, 74.089901], - [-93.962759, 74.089909], - [-93.967828, 74.089915], - [-93.972723, 74.089919], - [-93.977475, 74.089923], - [-93.982112, 74.089927], - [-93.98666, 74.089929], - [-93.991143, 74.089931], - [-93.995582, 74.089932], + [-95.63094, 73.993848], + [-95.618974, 74.005314], + [-95.590643, 74.014501], + [-95.553238, 74.022313], + [-95.510009, 74.029153], + [-95.462755, 74.035244], + [-95.412603, 74.040726], + [-95.360317, 74.045697], + [-95.306446, 74.050225], + [-95.2514, 74.054363], + [-95.195495, 74.058153], + [-95.138982, 74.061628], + [-95.082063, 74.064815], + [-95.024904, 74.067738], + [-94.967645, 74.070417], + [-94.910401, 74.072868], + [-94.853272, 74.075106], + [-94.796343, 74.077145], + [-94.739687, 74.078997], + [-94.683367, 74.080672], + [-94.62744, 74.082181], + [-94.571954, 74.083531], + [-94.516951, 74.084732], + [-94.462469, 74.08579], + [-94.408542, 74.086713], + [-94.3552, 74.087507], + [-94.302467, 74.088179], + [-94.250367, 74.088734], + [-94.198921, 74.089177], + [-94.148146, 74.089514], + [-94.098058, 74.089749], + [-94.048672, 74.089887], [-94, 74.089932], - [-94.004418, 74.089932], - [-94.008857, 74.089931], - [-94.01334, 74.089929], - [-94.017888, 74.089927], - [-94.022525, 74.089923], - [-94.027277, 74.089919], - [-94.032172, 74.089915], - [-94.037241, 74.089909], - [-94.04252, 74.089901], - [-94.048049, 74.089893], - [-94.053874, 74.089883], - [-94.06005, 74.089871], - [-94.066642, 74.089857], - [-94.07373, 74.08984], - [-94.081408, 74.08982], - [-94.089796, 74.089796], - [-94.099042, 74.089766], - [-94.109336, 74.08973], - [-94.120926, 74.089685], - [-94.134137, 74.089628], - [-94.149412, 74.089554], - [-94.167363, 74.089458], - [-94.188867, 74.089327], - [-94.215217, 74.089146], - [-94.248412, 74.088883], - [-94.291689, 74.088483], - [-94.350638, 74.08783], - [-94.435696, 74.086665], - [-94.568296, 74.084299], - [-94.796777, 74.078476], - [-95.217916, 74.059832], - [-95.631347, 74], - [-95.217916, 73.940168], - [-94.796777, 73.921524], - [-94.568296, 73.915701], - [-94.435696, 73.913335], - [-94.350638, 73.91217], - [-94.291689, 73.911517], - [-94.248412, 73.911117], - [-94.215217, 73.910854], - [-94.188867, 73.910673], - [-94.167363, 73.910542], - [-94.149412, 73.910446], - [-94.134137, 73.910372], - [-94.120926, 73.910315], - [-94.109336, 73.91027], - [-94.099042, 73.910234], - [-94.089796, 73.910204], - [-94.081408, 73.91018], - [-94.07373, 73.91016], - [-94.066642, 73.910143], - [-94.06005, 73.910129], - [-94.053874, 73.910117], - [-94.048049, 73.910107], - [-94.04252, 73.910099], - [-94.037241, 73.910091], - [-94.032172, 73.910085], - [-94.027277, 73.910081], - [-94.022525, 73.910077], - [-94.017888, 73.910073], - [-94.01334, 73.910071], - [-94.008857, 73.910069], - [-94.004418, 73.910068], + [-93.951328, 74.089887], + [-93.901942, 74.089749], + [-93.851854, 74.089514], + [-93.801079, 74.089177], + [-93.749633, 74.088734], + [-93.697533, 74.088179], + [-93.6448, 74.087507], + [-93.591458, 74.086713], + [-93.537531, 74.08579], + [-93.483049, 74.084732], + [-93.428046, 74.083531], + [-93.37256, 74.082181], + [-93.316633, 74.080672], + [-93.260313, 74.078997], + [-93.203657, 74.077145], + [-93.146728, 74.075106], + [-93.089599, 74.072868], + [-93.032355, 74.070417], + [-92.975096, 74.067738], + [-92.917937, 74.064815], + [-92.861018, 74.061628], + [-92.804505, 74.058153], + [-92.7486, 74.054363], + [-92.693554, 74.050225], + [-92.639683, 74.045697], + [-92.587397, 74.040726], + [-92.537245, 74.035244], + [-92.489991, 74.029153], + [-92.446762, 74.022313], + [-92.409357, 74.014501], + [-92.381026, 74.005314], + [-92.36906, 73.993848], + [-92.383264, 73.982578], + [-92.41329, 73.973824], + [-92.452023, 73.966565], + [-92.496301, 73.960344], + [-92.544379, 73.954908], + [-92.595167, 73.950095], + [-92.647929, 73.945796], + [-92.702136, 73.941933], + [-92.757398, 73.938445], + [-92.813412, 73.935286], + [-92.86994, 73.932419], + [-92.926792, 73.929814], + [-92.98381, 73.927445], + [-93.040864, 73.925291], + [-93.097847, 73.923334], + [-93.154665, 73.921558], + [-93.21124, 73.91995], + [-93.267504, 73.918497], + [-93.323399, 73.91719], + [-93.378874, 73.916017], + [-93.433884, 73.914972], + [-93.488392, 73.914045], + [-93.542363, 73.913231], + [-93.595766, 73.912523], + [-93.648577, 73.911915], + [-93.70077, 73.911402], + [-93.752327, 73.910979], + [-93.803229, 73.910642], + [-93.853461, 73.910386], + [-93.903008, 73.910207], + [-93.951857, 73.910102], [-94, 73.910068], - [-93.995582, 73.910068], - [-93.991143, 73.910069], - [-93.98666, 73.910071], - [-93.982112, 73.910073], - [-93.977475, 73.910077], - [-93.972723, 73.910081], - [-93.967828, 73.910085], - [-93.962759, 73.910091], - [-93.95748, 73.910099], - [-93.951951, 73.910107], - [-93.946126, 73.910117], - [-93.93995, 73.910129], - [-93.933358, 73.910143], - [-93.92627, 73.91016], - [-93.918592, 73.91018], - [-93.910204, 73.910204], - [-93.900958, 73.910234], - [-93.890664, 73.91027], - [-93.879074, 73.910315], - [-93.865863, 73.910372], - [-93.850588, 73.910446], - [-93.832637, 73.910542], - [-93.811133, 73.910673], - [-93.784783, 73.910854], - [-93.751588, 73.911117], - [-93.708311, 73.911517], - [-93.649362, 73.91217], - [-93.564304, 73.913335], - [-93.431704, 73.915701], - [-93.203223, 73.921524], - [-92.782084, 73.940168], - [-92.368653, 74] + [-94.048143, 73.910102], + [-94.096992, 73.910207], + [-94.146539, 73.910386], + [-94.196771, 73.910642], + [-94.247673, 73.910979], + [-94.29923, 73.911402], + [-94.351423, 73.911915], + [-94.404234, 73.912523], + [-94.457637, 73.913231], + [-94.511608, 73.914045], + [-94.566116, 73.914972], + [-94.621126, 73.916017], + [-94.676601, 73.91719], + [-94.732496, 73.918497], + [-94.78876, 73.91995], + [-94.845335, 73.921558], + [-94.902153, 73.923334], + [-94.959136, 73.925291], + [-95.01619, 73.927445], + [-95.073208, 73.929814], + [-95.13006, 73.932419], + [-95.186588, 73.935286], + [-95.242602, 73.938445], + [-95.297864, 73.941933], + [-95.352071, 73.945796], + [-95.404833, 73.950095], + [-95.455621, 73.954908], + [-95.503699, 73.960344], + [-95.547977, 73.966565], + [-95.58671, 73.973824], + [-95.616736, 73.982578], + [-95.63094, 73.993848] ] ] } @@ -387,135 +315,135 @@ "type": "Polygon", "coordinates": [ [ - [-94, 73.55034], - [-93.785114, 73.664909], - [-93.717175, 73.780904], - [-93.695613, 73.843759], - [-93.686723, 73.880223], - [-93.682287, 73.90361], - [-93.679769, 73.919816], - [-93.678204, 73.931714], - [-93.677163, 73.940839], - [-93.676435, 73.948083], - [-93.675906, 73.953994], - [-93.675507, 73.958929], - [-93.6752, 73.963128], - [-93.674957, 73.966759], - [-93.674762, 73.969945], - [-93.674602, 73.972775], - [-93.67447, 73.975317], - [-93.674359, 73.977622], - [-93.674265, 73.979733], - [-93.674185, 73.981681], - [-93.674115, 73.983493], - [-93.674055, 73.985191], - [-93.674003, 73.986792], - [-93.673957, 73.988312], - [-93.673917, 73.989763], - [-93.673882, 73.991157], - [-93.673851, 73.992502], - [-93.673823, 73.993808], - [-93.673799, 73.995083], - [-93.673778, 73.996333], - [-93.67376, 73.997565], - [-93.673744, 73.998786], - [-93.673731, 74], - [-93.67372, 74.001214], - [-93.673711, 74.002435], - [-93.673705, 74.003667], - [-93.673701, 74.004917], - [-93.6737, 74.006192], - [-93.673702, 74.007498], - [-93.673706, 74.008843], - [-93.673714, 74.010237], - [-93.673725, 74.011688], - [-93.673741, 74.013208], - [-93.673761, 74.014809], - [-93.673788, 74.016507], - [-93.673821, 74.018319], - [-93.673863, 74.020267], - [-93.673915, 74.022378], - [-93.67398, 74.024683], - [-93.674062, 74.027225], - [-93.674166, 74.030055], - [-93.674299, 74.033241], - [-93.67447, 74.036872], - [-93.674695, 74.041071], - [-93.674997, 74.046006], - [-93.675411, 74.051917], - [-93.675999, 74.059161], - [-93.676863, 74.068286], - [-93.678202, 74.080184], - [-93.680418, 74.09639], - [-93.68443, 74.119777], - [-93.692704, 74.156241], - [-93.713378, 74.219096], - [-93.780685, 74.335091], [-94, 74.44966], - [-94.219323, 74.336314], - [-94.286632, 74.220145], - [-94.307304, 74.157045], - [-94.315576, 74.12041], - [-94.319587, 74.096907], - [-94.321802, 74.080617], - [-94.32314, 74.068657], - [-94.324005, 74.059483], - [-94.324591, 74.0522], - [-94.325006, 74.046257], - [-94.325307, 74.041296], - [-94.325532, 74.037074], - [-94.325703, 74.033423], - [-94.325836, 74.030219], - [-94.325939, 74.027374], - [-94.326021, 74.024819], - [-94.326086, 74.0225], - [-94.326138, 74.020378], - [-94.32618, 74.018419], - [-94.326213, 74.016597], - [-94.326239, 74.01489], - [-94.32626, 74.01328], - [-94.326275, 74.011752], - [-94.326287, 74.010293], - [-94.326294, 74.008892], - [-94.326299, 74.007539], - [-94.3263, 74.006226], - [-94.326299, 74.004944], - [-94.326295, 74.003687], - [-94.326289, 74.002448], - [-94.32628, 74.001221], - [-94.326269, 74], - [-94.326256, 73.998779], - [-94.32624, 73.997552], - [-94.326222, 73.996313], - [-94.326201, 73.995056], - [-94.326177, 73.993774], - [-94.326149, 73.992461], - [-94.326118, 73.991108], - [-94.326082, 73.989707], - [-94.326042, 73.988248], - [-94.325996, 73.98672], - [-94.325944, 73.98511], - [-94.325884, 73.983403], - [-94.325814, 73.981581], - [-94.325734, 73.979622], - [-94.32564, 73.9775], - [-94.325529, 73.975181], - [-94.325397, 73.972626], - [-94.325237, 73.969781], - [-94.325041, 73.966577], - [-94.324798, 73.962926], - [-94.32449, 73.958704], - [-94.324092, 73.953743], - [-94.323562, 73.9478], - [-94.322834, 73.940517], - [-94.321793, 73.931343], - [-94.320227, 73.919383], - [-94.317708, 73.903093], - [-94.313271, 73.87959], - [-94.30438, 73.842955], - [-94.282816, 73.779855], - [-94.214878, 73.663686], - [-94, 73.55034] + [-93.95759, 74.446047], + [-93.924163, 74.437989], + [-93.896135, 74.427476], + [-93.871901, 74.415395], + [-93.850567, 74.402234], + [-93.831566, 74.3883], + [-93.814511, 74.373801], + [-93.799121, 74.358884], + [-93.785183, 74.343661], + [-93.772529, 74.328217], + [-93.761024, 74.312619], + [-93.750558, 74.296922], + [-93.741037, 74.281171], + [-93.732384, 74.265401], + [-93.724528, 74.249645], + [-93.717412, 74.233928], + [-93.710983, 74.218274], + [-93.705195, 74.202701], + [-93.700005, 74.187227], + [-93.695378, 74.171865], + [-93.691278, 74.156629], + [-93.687675, 74.141531], + [-93.684541, 74.126578], + [-93.68185, 74.111782], + [-93.679578, 74.097148], + [-93.677703, 74.082684], + [-93.676204, 74.068396], + [-93.675063, 74.054289], + [-93.674262, 74.040367], + [-93.673784, 74.026635], + [-93.673612, 74.013096], + [-93.673734, 73.999754], + [-93.674142, 73.986412], + [-93.674849, 73.972874], + [-93.675868, 73.959145], + [-93.677213, 73.945226], + [-93.678898, 73.931123], + [-93.68094, 73.91684], + [-93.683354, 73.902383], + [-93.686158, 73.887756], + [-93.689373, 73.872968], + [-93.693018, 73.858026], + [-93.697116, 73.842938], + [-93.701692, 73.827715], + [-93.706773, 73.812367], + [-93.712388, 73.796907], + [-93.718569, 73.78135], + [-93.725353, 73.765713], + [-93.73278, 73.750015], + [-93.740897, 73.734278], + [-93.749757, 73.71853], + [-93.759418, 73.7028], + [-93.769952, 73.687126], + [-93.781443, 73.671553], + [-93.793988, 73.656134], + [-93.807712, 73.640937], + [-93.822766, 73.626047], + [-93.839345, 73.611574], + [-93.85771, 73.597668], + [-93.878219, 73.584533], + [-93.901403, 73.572476], + [-93.928101, 73.561986], + [-93.959832, 73.553946], + [-94, 73.55034], + [-94.040168, 73.553946], + [-94.071899, 73.561986], + [-94.098597, 73.572476], + [-94.121781, 73.584533], + [-94.14229, 73.597668], + [-94.160655, 73.611574], + [-94.177234, 73.626047], + [-94.192288, 73.640937], + [-94.206012, 73.656134], + [-94.218557, 73.671553], + [-94.230048, 73.687126], + [-94.240582, 73.7028], + [-94.250243, 73.71853], + [-94.259103, 73.734278], + [-94.26722, 73.750015], + [-94.274647, 73.765713], + [-94.281431, 73.78135], + [-94.287612, 73.796907], + [-94.293227, 73.812367], + [-94.298308, 73.827715], + [-94.302884, 73.842938], + [-94.306982, 73.858026], + [-94.310627, 73.872968], + [-94.313842, 73.887756], + [-94.316646, 73.902383], + [-94.31906, 73.91684], + [-94.321102, 73.931123], + [-94.322787, 73.945226], + [-94.324132, 73.959145], + [-94.325151, 73.972874], + [-94.325858, 73.986412], + [-94.326266, 73.999754], + [-94.326388, 74.013096], + [-94.326216, 74.026635], + [-94.325738, 74.040367], + [-94.324937, 74.054289], + [-94.323796, 74.068396], + [-94.322297, 74.082684], + [-94.320422, 74.097148], + [-94.31815, 74.111782], + [-94.315459, 74.126578], + [-94.312325, 74.141531], + [-94.308722, 74.156629], + [-94.304622, 74.171865], + [-94.299995, 74.187227], + [-94.294805, 74.202701], + [-94.289017, 74.218274], + [-94.282588, 74.233928], + [-94.275472, 74.249645], + [-94.267616, 74.265401], + [-94.258963, 74.281171], + [-94.249442, 74.296922], + [-94.238976, 74.312619], + [-94.227471, 74.328217], + [-94.214817, 74.343661], + [-94.200879, 74.358884], + [-94.185489, 74.373801], + [-94.168434, 74.3883], + [-94.149433, 74.402234], + [-94.128099, 74.415395], + [-94.103865, 74.427476], + [-94.075837, 74.437989], + [-94.04241, 74.446047], + [-94, 74.44966] ] ] } diff --git a/packages/turf-ellipse/test/out/rotation-degrees.json b/packages/turf-ellipse/test/out/rotation-degrees.json index 1a5e7432a..f8e32d846 100644 --- a/packages/turf-ellipse/test/out/rotation-degrees.json +++ b/packages/turf-ellipse/test/out/rotation-degrees.json @@ -1,85 +1,13 @@ { "type": "FeatureCollection", "features": [ - { - "type": "Feature", - "bbox": [ - -74.11421824800942, 40.71315533047033, -73.8809366917385, 40.748510669529665 - ], - "properties": { - "stroke-width": 6, - "stroke": "#FFF", - "fill": "#FFF", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-74.11421824800942, 40.71315533047033], - [-73.8809366917385, 40.71315533047033], - [-73.8809366917385, 40.748510669529665], - [-74.11421824800942, 40.748510669529665], - [-74.11421824800942, 40.71315533047033] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -74.02083123236167, 40.64244465235168, -73.97417496521712, 40.819221347648316 - ], - "properties": { - "stroke-width": 6, - "stroke": "#666", - "fill": "#666", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-74.02083123236167, 40.64244465235168], - [-73.97417496521712, 40.64244465235168], - [-73.97417496521712, 40.819221347648316], - [-74.02083123236167, 40.819221347648316], - [-74.02083123236167, 40.64244465235168] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -74.11421824800942, 40.64244465235168, -73.8809366917385, 40.819221347648316 - ], - "properties": { - "stroke-width": 6, - "stroke": "#000", - "fill": "#000", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-74.11421824800942, 40.64244465235168], - [-73.8809366917385, 40.64244465235168], - [-73.8809366917385, 40.819221347648316], - [-74.11421824800942, 40.819221347648316], - [-74.11421824800942, 40.64244465235168] - ] - ] - } - }, { "type": "Feature", "properties": { "units": "degrees", "xSemiAxis": 0.125, "ySemiAxis": 0.025, - "angle": 45 + "angle": 30 }, "geometry": { "type": "Point", @@ -179,71 +107,71 @@ "type": "Polygon", "coordinates": [ [ - [-73.909112, 40.642445], - [-73.910395, 40.659348], - [-73.922364, 40.680629], - [-73.934089, 40.696939], - [-73.943149, 40.70832], - [-73.949968, 40.716414], - [-73.955219, 40.722423], - [-73.959397, 40.72708], - [-73.962831, 40.730833], - [-73.96574, 40.733961], - [-73.96827, 40.736647], - [-73.970527, 40.739015], - [-73.972585, 40.741153], - [-73.974502, 40.743126], - [-73.976323, 40.744983], - [-73.978085, 40.746766], - [-73.979822, 40.748511], - [-73.981567, 40.750248], - [-73.98335, 40.75201], - [-73.985207, 40.753831], - [-73.98718, 40.755748], - [-73.989318, 40.757806], - [-73.991686, 40.760063], - [-73.994372, 40.762593], - [-73.9975, 40.765502], - [-74.001253, 40.768936], - [-74.00591, 40.773114], - [-74.011919, 40.778365], - [-74.020013, 40.785184], - [-74.031394, 40.794244], - [-74.047704, 40.805969], - [-74.068985, 40.817938], - [-74.085888, 40.819221], - [-74.084605, 40.802318], - [-74.072636, 40.781037], - [-74.060911, 40.764727], - [-74.051851, 40.753346], - [-74.045032, 40.745252], - [-74.039781, 40.739243], - [-74.035603, 40.734586], - [-74.032169, 40.730833], - [-74.02926, 40.727705], - [-74.02673, 40.725019], - [-74.024473, 40.722651], - [-74.022415, 40.720513], - [-74.020498, 40.71854], - [-74.018677, 40.716683], - [-74.016915, 40.7149], - [-74.015178, 40.713155], - [-74.013433, 40.711418], - [-74.01165, 40.709656], - [-74.009793, 40.707835], - [-74.00782, 40.705918], - [-74.005682, 40.70386], - [-74.003314, 40.701603], - [-74.000628, 40.699073], - [-73.9975, 40.696164], - [-73.993747, 40.69273], - [-73.98909, 40.688552], - [-73.983081, 40.683301], - [-73.974987, 40.676482], - [-73.963606, 40.667422], - [-73.947296, 40.655697], - [-73.926015, 40.643728], - [-73.909112, 40.642445] + [-74.140489, 40.793245], + [-74.133053, 40.796531], + [-74.123293, 40.796793], + [-74.11268, 40.795669], + [-74.10171, 40.79372], + [-74.090624, 40.791225], + [-74.079564, 40.788347], + [-74.068615, 40.785194], + [-74.057839, 40.781842], + [-74.047275, 40.778345], + [-74.036954, 40.774747], + [-74.026898, 40.771079], + [-74.017122, 40.767369], + [-74.007637, 40.763638], + [-73.998451, 40.759903], + [-73.989571, 40.756181], + [-73.980999, 40.752482], + [-73.972487, 40.748706], + [-73.963795, 40.744739], + [-73.954937, 40.740579], + [-73.945934, 40.73622], + [-73.93681, 40.731661], + [-73.927596, 40.726897], + [-73.91833, 40.721925], + [-73.909059, 40.716744], + [-73.899849, 40.711352], + [-73.890781, 40.705747], + [-73.881973, 40.699932], + [-73.87359, 40.69391], + [-73.865889, 40.687691], + [-73.859309, 40.681293], + [-73.854737, 40.674764], + [-73.854779, 40.668245], + [-73.862215, 40.664976], + [-73.871956, 40.664737], + [-73.882545, 40.665883], + [-73.893487, 40.667852], + [-73.904545, 40.670366], + [-73.915578, 40.673261], + [-73.926501, 40.676428], + [-73.937254, 40.679793], + [-73.947796, 40.683299], + [-73.958098, 40.686906], + [-73.968137, 40.69058], + [-73.9779, 40.694294], + [-73.987373, 40.698027], + [-73.99655, 40.701763], + [-74.005423, 40.705485], + [-74.01399, 40.709181], + [-74.022499, 40.712955], + [-74.031191, 40.716917], + [-74.040051, 40.721072], + [-74.049058, 40.725423], + [-74.058188, 40.729973], + [-74.067412, 40.734727], + [-74.076692, 40.739687], + [-74.085978, 40.744854], + [-74.095208, 40.750232], + [-74.104299, 40.755821], + [-74.113135, 40.761619], + [-74.121548, 40.767623], + [-74.129281, 40.773826], + [-74.135896, 40.780208], + [-74.140503, 40.786726], + [-74.140489, 40.793245] ] ] } @@ -260,71 +188,71 @@ "type": "Polygon", "coordinates": [ [ - [-74.085888, 40.642445], - [-74.068985, 40.643728], - [-74.047704, 40.655697], - [-74.031394, 40.667422], - [-74.020013, 40.676482], - [-74.011919, 40.683301], - [-74.00591, 40.688552], - [-74.001253, 40.69273], - [-73.9975, 40.696164], - [-73.994372, 40.699073], - [-73.991686, 40.701603], - [-73.989318, 40.70386], - [-73.98718, 40.705918], - [-73.985207, 40.707835], - [-73.98335, 40.709656], - [-73.981567, 40.711418], - [-73.979822, 40.713155], - [-73.978085, 40.7149], - [-73.976323, 40.716683], - [-73.974502, 40.71854], - [-73.972585, 40.720513], - [-73.970527, 40.722651], - [-73.96827, 40.725019], - [-73.96574, 40.727705], - [-73.962831, 40.730833], - [-73.959397, 40.734586], - [-73.955219, 40.739243], - [-73.949968, 40.745252], - [-73.943149, 40.753346], - [-73.934089, 40.764727], - [-73.922364, 40.781037], - [-73.910395, 40.802318], - [-73.909112, 40.819221], - [-73.926015, 40.817938], - [-73.947296, 40.805969], - [-73.963606, 40.794244], - [-73.974987, 40.785184], - [-73.983081, 40.778365], - [-73.98909, 40.773114], - [-73.993747, 40.768936], - [-73.9975, 40.765502], - [-74.000628, 40.762593], - [-74.003314, 40.760063], - [-74.005682, 40.757806], - [-74.00782, 40.755748], - [-74.009793, 40.753831], - [-74.01165, 40.75201], - [-74.013433, 40.750248], - [-74.015178, 40.748511], - [-74.016915, 40.746766], - [-74.018677, 40.744983], - [-74.020498, 40.743126], - [-74.022415, 40.741153], - [-74.024473, 40.739015], - [-74.02673, 40.736647], - [-74.02926, 40.733961], - [-74.032169, 40.730833], - [-74.035603, 40.72708], - [-74.039781, 40.722423], - [-74.045032, 40.716414], - [-74.051851, 40.70832], - [-74.060911, 40.696939], - [-74.072636, 40.680629], - [-74.084605, 40.659348], - [-74.085888, 40.642445] + [-73.914888, 40.839057], + [-73.910563, 40.833419], + [-73.910242, 40.82603], + [-73.911752, 40.817997], + [-73.914351, 40.809697], + [-73.917671, 40.80131], + [-73.921493, 40.792941], + [-73.925676, 40.784657], + [-73.93012, 40.776502], + [-73.934751, 40.768508], + [-73.939515, 40.760697], + [-73.944367, 40.753085], + [-73.949273, 40.745684], + [-73.954204, 40.738503], + [-73.959137, 40.731547], + [-73.964053, 40.724822], + [-73.968934, 40.718329], + [-73.973917, 40.711882], + [-73.979149, 40.705295], + [-73.984635, 40.698583], + [-73.99038, 40.69176], + [-73.996387, 40.684844], + [-74.002662, 40.677858], + [-74.009209, 40.67083], + [-74.016029, 40.663799], + [-74.023126, 40.65681], + [-74.0305, 40.649928], + [-74.038149, 40.643241], + [-74.046069, 40.636874], + [-74.054249, 40.631022], + [-74.062663, 40.626018], + [-74.071255, 40.622535], + [-74.079844, 40.622551], + [-74.084169, 40.628182], + [-74.084508, 40.635571], + [-74.083023, 40.643605], + [-74.080452, 40.65191], + [-74.07716, 40.660302], + [-74.073365, 40.668675], + [-74.069208, 40.676965], + [-74.064788, 40.685125], + [-74.060178, 40.693124], + [-74.055433, 40.70094], + [-74.050597, 40.708557], + [-74.045705, 40.715962], + [-74.040786, 40.723147], + [-74.035862, 40.730106], + [-74.030953, 40.736834], + [-74.026076, 40.743329], + [-74.021096, 40.74978], + [-74.015865, 40.756368], + [-74.010377, 40.763081], + [-74.004629, 40.769906], + [-73.998614, 40.776822], + [-73.992329, 40.783808], + [-73.98577, 40.790834], + [-73.978934, 40.797865], + [-73.971817, 40.80485], + [-73.96442, 40.811729], + [-73.956744, 40.818411], + [-73.948793, 40.824772], + [-73.940581, 40.830616], + [-73.932131, 40.835611], + [-73.923504, 40.839084], + [-73.914888, 40.839057] ] ] } diff --git a/packages/turf-ellipse/test/out/rotation.json b/packages/turf-ellipse/test/out/rotation.json index 66fc3f205..96502ca98 100644 --- a/packages/turf-ellipse/test/out/rotation.json +++ b/packages/turf-ellipse/test/out/rotation.json @@ -1,84 +1,12 @@ { "type": "FeatureCollection", "features": [ - { - "type": "Feature", - "bbox": [ - -74.03946895975423, 40.724473844723505, -73.95555109008865, 40.73719215527649 - ], - "properties": { - "stroke-width": 6, - "stroke": "#FFF", - "fill": "#FFF", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-74.03946895975423, 40.724473844723505], - [-73.95555109008865, 40.724473844723505], - [-73.95555109008865, 40.73719215527649], - [-74.03946895975423, 40.73719215527649], - [-74.03946895975423, 40.724473844723505] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -74.00589218693665, 40.69903722361756, -73.98910861505686, 40.76262877638244 - ], - "properties": { - "stroke-width": 6, - "stroke": "#666", - "fill": "#666", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-74.00589218693665, 40.69903722361756], - [-73.98910861505686, 40.69903722361756], - [-73.98910861505686, 40.76262877638244], - [-74.00589218693665, 40.76262877638244], - [-74.00589218693665, 40.69903722361756] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -74.03946895975423, 40.69903722361756, -73.95555109008865, 40.76262877638244 - ], - "properties": { - "stroke-width": 6, - "stroke": "#000", - "fill": "#000", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-74.03946895975423, 40.69903722361756], - [-73.95555109008865, 40.69903722361756], - [-73.95555109008865, 40.76262877638244], - [-74.03946895975423, 40.76262877638244], - [-74.03946895975423, 40.69903722361756] - ] - ] - } - }, { "type": "Feature", "properties": { "xSemiAxis": 5, "ySemiAxis": 1, - "angle": 45 + "angle": 30 }, "geometry": { "type": "Point", @@ -178,71 +106,71 @@ "type": "Polygon", "coordinates": [ [ - [-73.955551, 40.699037], - [-73.957753, 40.707639], - [-73.9654, 40.716622], - [-73.971243, 40.722312], - [-73.975203, 40.72588], - [-73.977982, 40.728278], - [-73.980035, 40.730002], - [-73.981628, 40.731313], - [-73.982916, 40.732356], - [-73.983994, 40.733219], - [-73.984923, 40.733957], - [-73.985748, 40.734604], - [-73.986496, 40.735188], - [-73.98719, 40.735725], - [-73.987847, 40.736231], - [-73.988483, 40.736717], - [-73.989108, 40.737192], - [-73.989735, 40.737666], - [-73.990376, 40.738147], - [-73.991044, 40.738646], - [-73.991753, 40.739172], - [-73.992523, 40.739739], - [-73.993378, 40.740363], - [-73.994351, 40.741068], - [-73.99549, 40.741884], - [-73.996867, 40.74286], - [-73.998597, 40.744067], - [-74.000872, 40.745624], - [-74.004037, 40.74773], - [-74.008747, 40.750732], - [-74.016256, 40.75516], - [-74.028115, 40.760958], - [-74.039469, 40.762629], - [-74.037263, 40.754029], - [-74.029609, 40.745046], - [-74.023763, 40.739356], - [-74.0198, 40.735787], - [-74.017021, 40.733389], - [-74.014966, 40.731665], - [-74.013373, 40.730354], - [-74.012085, 40.72931], - [-74.011007, 40.728447], - [-74.010077, 40.72771], - [-74.009252, 40.727062], - [-74.008504, 40.726479], - [-74.00781, 40.725941], - [-74.007152, 40.725435], - [-74.006517, 40.724949], - [-74.005891, 40.724474], - [-74.005264, 40.724], - [-74.004623, 40.723519], - [-74.003955, 40.72302], - [-74.003246, 40.722494], - [-74.002476, 40.721927], - [-74.001621, 40.721303], - [-74.000648, 40.720598], - [-73.999509, 40.719781], - [-73.998132, 40.718805], - [-73.996402, 40.717598], - [-73.994127, 40.716041], - [-73.990963, 40.713935], - [-73.986254, 40.710933], - [-73.978748, 40.706504], - [-73.966896, 40.700706], - [-73.955551, 40.699037] + [-74.048906, 40.753305], + [-74.046231, 40.754485], + [-74.042723, 40.754576], + [-74.038908, 40.754169], + [-74.034964, 40.753466], + [-74.03098, 40.752566], + [-74.027004, 40.751529], + [-74.023069, 40.750393], + [-74.019195, 40.749186], + [-74.015397, 40.747927], + [-74.011687, 40.746631], + [-74.008071, 40.745311], + [-74.004556, 40.743976], + [-74.001145, 40.742634], + [-73.997842, 40.74129], + [-73.994648, 40.739951], + [-73.991565, 40.738621], + [-73.988504, 40.737263], + [-73.985377, 40.735837], + [-73.98219, 40.734341], + [-73.978951, 40.732774], + [-73.975668, 40.731134], + [-73.972353, 40.729422], + [-73.969018, 40.727635], + [-73.965681, 40.725773], + [-73.962365, 40.723834], + [-73.959101, 40.72182], + [-73.955929, 40.71973], + [-73.95291, 40.717566], + [-73.950136, 40.715331], + [-73.947765, 40.713031], + [-73.946117, 40.710684], + [-73.946128, 40.708339], + [-73.948803, 40.707161], + [-73.95231, 40.707072], + [-73.956122, 40.707482], + [-73.960061, 40.708188], + [-73.964042, 40.70909], + [-73.968014, 40.710129], + [-73.971946, 40.711267], + [-73.975817, 40.712476], + [-73.979612, 40.713736], + [-73.98332, 40.715033], + [-73.986933, 40.716354], + [-73.990447, 40.717689], + [-73.993856, 40.719032], + [-73.997158, 40.720376], + [-74.000351, 40.721715], + [-74.003433, 40.723045], + [-74.006494, 40.724402], + [-74.009621, 40.725828], + [-74.012808, 40.727323], + [-74.016048, 40.728889], + [-74.019331, 40.730527], + [-74.022648, 40.732239], + [-74.025985, 40.734024], + [-74.029324, 40.735885], + [-74.032642, 40.737821], + [-74.035909, 40.739833], + [-74.039085, 40.741921], + [-74.042108, 40.744083], + [-74.044886, 40.746316], + [-74.047261, 40.748613], + [-74.048915, 40.75096], + [-74.048906, 40.753305] ] ] } @@ -259,71 +187,71 @@ "type": "Polygon", "coordinates": [ [ - [-74.039449, 40.699037], - [-74.028101, 40.700708], - [-74.01625, 40.706506], - [-74.008743, 40.710934], - [-74.004035, 40.713936], - [-74.000871, 40.716042], - [-73.998597, 40.717599], - [-73.996867, 40.718806], - [-73.99549, 40.719782], - [-73.994351, 40.720598], - [-73.993378, 40.721303], - [-73.992524, 40.721927], - [-73.991754, 40.722494], - [-73.991044, 40.72302], - [-73.990377, 40.723519], - [-73.989736, 40.724], - [-73.989109, 40.724474], - [-73.988483, 40.724949], - [-73.987848, 40.725435], - [-73.987191, 40.725941], - [-73.986496, 40.726478], - [-73.985748, 40.727062], - [-73.984924, 40.727709], - [-73.983994, 40.728447], - [-73.982916, 40.72931], - [-73.981629, 40.730353], - [-73.980035, 40.731664], - [-73.977981, 40.733388], - [-73.975202, 40.735786], - [-73.971239, 40.739354], - [-73.965394, 40.745044], - [-73.957739, 40.754027], - [-73.955531, 40.762629], - [-73.966882, 40.76096], - [-73.978741, 40.755162], - [-73.986251, 40.750733], - [-73.990961, 40.747731], - [-73.994126, 40.745625], - [-73.996402, 40.744068], - [-73.998132, 40.742861], - [-73.999509, 40.741885], - [-74.000649, 40.741068], - [-74.001622, 40.740363], - [-74.002477, 40.739739], - [-74.003247, 40.739172], - [-74.003956, 40.738646], - [-74.004624, 40.738147], - [-74.005265, 40.737666], - [-74.005892, 40.737192], - [-74.006518, 40.736717], - [-74.007153, 40.736231], - [-74.00781, 40.735725], - [-74.008505, 40.735187], - [-74.009253, 40.734604], - [-74.010077, 40.733956], - [-74.011007, 40.733219], - [-74.012085, 40.732356], - [-74.013373, 40.731312], - [-74.014966, 40.730001], - [-74.01702, 40.728277], - [-74.019798, 40.725879], - [-74.02376, 40.72231], - [-74.029602, 40.71662], - [-74.037249, 40.707637], - [-74.039449, 40.699037] + [-73.967813, 40.769771], + [-73.966257, 40.767744], + [-73.96614, 40.765085], + [-73.96668, 40.762196], + [-73.967612, 40.759209], + [-73.968803, 40.756192], + [-73.970174, 40.753181], + [-73.971676, 40.7502], + [-73.973272, 40.747266], + [-73.974936, 40.74439], + [-73.976647, 40.741579], + [-73.978391, 40.73884], + [-73.980154, 40.736178], + [-73.981926, 40.733594], + [-73.9837, 40.731091], + [-73.985467, 40.728672], + [-73.987223, 40.726336], + [-73.989015, 40.724016], + [-73.990897, 40.721647], + [-73.992871, 40.719232], + [-73.994938, 40.716777], + [-73.9971, 40.714289], + [-73.999358, 40.711776], + [-74.001714, 40.709248], + [-74.00417, 40.706719], + [-74.006725, 40.704205], + [-74.00938, 40.70173], + [-74.012135, 40.699325], + [-74.014987, 40.697036], + [-74.017934, 40.694931], + [-74.020965, 40.693132], + [-74.024059, 40.691881], + [-74.027152, 40.691887], + [-74.028708, 40.693914], + [-74.028828, 40.696572], + [-74.028291, 40.699462], + [-74.027363, 40.702449], + [-74.026176, 40.705467], + [-74.024807, 40.708479], + [-74.023309, 40.71146], + [-74.021716, 40.714395], + [-74.020055, 40.717272], + [-74.018346, 40.720083], + [-74.016605, 40.722822], + [-74.014843, 40.725486], + [-74.013072, 40.72807], + [-74.0113, 40.730573], + [-74.009533, 40.732993], + [-74.007778, 40.735329], + [-74.005987, 40.737649], + [-74.004105, 40.740019], + [-74.002131, 40.742434], + [-74.000063, 40.744889], + [-73.997901, 40.747377], + [-73.995641, 40.74989], + [-73.993283, 40.752417], + [-73.990825, 40.754946], + [-73.988268, 40.75746], + [-73.98561, 40.759934], + [-73.982851, 40.762339], + [-73.979995, 40.764628], + [-73.977044, 40.766731], + [-73.974009, 40.768529], + [-73.970909, 40.769779], + [-73.967813, 40.769771] ] ] } diff --git a/packages/turf-ellipse/test/out/simple-degrees.json b/packages/turf-ellipse/test/out/simple-degrees.json index 56edf01da..1fc0881a2 100644 --- a/packages/turf-ellipse/test/out/simple-degrees.json +++ b/packages/turf-ellipse/test/out/simple-degrees.json @@ -1,72 +1,6 @@ { "type": "FeatureCollection", "features": [ - { - "type": "Feature", - "bbox": [-80.59569231663727, 39.730833, -67.39930768336274, 41.730833], - "properties": { - "stroke-width": 6, - "stroke": "#FFF", - "fill": "#FFF", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-80.59569231663727, 39.730833], - [-67.39930768336274, 39.730833], - [-67.39930768336274, 41.730833], - [-80.59569231663727, 41.730833], - [-80.59569231663727, 39.730833] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [-75.31713846332747, 35.730833, -72.67786153667254, 45.730833], - "properties": { - "stroke-width": 6, - "stroke": "#666", - "fill": "#666", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-75.31713846332747, 35.730833], - [-72.67786153667254, 35.730833], - [-72.67786153667254, 45.730833], - [-75.31713846332747, 45.730833], - [-75.31713846332747, 35.730833] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [-80.59569231663727, 35.730833, -67.39930768336274, 45.730833], - "properties": { - "stroke-width": 6, - "stroke": "#000", - "fill": "#000", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-80.59569231663727, 35.730833], - [-67.39930768336274, 35.730833], - [-67.39930768336274, 45.730833], - [-80.59569231663727, 45.730833], - [-80.59569231663727, 35.730833] - ] - ] - } - }, { "type": "Feature", "properties": { @@ -172,71 +106,71 @@ "type": "Polygon", "coordinates": [ [ - [-68.9975, 40.730833], - [-69.511912, 41.172625], - [-70.45234, 41.436009], - [-71.245291, 41.565707], - [-71.823448, 41.631355], - [-72.245276, 41.667416], - [-72.563744, 41.688838], - [-72.813644, 41.702398], - [-73.016919, 41.711414], - [-73.187658, 41.717629], - [-73.335209, 41.722022], - [-73.466017, 41.725167], - [-73.584701, 41.727419], - [-73.69471, 41.728998], - [-73.798745, 41.730043], - [-73.899028, 41.730639], + [-80.583334, 40.543359], + [-80.434982, 40.778295], + [-80.118789, 40.952109], + [-79.731663, 41.0934], + [-79.306767, 41.211904], + [-78.860567, 41.312527], + [-78.402775, 41.398261], + [-77.939728, 41.471161], + [-77.475834, 41.532755], + [-77.014306, 41.584252], + [-76.557557, 41.626646], + [-76.10744, 41.660784], + [-75.6654, 41.687402], + [-75.232575, 41.707154], + [-74.809867, 41.720628], + [-74.397988, 41.728358], [-73.9975, 41.730833], - [-74.095972, 41.730639], - [-74.196255, 41.730043], - [-74.30029, 41.728998], - [-74.410299, 41.727419], - [-74.528983, 41.725167], - [-74.659791, 41.722022], - [-74.807342, 41.717629], - [-74.978081, 41.711414], - [-75.181356, 41.702398], - [-75.431256, 41.688838], - [-75.749724, 41.667416], - [-76.171552, 41.631355], - [-76.749709, 41.565707], - [-77.54266, 41.436009], - [-78.483088, 41.172625], - [-78.9975, 40.730833], - [-78.483088, 40.289041], - [-77.54266, 40.025657], - [-76.749709, 39.895959], - [-76.171552, 39.830311], - [-75.749724, 39.79425], - [-75.431256, 39.772828], - [-75.181356, 39.759268], - [-74.978081, 39.750252], - [-74.807342, 39.744037], - [-74.659791, 39.739644], - [-74.528983, 39.736499], - [-74.410299, 39.734247], - [-74.30029, 39.732668], - [-74.196255, 39.731623], - [-74.095972, 39.731027], + [-73.597012, 41.728358], + [-73.185133, 41.720628], + [-72.762425, 41.707154], + [-72.3296, 41.687402], + [-71.88756, 41.660784], + [-71.437443, 41.626646], + [-70.980694, 41.584252], + [-70.519166, 41.532755], + [-70.055272, 41.471161], + [-69.592225, 41.398261], + [-69.134433, 41.312527], + [-68.688233, 41.211904], + [-68.263337, 41.0934], + [-67.876211, 40.952109], + [-67.560018, 40.778295], + [-67.411666, 40.543359], + [-67.603386, 40.327569], + [-67.945847, 40.189403], + [-68.349157, 40.088399], + [-68.783101, 40.010585], + [-69.232966, 39.948999], + [-69.690255, 39.899533], + [-70.149548, 39.859515], + [-70.607154, 39.827093], + [-71.060448, 39.800922], + [-71.507502, 39.779994], + [-71.946867, 39.763537], + [-72.377441, 39.750943], + [-72.798375, 39.74173], + [-73.209014, 39.73551], + [-73.608852, 39.731964], [-73.9975, 39.730833], - [-73.899028, 39.731027], - [-73.798745, 39.731623], - [-73.69471, 39.732668], - [-73.584701, 39.734247], - [-73.466017, 39.736499], - [-73.335209, 39.739644], - [-73.187658, 39.744037], - [-73.016919, 39.750252], - [-72.813644, 39.759268], - [-72.563744, 39.772828], - [-72.245276, 39.79425], - [-71.823448, 39.830311], - [-71.245291, 39.895959], - [-70.45234, 40.025657], - [-69.511912, 40.289041], - [-68.9975, 40.730833] + [-74.386148, 39.731964], + [-74.785986, 39.73551], + [-75.196625, 39.74173], + [-75.617559, 39.750943], + [-76.048133, 39.763537], + [-76.487498, 39.779994], + [-76.934552, 39.800922], + [-77.387846, 39.827093], + [-77.845452, 39.859515], + [-78.304745, 39.899533], + [-78.762034, 39.948999], + [-79.211899, 40.010585], + [-79.645843, 40.088399], + [-80.049153, 40.189403], + [-80.391614, 40.327569], + [-80.583334, 40.543359] ] ] } @@ -253,71 +187,71 @@ "type": "Polygon", "coordinates": [ [ - [-73.9975, 35.730833], - [-73.555708, 36.245245], - [-73.292324, 37.185673], - [-73.162626, 37.978624], - [-73.096978, 38.556781], - [-73.060917, 38.978609], - [-73.039495, 39.297077], - [-73.025935, 39.546977], - [-73.016919, 39.750252], - [-73.010704, 39.920991], - [-73.006311, 40.068542], - [-73.003166, 40.19935], - [-73.000914, 40.318034], - [-72.999335, 40.428043], - [-72.99829, 40.532078], - [-72.997694, 40.632361], - [-72.9975, 40.730833], - [-72.997694, 40.829305], - [-72.99829, 40.929588], - [-72.999335, 41.033623], - [-73.000914, 41.143632], - [-73.003166, 41.262316], - [-73.006311, 41.393124], - [-73.010704, 41.540675], - [-73.016919, 41.711414], - [-73.025935, 41.914689], - [-73.039495, 42.164589], - [-73.060917, 42.483057], - [-73.096978, 42.904885], - [-73.162626, 43.483042], - [-73.292324, 44.275993], - [-73.555708, 45.216421], [-73.9975, 45.730833], - [-74.439292, 45.216421], - [-74.702676, 44.275993], - [-74.832374, 43.483042], - [-74.898022, 42.904885], - [-74.934083, 42.483057], - [-74.955505, 42.164589], - [-74.969065, 41.914689], - [-74.978081, 41.711414], - [-74.984296, 41.540675], - [-74.988689, 41.393124], - [-74.991834, 41.262316], - [-74.994086, 41.143632], - [-74.995665, 41.033623], - [-74.99671, 40.929588], - [-74.997306, 40.829305], - [-74.9975, 40.730833], - [-74.997306, 40.632361], - [-74.99671, 40.532078], - [-74.995665, 40.428043], - [-74.994086, 40.318034], - [-74.991834, 40.19935], - [-74.988689, 40.068542], - [-74.984296, 39.920991], - [-74.978081, 39.750252], - [-74.969065, 39.546977], - [-74.955505, 39.297077], - [-74.934083, 38.978609], - [-74.898022, 38.556781], - [-74.832374, 37.978624], - [-74.702676, 37.185673], - [-74.439292, 36.245245], - [-73.9975, 35.730833] + [-73.674533, 45.600765], + [-73.453563, 45.349008], + [-73.284769, 45.04715], + [-73.150635, 44.719483], + [-73.042184, 44.377943], + [-72.953933, 44.029476], + [-72.882164, 43.678549], + [-72.824183, 43.328221], + [-72.777941, 42.980686], + [-72.741824, 42.637559], + [-72.714527, 42.300063], + [-72.694972, 41.969133], + [-72.682254, 41.645492], + [-72.675606, 41.329702], + [-72.674366, 41.022199], + [-72.677961, 40.723319], + [-72.686198, 40.424493], + [-72.699476, 40.117156], + [-72.718202, 39.801652], + [-72.742835, 39.478429], + [-72.773905, 39.148055], + [-72.812033, 38.81126], + [-72.857956, 38.468986], + [-72.912575, 38.122458], + [-72.977017, 37.773294], + [-73.052734, 37.423681], + [-73.141681, 37.076667], + [-73.246627, 36.736695], + [-73.371792, 36.410667], + [-73.524324, 36.110436], + [-73.718686, 35.860124], + [-73.9975, 35.730833], + [-74.276314, 35.860124], + [-74.470676, 36.110436], + [-74.623208, 36.410667], + [-74.748373, 36.736695], + [-74.853319, 37.076667], + [-74.942266, 37.423681], + [-75.017983, 37.773294], + [-75.082425, 38.122458], + [-75.137044, 38.468986], + [-75.182967, 38.81126], + [-75.221095, 39.148055], + [-75.252165, 39.478429], + [-75.276798, 39.801652], + [-75.295524, 40.117156], + [-75.308802, 40.424493], + [-75.317039, 40.723319], + [-75.320634, 41.022199], + [-75.319394, 41.329702], + [-75.312746, 41.645492], + [-75.300028, 41.969133], + [-75.280473, 42.300063], + [-75.253176, 42.637559], + [-75.217059, 42.980686], + [-75.170817, 43.328221], + [-75.112836, 43.678549], + [-75.041067, 44.029476], + [-74.952816, 44.377943], + [-74.844365, 44.719483], + [-74.710231, 45.04715], + [-74.541437, 45.349008], + [-74.320467, 45.600765], + [-73.9975, 45.730833] ] ] } diff --git a/packages/turf-ellipse/test/out/simple-with-elevation.json b/packages/turf-ellipse/test/out/simple-with-elevation.json new file mode 100644 index 000000000..7316bb4b2 --- /dev/null +++ b/packages/turf-ellipse/test/out/simple-with-elevation.json @@ -0,0 +1,259 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "xSemiAxis": 5, + "ySemiAxis": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.9975, 40.730833, 120] + } + }, + { + "type": "Feature", + "properties": { + "stroke-width": 6, + "stroke": "#F00", + "fill": "#F00", + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-73.9975, 40.775799, 120], + [-74.00332, 40.775582, 120], + [-74.009084, 40.774934, 120], + [-74.014736, 40.773862, 120], + [-74.020222, 40.772374, 120], + [-74.025489, 40.770486, 120], + [-74.030485, 40.768216, 120], + [-74.035164, 40.765586, 120], + [-74.039479, 40.762621, 120], + [-74.043389, 40.75935, 120], + [-74.046857, 40.755804, 120], + [-74.049849, 40.752018, 120], + [-74.052336, 40.748028, 120], + [-74.054295, 40.743872, 120], + [-74.055706, 40.739591, 120], + [-74.056557, 40.735225, 120], + [-74.056839, 40.730818, 120], + [-74.056549, 40.726411, 120], + [-74.055691, 40.722046, 120], + [-74.054273, 40.717766, 120], + [-74.052308, 40.713612, 120], + [-74.049816, 40.709624, 120], + [-74.04682, 40.705841, 120], + [-74.04335, 40.702298, 120], + [-74.039439, 40.69903, 120], + [-74.035125, 40.696068, 120], + [-74.030448, 40.69344, 120], + [-74.025456, 40.691173, 120], + [-74.020194, 40.689288, 120], + [-74.014714, 40.687802, 120], + [-74.009069, 40.68673, 120], + [-74.003312, 40.686083, 120], + [-73.9975, 40.685867, 120], + [-73.991688, 40.686083, 120], + [-73.985931, 40.68673, 120], + [-73.980286, 40.687802, 120], + [-73.974806, 40.689288, 120], + [-73.969544, 40.691173, 120], + [-73.964552, 40.69344, 120], + [-73.959875, 40.696068, 120], + [-73.955561, 40.69903, 120], + [-73.95165, 40.702298, 120], + [-73.94818, 40.705841, 120], + [-73.945184, 40.709624, 120], + [-73.942692, 40.713612, 120], + [-73.940727, 40.717766, 120], + [-73.939309, 40.722046, 120], + [-73.938451, 40.726411, 120], + [-73.938161, 40.730818, 120], + [-73.938443, 40.735225, 120], + [-73.939294, 40.739591, 120], + [-73.940705, 40.743872, 120], + [-73.942664, 40.748028, 120], + [-73.945151, 40.752018, 120], + [-73.948143, 40.755804, 120], + [-73.951611, 40.75935, 120], + [-73.955521, 40.762621, 120], + [-73.959836, 40.765586, 120], + [-73.964515, 40.768216, 120], + [-73.969511, 40.770486, 120], + [-73.974778, 40.772374, 120], + [-73.980264, 40.773862, 120], + [-73.985916, 40.774934, 120], + [-73.99168, 40.775582, 120], + [-73.9975, 40.775799, 120] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke-width": 6, + "stroke": "#00F", + "fill": "#00F", + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.056839, 40.730818, 120], + [-74.055302, 40.732853, 120], + [-74.052325, 40.734262, 120], + [-74.048754, 40.735355, 120], + [-74.044876, 40.736239, 120], + [-74.040832, 40.73697, 120], + [-74.036706, 40.737578, 120], + [-74.032549, 40.738085, 120], + [-74.028398, 40.738507, 120], + [-74.024279, 40.738856, 120], + [-74.020211, 40.739139, 120], + [-74.016209, 40.739366, 120], + [-74.012284, 40.739542, 120], + [-74.008444, 40.739671, 120], + [-74.004697, 40.73976, 120], + [-74.001048, 40.73981, 120], + [-73.9975, 40.739826, 120], + [-73.993952, 40.73981, 120], + [-73.990303, 40.73976, 120], + [-73.986556, 40.739671, 120], + [-73.982716, 40.739542, 120], + [-73.978791, 40.739366, 120], + [-73.974789, 40.739139, 120], + [-73.970721, 40.738856, 120], + [-73.966602, 40.738507, 120], + [-73.962451, 40.738085, 120], + [-73.958294, 40.737578, 120], + [-73.954168, 40.73697, 120], + [-73.950124, 40.736239, 120], + [-73.946246, 40.735355, 120], + [-73.942675, 40.734262, 120], + [-73.939698, 40.732853, 120], + [-73.938161, 40.730818, 120], + [-73.939701, 40.728784, 120], + [-73.942681, 40.727378, 120], + [-73.946253, 40.726289, 120], + [-73.950132, 40.725407, 120], + [-73.954176, 40.72468, 120], + [-73.958302, 40.724075, 120], + [-73.962459, 40.72357, 120], + [-73.966609, 40.723151, 120], + [-73.970728, 40.722804, 120], + [-73.974795, 40.722522, 120], + [-73.978796, 40.722297, 120], + [-73.98272, 40.722122, 120], + [-73.986559, 40.721994, 120], + [-73.990305, 40.721906, 120], + [-73.993953, 40.721856, 120], + [-73.9975, 40.72184, 120], + [-74.001047, 40.721856, 120], + [-74.004695, 40.721906, 120], + [-74.008441, 40.721994, 120], + [-74.01228, 40.722122, 120], + [-74.016204, 40.722297, 120], + [-74.020205, 40.722522, 120], + [-74.024272, 40.722804, 120], + [-74.028391, 40.723151, 120], + [-74.032541, 40.72357, 120], + [-74.036698, 40.724075, 120], + [-74.040824, 40.72468, 120], + [-74.044868, 40.725407, 120], + [-74.048747, 40.726289, 120], + [-74.052319, 40.727378, 120], + [-74.055299, 40.728784, 120], + [-74.056839, 40.730818, 120] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke-width": 6, + "stroke": "#0F0", + "fill": "#0F0", + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-73.9975, 40.775799, 120], + [-73.994813, 40.774633, 120], + [-73.992956, 40.772376, 120], + [-73.991515, 40.769669, 120], + [-73.990349, 40.76673, 120], + [-73.989387, 40.763666, 120], + [-73.988587, 40.760539, 120], + [-73.987919, 40.757389, 120], + [-73.987364, 40.754244, 120], + [-73.986906, 40.751122, 120], + [-73.986533, 40.74804, 120], + [-73.986235, 40.745008, 120], + [-73.986004, 40.742034, 120], + [-73.985834, 40.739125, 120], + [-73.985719, 40.736286, 120], + [-73.985653, 40.73352, 120], + [-73.985632, 40.730832, 120], + [-73.985654, 40.728144, 120], + [-73.985721, 40.725379, 120], + [-73.985837, 40.72254, 120], + [-73.986008, 40.719631, 120], + [-73.98624, 40.716657, 120], + [-73.986538, 40.713625, 120], + [-73.986912, 40.710543, 120], + [-73.987371, 40.707422, 120], + [-73.987927, 40.704276, 120], + [-73.988595, 40.701126, 120], + [-73.989395, 40.697999, 120], + [-73.990357, 40.694935, 120], + [-73.991522, 40.691996, 120], + [-73.992961, 40.68929, 120], + [-73.994817, 40.687033, 120], + [-73.9975, 40.685867, 120], + [-74.000183, 40.687033, 120], + [-74.002039, 40.68929, 120], + [-74.003478, 40.691996, 120], + [-74.004643, 40.694935, 120], + [-74.005605, 40.697999, 120], + [-74.006405, 40.701126, 120], + [-74.007073, 40.704276, 120], + [-74.007629, 40.707422, 120], + [-74.008088, 40.710543, 120], + [-74.008462, 40.713625, 120], + [-74.00876, 40.716657, 120], + [-74.008992, 40.719631, 120], + [-74.009163, 40.72254, 120], + [-74.009279, 40.725379, 120], + [-74.009346, 40.728144, 120], + [-74.009368, 40.730832, 120], + [-74.009347, 40.73352, 120], + [-74.009281, 40.736286, 120], + [-74.009166, 40.739125, 120], + [-74.008996, 40.742034, 120], + [-74.008765, 40.745008, 120], + [-74.008467, 40.74804, 120], + [-74.008094, 40.751122, 120], + [-74.007636, 40.754244, 120], + [-74.007081, 40.757389, 120], + [-74.006413, 40.760539, 120], + [-74.005613, 40.763666, 120], + [-74.004651, 40.76673, 120], + [-74.003485, 40.769669, 120], + [-74.002044, 40.772376, 120], + [-74.000187, 40.774633, 120], + [-73.9975, 40.775799, 120] + ] + ] + } + } + ] +} diff --git a/packages/turf-ellipse/test/out/simple.json b/packages/turf-ellipse/test/out/simple.json index 5f440dcd4..0f743d136 100644 --- a/packages/turf-ellipse/test/out/simple.json +++ b/packages/turf-ellipse/test/out/simple.json @@ -1,78 +1,6 @@ { "type": "FeatureCollection", "features": [ - { - "type": "Feature", - "bbox": [ - -74.05683888714123, 40.72183979636275, -73.93816111285878, 40.73982620363724 - ], - "properties": { - "stroke-width": 6, - "stroke": "#FFF", - "fill": "#FFF", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-74.05683888714123, 40.72183979636275], - [-73.93816111285878, 40.72183979636275], - [-73.93816111285878, 40.73982620363724], - [-74.05683888714123, 40.73982620363724], - [-74.05683888714123, 40.72183979636275] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -74.00936777742822, 40.68586698181377, -73.98563222257178, 40.77579901818623 - ], - "properties": { - "stroke-width": 6, - "stroke": "#666", - "fill": "#666", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-74.00936777742822, 40.68586698181377], - [-73.98563222257178, 40.68586698181377], - [-73.98563222257178, 40.77579901818623], - [-74.00936777742822, 40.77579901818623], - [-74.00936777742822, 40.68586698181377] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -74.05683888714123, 40.68586698181377, -73.93816111285878, 40.77579901818623 - ], - "properties": { - "stroke-width": 6, - "stroke": "#000", - "fill": "#000", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-74.05683888714123, 40.68586698181377], - [-73.93816111285878, 40.68586698181377], - [-73.93816111285878, 40.77579901818623], - [-74.05683888714123, 40.77579901818623], - [-74.05683888714123, 40.68586698181377] - ] - ] - } - }, { "type": "Feature", "properties": { @@ -177,71 +105,71 @@ "type": "Polygon", "coordinates": [ [ - [-73.938161, 40.730833], - [-73.947745, 40.735733], - [-73.961537, 40.737986], - [-73.970979, 40.738878], - [-73.97711, 40.739279], - [-73.981313, 40.739485], - [-73.984374, 40.739603], - [-73.986724, 40.739677], - [-73.988608, 40.739725], - [-73.990176, 40.739757], - [-73.991522, 40.73978], - [-73.992709, 40.739797], - [-73.993782, 40.739809], - [-73.994775, 40.739817], - [-73.995712, 40.739822], - [-73.996614, 40.739825], + [-74.056839, 40.730818], + [-74.055302, 40.732853], + [-74.052325, 40.734262], + [-74.048754, 40.735355], + [-74.044876, 40.736239], + [-74.040832, 40.73697], + [-74.036706, 40.737578], + [-74.032549, 40.738085], + [-74.028398, 40.738507], + [-74.024279, 40.738856], + [-74.020211, 40.739139], + [-74.016209, 40.739366], + [-74.012284, 40.739542], + [-74.008444, 40.739671], + [-74.004697, 40.73976], + [-74.001048, 40.73981], [-73.9975, 40.739826], - [-73.998386, 40.739825], - [-73.999288, 40.739822], - [-74.000225, 40.739817], - [-74.001218, 40.739809], - [-74.002291, 40.739797], - [-74.003478, 40.73978], - [-74.004824, 40.739757], - [-74.006392, 40.739725], - [-74.008276, 40.739677], - [-74.010626, 40.739603], - [-74.013687, 40.739485], - [-74.01789, 40.739279], - [-74.024021, 40.738878], - [-74.033463, 40.737986], - [-74.047255, 40.735733], - [-74.056839, 40.730833], - [-74.047255, 40.725933], - [-74.033463, 40.72368], - [-74.024021, 40.722788], - [-74.01789, 40.722387], - [-74.013687, 40.722181], - [-74.010626, 40.722063], - [-74.008276, 40.721989], - [-74.006392, 40.721941], - [-74.004824, 40.721909], - [-74.003478, 40.721886], - [-74.002291, 40.721869], - [-74.001218, 40.721857], - [-74.000225, 40.721849], - [-73.999288, 40.721844], - [-73.998386, 40.721841], + [-73.993952, 40.73981], + [-73.990303, 40.73976], + [-73.986556, 40.739671], + [-73.982716, 40.739542], + [-73.978791, 40.739366], + [-73.974789, 40.739139], + [-73.970721, 40.738856], + [-73.966602, 40.738507], + [-73.962451, 40.738085], + [-73.958294, 40.737578], + [-73.954168, 40.73697], + [-73.950124, 40.736239], + [-73.946246, 40.735355], + [-73.942675, 40.734262], + [-73.939698, 40.732853], + [-73.938161, 40.730818], + [-73.939701, 40.728784], + [-73.942681, 40.727378], + [-73.946253, 40.726289], + [-73.950132, 40.725407], + [-73.954176, 40.72468], + [-73.958302, 40.724075], + [-73.962459, 40.72357], + [-73.966609, 40.723151], + [-73.970728, 40.722804], + [-73.974795, 40.722522], + [-73.978796, 40.722297], + [-73.98272, 40.722122], + [-73.986559, 40.721994], + [-73.990305, 40.721906], + [-73.993953, 40.721856], [-73.9975, 40.72184], - [-73.996614, 40.721841], - [-73.995712, 40.721844], - [-73.994775, 40.721849], - [-73.993782, 40.721857], - [-73.992709, 40.721869], - [-73.991522, 40.721886], - [-73.990176, 40.721909], - [-73.988608, 40.721941], - [-73.986724, 40.721989], - [-73.984374, 40.722063], - [-73.981313, 40.722181], - [-73.97711, 40.722387], - [-73.970979, 40.722788], - [-73.961537, 40.72368], - [-73.947745, 40.725933], - [-73.938161, 40.730833] + [-74.001047, 40.721856], + [-74.004695, 40.721906], + [-74.008441, 40.721994], + [-74.01228, 40.722122], + [-74.016204, 40.722297], + [-74.020205, 40.722522], + [-74.024272, 40.722804], + [-74.028391, 40.723151], + [-74.032541, 40.72357], + [-74.036698, 40.724075], + [-74.040824, 40.72468], + [-74.044868, 40.725407], + [-74.048747, 40.726289], + [-74.052319, 40.727378], + [-74.055299, 40.728784], + [-74.056839, 40.730818] ] ] } @@ -258,71 +186,71 @@ "type": "Polygon", "coordinates": [ [ - [-73.9975, 40.685867], - [-73.991035, 40.693131], - [-73.988062, 40.703583], - [-73.986885, 40.710737], - [-73.986356, 40.715383], - [-73.986083, 40.718568], - [-73.985927, 40.720887], - [-73.98583, 40.722668], - [-73.985767, 40.724095], - [-73.985723, 40.725283], - [-73.985693, 40.726303], - [-73.985671, 40.727202], - [-73.985656, 40.728016], - [-73.985645, 40.728768], - [-73.985638, 40.729478], - [-73.985634, 40.730162], - [-73.985632, 40.730833], - [-73.985633, 40.731504], - [-73.985637, 40.732188], - [-73.985645, 40.732898], - [-73.985655, 40.73365], - [-73.985671, 40.734464], - [-73.985692, 40.735363], - [-73.985722, 40.736383], - [-73.985766, 40.737571], - [-73.985829, 40.738998], - [-73.985925, 40.740779], - [-73.986081, 40.743098], - [-73.986354, 40.746283], - [-73.986882, 40.750929], - [-73.988058, 40.758083], - [-73.991031, 40.768535], [-73.9975, 40.775799], - [-74.003969, 40.768538], - [-74.006942, 40.758086], - [-74.008118, 40.750931], - [-74.008646, 40.746285], - [-74.008919, 40.7431], - [-74.009075, 40.74078], - [-74.009171, 40.738999], - [-74.009234, 40.737571], - [-74.009278, 40.736383], - [-74.009308, 40.735364], - [-74.009329, 40.734464], - [-74.009345, 40.73365], - [-74.009355, 40.732898], - [-74.009363, 40.732188], - [-74.009367, 40.731504], - [-74.009368, 40.730833], - [-74.009366, 40.730162], - [-74.009362, 40.729478], - [-74.009355, 40.728768], - [-74.009344, 40.728016], - [-74.009329, 40.727202], - [-74.009307, 40.726302], - [-74.009277, 40.725283], - [-74.009233, 40.724095], - [-74.00917, 40.722667], - [-74.009073, 40.720886], - [-74.008917, 40.718566], - [-74.008644, 40.715381], - [-74.008115, 40.710735], - [-74.006938, 40.70358], - [-74.003965, 40.693128], - [-73.9975, 40.685867] + [-73.994813, 40.774633], + [-73.992956, 40.772376], + [-73.991515, 40.769669], + [-73.990349, 40.76673], + [-73.989387, 40.763666], + [-73.988587, 40.760539], + [-73.987919, 40.757389], + [-73.987364, 40.754244], + [-73.986906, 40.751122], + [-73.986533, 40.74804], + [-73.986235, 40.745008], + [-73.986004, 40.742034], + [-73.985834, 40.739125], + [-73.985719, 40.736286], + [-73.985653, 40.73352], + [-73.985632, 40.730832], + [-73.985654, 40.728144], + [-73.985721, 40.725379], + [-73.985837, 40.72254], + [-73.986008, 40.719631], + [-73.98624, 40.716657], + [-73.986538, 40.713625], + [-73.986912, 40.710543], + [-73.987371, 40.707422], + [-73.987927, 40.704276], + [-73.988595, 40.701126], + [-73.989395, 40.697999], + [-73.990357, 40.694935], + [-73.991522, 40.691996], + [-73.992961, 40.68929], + [-73.994817, 40.687033], + [-73.9975, 40.685867], + [-74.000183, 40.687033], + [-74.002039, 40.68929], + [-74.003478, 40.691996], + [-74.004643, 40.694935], + [-74.005605, 40.697999], + [-74.006405, 40.701126], + [-74.007073, 40.704276], + [-74.007629, 40.707422], + [-74.008088, 40.710543], + [-74.008462, 40.713625], + [-74.00876, 40.716657], + [-74.008992, 40.719631], + [-74.009163, 40.72254], + [-74.009279, 40.725379], + [-74.009346, 40.728144], + [-74.009368, 40.730832], + [-74.009347, 40.73352], + [-74.009281, 40.736286], + [-74.009166, 40.739125], + [-74.008996, 40.742034], + [-74.008765, 40.745008], + [-74.008467, 40.74804], + [-74.008094, 40.751122], + [-74.007636, 40.754244], + [-74.007081, 40.757389], + [-74.006413, 40.760539], + [-74.005613, 40.763666], + [-74.004651, 40.76673], + [-74.003485, 40.769669], + [-74.002044, 40.772376], + [-74.000187, 40.774633], + [-73.9975, 40.775799] ] ] } diff --git a/packages/turf-envelope/index.ts b/packages/turf-envelope/index.ts index 1db373e12..d8536289d 100644 --- a/packages/turf-envelope/index.ts +++ b/packages/turf-envelope/index.ts @@ -6,7 +6,7 @@ import { bboxPolygon } from "@turf/bbox-polygon"; /** * Takes any number of features and returns a rectangular {@link Polygon} that encompasses all vertices. * - * @name envelope + * @function * @param {GeoJSON} geojson input features * @returns {Feature} a rectangular Polygon feature that encompasses all vertices * @example diff --git a/packages/turf-envelope/package.json b/packages/turf-envelope/package.json index 80d78aedd..dc34fe5cc 100644 --- a/packages/turf-envelope/package.json +++ b/packages/turf-envelope/package.json @@ -1,7 +1,7 @@ { "name": "@turf/envelope", - "version": "7.0.0", - "description": "turf envelope module", + "version": "7.2.0", + "description": "Takes any number of features and returns a rectangular Polygon that encompasses all vertices.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -53,20 +53,20 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/bbox": "workspace:^", - "@turf/bbox-polygon": "workspace:^", - "@turf/helpers": "workspace:^", + "@turf/bbox": "workspace:*", + "@turf/bbox-polygon": "workspace:*", + "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-explode/index.ts b/packages/turf-explode/index.ts index 2ca866bb6..407593269 100644 --- a/packages/turf-explode/index.ts +++ b/packages/turf-explode/index.ts @@ -6,7 +6,7 @@ import type { Feature, FeatureCollection, Point } from "geojson"; /** * Takes a feature or set of features and returns all positions as {@link Point|points}. * - * @name explode + * @function * @param {GeoJSON} geojson input features * @returns {FeatureCollection} points representing the exploded input features * @throws {Error} if it encounters an unknown geometry type diff --git a/packages/turf-explode/package.json b/packages/turf-explode/package.json index cdf412625..b2de98d1b 100644 --- a/packages/turf-explode/package.json +++ b/packages/turf-explode/package.json @@ -1,7 +1,7 @@ { "name": "@turf/explode", - "version": "7.0.0", - "description": "turf explode module", + "version": "7.2.0", + "description": "Takes a feature or set of features and returns all positions as points.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -52,20 +52,20 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-flatten/index.ts b/packages/turf-flatten/index.ts index 3ed12e7aa..d2af980a4 100644 --- a/packages/turf-flatten/index.ts +++ b/packages/turf-flatten/index.ts @@ -15,7 +15,7 @@ import type { /** * Flattens any {@link GeoJSON} to a {@link FeatureCollection} inspired by [geojson-flatten](https://github.com/tmcw/geojson-flatten). * - * @name flatten + * @function * @param {GeoJSON} geojson any valid GeoJSON Object * @returns {FeatureCollection} all Multi-Geometries are flattened into single Features * @example diff --git a/packages/turf-flatten/package.json b/packages/turf-flatten/package.json index 2f67d865b..a0a8a4214 100644 --- a/packages/turf-flatten/package.json +++ b/packages/turf-flatten/package.json @@ -1,7 +1,7 @@ { "name": "@turf/flatten", - "version": "7.0.0", - "description": "turf flatten module", + "version": "7.2.0", + "description": "Flattens any GeoJSON to a FeatureCollection", "author": "Turf Authors", "contributors": [ "Tom MacWright <@tmcw>", @@ -58,20 +58,20 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-flip/index.ts b/packages/turf-flip/index.ts index a5e84bf35..ba53101a2 100644 --- a/packages/turf-flip/index.ts +++ b/packages/turf-flip/index.ts @@ -5,7 +5,7 @@ import { clone } from "@turf/clone"; /** * Takes input features and flips all of their coordinates from `[x, y]` to `[y, x]`. * - * @name flip + * @function * @param {GeoJSON} geojson input features * @param {Object} [options={}] Optional parameters * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true) diff --git a/packages/turf-flip/package.json b/packages/turf-flip/package.json index abb93b2ad..d1d1a06c7 100644 --- a/packages/turf-flip/package.json +++ b/packages/turf-flip/package.json @@ -1,7 +1,7 @@ { "name": "@turf/flip", - "version": "7.0.0", - "description": "turf flip module", + "version": "7.2.0", + "description": "Takes input features and flips all of their coordinates.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -53,21 +53,21 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/clone": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/clone": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-geojson-rbush/index.js b/packages/turf-geojson-rbush/index.js index 55945bbf2..bae88b283 100644 --- a/packages/turf-geojson-rbush/index.js +++ b/packages/turf-geojson-rbush/index.js @@ -10,7 +10,7 @@ import { bbox as turfBBox } from "@turf/bbox"; /** * GeoJSON implementation of [RBush](https://github.com/mourner/rbush#rbush) spatial index. * - * @name rbush + * @function rbush * @param {number} [maxEntries=9] defines the maximum number of entries in a tree node. 9 (used by default) is a * reasonable choice for most applications. Higher value means faster insertion and slower search, and vice versa. * @returns {RBush} GeoJSON RBush diff --git a/packages/turf-geojson-rbush/package.json b/packages/turf-geojson-rbush/package.json index 0f26b3616..b4bebee21 100644 --- a/packages/turf-geojson-rbush/package.json +++ b/packages/turf-geojson-rbush/package.json @@ -1,6 +1,6 @@ { "name": "@turf/geojson-rbush", - "version": "7.0.0", + "version": "7.2.0", "description": "GeoJSON implementation of RBush", "author": "Turf Authors", "contributors": [ @@ -58,23 +58,23 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/bbox-polygon": "workspace:^", - "@turf/random": "workspace:^", + "@turf/bbox-polygon": "workspace:*", + "@turf/random": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/bbox": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/bbox": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "rbush": "^3.0.1" } diff --git a/packages/turf-great-circle/README.md b/packages/turf-great-circle/README.md index 8703e2577..30eae73ae 100644 --- a/packages/turf-great-circle/README.md +++ b/packages/turf-great-circle/README.md @@ -6,7 +6,8 @@ Calculate great circles routes as [LineString][1] or [MultiLineString][2]. If the `start` and `end` points span the antimeridian, the resulting feature will -be split into a `MultiLineString`. +be split into a `MultiLineString`. If the `start` and `end` positions are the same +then a `LineString` will be returned with duplicate coordinates the length of the `npoints` option. ### Parameters diff --git a/packages/turf-great-circle/index.js b/packages/turf-great-circle/index.js index 8cbbeaeae..c7d36243e 100644 --- a/packages/turf-great-circle/index.js +++ b/packages/turf-great-circle/index.js @@ -1,12 +1,14 @@ +import { lineString } from "@turf/helpers"; import { getCoord } from "@turf/invariant"; import { GreatCircle } from "./lib/arc.js"; /** * Calculate great circles routes as {@link LineString} or {@link MultiLineString}. * If the `start` and `end` points span the antimeridian, the resulting feature will - * be split into a `MultiLineString`. + * be split into a `MultiLineString`. If the `start` and `end` positions are the same + * then a `LineString` will be returned with duplicate coordinates the length of the `npoints` option. * - * @name greatCircle + * @function * @param {Coord} start source point feature * @param {Coord} end destination point feature * @param {Object} [options={}] Optional parameters @@ -34,8 +36,16 @@ function greatCircle(start, end, options) { start = getCoord(start); end = getCoord(end); + properties = properties || {}; npoints = npoints || 100; + + if (start[0] === end[0] && start[1] === end[1]) { + const arr = Array(npoints); + arr.fill([start[0], start[1]]); + return lineString(arr, properties); + } + offset = offset || 10; var generator = new GreatCircle( diff --git a/packages/turf-great-circle/lib/arc.js b/packages/turf-great-circle/lib/arc.js index 4fac7e86e..1c6639579 100644 --- a/packages/turf-great-circle/lib/arc.js +++ b/packages/turf-great-circle/lib/arc.js @@ -135,9 +135,9 @@ var GreatCircle = function (start, end, properties) { if (this.g === Math.PI) { throw new Error( "it appears " + - start.view() + + this.start.view() + " and " + - end.view() + + this.end.view() + " are 'antipodal', e.g diametrically opposite, thus there is no single route but rather infinite" ); } else if (isNaN(this.g)) { diff --git a/packages/turf-great-circle/package.json b/packages/turf-great-circle/package.json index 917e6e54c..9910a67ea 100644 --- a/packages/turf-great-circle/package.json +++ b/packages/turf-great-circle/package.json @@ -1,7 +1,7 @@ { "name": "@turf/great-circle", - "version": "7.0.0", - "description": "turf great-circle module", + "version": "7.2.0", + "description": "Calculate great circles routes as LineString or MultiLineString.", "author": "Turf Authors", "contributors": [ "Dane Springmeyer <@springmeyer>", @@ -58,20 +58,20 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/truncate": "workspace:^", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10" } } diff --git a/packages/turf-great-circle/test.ts b/packages/turf-great-circle/test.ts index f5a1a3c3a..cf896bc73 100644 --- a/packages/turf-great-circle/test.ts +++ b/packages/turf-great-circle/test.ts @@ -5,7 +5,7 @@ import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { truncate } from "@turf/truncate"; -import { featureCollection } from "@turf/helpers"; +import { featureCollection, point, lineString } from "@turf/helpers"; import { greatCircle } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); @@ -39,3 +39,36 @@ test("turf-great-circle", (t) => { }); t.end(); }); + +test("turf-great-circle with same input and output", (t) => { + const start = point([0, 0]); + const end = point([0, 0]); + const line = greatCircle(start, end, { + npoints: 4, + }); + + t.deepEquals( + lineString([ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + ]), + line + ); + + t.end(); +}); + +test("turf-great-circle with antipodal start and end", (t) => { + const start = point([0, 90]); + const end = point([0, -90]); + + t.throws(() => { + greatCircle(start, end, { + npoints: 4, + }); + }, "it appears 0,90 and 0,-90 are 'antipodal', e.g diametrically opposite, thus there is no single route but rather infinite"); + + t.end(); +}); diff --git a/packages/turf-helpers/README.md b/packages/turf-helpers/README.md index d7711029f..21e253f37 100644 --- a/packages/turf-helpers/README.md +++ b/packages/turf-helpers/README.md @@ -4,38 +4,82 @@ ## helpers -### earthRadius +## Units -Earth Radius used with the Harvesine formula and approximates using a spherical (non-ellipsoid) Earth. +Linear measurement units. -Type: [number][1] +⚠️ Warning. Be aware of the implications of using radian or degree units to +measure distance. The distance represented by a degree of longitude *varies* +depending on latitude. -### factors +See [https://www.thoughtco.com/degree-of-latitude-and-longitude-distance-4070616][1] +for an illustration of this behaviour. -Unit of measurement factors using a spherical (non-ellipsoid) earth radius. +Type: (`"meters"` | `"metres"` | `"millimeters"` | `"millimetres"` | `"centimeters"` | `"centimetres"` | `"kilometers"` | `"kilometres"` | `"miles"` | `"nauticalmiles"` | `"inches"` | `"yards"` | `"feet"` | `"radians"` | `"degrees"`) + +## AreaUnits + +Area measurement units. + +Type: (Exclude<[Units][2], (`"radians"` | `"degrees"`)> | `"acres"` | `"hectares"`) + +## Grid + +Grid types. + +Type: (`"point"` | `"square"` | `"hex"` | `"triangle"`) + +## Corners + +Shorthand corner identifiers. + +Type: (`"sw"` | `"se"` | `"nw"` | `"ne"` | `"center"` | `"centroid"`) + +## Lines + +Geometries made up of lines i.e. lines and polygons. + +Type: ([LineString][3] | [MultiLineString][4] | [Polygon][5] | [MultiPolygon][6]) + +## AllGeoJSON + +Convenience type for all possible GeoJSON. + +Type: ([Feature][7] | [FeatureCollection][8] | [Geometry][9] | [GeometryCollection][10]) + +## earthRadius + +The Earth radius in meters. Used by Turf modules that model the Earth as a sphere. The [mean radius][11] was selected because it is [recommended ][12] by the Haversine formula (used by turf/distance) to reduce error. + +Type: [number][13] + +## factors + +Unit of measurement factors based on earthRadius. Keys are the name of the unit, values are the number of that unit in a single radian -Type: [Object][2] +Type: Record<[Units][2], [number][13]> -### areaFactors +## areaFactors Area of measurement factors based on 1 square meter. -Type: [Object][2] +Type: Record<[AreaUnits][14], [number][13]> ## feature -Wraps a GeoJSON [Geometry][3] in a GeoJSON [Feature][4]. +Wraps a GeoJSON [Geometry][9] in a GeoJSON [Feature][7]. ### Parameters -* `geometry` **[Geometry][3]** input geometry -* `properties` **[Object][2]** an Object of key-value pairs to add as properties (optional, default `{}`) -* `options` **[Object][2]** Optional Parameters (optional, default `{}`) +* `geom` **(G | null)** +* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) - * `options.bbox` **[Array][5]<[number][1]>?** Bounding Box Array \[west, south, east, north] associated with the Feature - * `options.id` **([string][6] | [number][1])?** Identifier associated with the Feature + * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature + * `options.id` **Id?** Identifier associated with the Feature +* `geometry` **[GeometryObject][9]** input geometry ### Examples @@ -50,18 +94,19 @@ var feature = turf.feature(geometry); //=feature ``` -Returns **[Feature][4]** a GeoJSON Feature +Returns **[Feature][7]<[GeometryObject][9], [GeoJsonProperties][7]>** a GeoJSON Feature ## geometry -Creates a GeoJSON [Geometry][3] from a Geometry string type & coordinates. +Creates a GeoJSON [Geometry][9] from a Geometry string type & coordinates. For GeometryCollection type use `helpers.geometryCollection` ### Parameters -* `type` **[string][6]** Geometry Type -* `coordinates` **[Array][5]\** Coordinates -* `options` **[Object][2]** Optional Parameters (optional, default `{}`) +* `type` **(`"Point"` | `"LineString"` | `"Polygon"` | `"MultiPoint"` | `"MultiLineString"` | `"MultiPolygon"`)** Geometry Type +* `coordinates` **[Array][17]\** Coordinates +* `_options` **Record<[string][18], never>** (optional, default `{}`) +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) ### Examples @@ -72,20 +117,20 @@ var geometry = turf.geometry(type, coordinates); // => geometry ``` -Returns **[Geometry][3]** a GeoJSON Geometry +Returns **[Geometry][9]** a GeoJSON Geometry ## point -Creates a [Point][7] [Feature][4] from a Position. +Creates a [Point][19] [Feature][7] from a Position. ### Parameters -* `coordinates` **[Array][5]<[number][1]>** longitude, latitude position (each in decimal degrees) -* `properties` **[Object][2]** an Object of key-value pairs to add as properties (optional, default `{}`) -* `options` **[Object][2]** Optional Parameters (optional, default `{}`) +* `coordinates` **[Position][20]** longitude, latitude position (each in decimal degrees) +* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) - * `options.bbox` **[Array][5]<[number][1]>?** Bounding Box Array \[west, south, east, north] associated with the Feature - * `options.id` **([string][6] | [number][1])?** Identifier associated with the Feature + * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature + * `options.id` **Id?** Identifier associated with the Feature ### Examples @@ -95,21 +140,21 @@ var point = turf.point([-75.343, 39.984]); //=point ``` -Returns **[Feature][4]<[Point][7]>** a Point feature +Returns **[Feature][7]<[Point][19], [GeoJsonProperties][7]>** a Point feature ## points -Creates a [Point][7] [FeatureCollection][8] from an Array of Point coordinates. +Creates a [Point][19] [FeatureCollection][8] from an Array of Point coordinates. ### Parameters -* `coordinates` **[Array][5]<[Array][5]<[number][1]>>** an array of Points -* `properties` **[Object][2]** Translate these properties to each Feature (optional, default `{}`) -* `options` **[Object][2]** Optional Parameters (optional, default `{}`) +* `coordinates` **[Array][17]<[Position][20]>** an array of Points +* `properties` **[GeoJsonProperties][7]** Translate these properties to each Feature (optional, default `{}`) +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) - * `options.bbox` **[Array][5]<[number][1]>?** Bounding Box Array \[west, south, east, north] + * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the FeatureCollection - * `options.id` **([string][6] | [number][1])?** Identifier associated with the FeatureCollection + * `options.id` **Id?** Identifier associated with the FeatureCollection ### Examples @@ -123,20 +168,20 @@ var points = turf.points([ //=points ``` -Returns **[FeatureCollection][8]<[Point][7]>** Point Feature +Returns **[FeatureCollection][8]<[Point][19]>** Point Feature ## polygon -Creates a [Polygon][9] [Feature][4] from an Array of LinearRings. +Creates a [Polygon][5] [Feature][7] from an Array of LinearRings. ### Parameters -* `coordinates` **[Array][5]<[Array][5]<[Array][5]<[number][1]>>>** an array of LinearRings -* `properties` **[Object][2]** an Object of key-value pairs to add as properties (optional, default `{}`) -* `options` **[Object][2]** Optional Parameters (optional, default `{}`) +* `coordinates` **[Array][17]<[Array][17]<[Position][20]>>** +* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) - * `options.bbox` **[Array][5]<[number][1]>?** Bounding Box Array \[west, south, east, north] associated with the Feature - * `options.id` **([string][6] | [number][1])?** Identifier associated with the Feature + * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature + * `options.id` **Id?** Identifier associated with the Feature ### Examples @@ -146,20 +191,20 @@ var polygon = turf.polygon([[[-5, 52], [-4, 56], [-2, 51], [-7, 54], [-5, 52]]], //=polygon ``` -Returns **[Feature][4]<[Polygon][9]>** Polygon Feature +Returns **[Feature][7]<[Polygon][5], [GeoJsonProperties][7]>** Polygon Feature ## polygons -Creates a [Polygon][9] [FeatureCollection][8] from an Array of Polygon coordinates. +Creates a [Polygon][5] [FeatureCollection][8] from an Array of Polygon coordinates. ### Parameters -* `coordinates` **[Array][5]<[Array][5]<[Array][5]<[Array][5]<[number][1]>>>>** an array of Polygon coordinates -* `properties` **[Object][2]** an Object of key-value pairs to add as properties (optional, default `{}`) -* `options` **[Object][2]** Optional Parameters (optional, default `{}`) +* `coordinates` **[Array][17]<[Array][17]<[Array][17]<[Position][20]>>>** +* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) - * `options.bbox` **[Array][5]<[number][1]>?** Bounding Box Array \[west, south, east, north] associated with the Feature - * `options.id` **([string][6] | [number][1])?** Identifier associated with the FeatureCollection + * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature + * `options.id` **Id?** Identifier associated with the FeatureCollection ### Examples @@ -172,20 +217,20 @@ var polygons = turf.polygons([ //=polygons ``` -Returns **[FeatureCollection][8]<[Polygon][9]>** Polygon FeatureCollection +Returns **[FeatureCollection][8]<[Polygon][5], [GeoJsonProperties][7]>** Polygon FeatureCollection ## lineString -Creates a [LineString][10] [Feature][4] from an Array of Positions. +Creates a [LineString][3] [Feature][7] from an Array of Positions. ### Parameters -* `coordinates` **[Array][5]<[Array][5]<[number][1]>>** an array of Positions -* `properties` **[Object][2]** an Object of key-value pairs to add as properties (optional, default `{}`) -* `options` **[Object][2]** Optional Parameters (optional, default `{}`) +* `coordinates` **[Array][17]<[Position][20]>** an array of Positions +* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) - * `options.bbox` **[Array][5]<[number][1]>?** Bounding Box Array \[west, south, east, north] associated with the Feature - * `options.id` **([string][6] | [number][1])?** Identifier associated with the Feature + * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature + * `options.id` **Id?** Identifier associated with the Feature ### Examples @@ -197,21 +242,21 @@ var linestring2 = turf.lineString([[-14, 43], [-13, 40], [-15, 45], [-10, 49]], //=linestring2 ``` -Returns **[Feature][4]<[LineString][10]>** LineString Feature +Returns **[Feature][7]<[LineString][3], [GeoJsonProperties][7]>** LineString Feature ## lineStrings -Creates a [LineString][10] [FeatureCollection][8] from an Array of LineString coordinates. +Creates a [LineString][3] [FeatureCollection][8] from an Array of LineString coordinates. ### Parameters -* `coordinates` **[Array][5]<[Array][5]<[Array][5]<[number][1]>>>** an array of LinearRings -* `properties` **[Object][2]** an Object of key-value pairs to add as properties (optional, default `{}`) -* `options` **[Object][2]** Optional Parameters (optional, default `{}`) +* `coordinates` **[Array][17]<[Array][17]<[Position][20]>>** +* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) - * `options.bbox` **[Array][5]<[number][1]>?** Bounding Box Array \[west, south, east, north] + * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the FeatureCollection - * `options.id` **([string][6] | [number][1])?** Identifier associated with the FeatureCollection + * `options.id` **Id?** Identifier associated with the FeatureCollection ### Examples @@ -224,19 +269,19 @@ var linestrings = turf.lineStrings([ //=linestrings ``` -Returns **[FeatureCollection][8]<[LineString][10]>** LineString FeatureCollection +Returns **[FeatureCollection][8]<[LineString][3], [GeoJsonProperties][7]>** LineString FeatureCollection ## featureCollection -Takes one or more [Features][4] and creates a [FeatureCollection][8]. +Takes one or more [Features][7] and creates a [FeatureCollection][8]. ### Parameters -* `features` **[Array][5]<[Feature][4]>** input features -* `options` **[Object][2]** Optional Parameters (optional, default `{}`) +* `features` **[Array][17]<[Feature][7]<[GeometryObject][9], [GeoJsonProperties][7]>>** input features +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) - * `options.bbox` **[Array][5]<[number][1]>?** Bounding Box Array \[west, south, east, north] associated with the Feature - * `options.id` **([string][6] | [number][1])?** Identifier associated with the Feature + * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature + * `options.id` **Id?** Identifier associated with the Feature ### Examples @@ -254,21 +299,21 @@ var collection = turf.featureCollection([ //=collection ``` -Returns **[FeatureCollection][8]** FeatureCollection of Features +Returns **[FeatureCollection][8]<[GeometryObject][9], [GeoJsonProperties][7]>** FeatureCollection of Features ## multiLineString -Creates a [Feature\][11] based on a +Creates a [Feature][7]<[MultiLineString][4]> based on a coordinate array. Properties can be added optionally. ### Parameters -* `coordinates` **[Array][5]<[Array][5]<[Array][5]<[number][1]>>>** an array of LineStrings -* `properties` **[Object][2]** an Object of key-value pairs to add as properties (optional, default `{}`) -* `options` **[Object][2]** Optional Parameters (optional, default `{}`) +* `coordinates` **[Array][17]<[Array][17]<[Position][20]>>** +* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) - * `options.bbox` **[Array][5]<[number][1]>?** Bounding Box Array \[west, south, east, north] associated with the Feature - * `options.id` **([string][6] | [number][1])?** Identifier associated with the Feature + * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature + * `options.id` **Id?** Identifier associated with the Feature ### Examples @@ -278,23 +323,23 @@ var multiLine = turf.multiLineString([[[0,0],[10,10]]]); //=multiLine ``` -* Throws **[Error][12]** if no coordinates are passed +* Throws **[Error][21]** if no coordinates are passed -Returns **[Feature][4]<[MultiLineString][13]>** a MultiLineString feature +Returns **[Feature][7]<[MultiLineString][4], [GeoJsonProperties][7]>** a MultiLineString feature ## multiPoint -Creates a [Feature\][14] based on a +Creates a [Feature][7]<[MultiPoint][22]> based on a coordinate array. Properties can be added optionally. ### Parameters -* `coordinates` **[Array][5]<[Array][5]<[number][1]>>** an array of Positions -* `properties` **[Object][2]** an Object of key-value pairs to add as properties (optional, default `{}`) -* `options` **[Object][2]** Optional Parameters (optional, default `{}`) +* `coordinates` **[Array][17]<[Position][20]>** an array of Positions +* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) - * `options.bbox` **[Array][5]<[number][1]>?** Bounding Box Array \[west, south, east, north] associated with the Feature - * `options.id` **([string][6] | [number][1])?** Identifier associated with the Feature + * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature + * `options.id` **Id?** Identifier associated with the Feature ### Examples @@ -304,23 +349,23 @@ var multiPt = turf.multiPoint([[0,0],[10,10]]); //=multiPt ``` -* Throws **[Error][12]** if no coordinates are passed +* Throws **[Error][21]** if no coordinates are passed -Returns **[Feature][4]<[MultiPoint][15]>** a MultiPoint feature +Returns **[Feature][7]<[MultiPoint][22], [GeoJsonProperties][7]>** a MultiPoint feature ## multiPolygon -Creates a [Feature\][16] based on a +Creates a [Feature][7]<[MultiPolygon][6]> based on a coordinate array. Properties can be added optionally. ### Parameters -* `coordinates` **[Array][5]<[Array][5]<[Array][5]<[Array][5]<[number][1]>>>>** an array of Polygons -* `properties` **[Object][2]** an Object of key-value pairs to add as properties (optional, default `{}`) -* `options` **[Object][2]** Optional Parameters (optional, default `{}`) +* `coordinates` **[Array][17]<[Array][17]<[Array][17]<[Position][20]>>>** +* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) - * `options.bbox` **[Array][5]<[number][1]>?** Bounding Box Array \[west, south, east, north] associated with the Feature - * `options.id` **([string][6] | [number][1])?** Identifier associated with the Feature + * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature + * `options.id` **Id?** Identifier associated with the Feature ### Examples @@ -330,23 +375,23 @@ var multiPoly = turf.multiPolygon([[[[0,0],[0,10],[10,10],[10,0],[0,0]]]]); //=multiPoly ``` -* Throws **[Error][12]** if no coordinates are passed +* Throws **[Error][21]** if no coordinates are passed -Returns **[Feature][4]<[MultiPolygon][17]>** a multipolygon feature +Returns **[Feature][7]<[MultiPolygon][6], [GeoJsonProperties][7]>** a multipolygon feature ## geometryCollection -Creates a [Feature\][18] based on a +Creates a Feature based on a coordinate array. Properties can be added optionally. ### Parameters -* `geometries` **[Array][5]<[Geometry][3]>** an array of GeoJSON Geometries -* `properties` **[Object][2]** an Object of key-value pairs to add as properties (optional, default `{}`) -* `options` **[Object][2]** Optional Parameters (optional, default `{}`) +* `geometries` **[Array][17]<([Point][19] | [LineString][3] | [Polygon][5] | [MultiPoint][22] | [MultiLineString][4] | [MultiPolygon][6])>** an array of GeoJSON Geometries +* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) - * `options.bbox` **[Array][5]<[number][1]>?** Bounding Box Array \[west, south, east, north] associated with the Feature - * `options.id` **([string][6] | [number][1])?** Identifier associated with the Feature + * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature + * `options.id` **Id?** Identifier associated with the Feature ### Examples @@ -358,7 +403,7 @@ var collection = turf.geometryCollection([pt, line]); // => collection ``` -Returns **[Feature][4]<[GeometryCollection][19]>** a GeoJSON GeometryCollection Feature +Returns **[Feature][7]<[GeometryCollection][10], [GeoJsonProperties][7]>** a GeoJSON GeometryCollection Feature ## round @@ -366,8 +411,8 @@ Round number to precision ### Parameters -* `num` **[number][1]** Number -* `precision` **[number][1]** Precision (optional, default `0`) +* `num` **[number][13]** Number +* `precision` **[number][13]** Precision (optional, default `0`) ### Examples @@ -379,7 +424,7 @@ turf.round(120.4321, 2) //=120.43 ``` -Returns **[number][1]** rounded number +Returns **[number][13]** rounded number ## radiansToLength @@ -388,11 +433,11 @@ Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, ce ### Parameters -* `radians` **[number][1]** in radians across the sphere -* `units` **[string][6]** can be degrees, radians, miles, inches, yards, metres, +* `radians` **[number][13]** in radians across the sphere +* `units` **[Units][2]** can be degrees, radians, miles, inches, yards, metres, meters, kilometres, kilometers. (optional, default `"kilometers"`) -Returns **[number][1]** distance +Returns **[number][13]** distance ## lengthToRadians @@ -401,11 +446,11 @@ Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, ce ### Parameters -* `distance` **[number][1]** in real units -* `units` **[string][6]** can be degrees, radians, miles, inches, yards, metres, +* `distance` **[number][13]** in real units +* `units` **[Units][2]** can be degrees, radians, miles, inches, yards, metres, meters, kilometres, kilometers. (optional, default `"kilometers"`) -Returns **[number][1]** radians +Returns **[number][13]** radians ## lengthToDegrees @@ -414,11 +459,11 @@ Valid units: miles, nauticalmiles, inches, yards, meters, metres, centimeters, k ### Parameters -* `distance` **[number][1]** in real units -* `units` **[string][6]** can be degrees, radians, miles, inches, yards, metres, +* `distance` **[number][13]** in real units +* `units` **[Units][2]** can be degrees, radians, miles, inches, yards, metres, meters, kilometres, kilometers. (optional, default `"kilometers"`) -Returns **[number][1]** degrees +Returns **[number][13]** degrees ## bearingToAzimuth @@ -427,9 +472,9 @@ and returns an angle between 0-360 degrees (positive clockwise), 0 being the nor ### Parameters -* `bearing` **[number][1]** angle, between -180 and +180 degrees +* `bearing` **[number][13]** angle, between -180 and +180 degrees -Returns **[number][1]** angle between 0 and 360 degrees +Returns **[number][13]** angle between 0 and 360 degrees ## azimuthToBearing @@ -438,9 +483,9 @@ and returns an angle between -180 and +180 degrees (positive clockwise), 0 being ### Parameters -* `angle` **[number][1]** between 0 and 360 degrees +* `angle` **[number][13]** between 0 and 360 degrees -Returns **[number][1]** bearing between -180 and +180 degrees +Returns **[number][13]** bearing between -180 and +180 degrees ## radiansToDegrees @@ -448,9 +493,9 @@ Converts an angle in radians to degrees ### Parameters -* `radians` **[number][1]** angle in radians +* `radians` **[number][13]** angle in radians -Returns **[number][1]** degrees between 0 and 360 degrees +Returns **[number][13]** degrees between 0 and 360 degrees ## degreesToRadians @@ -458,35 +503,33 @@ Converts an angle in degrees to radians ### Parameters -* `degrees` **[number][1]** angle between 0 and 360 degrees +* `degrees` **[number][13]** angle between 0 and 360 degrees -Returns **[number][1]** angle in radians +Returns **[number][13]** angle in radians ## convertLength -Converts a length to the requested unit. -Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, centimeters, feet +Converts a length from one unit to another. ### Parameters -* `length` **[number][1]** to be converted -* `originalUnit` **Units** of the length (optional, default `"kilometers"`) -* `finalUnit` **Units** returned unit (optional, default `"kilometers"`) +* `length` **[number][13]** Length to be converted +* `originalUnit` **[Units][2]** Input length unit (optional, default `"kilometers"`) +* `finalUnit` **[Units][2]** Returned length unit (optional, default `"kilometers"`) -Returns **[number][1]** the converted length +Returns **[number][13]** The converted length ## convertArea -Converts a area to the requested unit. -Valid units: kilometers, kilometres, meters, metres, centimetres, millimeters, acres, miles, yards, feet, inches, hectares +Converts an area from one unit to another. ### Parameters -* `area` **[number][1]** to be converted -* `originalUnit` **Units** of the distance (optional, default `"meters"`) -* `finalUnit` **Units** returned unit (optional, default `"kilometers"`) +* `area` **[number][13]** Area to be converted +* `originalUnit` **[AreaUnits][14]** Input area unit (optional, default `"meters"`) +* `finalUnit` **[AreaUnits][14]** Returned area unit (optional, default `"kilometers"`) -Returns **[number][1]** the converted area +Returns **[number][13]** The converted length ## isNumber @@ -505,7 +548,7 @@ turf.isNumber('foo') //=false ``` -Returns **[boolean][20]** true/false +Returns **[boolean][23]** true/false ## isObject @@ -524,47 +567,53 @@ turf.isObject('foo') //=false ``` -Returns **[boolean][20]** true/false, including false for Arrays and Functions +Returns **[boolean][23]** true/false, including false for Arrays and Functions -[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number +[1]: https://www.thoughtco.com/degree-of-latitude-and-longitude-distance-4070616 -[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object +[2]: #units -[3]: https://tools.ietf.org/html/rfc7946#section-3.1 +[3]: https://tools.ietf.org/html/rfc7946#section-3.1.4 -[4]: https://tools.ietf.org/html/rfc7946#section-3.2 +[4]: https://tools.ietf.org/html/rfc7946#section-3.1.5 -[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array +[5]: https://tools.ietf.org/html/rfc7946#section-3.1.6 -[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[6]: https://tools.ietf.org/html/rfc7946#section-3.1.7 -[7]: https://tools.ietf.org/html/rfc7946#section-3.1.2 +[7]: https://tools.ietf.org/html/rfc7946#section-3.2 [8]: https://tools.ietf.org/html/rfc7946#section-3.3 -[9]: https://tools.ietf.org/html/rfc7946#section-3.1.6 +[9]: https://tools.ietf.org/html/rfc7946#section-3.1 -[10]: https://tools.ietf.org/html/rfc7946#section-3.1.4 +[10]: https://tools.ietf.org/html/rfc7946#section-3.1.8 -[11]: Feature +[11]: https://en.wikipedia.org/wiki/Earth_radius#Arithmetic_mean_radius -[12]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error +[12]: https://rosettacode.org/wiki/Haversine_formula#:~:text=This%20value%20is%20recommended -[13]: https://tools.ietf.org/html/rfc7946#section-3.1.5 +[13]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number -[14]: Feature +[14]: #areaunits -[15]: https://tools.ietf.org/html/rfc7946#section-3.1.3 +[15]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[16]: Feature +[16]: https://tools.ietf.org/html/rfc7946#section-5 -[17]: https://tools.ietf.org/html/rfc7946#section-3.1.7 +[17]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array -[18]: Feature +[18]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String -[19]: https://tools.ietf.org/html/rfc7946#section-3.1.8 +[19]: https://tools.ietf.org/html/rfc7946#section-3.1.2 -[20]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean +[20]: https://developer.mozilla.org/docs/Web/API/Position + +[21]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error + +[22]: https://tools.ietf.org/html/rfc7946#section-3.1.3 + +[23]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean diff --git a/packages/turf-helpers/README_UNITS.md b/packages/turf-helpers/README_UNITS.md new file mode 100644 index 000000000..6a4e500d7 --- /dev/null +++ b/packages/turf-helpers/README_UNITS.md @@ -0,0 +1,37 @@ +# @turf/helpers + +## Units + +* meters +* metres +* millimeters +* millimetres +* centimeters +* centimetres +* kilometers +* kilometres +* miles +* nauticalmiles +* inches +* yards +* feet +* radians +* degrees + +## AreaUnits + +* meters +* metres +* millimeters +* millimetres +* centimeters +* centimetres +* kilometers +* kilometres +* miles +* nauticalmiles +* inches +* yards +* feet +* acres +* hectares \ No newline at end of file diff --git a/packages/turf-helpers/index.ts b/packages/turf-helpers/index.ts index 6f22d110f..b4fc01ee5 100644 --- a/packages/turf-helpers/index.ts +++ b/packages/turf-helpers/index.ts @@ -18,10 +18,25 @@ import { import { Id } from "./lib/geojson.js"; export * from "./lib/geojson.js"; +/** + * @module helpers + */ + // TurfJS Combined Types export type Coord = Feature | Point | Position; -// TurfJS String Types +/** + * Linear measurement units. + * + * ⚠️ Warning. Be aware of the implications of using radian or degree units to + * measure distance. The distance represented by a degree of longitude *varies* + * depending on latitude. + * + * See https://www.thoughtco.com/degree-of-latitude-and-longitude-distance-4070616 + * for an illustration of this behaviour. + * + * @typedef + */ export type Units = | "meters" | "metres" @@ -38,14 +53,43 @@ export type Units = | "feet" | "radians" | "degrees"; + +/** + * Area measurement units. + * + * @typedef + */ export type AreaUnits = | Exclude | "acres" | "hectares"; + +/** + * Grid types. + * + * @typedef + */ export type Grid = "point" | "square" | "hex" | "triangle"; + +/** + * Shorthand corner identifiers. + * + * @typedef + */ export type Corners = "sw" | "se" | "nw" | "ne" | "center" | "centroid"; +/** + * Geometries made up of lines i.e. lines and polygons. + * + * @typedef + */ export type Lines = LineString | MultiLineString | Polygon | MultiPolygon; + +/** + * Convenience type for all possible GeoJSON. + * + * @typedef + */ export type AllGeoJSON = | Feature | FeatureCollection @@ -53,24 +97,18 @@ export type AllGeoJSON = | GeometryCollection; /** - * @module helpers - */ - -/** - * Earth Radius used with the Harvesine formula and approximates using a spherical (non-ellipsoid) Earth. + * The Earth radius in meters. Used by Turf modules that model the Earth as a sphere. The {@link https://en.wikipedia.org/wiki/Earth_radius#Arithmetic_mean_radius mean radius} was selected because it is {@link https://rosettacode.org/wiki/Haversine_formula#:~:text=This%20value%20is%20recommended recommended } by the Haversine formula (used by turf/distance) to reduce error. * - * @memberof helpers - * @type {number} + * @constant */ export const earthRadius = 6371008.8; /** - * Unit of measurement factors using a spherical (non-ellipsoid) earth radius. + * Unit of measurement factors based on earthRadius. * * Keys are the name of the unit, values are the number of that unit in a single radian * - * @memberof helpers - * @type {Object} + * @constant */ export const factors: Record = { centimeters: earthRadius * 100, @@ -94,8 +132,7 @@ export const factors: Record = { * Area of measurement factors based on 1 square meter. * - * @memberof helpers - * @type {Object} + * @constant */ export const areaFactors: Record = { acres: 0.000247105, @@ -118,13 +155,13 @@ export const areaFactors: Record = { /** * Wraps a GeoJSON {@link Geometry} in a GeoJSON {@link Feature}. * - * @name feature - * @param {Geometry} geometry input geometry - * @param {Object} [properties={}] an Object of key-value pairs to add as properties + * @function + * @param {GeometryObject} geometry input geometry + * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties * @param {Object} [options={}] Optional Parameters - * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature - * @param {string|number} [options.id] Identifier associated with the Feature - * @returns {Feature} a GeoJSON Feature + * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature + * @param {Id} [options.id] Identifier associated with the Feature + * @returns {Feature} a GeoJSON Feature * @example * var geometry = { * "type": "Point", @@ -159,8 +196,8 @@ export function feature< * Creates a GeoJSON {@link Geometry} from a Geometry string type & coordinates. * For GeometryCollection type use `helpers.geometryCollection` * - * @name geometry - * @param {string} type Geometry Type + * @function + * @param {("Point" | "LineString" | "Polygon" | "MultiPoint" | "MultiLineString" | "MultiPolygon")} type Geometry Type * @param {Array} coordinates Coordinates * @param {Object} [options={}] Optional Parameters * @returns {Geometry} a GeoJSON Geometry @@ -202,13 +239,13 @@ export function geometry( /** * Creates a {@link Point} {@link Feature} from a Position. * - * @name point - * @param {Array} coordinates longitude, latitude position (each in decimal degrees) - * @param {Object} [properties={}] an Object of key-value pairs to add as properties + * @function + * @param {Position} coordinates longitude, latitude position (each in decimal degrees) + * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties * @param {Object} [options={}] Optional Parameters - * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature - * @param {string|number} [options.id] Identifier associated with the Feature - * @returns {Feature} a Point feature + * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature + * @param {Id} [options.id] Identifier associated with the Feature + * @returns {Feature} a Point feature * @example * var point = turf.point([-75.343, 39.984]); * @@ -242,13 +279,13 @@ export function point

( /** * Creates a {@link Point} {@link FeatureCollection} from an Array of Point coordinates. * - * @name points - * @param {Array>} coordinates an array of Points - * @param {Object} [properties={}] Translate these properties to each Feature + * @function + * @param {Position[]} coordinates an array of Points + * @param {GeoJsonProperties} [properties={}] Translate these properties to each Feature * @param {Object} [options={}] Optional Parameters - * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] + * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] * associated with the FeatureCollection - * @param {string|number} [options.id] Identifier associated with the FeatureCollection + * @param {Id} [options.id] Identifier associated with the FeatureCollection * @returns {FeatureCollection} Point Feature * @example * var points = turf.points([ @@ -275,13 +312,13 @@ export function points

( /** * Creates a {@link Polygon} {@link Feature} from an Array of LinearRings. * - * @name polygon - * @param {Array>>} coordinates an array of LinearRings - * @param {Object} [properties={}] an Object of key-value pairs to add as properties + * @function + * @param {Position[][]} coordinates an array of LinearRings + * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties * @param {Object} [options={}] Optional Parameters - * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature - * @param {string|number} [options.id] Identifier associated with the Feature - * @returns {Feature} Polygon Feature + * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature + * @param {Id} [options.id] Identifier associated with the Feature + * @returns {Feature} Polygon Feature * @example * var polygon = turf.polygon([[[-5, 52], [-4, 56], [-2, 51], [-7, 54], [-5, 52]]], { name: 'poly1' }); * @@ -320,13 +357,13 @@ export function polygon

( /** * Creates a {@link Polygon} {@link FeatureCollection} from an Array of Polygon coordinates. * - * @name polygons - * @param {Array>>>} coordinates an array of Polygon coordinates - * @param {Object} [properties={}] an Object of key-value pairs to add as properties + * @function + * @param {Position[][][]} coordinates an array of Polygon coordinates + * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties * @param {Object} [options={}] Optional Parameters - * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature - * @param {string|number} [options.id] Identifier associated with the FeatureCollection - * @returns {FeatureCollection} Polygon FeatureCollection + * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature + * @param {Id} [options.id] Identifier associated with the FeatureCollection + * @returns {FeatureCollection} Polygon FeatureCollection * @example * var polygons = turf.polygons([ * [[[-5, 52], [-4, 56], [-2, 51], [-7, 54], [-5, 52]]], @@ -351,13 +388,13 @@ export function polygons

( /** * Creates a {@link LineString} {@link Feature} from an Array of Positions. * - * @name lineString - * @param {Array>} coordinates an array of Positions - * @param {Object} [properties={}] an Object of key-value pairs to add as properties + * @function + * @param {Position[]} coordinates an array of Positions + * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties * @param {Object} [options={}] Optional Parameters - * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature - * @param {string|number} [options.id] Identifier associated with the Feature - * @returns {Feature} LineString Feature + * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature + * @param {Id} [options.id] Identifier associated with the Feature + * @returns {Feature} LineString Feature * @example * var linestring1 = turf.lineString([[-24, 63], [-23, 60], [-25, 65], [-20, 69]], {name: 'line 1'}); * var linestring2 = turf.lineString([[-14, 43], [-13, 40], [-15, 45], [-10, 49]], {name: 'line 2'}); @@ -383,14 +420,14 @@ export function lineString

( /** * Creates a {@link LineString} {@link FeatureCollection} from an Array of LineString coordinates. * - * @name lineStrings - * @param {Array>>} coordinates an array of LinearRings - * @param {Object} [properties={}] an Object of key-value pairs to add as properties + * @function + * @param {Position[][]} coordinates an array of LinearRings + * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties * @param {Object} [options={}] Optional Parameters - * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] + * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] * associated with the FeatureCollection - * @param {string|number} [options.id] Identifier associated with the FeatureCollection - * @returns {FeatureCollection} LineString FeatureCollection + * @param {Id} [options.id] Identifier associated with the FeatureCollection + * @returns {FeatureCollection} LineString FeatureCollection * @example * var linestrings = turf.lineStrings([ * [[-24, 63], [-23, 60], [-25, 65], [-20, 69]], @@ -415,12 +452,12 @@ export function lineStrings

( /** * Takes one or more {@link Feature|Features} and creates a {@link FeatureCollection}. * - * @name featureCollection - * @param {Feature[]} features input features + * @function + * @param {Array>} features input features * @param {Object} [options={}] Optional Parameters - * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature - * @param {string|number} [options.id] Identifier associated with the Feature - * @returns {FeatureCollection} FeatureCollection of Features + * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature + * @param {Id} [options.id] Identifier associated with the Feature + * @returns {FeatureCollection} FeatureCollection of Features * @example * var locationA = turf.point([-75.343, 39.984], {name: 'Location A'}); * var locationB = turf.point([-75.833, 39.284], {name: 'Location B'}); @@ -453,16 +490,16 @@ export function featureCollection< } /** - * Creates a {@link Feature} based on a + * Creates a {@link Feature}<{@link MultiLineString}> based on a * coordinate array. Properties can be added optionally. * - * @name multiLineString - * @param {Array>>} coordinates an array of LineStrings - * @param {Object} [properties={}] an Object of key-value pairs to add as properties + * @function + * @param {Position[][]} coordinates an array of LineStrings + * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties * @param {Object} [options={}] Optional Parameters - * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature - * @param {string|number} [options.id] Identifier associated with the Feature - * @returns {Feature} a MultiLineString feature + * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature + * @param {Id} [options.id] Identifier associated with the Feature + * @returns {Feature} a MultiLineString feature * @throws {Error} if no coordinates are passed * @example * var multiLine = turf.multiLineString([[[0,0],[10,10]]]); @@ -484,16 +521,16 @@ export function multiLineString< } /** - * Creates a {@link Feature} based on a + * Creates a {@link Feature}<{@link MultiPoint}> based on a * coordinate array. Properties can be added optionally. * - * @name multiPoint - * @param {Array>} coordinates an array of Positions - * @param {Object} [properties={}] an Object of key-value pairs to add as properties + * @function + * @param {Position[]} coordinates an array of Positions + * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties * @param {Object} [options={}] Optional Parameters - * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature - * @param {string|number} [options.id] Identifier associated with the Feature - * @returns {Feature} a MultiPoint feature + * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature + * @param {Id} [options.id] Identifier associated with the Feature + * @returns {Feature} a MultiPoint feature * @throws {Error} if no coordinates are passed * @example * var multiPt = turf.multiPoint([[0,0],[10,10]]); @@ -513,16 +550,16 @@ export function multiPoint

( } /** - * Creates a {@link Feature} based on a + * Creates a {@link Feature}<{@link MultiPolygon}> based on a * coordinate array. Properties can be added optionally. * - * @name multiPolygon - * @param {Array>>>} coordinates an array of Polygons - * @param {Object} [properties={}] an Object of key-value pairs to add as properties + * @function + * @param {Position[][][]} coordinates an array of Polygons + * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties * @param {Object} [options={}] Optional Parameters - * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature - * @param {string|number} [options.id] Identifier associated with the Feature - * @returns {Feature} a multipolygon feature + * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature + * @param {Id} [options.id] Identifier associated with the Feature + * @returns {Feature} a multipolygon feature * @throws {Error} if no coordinates are passed * @example * var multiPoly = turf.multiPolygon([[[[0,0],[0,10],[10,10],[10,0],[0,0]]]]); @@ -543,16 +580,16 @@ export function multiPolygon

( } /** - * Creates a {@link Feature} based on a + * Creates a Feature based on a * coordinate array. Properties can be added optionally. * - * @name geometryCollection - * @param {Array} geometries an array of GeoJSON Geometries - * @param {Object} [properties={}] an Object of key-value pairs to add as properties + * @function + * @param {Array} geometries an array of GeoJSON Geometries + * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties * @param {Object} [options={}] Optional Parameters - * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature - * @param {string|number} [options.id] Identifier associated with the Feature - * @returns {Feature} a GeoJSON GeometryCollection Feature + * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature + * @param {Id} [options.id] Identifier associated with the Feature + * @returns {Feature} a GeoJSON GeometryCollection Feature * @example * var pt = turf.geometry("Point", [100, 0]); * var line = turf.geometry("LineString", [[101, 0], [102, 1]]); @@ -579,6 +616,7 @@ export function geometryCollection< /** * Round number to precision * + * @function * @param {number} num Number * @param {number} [precision=0] Precision * @returns {number} rounded number @@ -601,9 +639,9 @@ export function round(num: number, precision = 0): number { * Convert a distance measurement (assuming a spherical Earth) from radians to a more friendly unit. * Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, centimeters, feet * - * @name radiansToLength + * @function * @param {number} radians in radians across the sphere - * @param {string} [units="kilometers"] can be degrees, radians, miles, inches, yards, metres, + * @param {Units} [units="kilometers"] can be degrees, radians, miles, inches, yards, metres, * meters, kilometres, kilometers. * @returns {number} distance */ @@ -622,9 +660,9 @@ export function radiansToLength( * Convert a distance measurement (assuming a spherical Earth) from a real-world unit into radians * Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, centimeters, feet * - * @name lengthToRadians + * @function * @param {number} distance in real units - * @param {string} [units="kilometers"] can be degrees, radians, miles, inches, yards, metres, + * @param {Units} [units="kilometers"] can be degrees, radians, miles, inches, yards, metres, * meters, kilometres, kilometers. * @returns {number} radians */ @@ -643,9 +681,9 @@ export function lengthToRadians( * Convert a distance measurement (assuming a spherical Earth) from a real-world unit into degrees * Valid units: miles, nauticalmiles, inches, yards, meters, metres, centimeters, kilometres, feet * - * @name lengthToDegrees + * @function * @param {number} distance in real units - * @param {string} [units="kilometers"] can be degrees, radians, miles, inches, yards, metres, + * @param {Units} [units="kilometers"] can be degrees, radians, miles, inches, yards, metres, * meters, kilometres, kilometers. * @returns {number} degrees */ @@ -657,7 +695,7 @@ export function lengthToDegrees(distance: number, units?: Units): number { * Converts any bearing angle from the north line direction (positive clockwise) * and returns an angle between 0-360 degrees (positive clockwise), 0 being the north line * - * @name bearingToAzimuth + * @function * @param {number} bearing angle, between -180 and +180 degrees * @returns {number} angle between 0 and 360 degrees */ @@ -673,48 +711,57 @@ export function bearingToAzimuth(bearing: number): number { * Converts any azimuth angle from the north line direction (positive clockwise) * and returns an angle between -180 and +180 degrees (positive clockwise), 0 being the north line * - * @name azimuthToBearing + * @function * @param {number} angle between 0 and 360 degrees * @returns {number} bearing between -180 and +180 degrees */ export function azimuthToBearing(angle: number): number { + // Ignore full revolutions (multiples of 360) angle = angle % 360; - if (angle > 0) return angle > 180 ? angle - 360 : angle; - return angle < -180 ? angle + 360 : angle; + + if (angle > 180) { + return angle - 360; + } else if (angle < -180) { + return angle + 360; + } + + return angle; } /** * Converts an angle in radians to degrees * - * @name radiansToDegrees + * @function * @param {number} radians angle in radians * @returns {number} degrees between 0 and 360 degrees */ export function radiansToDegrees(radians: number): number { - const degrees = radians % (2 * Math.PI); - return (degrees * 180) / Math.PI; + // % (2 * Math.PI) radians in case someone passes value > 2Ο€ + const normalisedRadians = radians % (2 * Math.PI); + return (normalisedRadians * 180) / Math.PI; } /** * Converts an angle in degrees to radians * - * @name degreesToRadians + * @function * @param {number} degrees angle between 0 and 360 degrees * @returns {number} angle in radians */ export function degreesToRadians(degrees: number): number { - const radians = degrees % 360; - return (radians * Math.PI) / 180; + // % 360 degrees in case someone passes value > 360 + const normalisedDegrees = degrees % 360; + return (normalisedDegrees * Math.PI) / 180; } /** - * Converts a length to the requested unit. - * Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, centimeters, feet + * Converts a length from one unit to another. * - * @param {number} length to be converted - * @param {Units} [originalUnit="kilometers"] of the length - * @param {Units} [finalUnit="kilometers"] returned unit - * @returns {number} the converted length + * @function + * @param {number} length Length to be converted + * @param {Units} [originalUnit="kilometers"] Input length unit + * @param {Units} [finalUnit="kilometers"] Returned length unit + * @returns {number} The converted length */ export function convertLength( length: number, @@ -728,12 +775,13 @@ export function convertLength( } /** - * Converts a area to the requested unit. - * Valid units: kilometers, kilometres, meters, metres, centimetres, millimeters, acres, miles, yards, feet, inches, hectares - * @param {number} area to be converted - * @param {Units} [originalUnit="meters"] of the distance - * @param {Units} [finalUnit="kilometers"] returned unit - * @returns {number} the converted area + * Converts an area from one unit to another. + * + * @function + * @param {number} area Area to be converted + * @param {AreaUnits} [originalUnit="meters"] Input area unit + * @param {AreaUnits} [finalUnit="kilometers"] Returned area unit + * @returns {number} The converted length */ export function convertArea( area: number, @@ -760,7 +808,8 @@ export function convertArea( /** * isNumber * - * @param {*} num Number to validate + * @function + * @param {any} num Number to validate * @returns {boolean} true/false * @example * turf.isNumber(123) @@ -775,7 +824,8 @@ export function isNumber(num: any): boolean { /** * isObject * - * @param {*} input variable to validate + * @function + * @param {any} input variable to validate * @returns {boolean} true/false, including false for Arrays and Functions * @example * turf.isObject({elevation: 10}) @@ -791,7 +841,7 @@ export function isObject(input: any): boolean { * Validate BBox * * @private - * @param {Array} bbox BBox to validate + * @param {any} bbox BBox to validate * @returns {void} * @throws {Error} if BBox is not valid * @example @@ -829,7 +879,7 @@ export function validateBBox(bbox: any): void { * Validate Id * * @private - * @param {string|number} id Id to validate + * @param {any} id Id to validate * @returns {void} * @throws {Error} if Id is not valid * @example diff --git a/packages/turf-helpers/package.json b/packages/turf-helpers/package.json index dd31ee8d0..cf92218a9 100644 --- a/packages/turf-helpers/package.json +++ b/packages/turf-helpers/package.json @@ -1,7 +1,7 @@ { "name": "@turf/helpers", - "version": "7.0.0", - "description": "turf helpers module", + "version": "7.2.0", + "description": "Provides helper functions to create GeoJSON features, like points, lines, or areas on a map.", "author": "Turf Authors", "contributors": [ "Tom MacWright <@tmcw>", @@ -59,16 +59,16 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-hex-grid/README.md b/packages/turf-hex-grid/README.md index c87c7a1c7..2d2576613 100644 --- a/packages/turf-hex-grid/README.md +++ b/packages/turf-hex-grid/README.md @@ -15,10 +15,10 @@ described in [Hexagonal Grids][3]. radius of the circumcircle of the hexagons. * `options` **[Object][6]** Optional parameters (optional, default `{}`) - * `options.units` **[string][7]** used in calculating cell size, can be degrees, radians, miles, or kilometers (optional, default `'kilometers'`) + * `options.units` **Units** used in calculating cell size. Supports all valid Turf [Units][7]. (optional, default `'kilometers'`) * `options.properties` **[Object][6]** passed to each hexagon or triangle of the grid (optional, default `{}`) - * `options.mask` **[Feature][8]<[Polygon][2]>?** if passed a Polygon or MultiPolygon, the grid Points will be created only inside it - * `options.triangles` **[boolean][9]** whether to return as triangles instead of hexagons (optional, default `false`) + * `options.mask` **[Feature][8]<([Polygon][2] | [MultiPolygon][9])>?** if passed a Polygon or MultiPolygon, the grid Points will be created only inside it + * `options.triangles` **[boolean][10]** whether to return as triangles instead of hexagons (optional, default `false`) ### Examples @@ -47,11 +47,13 @@ Returns **[FeatureCollection][1]<[Polygon][2]>** a hexagonal grid [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[7]: https://turfjs.org/docs/api/types/Units [8]: https://tools.ietf.org/html/rfc7946#section-3.2 -[9]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean +[9]: https://tools.ietf.org/html/rfc7946#section-3.1.7 + +[10]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean diff --git a/packages/turf-hex-grid/index.ts b/packages/turf-hex-grid/index.ts index 0ce997aac..7437b91c9 100644 --- a/packages/turf-hex-grid/index.ts +++ b/packages/turf-hex-grid/index.ts @@ -6,6 +6,7 @@ import { GeoJsonProperties, Polygon, BBox, + MultiPolygon, } from "geojson"; import { polygon, featureCollection, Units } from "@turf/helpers"; @@ -14,14 +15,14 @@ import { polygon, featureCollection, Units } from "@turf/helpers"; * hexagons or triangles ({@link Polygon} features) aligned in an "odd-q" vertical grid as * described in [Hexagonal Grids](http://www.redblobgames.com/grids/hexagons/). * - * @name hexGrid + * @function * @param {BBox} bbox extent in [minX, minY, maxX, maxY] order * @param {number} cellSide length of the side of the the hexagons or triangles, in units. It will also coincide with the * radius of the circumcircle of the hexagons. * @param {Object} [options={}] Optional parameters - * @param {string} [options.units='kilometers'] used in calculating cell size, can be degrees, radians, miles, or kilometers + * @param {Units} [options.units='kilometers'] used in calculating cell size. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @param {Object} [options.properties={}] passed to each hexagon or triangle of the grid - * @param {Feature} [options.mask] if passed a Polygon or MultiPolygon, the grid Points will be created only inside it + * @param {Feature} [options.mask] if passed a Polygon or MultiPolygon, the grid Points will be created only inside it * @param {boolean} [options.triangles=false] whether to return as triangles instead of hexagons * @returns {FeatureCollection} a hexagonal grid * @example @@ -41,7 +42,7 @@ function hexGrid

( units?: Units; triangles?: boolean; properties?: P; - mask?: Feature; + mask?: Feature; } = {} ): FeatureCollection { // Issue => https://github.com/Turfjs/turf/issues/1284 diff --git a/packages/turf-hex-grid/package.json b/packages/turf-hex-grid/package.json index 3adb5fe8d..4e18fc7f7 100644 --- a/packages/turf-hex-grid/package.json +++ b/packages/turf-hex-grid/package.json @@ -1,7 +1,7 @@ { "name": "@turf/hex-grid", - "version": "7.0.0", - "description": "turf hex-grid module", + "version": "7.2.0", + "description": "Creates a honeycomb-like grid of hexagons within a bounding box.", "author": "Turf Authors", "contributors": [ "James Seppi <@jseppi>", @@ -62,25 +62,25 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/bbox-polygon": "workspace:^", - "@turf/truncate": "workspace:^", + "@turf/bbox-polygon": "workspace:*", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/distance": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/intersect": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/distance": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/intersect": "workspace:*", + "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-hex-grid/test/in/properties.json b/packages/turf-hex-grid/test/in/properties.json index 3d726d900..543d43df1 100644 --- a/packages/turf-hex-grid/test/in/properties.json +++ b/packages/turf-hex-grid/test/in/properties.json @@ -8,15 +8,17 @@ "type": "Feature", "properties": {}, "geometry": { - "type": "Polygon", + "type": "MultiPolygon", "coordinates": [ [ - [2.223186492919922, 41.416856461155575], - [2.1716880798339844, 41.44182560856202], - [2.1636199951171875, 41.41608406639095], - [2.1334075927734375, 41.407200866420744], - [2.1845626831054683, 41.37977115211044], - [2.223186492919922, 41.416856461155575] + [ + [2.223186492919922, 41.416856461155575], + [2.1716880798339844, 41.44182560856202], + [2.1636199951171875, 41.41608406639095], + [2.1334075927734375, 41.407200866420744], + [2.1845626831054683, 41.37977115211044], + [2.223186492919922, 41.416856461155575] + ] ] ] } diff --git a/packages/turf-hex-grid/test/out/properties.geojson b/packages/turf-hex-grid/test/out/properties.geojson index 8cf50dfc5..5061257e4 100644 --- a/packages/turf-hex-grid/test/out/properties.geojson +++ b/packages/turf-hex-grid/test/out/properties.geojson @@ -292,15 +292,17 @@ "fill-opacity": 0 }, "geometry": { - "type": "Polygon", + "type": "MultiPolygon", "coordinates": [ [ - [2.223186492919922, 41.416856461155575], - [2.1716880798339844, 41.44182560856202], - [2.1636199951171875, 41.41608406639095], - [2.1334075927734375, 41.407200866420744], - [2.1845626831054683, 41.37977115211044], - [2.223186492919922, 41.416856461155575] + [ + [2.223186492919922, 41.416856461155575], + [2.1716880798339844, 41.44182560856202], + [2.1636199951171875, 41.41608406639095], + [2.1334075927734375, 41.407200866420744], + [2.1845626831054683, 41.37977115211044], + [2.223186492919922, 41.416856461155575] + ] ] ] } diff --git a/packages/turf-interpolate/README.md b/packages/turf-interpolate/README.md index 6959ec9fe..ed444d0e2 100644 --- a/packages/turf-interpolate/README.md +++ b/packages/turf-interpolate/README.md @@ -14,8 +14,9 @@ Takes a set of points and estimates their 'property' values on a grid using the * `options.gridType` **[string][6]** defines the output format based on a Grid Type (options: 'square' | 'point' | 'hex' | 'triangle') (optional, default `'square'`) * `options.property` **[string][6]** the property name in `points` from which z-values will be pulled, zValue fallbacks to 3rd coordinate if no property exists. (optional, default `'elevation'`) - * `options.units` **[string][6]** used in calculating cellSize, can be degrees, radians, miles, or kilometers (optional, default `'kilometers'`) + * `options.units` **Units** used in calculating cellSize. Supports all valid Turf [Units][7]. (optional, default `'kilometers'`) * `options.weight` **[number][4]** exponent regulating the distance-decay weighting (optional, default `1`) + * `options.bbox` **[BBox][8]** Bounding Box Array \[west, south, east, north] associated with the FeatureCollection. (optional, default `bbox(points)`) ### Examples @@ -33,7 +34,7 @@ var grid = turf.interpolate(points, 100, options); var addToMap = [grid]; ``` -Returns **[FeatureCollection][2]<([Point][3] | [Polygon][7])>** grid of points or polygons with interpolated 'property' +Returns **[FeatureCollection][2]<([Point][3] | [Polygon][9])>** grid of points or polygons with interpolated 'property' [1]: https://en.wikipedia.org/wiki/Inverse_distance_weighting @@ -47,7 +48,11 @@ Returns **[FeatureCollection][2]<([Point][3] | [Polygon][7])>** grid of points o [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String -[7]: https://tools.ietf.org/html/rfc7946#section-3.1.6 +[7]: https://turfjs.org/docs/api/types/Units + +[8]: https://tools.ietf.org/html/rfc7946#section-5 + +[9]: https://tools.ietf.org/html/rfc7946#section-3.1.6 diff --git a/packages/turf-interpolate/index.d.ts b/packages/turf-interpolate/index.d.ts index 6e5639a85..4705963ad 100644 --- a/packages/turf-interpolate/index.d.ts +++ b/packages/turf-interpolate/index.d.ts @@ -1,4 +1,4 @@ -import { Point, Polygon, FeatureCollection } from "geojson"; +import { Point, Polygon, FeatureCollection, BBox } from "geojson"; import { Units, Grid } from "@turf/helpers"; /** @@ -12,6 +12,7 @@ declare function interpolate( property?: string; units?: Units; weight?: number; + bbox?: BBox; } ): FeatureCollection; declare function interpolate( @@ -22,6 +23,7 @@ declare function interpolate( property?: string; units?: Units; weight?: number; + bbox?: BBox; } ): FeatureCollection; diff --git a/packages/turf-interpolate/index.js b/packages/turf-interpolate/index.js index 02c0bb5cf..005a08d42 100644 --- a/packages/turf-interpolate/index.js +++ b/packages/turf-interpolate/index.js @@ -6,21 +6,22 @@ import { centroid } from "@turf/centroid"; import { squareGrid } from "@turf/square-grid"; import { triangleGrid } from "@turf/triangle-grid"; import { clone } from "@turf/clone"; -import { featureCollection } from "@turf/helpers"; +import { featureCollection, validateBBox } from "@turf/helpers"; import { featureEach } from "@turf/meta"; import { collectionOf } from "@turf/invariant"; /** * Takes a set of points and estimates their 'property' values on a grid using the [Inverse Distance Weighting (IDW) method](https://en.wikipedia.org/wiki/Inverse_distance_weighting). * - * @name interpolate + * @function * @param {FeatureCollection} points with known value * @param {number} cellSize the distance across each grid point * @param {Object} [options={}] Optional parameters * @param {string} [options.gridType='square'] defines the output format based on a Grid Type (options: 'square' | 'point' | 'hex' | 'triangle') * @param {string} [options.property='elevation'] the property name in `points` from which z-values will be pulled, zValue fallbacks to 3rd coordinate if no property exists. - * @param {string} [options.units='kilometers'] used in calculating cellSize, can be degrees, radians, miles, or kilometers + * @param {Units} [options.units='kilometers'] used in calculating cellSize. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @param {number} [options.weight=1] exponent regulating the distance-decay weighting + * @param {BBox} [options.bbox=bbox(points)] Bounding Box Array [west, south, east, north] associated with the FeatureCollection. * @returns {FeatureCollection} grid of points or polygons with interpolated 'property' * @example * var points = turf.randomPoint(30, {bbox: [50, 30, 70, 50]}); @@ -42,6 +43,7 @@ function interpolate(points, cellSize, options) { var gridType = options.gridType; var property = options.property; var weight = options.weight; + var box = options.bbox; // validation if (!points) throw new Error("points is required"); @@ -55,7 +57,8 @@ function interpolate(points, cellSize, options) { gridType = gridType || "square"; weight = weight || 1; - var box = bbox(points); + box = box ?? bbox(points); + validateBBox(box); var grid; switch (gridType) { case "point": diff --git a/packages/turf-interpolate/package.json b/packages/turf-interpolate/package.json index aa135ecef..91be2a309 100644 --- a/packages/turf-interpolate/package.json +++ b/packages/turf-interpolate/package.json @@ -1,7 +1,7 @@ { "name": "@turf/interpolate", - "version": "7.0.0", - "description": "turf interpolate module", + "version": "7.2.0", + "description": "Creates an interpolated grid of points using the Inverse Distance Weighting method.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>" @@ -54,30 +54,30 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/truncate": "workspace:^", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "chromatism": "^3.0.0", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/bbox": "workspace:^", - "@turf/centroid": "workspace:^", - "@turf/clone": "workspace:^", - "@turf/distance": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/hex-grid": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/meta": "workspace:^", - "@turf/point-grid": "workspace:^", - "@turf/square-grid": "workspace:^", - "@turf/triangle-grid": "workspace:^", + "@turf/bbox": "workspace:*", + "@turf/centroid": "workspace:*", + "@turf/clone": "workspace:*", + "@turf/distance": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/hex-grid": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/meta": "workspace:*", + "@turf/point-grid": "workspace:*", + "@turf/square-grid": "workspace:*", + "@turf/triangle-grid": "workspace:*", "@types/geojson": "^7946.0.10" } } diff --git a/packages/turf-interpolate/test/in/data-1km-bbox.geojson b/packages/turf-interpolate/test/in/data-1km-bbox.geojson new file mode 100644 index 000000000..8c287fbee --- /dev/null +++ b/packages/turf-interpolate/test/in/data-1km-bbox.geojson @@ -0,0 +1,62 @@ +{ + "type": "FeatureCollection", + "properties": { + "property": "value", + "gridType": "square", + "weight": 0.5, + "cellSize": 1, + "bbox": [9.416249084472656, 45.3391764115696, 9.031605529785156, 45.63689620055365] + }, + "features": [ + { + "type": "Feature", + "properties": { + "value": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [9.155731201171875, 45.47216977418841] + } + }, + { + "type": "Feature", + "properties": { + "value": 99 + }, + "geometry": { + "type": "Point", + "coordinates": [9.195213317871094, 45.53689620055365] + } + }, + { + "type": "Feature", + "properties": { + "value": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [9.175300598144531, 45.49912810913339] + } + }, + { + "type": "Feature", + "properties": { + "value": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [9.231605529785156, 45.49190839157102] + } + }, + { + "type": "Feature", + "properties": { + "value": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [9.116249084472656, 45.4391764115696] + } + } + ] +} diff --git a/packages/turf-interpolate/test/in/data-500m-bbox.geojson b/packages/turf-interpolate/test/in/data-500m-bbox.geojson new file mode 100644 index 000000000..10c0fabdc --- /dev/null +++ b/packages/turf-interpolate/test/in/data-500m-bbox.geojson @@ -0,0 +1,63 @@ +{ + "type": "FeatureCollection", + "properties": { + "property": "value", + "weight": 0.5, + "gridType": "square", + "cellSize": 0.5, + "units": "kilometers", + "bbox": [9.416249084472656, 45.3391764115696, 9.031605529785156, 45.63689620055365] + }, + "features": [ + { + "type": "Feature", + "properties": { + "value": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [9.155731201171875, 45.47216977418841] + } + }, + { + "type": "Feature", + "properties": { + "value": 99 + }, + "geometry": { + "type": "Point", + "coordinates": [9.195213317871094, 45.53689620055365] + } + }, + { + "type": "Feature", + "properties": { + "value": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [9.175300598144531, 45.49912810913339] + } + }, + { + "type": "Feature", + "properties": { + "value": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [9.231605529785156, 45.49190839157102] + } + }, + { + "type": "Feature", + "properties": { + "value": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [9.116249084472656, 45.4391764115696] + } + } + ] +} diff --git a/packages/turf-interpolate/test/in/hex-zValue-bbox.geojson b/packages/turf-interpolate/test/in/hex-zValue-bbox.geojson new file mode 100644 index 000000000..05e6020ff --- /dev/null +++ b/packages/turf-interpolate/test/in/hex-zValue-bbox.geojson @@ -0,0 +1,52 @@ +{ + "type": "FeatureCollection", + "properties": { + "weight": 2, + "gridType": "hex", + "cellSize": 0.5, + "units": "miles", + "bbox": [-6.357258206107161, 53.39023949422162, -6.186614219650437, 53.31219701461626] + }, + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-6.3288116455078125, 53.355879304922276, 2] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-6.2615203857421875, 53.38087096356977, 5] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-6.248474121093749, 53.31979992850456, 14] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-6.2697601318359375, 53.352190769802725, 9] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-6.2505340576171875, 53.3648943803576, 11] + } + } + ] +} diff --git a/packages/turf-interpolate/test/out/data-1km-bbox.geojson b/packages/turf-interpolate/test/out/data-1km-bbox.geojson new file mode 100644 index 000000000..6a5161f0a --- /dev/null +++ b/packages/turf-interpolate/test/out/data-1km-bbox.geojson @@ -0,0 +1,29111 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.339648], + [9.03507, 45.348642], + [9.044063, 45.348642], + [9.044063, 45.339648], + [9.03507, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.348642], + [9.03507, 45.357635], + [9.044063, 45.357635], + [9.044063, 45.348642], + [9.03507, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.357635], + [9.03507, 45.366628], + [9.044063, 45.366628], + [9.044063, 45.357635], + [9.03507, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.366628], + [9.03507, 45.375621], + [9.044063, 45.375621], + [9.044063, 45.366628], + [9.03507, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.375621], + [9.03507, 45.384614], + [9.044063, 45.384614], + [9.044063, 45.375621], + [9.03507, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.384614], + [9.03507, 45.393608], + [9.044063, 45.393608], + [9.044063, 45.384614], + [9.03507, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.393608], + [9.03507, 45.402601], + [9.044063, 45.402601], + [9.044063, 45.393608], + [9.03507, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.402601], + [9.03507, 45.411594], + [9.044063, 45.411594], + [9.044063, 45.402601], + [9.03507, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.411594], + [9.03507, 45.420587], + [9.044063, 45.420587], + [9.044063, 45.411594], + [9.03507, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.420587], + [9.03507, 45.42958], + [9.044063, 45.42958], + [9.044063, 45.420587], + [9.03507, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.42958], + [9.03507, 45.438574], + [9.044063, 45.438574], + [9.044063, 45.42958], + [9.03507, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.438574], + [9.03507, 45.447567], + [9.044063, 45.447567], + [9.044063, 45.438574], + [9.03507, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.447567], + [9.03507, 45.45656], + [9.044063, 45.45656], + [9.044063, 45.447567], + [9.03507, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.45656], + [9.03507, 45.465553], + [9.044063, 45.465553], + [9.044063, 45.45656], + [9.03507, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.465553], + [9.03507, 45.474547], + [9.044063, 45.474547], + [9.044063, 45.465553], + [9.03507, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.474547], + [9.03507, 45.48354], + [9.044063, 45.48354], + [9.044063, 45.474547], + [9.03507, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.48354], + [9.03507, 45.492533], + [9.044063, 45.492533], + [9.044063, 45.48354], + [9.03507, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.492533], + [9.03507, 45.501526], + [9.044063, 45.501526], + [9.044063, 45.492533], + [9.03507, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.501526], + [9.03507, 45.510519], + [9.044063, 45.510519], + [9.044063, 45.501526], + [9.03507, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.510519], + [9.03507, 45.519513], + [9.044063, 45.519513], + [9.044063, 45.510519], + [9.03507, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.519513], + [9.03507, 45.528506], + [9.044063, 45.528506], + [9.044063, 45.519513], + [9.03507, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.528506], + [9.03507, 45.537499], + [9.044063, 45.537499], + [9.044063, 45.528506], + [9.03507, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.537499], + [9.03507, 45.546492], + [9.044063, 45.546492], + [9.044063, 45.537499], + [9.03507, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.546492], + [9.03507, 45.555485], + [9.044063, 45.555485], + [9.044063, 45.546492], + [9.03507, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.555485], + [9.03507, 45.564479], + [9.044063, 45.564479], + [9.044063, 45.555485], + [9.03507, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.564479], + [9.03507, 45.573472], + [9.044063, 45.573472], + [9.044063, 45.564479], + [9.03507, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.573472], + [9.03507, 45.582465], + [9.044063, 45.582465], + [9.044063, 45.573472], + [9.03507, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.582465], + [9.03507, 45.591458], + [9.044063, 45.591458], + [9.044063, 45.582465], + [9.03507, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.591458], + [9.03507, 45.600451], + [9.044063, 45.600451], + [9.044063, 45.591458], + [9.03507, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.600451], + [9.03507, 45.609445], + [9.044063, 45.609445], + [9.044063, 45.600451], + [9.03507, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.609445], + [9.03507, 45.618438], + [9.044063, 45.618438], + [9.044063, 45.609445], + [9.03507, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.618438], + [9.03507, 45.627431], + [9.044063, 45.627431], + [9.044063, 45.618438], + [9.03507, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.627431], + [9.03507, 45.636424], + [9.044063, 45.636424], + [9.044063, 45.627431], + [9.03507, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.339648], + [9.044063, 45.348642], + [9.053056, 45.348642], + [9.053056, 45.339648], + [9.044063, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.348642], + [9.044063, 45.357635], + [9.053056, 45.357635], + [9.053056, 45.348642], + [9.044063, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.357635], + [9.044063, 45.366628], + [9.053056, 45.366628], + [9.053056, 45.357635], + [9.044063, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.366628], + [9.044063, 45.375621], + [9.053056, 45.375621], + [9.053056, 45.366628], + [9.044063, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.375621], + [9.044063, 45.384614], + [9.053056, 45.384614], + [9.053056, 45.375621], + [9.044063, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.384614], + [9.044063, 45.393608], + [9.053056, 45.393608], + [9.053056, 45.384614], + [9.044063, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.393608], + [9.044063, 45.402601], + [9.053056, 45.402601], + [9.053056, 45.393608], + [9.044063, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.402601], + [9.044063, 45.411594], + [9.053056, 45.411594], + [9.053056, 45.402601], + [9.044063, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.411594], + [9.044063, 45.420587], + [9.053056, 45.420587], + [9.053056, 45.411594], + [9.044063, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.420587], + [9.044063, 45.42958], + [9.053056, 45.42958], + [9.053056, 45.420587], + [9.044063, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.42958], + [9.044063, 45.438574], + [9.053056, 45.438574], + [9.053056, 45.42958], + [9.044063, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.438574], + [9.044063, 45.447567], + [9.053056, 45.447567], + [9.053056, 45.438574], + [9.044063, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.447567], + [9.044063, 45.45656], + [9.053056, 45.45656], + [9.053056, 45.447567], + [9.044063, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.45656], + [9.044063, 45.465553], + [9.053056, 45.465553], + [9.053056, 45.45656], + [9.044063, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.465553], + [9.044063, 45.474547], + [9.053056, 45.474547], + [9.053056, 45.465553], + [9.044063, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.474547], + [9.044063, 45.48354], + [9.053056, 45.48354], + [9.053056, 45.474547], + [9.044063, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.48354], + [9.044063, 45.492533], + [9.053056, 45.492533], + [9.053056, 45.48354], + [9.044063, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.492533], + [9.044063, 45.501526], + [9.053056, 45.501526], + [9.053056, 45.492533], + [9.044063, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.501526], + [9.044063, 45.510519], + [9.053056, 45.510519], + [9.053056, 45.501526], + [9.044063, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.510519], + [9.044063, 45.519513], + [9.053056, 45.519513], + [9.053056, 45.510519], + [9.044063, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.519513], + [9.044063, 45.528506], + [9.053056, 45.528506], + [9.053056, 45.519513], + [9.044063, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.528506], + [9.044063, 45.537499], + [9.053056, 45.537499], + [9.053056, 45.528506], + [9.044063, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.537499], + [9.044063, 45.546492], + [9.053056, 45.546492], + [9.053056, 45.537499], + [9.044063, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.546492], + [9.044063, 45.555485], + [9.053056, 45.555485], + [9.053056, 45.546492], + [9.044063, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.555485], + [9.044063, 45.564479], + [9.053056, 45.564479], + [9.053056, 45.555485], + [9.044063, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.564479], + [9.044063, 45.573472], + [9.053056, 45.573472], + [9.053056, 45.564479], + [9.044063, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.573472], + [9.044063, 45.582465], + [9.053056, 45.582465], + [9.053056, 45.573472], + [9.044063, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.582465], + [9.044063, 45.591458], + [9.053056, 45.591458], + [9.053056, 45.582465], + [9.044063, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.591458], + [9.044063, 45.600451], + [9.053056, 45.600451], + [9.053056, 45.591458], + [9.044063, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.600451], + [9.044063, 45.609445], + [9.053056, 45.609445], + [9.053056, 45.600451], + [9.044063, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.609445], + [9.044063, 45.618438], + [9.053056, 45.618438], + [9.053056, 45.609445], + [9.044063, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.618438], + [9.044063, 45.627431], + [9.053056, 45.627431], + [9.053056, 45.618438], + [9.044063, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.627431], + [9.044063, 45.636424], + [9.053056, 45.636424], + [9.053056, 45.627431], + [9.044063, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.339648], + [9.053056, 45.348642], + [9.06205, 45.348642], + [9.06205, 45.339648], + [9.053056, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.348642], + [9.053056, 45.357635], + [9.06205, 45.357635], + [9.06205, 45.348642], + [9.053056, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.357635], + [9.053056, 45.366628], + [9.06205, 45.366628], + [9.06205, 45.357635], + [9.053056, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.366628], + [9.053056, 45.375621], + [9.06205, 45.375621], + [9.06205, 45.366628], + [9.053056, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.375621], + [9.053056, 45.384614], + [9.06205, 45.384614], + [9.06205, 45.375621], + [9.053056, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.384614], + [9.053056, 45.393608], + [9.06205, 45.393608], + [9.06205, 45.384614], + [9.053056, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.393608], + [9.053056, 45.402601], + [9.06205, 45.402601], + [9.06205, 45.393608], + [9.053056, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.402601], + [9.053056, 45.411594], + [9.06205, 45.411594], + [9.06205, 45.402601], + [9.053056, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.411594], + [9.053056, 45.420587], + [9.06205, 45.420587], + [9.06205, 45.411594], + [9.053056, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.420587], + [9.053056, 45.42958], + [9.06205, 45.42958], + [9.06205, 45.420587], + [9.053056, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.42958], + [9.053056, 45.438574], + [9.06205, 45.438574], + [9.06205, 45.42958], + [9.053056, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.438574], + [9.053056, 45.447567], + [9.06205, 45.447567], + [9.06205, 45.438574], + [9.053056, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.447567], + [9.053056, 45.45656], + [9.06205, 45.45656], + [9.06205, 45.447567], + [9.053056, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.45656], + [9.053056, 45.465553], + [9.06205, 45.465553], + [9.06205, 45.45656], + [9.053056, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.465553], + [9.053056, 45.474547], + [9.06205, 45.474547], + [9.06205, 45.465553], + [9.053056, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.474547], + [9.053056, 45.48354], + [9.06205, 45.48354], + [9.06205, 45.474547], + [9.053056, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.48354], + [9.053056, 45.492533], + [9.06205, 45.492533], + [9.06205, 45.48354], + [9.053056, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.492533], + [9.053056, 45.501526], + [9.06205, 45.501526], + [9.06205, 45.492533], + [9.053056, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.501526], + [9.053056, 45.510519], + [9.06205, 45.510519], + [9.06205, 45.501526], + [9.053056, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.510519], + [9.053056, 45.519513], + [9.06205, 45.519513], + [9.06205, 45.510519], + [9.053056, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.519513], + [9.053056, 45.528506], + [9.06205, 45.528506], + [9.06205, 45.519513], + [9.053056, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.528506], + [9.053056, 45.537499], + [9.06205, 45.537499], + [9.06205, 45.528506], + [9.053056, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.537499], + [9.053056, 45.546492], + [9.06205, 45.546492], + [9.06205, 45.537499], + [9.053056, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.546492], + [9.053056, 45.555485], + [9.06205, 45.555485], + [9.06205, 45.546492], + [9.053056, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.555485], + [9.053056, 45.564479], + [9.06205, 45.564479], + [9.06205, 45.555485], + [9.053056, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.564479], + [9.053056, 45.573472], + [9.06205, 45.573472], + [9.06205, 45.564479], + [9.053056, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.573472], + [9.053056, 45.582465], + [9.06205, 45.582465], + [9.06205, 45.573472], + [9.053056, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.582465], + [9.053056, 45.591458], + [9.06205, 45.591458], + [9.06205, 45.582465], + [9.053056, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.591458], + [9.053056, 45.600451], + [9.06205, 45.600451], + [9.06205, 45.591458], + [9.053056, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.600451], + [9.053056, 45.609445], + [9.06205, 45.609445], + [9.06205, 45.600451], + [9.053056, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.609445], + [9.053056, 45.618438], + [9.06205, 45.618438], + [9.06205, 45.609445], + [9.053056, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.618438], + [9.053056, 45.627431], + [9.06205, 45.627431], + [9.06205, 45.618438], + [9.053056, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.627431], + [9.053056, 45.636424], + [9.06205, 45.636424], + [9.06205, 45.627431], + [9.053056, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.339648], + [9.06205, 45.348642], + [9.071043, 45.348642], + [9.071043, 45.339648], + [9.06205, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.348642], + [9.06205, 45.357635], + [9.071043, 45.357635], + [9.071043, 45.348642], + [9.06205, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.357635], + [9.06205, 45.366628], + [9.071043, 45.366628], + [9.071043, 45.357635], + [9.06205, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.366628], + [9.06205, 45.375621], + [9.071043, 45.375621], + [9.071043, 45.366628], + [9.06205, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.375621], + [9.06205, 45.384614], + [9.071043, 45.384614], + [9.071043, 45.375621], + [9.06205, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.384614], + [9.06205, 45.393608], + [9.071043, 45.393608], + [9.071043, 45.384614], + [9.06205, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.393608], + [9.06205, 45.402601], + [9.071043, 45.402601], + [9.071043, 45.393608], + [9.06205, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.402601], + [9.06205, 45.411594], + [9.071043, 45.411594], + [9.071043, 45.402601], + [9.06205, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.411594], + [9.06205, 45.420587], + [9.071043, 45.420587], + [9.071043, 45.411594], + [9.06205, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.420587], + [9.06205, 45.42958], + [9.071043, 45.42958], + [9.071043, 45.420587], + [9.06205, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.42958], + [9.06205, 45.438574], + [9.071043, 45.438574], + [9.071043, 45.42958], + [9.06205, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.438574], + [9.06205, 45.447567], + [9.071043, 45.447567], + [9.071043, 45.438574], + [9.06205, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.447567], + [9.06205, 45.45656], + [9.071043, 45.45656], + [9.071043, 45.447567], + [9.06205, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.45656], + [9.06205, 45.465553], + [9.071043, 45.465553], + [9.071043, 45.45656], + [9.06205, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.465553], + [9.06205, 45.474547], + [9.071043, 45.474547], + [9.071043, 45.465553], + [9.06205, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.474547], + [9.06205, 45.48354], + [9.071043, 45.48354], + [9.071043, 45.474547], + [9.06205, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.48354], + [9.06205, 45.492533], + [9.071043, 45.492533], + [9.071043, 45.48354], + [9.06205, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.492533], + [9.06205, 45.501526], + [9.071043, 45.501526], + [9.071043, 45.492533], + [9.06205, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.501526], + [9.06205, 45.510519], + [9.071043, 45.510519], + [9.071043, 45.501526], + [9.06205, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.510519], + [9.06205, 45.519513], + [9.071043, 45.519513], + [9.071043, 45.510519], + [9.06205, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.519513], + [9.06205, 45.528506], + [9.071043, 45.528506], + [9.071043, 45.519513], + [9.06205, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.528506], + [9.06205, 45.537499], + [9.071043, 45.537499], + [9.071043, 45.528506], + [9.06205, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.537499], + [9.06205, 45.546492], + [9.071043, 45.546492], + [9.071043, 45.537499], + [9.06205, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.546492], + [9.06205, 45.555485], + [9.071043, 45.555485], + [9.071043, 45.546492], + [9.06205, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.555485], + [9.06205, 45.564479], + [9.071043, 45.564479], + [9.071043, 45.555485], + [9.06205, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.564479], + [9.06205, 45.573472], + [9.071043, 45.573472], + [9.071043, 45.564479], + [9.06205, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.573472], + [9.06205, 45.582465], + [9.071043, 45.582465], + [9.071043, 45.573472], + [9.06205, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.582465], + [9.06205, 45.591458], + [9.071043, 45.591458], + [9.071043, 45.582465], + [9.06205, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.591458], + [9.06205, 45.600451], + [9.071043, 45.600451], + [9.071043, 45.591458], + [9.06205, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.600451], + [9.06205, 45.609445], + [9.071043, 45.609445], + [9.071043, 45.600451], + [9.06205, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.609445], + [9.06205, 45.618438], + [9.071043, 45.618438], + [9.071043, 45.609445], + [9.06205, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.618438], + [9.06205, 45.627431], + [9.071043, 45.627431], + [9.071043, 45.618438], + [9.06205, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.627431], + [9.06205, 45.636424], + [9.071043, 45.636424], + [9.071043, 45.627431], + [9.06205, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.339648], + [9.071043, 45.348642], + [9.080036, 45.348642], + [9.080036, 45.339648], + [9.071043, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.348642], + [9.071043, 45.357635], + [9.080036, 45.357635], + [9.080036, 45.348642], + [9.071043, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.357635], + [9.071043, 45.366628], + [9.080036, 45.366628], + [9.080036, 45.357635], + [9.071043, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.366628], + [9.071043, 45.375621], + [9.080036, 45.375621], + [9.080036, 45.366628], + [9.071043, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.375621], + [9.071043, 45.384614], + [9.080036, 45.384614], + [9.080036, 45.375621], + [9.071043, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.384614], + [9.071043, 45.393608], + [9.080036, 45.393608], + [9.080036, 45.384614], + [9.071043, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.393608], + [9.071043, 45.402601], + [9.080036, 45.402601], + [9.080036, 45.393608], + [9.071043, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.402601], + [9.071043, 45.411594], + [9.080036, 45.411594], + [9.080036, 45.402601], + [9.071043, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.411594], + [9.071043, 45.420587], + [9.080036, 45.420587], + [9.080036, 45.411594], + [9.071043, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.420587], + [9.071043, 45.42958], + [9.080036, 45.42958], + [9.080036, 45.420587], + [9.071043, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.42958], + [9.071043, 45.438574], + [9.080036, 45.438574], + [9.080036, 45.42958], + [9.071043, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.438574], + [9.071043, 45.447567], + [9.080036, 45.447567], + [9.080036, 45.438574], + [9.071043, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.447567], + [9.071043, 45.45656], + [9.080036, 45.45656], + [9.080036, 45.447567], + [9.071043, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.45656], + [9.071043, 45.465553], + [9.080036, 45.465553], + [9.080036, 45.45656], + [9.071043, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.465553], + [9.071043, 45.474547], + [9.080036, 45.474547], + [9.080036, 45.465553], + [9.071043, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.474547], + [9.071043, 45.48354], + [9.080036, 45.48354], + [9.080036, 45.474547], + [9.071043, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.48354], + [9.071043, 45.492533], + [9.080036, 45.492533], + [9.080036, 45.48354], + [9.071043, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.492533], + [9.071043, 45.501526], + [9.080036, 45.501526], + [9.080036, 45.492533], + [9.071043, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.501526], + [9.071043, 45.510519], + [9.080036, 45.510519], + [9.080036, 45.501526], + [9.071043, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.510519], + [9.071043, 45.519513], + [9.080036, 45.519513], + [9.080036, 45.510519], + [9.071043, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.519513], + [9.071043, 45.528506], + [9.080036, 45.528506], + [9.080036, 45.519513], + [9.071043, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.528506], + [9.071043, 45.537499], + [9.080036, 45.537499], + [9.080036, 45.528506], + [9.071043, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.537499], + [9.071043, 45.546492], + [9.080036, 45.546492], + [9.080036, 45.537499], + [9.071043, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.546492], + [9.071043, 45.555485], + [9.080036, 45.555485], + [9.080036, 45.546492], + [9.071043, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.555485], + [9.071043, 45.564479], + [9.080036, 45.564479], + [9.080036, 45.555485], + [9.071043, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.564479], + [9.071043, 45.573472], + [9.080036, 45.573472], + [9.080036, 45.564479], + [9.071043, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.573472], + [9.071043, 45.582465], + [9.080036, 45.582465], + [9.080036, 45.573472], + [9.071043, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.582465], + [9.071043, 45.591458], + [9.080036, 45.591458], + [9.080036, 45.582465], + [9.071043, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.591458], + [9.071043, 45.600451], + [9.080036, 45.600451], + [9.080036, 45.591458], + [9.071043, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.600451], + [9.071043, 45.609445], + [9.080036, 45.609445], + [9.080036, 45.600451], + [9.071043, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.609445], + [9.071043, 45.618438], + [9.080036, 45.618438], + [9.080036, 45.609445], + [9.071043, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.618438], + [9.071043, 45.627431], + [9.080036, 45.627431], + [9.080036, 45.618438], + [9.071043, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.627431], + [9.071043, 45.636424], + [9.080036, 45.636424], + [9.080036, 45.627431], + [9.071043, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.339648], + [9.080036, 45.348642], + [9.089029, 45.348642], + [9.089029, 45.339648], + [9.080036, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.348642], + [9.080036, 45.357635], + [9.089029, 45.357635], + [9.089029, 45.348642], + [9.080036, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.357635], + [9.080036, 45.366628], + [9.089029, 45.366628], + [9.089029, 45.357635], + [9.080036, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.366628], + [9.080036, 45.375621], + [9.089029, 45.375621], + [9.089029, 45.366628], + [9.080036, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.375621], + [9.080036, 45.384614], + [9.089029, 45.384614], + [9.089029, 45.375621], + [9.080036, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.384614], + [9.080036, 45.393608], + [9.089029, 45.393608], + [9.089029, 45.384614], + [9.080036, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.393608], + [9.080036, 45.402601], + [9.089029, 45.402601], + [9.089029, 45.393608], + [9.080036, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.402601], + [9.080036, 45.411594], + [9.089029, 45.411594], + [9.089029, 45.402601], + [9.080036, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.411594], + [9.080036, 45.420587], + [9.089029, 45.420587], + [9.089029, 45.411594], + [9.080036, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.420587], + [9.080036, 45.42958], + [9.089029, 45.42958], + [9.089029, 45.420587], + [9.080036, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.42958], + [9.080036, 45.438574], + [9.089029, 45.438574], + [9.089029, 45.42958], + [9.080036, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.438574], + [9.080036, 45.447567], + [9.089029, 45.447567], + [9.089029, 45.438574], + [9.080036, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.447567], + [9.080036, 45.45656], + [9.089029, 45.45656], + [9.089029, 45.447567], + [9.080036, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.45656], + [9.080036, 45.465553], + [9.089029, 45.465553], + [9.089029, 45.45656], + [9.080036, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.465553], + [9.080036, 45.474547], + [9.089029, 45.474547], + [9.089029, 45.465553], + [9.080036, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.474547], + [9.080036, 45.48354], + [9.089029, 45.48354], + [9.089029, 45.474547], + [9.080036, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.48354], + [9.080036, 45.492533], + [9.089029, 45.492533], + [9.089029, 45.48354], + [9.080036, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.492533], + [9.080036, 45.501526], + [9.089029, 45.501526], + [9.089029, 45.492533], + [9.080036, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.501526], + [9.080036, 45.510519], + [9.089029, 45.510519], + [9.089029, 45.501526], + [9.080036, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.510519], + [9.080036, 45.519513], + [9.089029, 45.519513], + [9.089029, 45.510519], + [9.080036, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.519513], + [9.080036, 45.528506], + [9.089029, 45.528506], + [9.089029, 45.519513], + [9.080036, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.528506], + [9.080036, 45.537499], + [9.089029, 45.537499], + [9.089029, 45.528506], + [9.080036, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.537499], + [9.080036, 45.546492], + [9.089029, 45.546492], + [9.089029, 45.537499], + [9.080036, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.546492], + [9.080036, 45.555485], + [9.089029, 45.555485], + [9.089029, 45.546492], + [9.080036, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.555485], + [9.080036, 45.564479], + [9.089029, 45.564479], + [9.089029, 45.555485], + [9.080036, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.564479], + [9.080036, 45.573472], + [9.089029, 45.573472], + [9.089029, 45.564479], + [9.080036, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.573472], + [9.080036, 45.582465], + [9.089029, 45.582465], + [9.089029, 45.573472], + [9.080036, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.582465], + [9.080036, 45.591458], + [9.089029, 45.591458], + [9.089029, 45.582465], + [9.080036, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.591458], + [9.080036, 45.600451], + [9.089029, 45.600451], + [9.089029, 45.591458], + [9.080036, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.600451], + [9.080036, 45.609445], + [9.089029, 45.609445], + [9.089029, 45.600451], + [9.080036, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.609445], + [9.080036, 45.618438], + [9.089029, 45.618438], + [9.089029, 45.609445], + [9.080036, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.618438], + [9.080036, 45.627431], + [9.089029, 45.627431], + [9.089029, 45.618438], + [9.080036, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.627431], + [9.080036, 45.636424], + [9.089029, 45.636424], + [9.089029, 45.627431], + [9.080036, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.339648], + [9.089029, 45.348642], + [9.098022, 45.348642], + [9.098022, 45.339648], + [9.089029, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.348642], + [9.089029, 45.357635], + [9.098022, 45.357635], + [9.098022, 45.348642], + [9.089029, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.357635], + [9.089029, 45.366628], + [9.098022, 45.366628], + [9.098022, 45.357635], + [9.089029, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.366628], + [9.089029, 45.375621], + [9.098022, 45.375621], + [9.098022, 45.366628], + [9.089029, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.375621], + [9.089029, 45.384614], + [9.098022, 45.384614], + [9.098022, 45.375621], + [9.089029, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.384614], + [9.089029, 45.393608], + [9.098022, 45.393608], + [9.098022, 45.384614], + [9.089029, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.393608], + [9.089029, 45.402601], + [9.098022, 45.402601], + [9.098022, 45.393608], + [9.089029, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.402601], + [9.089029, 45.411594], + [9.098022, 45.411594], + [9.098022, 45.402601], + [9.089029, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.411594], + [9.089029, 45.420587], + [9.098022, 45.420587], + [9.098022, 45.411594], + [9.089029, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.420587], + [9.089029, 45.42958], + [9.098022, 45.42958], + [9.098022, 45.420587], + [9.089029, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.42958], + [9.089029, 45.438574], + [9.098022, 45.438574], + [9.098022, 45.42958], + [9.089029, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.438574], + [9.089029, 45.447567], + [9.098022, 45.447567], + [9.098022, 45.438574], + [9.089029, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.447567], + [9.089029, 45.45656], + [9.098022, 45.45656], + [9.098022, 45.447567], + [9.089029, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.45656], + [9.089029, 45.465553], + [9.098022, 45.465553], + [9.098022, 45.45656], + [9.089029, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.465553], + [9.089029, 45.474547], + [9.098022, 45.474547], + [9.098022, 45.465553], + [9.089029, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.474547], + [9.089029, 45.48354], + [9.098022, 45.48354], + [9.098022, 45.474547], + [9.089029, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.48354], + [9.089029, 45.492533], + [9.098022, 45.492533], + [9.098022, 45.48354], + [9.089029, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.492533], + [9.089029, 45.501526], + [9.098022, 45.501526], + [9.098022, 45.492533], + [9.089029, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.501526], + [9.089029, 45.510519], + [9.098022, 45.510519], + [9.098022, 45.501526], + [9.089029, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.510519], + [9.089029, 45.519513], + [9.098022, 45.519513], + [9.098022, 45.510519], + [9.089029, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.519513], + [9.089029, 45.528506], + [9.098022, 45.528506], + [9.098022, 45.519513], + [9.089029, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.528506], + [9.089029, 45.537499], + [9.098022, 45.537499], + [9.098022, 45.528506], + [9.089029, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.537499], + [9.089029, 45.546492], + [9.098022, 45.546492], + [9.098022, 45.537499], + [9.089029, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.546492], + [9.089029, 45.555485], + [9.098022, 45.555485], + [9.098022, 45.546492], + [9.089029, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.555485], + [9.089029, 45.564479], + [9.098022, 45.564479], + [9.098022, 45.555485], + [9.089029, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.564479], + [9.089029, 45.573472], + [9.098022, 45.573472], + [9.098022, 45.564479], + [9.089029, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.573472], + [9.089029, 45.582465], + [9.098022, 45.582465], + [9.098022, 45.573472], + [9.089029, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.582465], + [9.089029, 45.591458], + [9.098022, 45.591458], + [9.098022, 45.582465], + [9.089029, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.591458], + [9.089029, 45.600451], + [9.098022, 45.600451], + [9.098022, 45.591458], + [9.089029, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.600451], + [9.089029, 45.609445], + [9.098022, 45.609445], + [9.098022, 45.600451], + [9.089029, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.609445], + [9.089029, 45.618438], + [9.098022, 45.618438], + [9.098022, 45.609445], + [9.089029, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.618438], + [9.089029, 45.627431], + [9.098022, 45.627431], + [9.098022, 45.618438], + [9.089029, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.627431], + [9.089029, 45.636424], + [9.098022, 45.636424], + [9.098022, 45.627431], + [9.089029, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.339648], + [9.098022, 45.348642], + [9.107016, 45.348642], + [9.107016, 45.339648], + [9.098022, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.348642], + [9.098022, 45.357635], + [9.107016, 45.357635], + [9.107016, 45.348642], + [9.098022, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.357635], + [9.098022, 45.366628], + [9.107016, 45.366628], + [9.107016, 45.357635], + [9.098022, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.366628], + [9.098022, 45.375621], + [9.107016, 45.375621], + [9.107016, 45.366628], + [9.098022, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.375621], + [9.098022, 45.384614], + [9.107016, 45.384614], + [9.107016, 45.375621], + [9.098022, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.384614], + [9.098022, 45.393608], + [9.107016, 45.393608], + [9.107016, 45.384614], + [9.098022, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.393608], + [9.098022, 45.402601], + [9.107016, 45.402601], + [9.107016, 45.393608], + [9.098022, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.402601], + [9.098022, 45.411594], + [9.107016, 45.411594], + [9.107016, 45.402601], + [9.098022, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.411594], + [9.098022, 45.420587], + [9.107016, 45.420587], + [9.107016, 45.411594], + [9.098022, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.420587], + [9.098022, 45.42958], + [9.107016, 45.42958], + [9.107016, 45.420587], + [9.098022, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.42958], + [9.098022, 45.438574], + [9.107016, 45.438574], + [9.107016, 45.42958], + [9.098022, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.438574], + [9.098022, 45.447567], + [9.107016, 45.447567], + [9.107016, 45.438574], + [9.098022, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.447567], + [9.098022, 45.45656], + [9.107016, 45.45656], + [9.107016, 45.447567], + [9.098022, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.45656], + [9.098022, 45.465553], + [9.107016, 45.465553], + [9.107016, 45.45656], + [9.098022, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.465553], + [9.098022, 45.474547], + [9.107016, 45.474547], + [9.107016, 45.465553], + [9.098022, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.474547], + [9.098022, 45.48354], + [9.107016, 45.48354], + [9.107016, 45.474547], + [9.098022, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.48354], + [9.098022, 45.492533], + [9.107016, 45.492533], + [9.107016, 45.48354], + [9.098022, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.492533], + [9.098022, 45.501526], + [9.107016, 45.501526], + [9.107016, 45.492533], + [9.098022, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.501526], + [9.098022, 45.510519], + [9.107016, 45.510519], + [9.107016, 45.501526], + [9.098022, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.510519], + [9.098022, 45.519513], + [9.107016, 45.519513], + [9.107016, 45.510519], + [9.098022, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.519513], + [9.098022, 45.528506], + [9.107016, 45.528506], + [9.107016, 45.519513], + [9.098022, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.528506], + [9.098022, 45.537499], + [9.107016, 45.537499], + [9.107016, 45.528506], + [9.098022, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.537499], + [9.098022, 45.546492], + [9.107016, 45.546492], + [9.107016, 45.537499], + [9.098022, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.546492], + [9.098022, 45.555485], + [9.107016, 45.555485], + [9.107016, 45.546492], + [9.098022, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.555485], + [9.098022, 45.564479], + [9.107016, 45.564479], + [9.107016, 45.555485], + [9.098022, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.564479], + [9.098022, 45.573472], + [9.107016, 45.573472], + [9.107016, 45.564479], + [9.098022, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.573472], + [9.098022, 45.582465], + [9.107016, 45.582465], + [9.107016, 45.573472], + [9.098022, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.582465], + [9.098022, 45.591458], + [9.107016, 45.591458], + [9.107016, 45.582465], + [9.098022, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.591458], + [9.098022, 45.600451], + [9.107016, 45.600451], + [9.107016, 45.591458], + [9.098022, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.600451], + [9.098022, 45.609445], + [9.107016, 45.609445], + [9.107016, 45.600451], + [9.098022, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.609445], + [9.098022, 45.618438], + [9.107016, 45.618438], + [9.107016, 45.609445], + [9.098022, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.618438], + [9.098022, 45.627431], + [9.107016, 45.627431], + [9.107016, 45.618438], + [9.098022, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.627431], + [9.098022, 45.636424], + [9.107016, 45.636424], + [9.107016, 45.627431], + [9.098022, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.339648], + [9.107016, 45.348642], + [9.116009, 45.348642], + [9.116009, 45.339648], + [9.107016, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.348642], + [9.107016, 45.357635], + [9.116009, 45.357635], + [9.116009, 45.348642], + [9.107016, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.357635], + [9.107016, 45.366628], + [9.116009, 45.366628], + [9.116009, 45.357635], + [9.107016, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.366628], + [9.107016, 45.375621], + [9.116009, 45.375621], + [9.116009, 45.366628], + [9.107016, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.375621], + [9.107016, 45.384614], + [9.116009, 45.384614], + [9.116009, 45.375621], + [9.107016, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.384614], + [9.107016, 45.393608], + [9.116009, 45.393608], + [9.116009, 45.384614], + [9.107016, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.393608], + [9.107016, 45.402601], + [9.116009, 45.402601], + [9.116009, 45.393608], + [9.107016, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.402601], + [9.107016, 45.411594], + [9.116009, 45.411594], + [9.116009, 45.402601], + [9.107016, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.411594], + [9.107016, 45.420587], + [9.116009, 45.420587], + [9.116009, 45.411594], + [9.107016, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.420587], + [9.107016, 45.42958], + [9.116009, 45.42958], + [9.116009, 45.420587], + [9.107016, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#d6ebff", + "fill": "#d6ebff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.42958], + [9.107016, 45.438574], + [9.116009, 45.438574], + [9.116009, 45.42958], + [9.107016, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#e5f3ff", + "fill": "#e5f3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.438574], + [9.107016, 45.447567], + [9.116009, 45.447567], + [9.116009, 45.438574], + [9.107016, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.447567], + [9.107016, 45.45656], + [9.116009, 45.45656], + [9.116009, 45.447567], + [9.107016, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.45656], + [9.107016, 45.465553], + [9.116009, 45.465553], + [9.116009, 45.45656], + [9.107016, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.465553], + [9.107016, 45.474547], + [9.116009, 45.474547], + [9.116009, 45.465553], + [9.107016, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.474547], + [9.107016, 45.48354], + [9.116009, 45.48354], + [9.116009, 45.474547], + [9.107016, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.48354], + [9.107016, 45.492533], + [9.116009, 45.492533], + [9.116009, 45.48354], + [9.107016, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.492533], + [9.107016, 45.501526], + [9.116009, 45.501526], + [9.116009, 45.492533], + [9.107016, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.501526], + [9.107016, 45.510519], + [9.116009, 45.510519], + [9.116009, 45.501526], + [9.107016, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.510519], + [9.107016, 45.519513], + [9.116009, 45.519513], + [9.116009, 45.510519], + [9.107016, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.519513], + [9.107016, 45.528506], + [9.116009, 45.528506], + [9.116009, 45.519513], + [9.107016, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.528506], + [9.107016, 45.537499], + [9.116009, 45.537499], + [9.116009, 45.528506], + [9.107016, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.537499], + [9.107016, 45.546492], + [9.116009, 45.546492], + [9.116009, 45.537499], + [9.107016, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.546492], + [9.107016, 45.555485], + [9.116009, 45.555485], + [9.116009, 45.546492], + [9.107016, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.555485], + [9.107016, 45.564479], + [9.116009, 45.564479], + [9.116009, 45.555485], + [9.107016, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.564479], + [9.107016, 45.573472], + [9.116009, 45.573472], + [9.116009, 45.564479], + [9.107016, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.573472], + [9.107016, 45.582465], + [9.116009, 45.582465], + [9.116009, 45.573472], + [9.107016, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.582465], + [9.107016, 45.591458], + [9.116009, 45.591458], + [9.116009, 45.582465], + [9.107016, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.591458], + [9.107016, 45.600451], + [9.116009, 45.600451], + [9.116009, 45.591458], + [9.107016, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.600451], + [9.107016, 45.609445], + [9.116009, 45.609445], + [9.116009, 45.600451], + [9.107016, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.609445], + [9.107016, 45.618438], + [9.116009, 45.618438], + [9.116009, 45.609445], + [9.107016, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.618438], + [9.107016, 45.627431], + [9.116009, 45.627431], + [9.116009, 45.618438], + [9.107016, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.627431], + [9.107016, 45.636424], + [9.116009, 45.636424], + [9.116009, 45.627431], + [9.107016, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.339648], + [9.116009, 45.348642], + [9.125002, 45.348642], + [9.125002, 45.339648], + [9.116009, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.348642], + [9.116009, 45.357635], + [9.125002, 45.357635], + [9.125002, 45.348642], + [9.116009, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.357635], + [9.116009, 45.366628], + [9.125002, 45.366628], + [9.125002, 45.357635], + [9.116009, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.366628], + [9.116009, 45.375621], + [9.125002, 45.375621], + [9.125002, 45.366628], + [9.116009, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.375621], + [9.116009, 45.384614], + [9.125002, 45.384614], + [9.125002, 45.375621], + [9.116009, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.384614], + [9.116009, 45.393608], + [9.125002, 45.393608], + [9.125002, 45.384614], + [9.116009, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.393608], + [9.116009, 45.402601], + [9.125002, 45.402601], + [9.125002, 45.393608], + [9.116009, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.402601], + [9.116009, 45.411594], + [9.125002, 45.411594], + [9.125002, 45.402601], + [9.116009, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.411594], + [9.116009, 45.420587], + [9.125002, 45.420587], + [9.125002, 45.411594], + [9.116009, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.420587], + [9.116009, 45.42958], + [9.125002, 45.42958], + [9.125002, 45.420587], + [9.116009, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#d6ebff", + "fill": "#d6ebff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.42958], + [9.116009, 45.438574], + [9.125002, 45.438574], + [9.125002, 45.42958], + [9.116009, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#e5f3ff", + "fill": "#e5f3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.438574], + [9.116009, 45.447567], + [9.125002, 45.447567], + [9.125002, 45.438574], + [9.116009, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.447567], + [9.116009, 45.45656], + [9.125002, 45.45656], + [9.125002, 45.447567], + [9.116009, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.45656], + [9.116009, 45.465553], + [9.125002, 45.465553], + [9.125002, 45.45656], + [9.116009, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.465553], + [9.116009, 45.474547], + [9.125002, 45.474547], + [9.125002, 45.465553], + [9.116009, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.474547], + [9.116009, 45.48354], + [9.125002, 45.48354], + [9.125002, 45.474547], + [9.116009, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.48354], + [9.116009, 45.492533], + [9.125002, 45.492533], + [9.125002, 45.48354], + [9.116009, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.492533], + [9.116009, 45.501526], + [9.125002, 45.501526], + [9.125002, 45.492533], + [9.116009, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.501526], + [9.116009, 45.510519], + [9.125002, 45.510519], + [9.125002, 45.501526], + [9.116009, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.510519], + [9.116009, 45.519513], + [9.125002, 45.519513], + [9.125002, 45.510519], + [9.116009, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.519513], + [9.116009, 45.528506], + [9.125002, 45.528506], + [9.125002, 45.519513], + [9.116009, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.528506], + [9.116009, 45.537499], + [9.125002, 45.537499], + [9.125002, 45.528506], + [9.116009, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.537499], + [9.116009, 45.546492], + [9.125002, 45.546492], + [9.125002, 45.537499], + [9.116009, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.546492], + [9.116009, 45.555485], + [9.125002, 45.555485], + [9.125002, 45.546492], + [9.116009, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.555485], + [9.116009, 45.564479], + [9.125002, 45.564479], + [9.125002, 45.555485], + [9.116009, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.564479], + [9.116009, 45.573472], + [9.125002, 45.573472], + [9.125002, 45.564479], + [9.116009, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.573472], + [9.116009, 45.582465], + [9.125002, 45.582465], + [9.125002, 45.573472], + [9.116009, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.582465], + [9.116009, 45.591458], + [9.125002, 45.591458], + [9.125002, 45.582465], + [9.116009, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.591458], + [9.116009, 45.600451], + [9.125002, 45.600451], + [9.125002, 45.591458], + [9.116009, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.600451], + [9.116009, 45.609445], + [9.125002, 45.609445], + [9.125002, 45.600451], + [9.116009, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.609445], + [9.116009, 45.618438], + [9.125002, 45.618438], + [9.125002, 45.609445], + [9.116009, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.618438], + [9.116009, 45.627431], + [9.125002, 45.627431], + [9.125002, 45.618438], + [9.116009, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.627431], + [9.116009, 45.636424], + [9.125002, 45.636424], + [9.125002, 45.627431], + [9.116009, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.339648], + [9.125002, 45.348642], + [9.133995, 45.348642], + [9.133995, 45.339648], + [9.125002, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.348642], + [9.125002, 45.357635], + [9.133995, 45.357635], + [9.133995, 45.348642], + [9.125002, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.357635], + [9.125002, 45.366628], + [9.133995, 45.366628], + [9.133995, 45.357635], + [9.125002, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.366628], + [9.125002, 45.375621], + [9.133995, 45.375621], + [9.133995, 45.366628], + [9.125002, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.375621], + [9.125002, 45.384614], + [9.133995, 45.384614], + [9.133995, 45.375621], + [9.125002, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.384614], + [9.125002, 45.393608], + [9.133995, 45.393608], + [9.133995, 45.384614], + [9.125002, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.393608], + [9.125002, 45.402601], + [9.133995, 45.402601], + [9.133995, 45.393608], + [9.125002, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.402601], + [9.125002, 45.411594], + [9.133995, 45.411594], + [9.133995, 45.402601], + [9.125002, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.411594], + [9.125002, 45.420587], + [9.133995, 45.420587], + [9.133995, 45.411594], + [9.125002, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.420587], + [9.125002, 45.42958], + [9.133995, 45.42958], + [9.133995, 45.420587], + [9.125002, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.42958], + [9.125002, 45.438574], + [9.133995, 45.438574], + [9.133995, 45.42958], + [9.125002, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.438574], + [9.125002, 45.447567], + [9.133995, 45.447567], + [9.133995, 45.438574], + [9.125002, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.447567], + [9.125002, 45.45656], + [9.133995, 45.45656], + [9.133995, 45.447567], + [9.125002, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.45656], + [9.125002, 45.465553], + [9.133995, 45.465553], + [9.133995, 45.45656], + [9.125002, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.465553], + [9.125002, 45.474547], + [9.133995, 45.474547], + [9.133995, 45.465553], + [9.125002, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.474547], + [9.125002, 45.48354], + [9.133995, 45.48354], + [9.133995, 45.474547], + [9.125002, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.48354], + [9.125002, 45.492533], + [9.133995, 45.492533], + [9.133995, 45.48354], + [9.125002, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.492533], + [9.125002, 45.501526], + [9.133995, 45.501526], + [9.133995, 45.492533], + [9.125002, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.501526], + [9.125002, 45.510519], + [9.133995, 45.510519], + [9.133995, 45.501526], + [9.125002, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.510519], + [9.125002, 45.519513], + [9.133995, 45.519513], + [9.133995, 45.510519], + [9.125002, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.519513], + [9.125002, 45.528506], + [9.133995, 45.528506], + [9.133995, 45.519513], + [9.125002, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.528506], + [9.125002, 45.537499], + [9.133995, 45.537499], + [9.133995, 45.528506], + [9.125002, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.537499], + [9.125002, 45.546492], + [9.133995, 45.546492], + [9.133995, 45.537499], + [9.125002, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.546492], + [9.125002, 45.555485], + [9.133995, 45.555485], + [9.133995, 45.546492], + [9.125002, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.555485], + [9.125002, 45.564479], + [9.133995, 45.564479], + [9.133995, 45.555485], + [9.125002, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.564479], + [9.125002, 45.573472], + [9.133995, 45.573472], + [9.133995, 45.564479], + [9.125002, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.573472], + [9.125002, 45.582465], + [9.133995, 45.582465], + [9.133995, 45.573472], + [9.125002, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.582465], + [9.125002, 45.591458], + [9.133995, 45.591458], + [9.133995, 45.582465], + [9.125002, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.591458], + [9.125002, 45.600451], + [9.133995, 45.600451], + [9.133995, 45.591458], + [9.125002, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.600451], + [9.125002, 45.609445], + [9.133995, 45.609445], + [9.133995, 45.600451], + [9.125002, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.609445], + [9.125002, 45.618438], + [9.133995, 45.618438], + [9.133995, 45.609445], + [9.125002, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.618438], + [9.125002, 45.627431], + [9.133995, 45.627431], + [9.133995, 45.618438], + [9.125002, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.627431], + [9.125002, 45.636424], + [9.133995, 45.636424], + [9.133995, 45.627431], + [9.125002, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.339648], + [9.133995, 45.348642], + [9.142988, 45.348642], + [9.142988, 45.339648], + [9.133995, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.348642], + [9.133995, 45.357635], + [9.142988, 45.357635], + [9.142988, 45.348642], + [9.133995, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.357635], + [9.133995, 45.366628], + [9.142988, 45.366628], + [9.142988, 45.357635], + [9.133995, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.366628], + [9.133995, 45.375621], + [9.142988, 45.375621], + [9.142988, 45.366628], + [9.133995, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.375621], + [9.133995, 45.384614], + [9.142988, 45.384614], + [9.142988, 45.375621], + [9.133995, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.384614], + [9.133995, 45.393608], + [9.142988, 45.393608], + [9.142988, 45.384614], + [9.133995, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.393608], + [9.133995, 45.402601], + [9.142988, 45.402601], + [9.142988, 45.393608], + [9.133995, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.402601], + [9.133995, 45.411594], + [9.142988, 45.411594], + [9.142988, 45.402601], + [9.133995, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.411594], + [9.133995, 45.420587], + [9.142988, 45.420587], + [9.142988, 45.411594], + [9.133995, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.420587], + [9.133995, 45.42958], + [9.142988, 45.42958], + [9.142988, 45.420587], + [9.133995, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.42958], + [9.133995, 45.438574], + [9.142988, 45.438574], + [9.142988, 45.42958], + [9.133995, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.438574], + [9.133995, 45.447567], + [9.142988, 45.447567], + [9.142988, 45.438574], + [9.133995, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.447567], + [9.133995, 45.45656], + [9.142988, 45.45656], + [9.142988, 45.447567], + [9.133995, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.45656], + [9.133995, 45.465553], + [9.142988, 45.465553], + [9.142988, 45.45656], + [9.133995, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.465553], + [9.133995, 45.474547], + [9.142988, 45.474547], + [9.142988, 45.465553], + [9.133995, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.474547], + [9.133995, 45.48354], + [9.142988, 45.48354], + [9.142988, 45.474547], + [9.133995, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.48354], + [9.133995, 45.492533], + [9.142988, 45.492533], + [9.142988, 45.48354], + [9.133995, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.492533], + [9.133995, 45.501526], + [9.142988, 45.501526], + [9.142988, 45.492533], + [9.133995, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.501526], + [9.133995, 45.510519], + [9.142988, 45.510519], + [9.142988, 45.501526], + [9.133995, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.510519], + [9.133995, 45.519513], + [9.142988, 45.519513], + [9.142988, 45.510519], + [9.133995, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.519513], + [9.133995, 45.528506], + [9.142988, 45.528506], + [9.142988, 45.519513], + [9.133995, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.528506], + [9.133995, 45.537499], + [9.142988, 45.537499], + [9.142988, 45.528506], + [9.133995, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.537499], + [9.133995, 45.546492], + [9.142988, 45.546492], + [9.142988, 45.537499], + [9.133995, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.546492], + [9.133995, 45.555485], + [9.142988, 45.555485], + [9.142988, 45.546492], + [9.133995, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.555485], + [9.133995, 45.564479], + [9.142988, 45.564479], + [9.142988, 45.555485], + [9.133995, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.564479], + [9.133995, 45.573472], + [9.142988, 45.573472], + [9.142988, 45.564479], + [9.133995, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.573472], + [9.133995, 45.582465], + [9.142988, 45.582465], + [9.142988, 45.573472], + [9.133995, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.582465], + [9.133995, 45.591458], + [9.142988, 45.591458], + [9.142988, 45.582465], + [9.133995, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.591458], + [9.133995, 45.600451], + [9.142988, 45.600451], + [9.142988, 45.591458], + [9.133995, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.600451], + [9.133995, 45.609445], + [9.142988, 45.609445], + [9.142988, 45.600451], + [9.133995, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.609445], + [9.133995, 45.618438], + [9.142988, 45.618438], + [9.142988, 45.609445], + [9.133995, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.618438], + [9.133995, 45.627431], + [9.142988, 45.627431], + [9.142988, 45.618438], + [9.133995, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.627431], + [9.133995, 45.636424], + [9.142988, 45.636424], + [9.142988, 45.627431], + [9.133995, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.339648], + [9.142988, 45.348642], + [9.151982, 45.348642], + [9.151982, 45.339648], + [9.142988, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.348642], + [9.142988, 45.357635], + [9.151982, 45.357635], + [9.151982, 45.348642], + [9.142988, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.357635], + [9.142988, 45.366628], + [9.151982, 45.366628], + [9.151982, 45.357635], + [9.142988, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.366628], + [9.142988, 45.375621], + [9.151982, 45.375621], + [9.151982, 45.366628], + [9.142988, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.375621], + [9.142988, 45.384614], + [9.151982, 45.384614], + [9.151982, 45.375621], + [9.142988, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.384614], + [9.142988, 45.393608], + [9.151982, 45.393608], + [9.151982, 45.384614], + [9.142988, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.393608], + [9.142988, 45.402601], + [9.151982, 45.402601], + [9.151982, 45.393608], + [9.142988, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.402601], + [9.142988, 45.411594], + [9.151982, 45.411594], + [9.151982, 45.402601], + [9.142988, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.411594], + [9.142988, 45.420587], + [9.151982, 45.420587], + [9.151982, 45.411594], + [9.142988, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.420587], + [9.142988, 45.42958], + [9.151982, 45.42958], + [9.151982, 45.420587], + [9.142988, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.42958], + [9.142988, 45.438574], + [9.151982, 45.438574], + [9.151982, 45.42958], + [9.142988, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.438574], + [9.142988, 45.447567], + [9.151982, 45.447567], + [9.151982, 45.438574], + [9.142988, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.447567], + [9.142988, 45.45656], + [9.151982, 45.45656], + [9.151982, 45.447567], + [9.142988, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.45656], + [9.142988, 45.465553], + [9.151982, 45.465553], + [9.151982, 45.45656], + [9.142988, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#d6ebff", + "fill": "#d6ebff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.465553], + [9.142988, 45.474547], + [9.151982, 45.474547], + [9.151982, 45.465553], + [9.142988, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.474547], + [9.142988, 45.48354], + [9.151982, 45.48354], + [9.151982, 45.474547], + [9.142988, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.48354], + [9.142988, 45.492533], + [9.151982, 45.492533], + [9.151982, 45.48354], + [9.142988, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.492533], + [9.142988, 45.501526], + [9.151982, 45.501526], + [9.151982, 45.492533], + [9.142988, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.501526], + [9.142988, 45.510519], + [9.151982, 45.510519], + [9.151982, 45.501526], + [9.142988, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.510519], + [9.142988, 45.519513], + [9.151982, 45.519513], + [9.151982, 45.510519], + [9.142988, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.519513], + [9.142988, 45.528506], + [9.151982, 45.528506], + [9.151982, 45.519513], + [9.142988, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.528506], + [9.142988, 45.537499], + [9.151982, 45.537499], + [9.151982, 45.528506], + [9.142988, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.537499], + [9.142988, 45.546492], + [9.151982, 45.546492], + [9.151982, 45.537499], + [9.142988, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.546492], + [9.142988, 45.555485], + [9.151982, 45.555485], + [9.151982, 45.546492], + [9.142988, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.555485], + [9.142988, 45.564479], + [9.151982, 45.564479], + [9.151982, 45.555485], + [9.142988, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.564479], + [9.142988, 45.573472], + [9.151982, 45.573472], + [9.151982, 45.564479], + [9.142988, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.573472], + [9.142988, 45.582465], + [9.151982, 45.582465], + [9.151982, 45.573472], + [9.142988, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.582465], + [9.142988, 45.591458], + [9.151982, 45.591458], + [9.151982, 45.582465], + [9.142988, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.591458], + [9.142988, 45.600451], + [9.151982, 45.600451], + [9.151982, 45.591458], + [9.142988, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.600451], + [9.142988, 45.609445], + [9.151982, 45.609445], + [9.151982, 45.600451], + [9.142988, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.609445], + [9.142988, 45.618438], + [9.151982, 45.618438], + [9.151982, 45.609445], + [9.142988, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.618438], + [9.142988, 45.627431], + [9.151982, 45.627431], + [9.151982, 45.618438], + [9.142988, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.627431], + [9.142988, 45.636424], + [9.151982, 45.636424], + [9.151982, 45.627431], + [9.142988, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.339648], + [9.151982, 45.348642], + [9.160975, 45.348642], + [9.160975, 45.339648], + [9.151982, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.348642], + [9.151982, 45.357635], + [9.160975, 45.357635], + [9.160975, 45.348642], + [9.151982, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.357635], + [9.151982, 45.366628], + [9.160975, 45.366628], + [9.160975, 45.357635], + [9.151982, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.366628], + [9.151982, 45.375621], + [9.160975, 45.375621], + [9.160975, 45.366628], + [9.151982, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.375621], + [9.151982, 45.384614], + [9.160975, 45.384614], + [9.160975, 45.375621], + [9.151982, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.384614], + [9.151982, 45.393608], + [9.160975, 45.393608], + [9.160975, 45.384614], + [9.151982, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.393608], + [9.151982, 45.402601], + [9.160975, 45.402601], + [9.160975, 45.393608], + [9.151982, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.402601], + [9.151982, 45.411594], + [9.160975, 45.411594], + [9.160975, 45.402601], + [9.151982, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.411594], + [9.151982, 45.420587], + [9.160975, 45.420587], + [9.160975, 45.411594], + [9.151982, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.420587], + [9.151982, 45.42958], + [9.160975, 45.42958], + [9.160975, 45.420587], + [9.151982, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.42958], + [9.151982, 45.438574], + [9.160975, 45.438574], + [9.160975, 45.42958], + [9.151982, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.438574], + [9.151982, 45.447567], + [9.160975, 45.447567], + [9.160975, 45.438574], + [9.151982, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.447567], + [9.151982, 45.45656], + [9.160975, 45.45656], + [9.160975, 45.447567], + [9.151982, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.45656], + [9.151982, 45.465553], + [9.160975, 45.465553], + [9.160975, 45.45656], + [9.151982, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 14, + "stroke": "#ffffff", + "fill": "#ffffff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.465553], + [9.151982, 45.474547], + [9.160975, 45.474547], + [9.160975, 45.465553], + [9.151982, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.474547], + [9.151982, 45.48354], + [9.160975, 45.48354], + [9.160975, 45.474547], + [9.151982, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.48354], + [9.151982, 45.492533], + [9.160975, 45.492533], + [9.160975, 45.48354], + [9.151982, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.492533], + [9.151982, 45.501526], + [9.160975, 45.501526], + [9.160975, 45.492533], + [9.151982, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.501526], + [9.151982, 45.510519], + [9.160975, 45.510519], + [9.160975, 45.501526], + [9.151982, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.510519], + [9.151982, 45.519513], + [9.160975, 45.519513], + [9.160975, 45.510519], + [9.151982, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.519513], + [9.151982, 45.528506], + [9.160975, 45.528506], + [9.160975, 45.519513], + [9.151982, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.528506], + [9.151982, 45.537499], + [9.160975, 45.537499], + [9.160975, 45.528506], + [9.151982, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.537499], + [9.151982, 45.546492], + [9.160975, 45.546492], + [9.160975, 45.537499], + [9.151982, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.546492], + [9.151982, 45.555485], + [9.160975, 45.555485], + [9.160975, 45.546492], + [9.151982, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.555485], + [9.151982, 45.564479], + [9.160975, 45.564479], + [9.160975, 45.555485], + [9.151982, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.564479], + [9.151982, 45.573472], + [9.160975, 45.573472], + [9.160975, 45.564479], + [9.151982, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.573472], + [9.151982, 45.582465], + [9.160975, 45.582465], + [9.160975, 45.573472], + [9.151982, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.582465], + [9.151982, 45.591458], + [9.160975, 45.591458], + [9.160975, 45.582465], + [9.151982, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.591458], + [9.151982, 45.600451], + [9.160975, 45.600451], + [9.160975, 45.591458], + [9.151982, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.600451], + [9.151982, 45.609445], + [9.160975, 45.609445], + [9.160975, 45.600451], + [9.151982, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.609445], + [9.151982, 45.618438], + [9.160975, 45.618438], + [9.160975, 45.609445], + [9.151982, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.618438], + [9.151982, 45.627431], + [9.160975, 45.627431], + [9.160975, 45.618438], + [9.151982, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.627431], + [9.151982, 45.636424], + [9.160975, 45.636424], + [9.160975, 45.627431], + [9.151982, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.339648], + [9.160975, 45.348642], + [9.169968, 45.348642], + [9.169968, 45.339648], + [9.160975, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.348642], + [9.160975, 45.357635], + [9.169968, 45.357635], + [9.169968, 45.348642], + [9.160975, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.357635], + [9.160975, 45.366628], + [9.169968, 45.366628], + [9.169968, 45.357635], + [9.160975, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.366628], + [9.160975, 45.375621], + [9.169968, 45.375621], + [9.169968, 45.366628], + [9.160975, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.375621], + [9.160975, 45.384614], + [9.169968, 45.384614], + [9.169968, 45.375621], + [9.160975, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.384614], + [9.160975, 45.393608], + [9.169968, 45.393608], + [9.169968, 45.384614], + [9.160975, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.393608], + [9.160975, 45.402601], + [9.169968, 45.402601], + [9.169968, 45.393608], + [9.160975, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.402601], + [9.160975, 45.411594], + [9.169968, 45.411594], + [9.169968, 45.402601], + [9.160975, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.411594], + [9.160975, 45.420587], + [9.169968, 45.420587], + [9.169968, 45.411594], + [9.160975, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.420587], + [9.160975, 45.42958], + [9.169968, 45.42958], + [9.169968, 45.420587], + [9.160975, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.42958], + [9.160975, 45.438574], + [9.169968, 45.438574], + [9.169968, 45.42958], + [9.160975, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.438574], + [9.160975, 45.447567], + [9.169968, 45.447567], + [9.169968, 45.438574], + [9.160975, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.447567], + [9.160975, 45.45656], + [9.169968, 45.45656], + [9.169968, 45.447567], + [9.160975, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.45656], + [9.160975, 45.465553], + [9.169968, 45.465553], + [9.169968, 45.45656], + [9.160975, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.465553], + [9.160975, 45.474547], + [9.169968, 45.474547], + [9.169968, 45.465553], + [9.160975, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.474547], + [9.160975, 45.48354], + [9.169968, 45.48354], + [9.169968, 45.474547], + [9.160975, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.48354], + [9.160975, 45.492533], + [9.169968, 45.492533], + [9.169968, 45.48354], + [9.160975, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.492533], + [9.160975, 45.501526], + [9.169968, 45.501526], + [9.169968, 45.492533], + [9.160975, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.501526], + [9.160975, 45.510519], + [9.169968, 45.510519], + [9.169968, 45.501526], + [9.160975, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.510519], + [9.160975, 45.519513], + [9.169968, 45.519513], + [9.169968, 45.510519], + [9.160975, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.519513], + [9.160975, 45.528506], + [9.169968, 45.528506], + [9.169968, 45.519513], + [9.160975, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.528506], + [9.160975, 45.537499], + [9.169968, 45.537499], + [9.169968, 45.528506], + [9.160975, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.537499], + [9.160975, 45.546492], + [9.169968, 45.546492], + [9.169968, 45.537499], + [9.160975, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.546492], + [9.160975, 45.555485], + [9.169968, 45.555485], + [9.169968, 45.546492], + [9.160975, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.555485], + [9.160975, 45.564479], + [9.169968, 45.564479], + [9.169968, 45.555485], + [9.160975, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.564479], + [9.160975, 45.573472], + [9.169968, 45.573472], + [9.169968, 45.564479], + [9.160975, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.573472], + [9.160975, 45.582465], + [9.169968, 45.582465], + [9.169968, 45.573472], + [9.160975, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.582465], + [9.160975, 45.591458], + [9.169968, 45.591458], + [9.169968, 45.582465], + [9.160975, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.591458], + [9.160975, 45.600451], + [9.169968, 45.600451], + [9.169968, 45.591458], + [9.160975, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.600451], + [9.160975, 45.609445], + [9.169968, 45.609445], + [9.169968, 45.600451], + [9.160975, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.609445], + [9.160975, 45.618438], + [9.169968, 45.618438], + [9.169968, 45.609445], + [9.160975, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.618438], + [9.160975, 45.627431], + [9.169968, 45.627431], + [9.169968, 45.618438], + [9.160975, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.627431], + [9.160975, 45.636424], + [9.169968, 45.636424], + [9.169968, 45.627431], + [9.160975, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.339648], + [9.169968, 45.348642], + [9.178961, 45.348642], + [9.178961, 45.339648], + [9.169968, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.348642], + [9.169968, 45.357635], + [9.178961, 45.357635], + [9.178961, 45.348642], + [9.169968, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.357635], + [9.169968, 45.366628], + [9.178961, 45.366628], + [9.178961, 45.357635], + [9.169968, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.366628], + [9.169968, 45.375621], + [9.178961, 45.375621], + [9.178961, 45.366628], + [9.169968, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.375621], + [9.169968, 45.384614], + [9.178961, 45.384614], + [9.178961, 45.375621], + [9.169968, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.384614], + [9.169968, 45.393608], + [9.178961, 45.393608], + [9.178961, 45.384614], + [9.169968, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.393608], + [9.169968, 45.402601], + [9.178961, 45.402601], + [9.178961, 45.393608], + [9.169968, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.402601], + [9.169968, 45.411594], + [9.178961, 45.411594], + [9.178961, 45.402601], + [9.169968, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.411594], + [9.169968, 45.420587], + [9.178961, 45.420587], + [9.178961, 45.411594], + [9.169968, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.420587], + [9.169968, 45.42958], + [9.178961, 45.42958], + [9.178961, 45.420587], + [9.169968, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.42958], + [9.169968, 45.438574], + [9.178961, 45.438574], + [9.178961, 45.42958], + [9.169968, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.438574], + [9.169968, 45.447567], + [9.178961, 45.447567], + [9.178961, 45.438574], + [9.169968, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.447567], + [9.169968, 45.45656], + [9.178961, 45.45656], + [9.178961, 45.447567], + [9.169968, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.45656], + [9.169968, 45.465553], + [9.178961, 45.465553], + [9.178961, 45.45656], + [9.169968, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.465553], + [9.169968, 45.474547], + [9.178961, 45.474547], + [9.178961, 45.465553], + [9.169968, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.474547], + [9.169968, 45.48354], + [9.178961, 45.48354], + [9.178961, 45.474547], + [9.169968, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.48354], + [9.169968, 45.492533], + [9.178961, 45.492533], + [9.178961, 45.48354], + [9.169968, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.492533], + [9.169968, 45.501526], + [9.178961, 45.501526], + [9.178961, 45.492533], + [9.169968, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.501526], + [9.169968, 45.510519], + [9.178961, 45.510519], + [9.178961, 45.501526], + [9.169968, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.510519], + [9.169968, 45.519513], + [9.178961, 45.519513], + [9.178961, 45.510519], + [9.169968, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.519513], + [9.169968, 45.528506], + [9.178961, 45.528506], + [9.178961, 45.519513], + [9.169968, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#0065c2", + "fill": "#0065c2", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.528506], + [9.169968, 45.537499], + [9.178961, 45.537499], + [9.178961, 45.528506], + [9.169968, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#005db3", + "fill": "#005db3", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.537499], + [9.169968, 45.546492], + [9.178961, 45.546492], + [9.178961, 45.537499], + [9.169968, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#0065c2", + "fill": "#0065c2", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.546492], + [9.169968, 45.555485], + [9.178961, 45.555485], + [9.178961, 45.546492], + [9.169968, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.555485], + [9.169968, 45.564479], + [9.178961, 45.564479], + [9.178961, 45.555485], + [9.169968, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.564479], + [9.169968, 45.573472], + [9.178961, 45.573472], + [9.178961, 45.564479], + [9.169968, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.573472], + [9.169968, 45.582465], + [9.178961, 45.582465], + [9.178961, 45.573472], + [9.169968, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.582465], + [9.169968, 45.591458], + [9.178961, 45.591458], + [9.178961, 45.582465], + [9.169968, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.591458], + [9.169968, 45.600451], + [9.178961, 45.600451], + [9.178961, 45.591458], + [9.169968, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.600451], + [9.169968, 45.609445], + [9.178961, 45.609445], + [9.178961, 45.600451], + [9.169968, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.609445], + [9.169968, 45.618438], + [9.178961, 45.618438], + [9.178961, 45.609445], + [9.169968, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.618438], + [9.169968, 45.627431], + [9.178961, 45.627431], + [9.178961, 45.618438], + [9.169968, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.627431], + [9.169968, 45.636424], + [9.178961, 45.636424], + [9.178961, 45.627431], + [9.169968, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.339648], + [9.178961, 45.348642], + [9.187954, 45.348642], + [9.187954, 45.339648], + [9.178961, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.348642], + [9.178961, 45.357635], + [9.187954, 45.357635], + [9.187954, 45.348642], + [9.178961, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.357635], + [9.178961, 45.366628], + [9.187954, 45.366628], + [9.187954, 45.357635], + [9.178961, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.366628], + [9.178961, 45.375621], + [9.187954, 45.375621], + [9.187954, 45.366628], + [9.178961, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.375621], + [9.178961, 45.384614], + [9.187954, 45.384614], + [9.187954, 45.375621], + [9.178961, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.384614], + [9.178961, 45.393608], + [9.187954, 45.393608], + [9.187954, 45.384614], + [9.178961, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.393608], + [9.178961, 45.402601], + [9.187954, 45.402601], + [9.187954, 45.393608], + [9.178961, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.402601], + [9.178961, 45.411594], + [9.187954, 45.411594], + [9.187954, 45.402601], + [9.178961, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.411594], + [9.178961, 45.420587], + [9.187954, 45.420587], + [9.187954, 45.411594], + [9.178961, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.420587], + [9.178961, 45.42958], + [9.187954, 45.42958], + [9.187954, 45.420587], + [9.178961, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.42958], + [9.178961, 45.438574], + [9.187954, 45.438574], + [9.187954, 45.42958], + [9.178961, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.438574], + [9.178961, 45.447567], + [9.187954, 45.447567], + [9.187954, 45.438574], + [9.178961, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.447567], + [9.178961, 45.45656], + [9.187954, 45.45656], + [9.187954, 45.447567], + [9.178961, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.45656], + [9.178961, 45.465553], + [9.187954, 45.465553], + [9.187954, 45.45656], + [9.178961, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.465553], + [9.178961, 45.474547], + [9.187954, 45.474547], + [9.187954, 45.465553], + [9.178961, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.474547], + [9.178961, 45.48354], + [9.187954, 45.48354], + [9.187954, 45.474547], + [9.178961, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.48354], + [9.178961, 45.492533], + [9.187954, 45.492533], + [9.187954, 45.48354], + [9.178961, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.492533], + [9.178961, 45.501526], + [9.187954, 45.501526], + [9.187954, 45.492533], + [9.178961, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.501526], + [9.178961, 45.510519], + [9.187954, 45.510519], + [9.187954, 45.501526], + [9.178961, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.510519], + [9.178961, 45.519513], + [9.187954, 45.519513], + [9.187954, 45.510519], + [9.178961, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.519513], + [9.178961, 45.528506], + [9.187954, 45.528506], + [9.187954, 45.519513], + [9.178961, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#00407a", + "fill": "#00407a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.528506], + [9.178961, 45.537499], + [9.187954, 45.537499], + [9.187954, 45.528506], + [9.178961, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 43, + "stroke": "#003b70", + "fill": "#003b70", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.537499], + [9.178961, 45.546492], + [9.187954, 45.546492], + [9.187954, 45.537499], + [9.178961, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0055a3", + "fill": "#0055a3", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.546492], + [9.178961, 45.555485], + [9.187954, 45.555485], + [9.187954, 45.546492], + [9.178961, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#006dd1", + "fill": "#006dd1", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.555485], + [9.178961, 45.564479], + [9.187954, 45.564479], + [9.187954, 45.555485], + [9.178961, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.564479], + [9.178961, 45.573472], + [9.187954, 45.573472], + [9.187954, 45.564479], + [9.178961, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.573472], + [9.178961, 45.582465], + [9.187954, 45.582465], + [9.187954, 45.573472], + [9.178961, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.582465], + [9.178961, 45.591458], + [9.187954, 45.591458], + [9.187954, 45.582465], + [9.178961, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.591458], + [9.178961, 45.600451], + [9.187954, 45.600451], + [9.187954, 45.591458], + [9.178961, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.600451], + [9.178961, 45.609445], + [9.187954, 45.609445], + [9.187954, 45.600451], + [9.178961, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.609445], + [9.178961, 45.618438], + [9.187954, 45.618438], + [9.187954, 45.609445], + [9.178961, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.618438], + [9.178961, 45.627431], + [9.187954, 45.627431], + [9.187954, 45.618438], + [9.178961, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.627431], + [9.178961, 45.636424], + [9.187954, 45.636424], + [9.187954, 45.627431], + [9.178961, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.339648], + [9.187954, 45.348642], + [9.196948, 45.348642], + [9.196948, 45.339648], + [9.187954, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.348642], + [9.187954, 45.357635], + [9.196948, 45.357635], + [9.196948, 45.348642], + [9.187954, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.357635], + [9.187954, 45.366628], + [9.196948, 45.366628], + [9.196948, 45.357635], + [9.187954, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.366628], + [9.187954, 45.375621], + [9.196948, 45.375621], + [9.196948, 45.366628], + [9.187954, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.375621], + [9.187954, 45.384614], + [9.196948, 45.384614], + [9.196948, 45.375621], + [9.187954, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.384614], + [9.187954, 45.393608], + [9.196948, 45.393608], + [9.196948, 45.384614], + [9.187954, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.393608], + [9.187954, 45.402601], + [9.196948, 45.402601], + [9.196948, 45.393608], + [9.187954, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.402601], + [9.187954, 45.411594], + [9.196948, 45.411594], + [9.196948, 45.402601], + [9.187954, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.411594], + [9.187954, 45.420587], + [9.196948, 45.420587], + [9.196948, 45.411594], + [9.187954, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.420587], + [9.187954, 45.42958], + [9.196948, 45.42958], + [9.196948, 45.420587], + [9.187954, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.42958], + [9.187954, 45.438574], + [9.196948, 45.438574], + [9.196948, 45.42958], + [9.187954, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.438574], + [9.187954, 45.447567], + [9.196948, 45.447567], + [9.196948, 45.438574], + [9.187954, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.447567], + [9.187954, 45.45656], + [9.196948, 45.45656], + [9.196948, 45.447567], + [9.187954, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.45656], + [9.187954, 45.465553], + [9.196948, 45.465553], + [9.196948, 45.45656], + [9.187954, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.465553], + [9.187954, 45.474547], + [9.196948, 45.474547], + [9.196948, 45.465553], + [9.187954, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.474547], + [9.187954, 45.48354], + [9.196948, 45.48354], + [9.196948, 45.474547], + [9.187954, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.48354], + [9.187954, 45.492533], + [9.196948, 45.492533], + [9.196948, 45.48354], + [9.187954, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.492533], + [9.187954, 45.501526], + [9.196948, 45.501526], + [9.196948, 45.492533], + [9.187954, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.501526], + [9.187954, 45.510519], + [9.196948, 45.510519], + [9.196948, 45.501526], + [9.187954, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.510519], + [9.187954, 45.519513], + [9.196948, 45.519513], + [9.196948, 45.510519], + [9.187954, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#0065c2", + "fill": "#0065c2", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.519513], + [9.187954, 45.528506], + [9.196948, 45.528506], + [9.196948, 45.519513], + [9.187954, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 51, + "stroke": "#000000", + "fill": "#000000", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.528506], + [9.187954, 45.537499], + [9.196948, 45.537499], + [9.196948, 45.528506], + [9.187954, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 50, + "stroke": "#00080f", + "fill": "#00080f", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.537499], + [9.187954, 45.546492], + [9.196948, 45.546492], + [9.196948, 45.537499], + [9.187954, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 41, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.546492], + [9.187954, 45.555485], + [9.196948, 45.555485], + [9.196948, 45.546492], + [9.187954, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#0065c2", + "fill": "#0065c2", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.555485], + [9.187954, 45.564479], + [9.196948, 45.564479], + [9.196948, 45.555485], + [9.187954, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.564479], + [9.187954, 45.573472], + [9.196948, 45.573472], + [9.196948, 45.564479], + [9.187954, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.573472], + [9.187954, 45.582465], + [9.196948, 45.582465], + [9.196948, 45.573472], + [9.187954, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.582465], + [9.187954, 45.591458], + [9.196948, 45.591458], + [9.196948, 45.582465], + [9.187954, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.591458], + [9.187954, 45.600451], + [9.196948, 45.600451], + [9.196948, 45.591458], + [9.187954, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.600451], + [9.187954, 45.609445], + [9.196948, 45.609445], + [9.196948, 45.600451], + [9.187954, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.609445], + [9.187954, 45.618438], + [9.196948, 45.618438], + [9.196948, 45.609445], + [9.187954, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.618438], + [9.187954, 45.627431], + [9.196948, 45.627431], + [9.196948, 45.618438], + [9.187954, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.627431], + [9.187954, 45.636424], + [9.196948, 45.636424], + [9.196948, 45.627431], + [9.187954, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.339648], + [9.196948, 45.348642], + [9.205941, 45.348642], + [9.205941, 45.339648], + [9.196948, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.348642], + [9.196948, 45.357635], + [9.205941, 45.357635], + [9.205941, 45.348642], + [9.196948, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.357635], + [9.196948, 45.366628], + [9.205941, 45.366628], + [9.205941, 45.357635], + [9.196948, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.366628], + [9.196948, 45.375621], + [9.205941, 45.375621], + [9.205941, 45.366628], + [9.196948, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.375621], + [9.196948, 45.384614], + [9.205941, 45.384614], + [9.205941, 45.375621], + [9.196948, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.384614], + [9.196948, 45.393608], + [9.205941, 45.393608], + [9.205941, 45.384614], + [9.196948, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.393608], + [9.196948, 45.402601], + [9.205941, 45.402601], + [9.205941, 45.393608], + [9.196948, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.402601], + [9.196948, 45.411594], + [9.205941, 45.411594], + [9.205941, 45.402601], + [9.196948, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.411594], + [9.196948, 45.420587], + [9.205941, 45.420587], + [9.205941, 45.411594], + [9.196948, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.420587], + [9.196948, 45.42958], + [9.205941, 45.42958], + [9.205941, 45.420587], + [9.196948, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.42958], + [9.196948, 45.438574], + [9.205941, 45.438574], + [9.205941, 45.42958], + [9.196948, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.438574], + [9.196948, 45.447567], + [9.205941, 45.447567], + [9.205941, 45.438574], + [9.196948, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.447567], + [9.196948, 45.45656], + [9.205941, 45.45656], + [9.205941, 45.447567], + [9.196948, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.45656], + [9.196948, 45.465553], + [9.205941, 45.465553], + [9.205941, 45.45656], + [9.196948, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.465553], + [9.196948, 45.474547], + [9.205941, 45.474547], + [9.205941, 45.465553], + [9.196948, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.474547], + [9.196948, 45.48354], + [9.205941, 45.48354], + [9.205941, 45.474547], + [9.196948, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.48354], + [9.196948, 45.492533], + [9.205941, 45.492533], + [9.205941, 45.48354], + [9.196948, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.492533], + [9.196948, 45.501526], + [9.205941, 45.501526], + [9.205941, 45.492533], + [9.196948, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.501526], + [9.196948, 45.510519], + [9.205941, 45.510519], + [9.205941, 45.501526], + [9.196948, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.510519], + [9.196948, 45.519513], + [9.205941, 45.519513], + [9.205941, 45.510519], + [9.196948, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#0065c2", + "fill": "#0065c2", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.519513], + [9.196948, 45.528506], + [9.205941, 45.528506], + [9.205941, 45.519513], + [9.196948, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 48, + "stroke": "#001529", + "fill": "#001529", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.528506], + [9.196948, 45.537499], + [9.205941, 45.537499], + [9.205941, 45.528506], + [9.196948, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 48, + "stroke": "#001529", + "fill": "#001529", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.537499], + [9.196948, 45.546492], + [9.205941, 45.546492], + [9.205941, 45.537499], + [9.196948, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 40, + "stroke": "#005099", + "fill": "#005099", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.546492], + [9.196948, 45.555485], + [9.205941, 45.555485], + [9.205941, 45.546492], + [9.196948, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#0065c2", + "fill": "#0065c2", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.555485], + [9.196948, 45.564479], + [9.205941, 45.564479], + [9.205941, 45.555485], + [9.196948, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.564479], + [9.196948, 45.573472], + [9.205941, 45.573472], + [9.205941, 45.564479], + [9.196948, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.573472], + [9.196948, 45.582465], + [9.205941, 45.582465], + [9.205941, 45.573472], + [9.196948, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.582465], + [9.196948, 45.591458], + [9.205941, 45.591458], + [9.205941, 45.582465], + [9.196948, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.591458], + [9.196948, 45.600451], + [9.205941, 45.600451], + [9.205941, 45.591458], + [9.196948, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.600451], + [9.196948, 45.609445], + [9.205941, 45.609445], + [9.205941, 45.600451], + [9.196948, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.609445], + [9.196948, 45.618438], + [9.205941, 45.618438], + [9.205941, 45.609445], + [9.196948, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.618438], + [9.196948, 45.627431], + [9.205941, 45.627431], + [9.205941, 45.618438], + [9.196948, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.627431], + [9.196948, 45.636424], + [9.205941, 45.636424], + [9.205941, 45.627431], + [9.196948, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.339648], + [9.205941, 45.348642], + [9.214934, 45.348642], + [9.214934, 45.339648], + [9.205941, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.348642], + [9.205941, 45.357635], + [9.214934, 45.357635], + [9.214934, 45.348642], + [9.205941, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.357635], + [9.205941, 45.366628], + [9.214934, 45.366628], + [9.214934, 45.357635], + [9.205941, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.366628], + [9.205941, 45.375621], + [9.214934, 45.375621], + [9.214934, 45.366628], + [9.205941, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.375621], + [9.205941, 45.384614], + [9.214934, 45.384614], + [9.214934, 45.375621], + [9.205941, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.384614], + [9.205941, 45.393608], + [9.214934, 45.393608], + [9.214934, 45.384614], + [9.205941, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.393608], + [9.205941, 45.402601], + [9.214934, 45.402601], + [9.214934, 45.393608], + [9.205941, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.402601], + [9.205941, 45.411594], + [9.214934, 45.411594], + [9.214934, 45.402601], + [9.205941, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.411594], + [9.205941, 45.420587], + [9.214934, 45.420587], + [9.214934, 45.411594], + [9.205941, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.420587], + [9.205941, 45.42958], + [9.214934, 45.42958], + [9.214934, 45.420587], + [9.205941, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.42958], + [9.205941, 45.438574], + [9.214934, 45.438574], + [9.214934, 45.42958], + [9.205941, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.438574], + [9.205941, 45.447567], + [9.214934, 45.447567], + [9.214934, 45.438574], + [9.205941, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.447567], + [9.205941, 45.45656], + [9.214934, 45.45656], + [9.214934, 45.447567], + [9.205941, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.45656], + [9.205941, 45.465553], + [9.214934, 45.465553], + [9.214934, 45.45656], + [9.205941, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.465553], + [9.205941, 45.474547], + [9.214934, 45.474547], + [9.214934, 45.465553], + [9.205941, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.474547], + [9.205941, 45.48354], + [9.214934, 45.48354], + [9.214934, 45.474547], + [9.205941, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.48354], + [9.205941, 45.492533], + [9.214934, 45.492533], + [9.214934, 45.48354], + [9.205941, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.492533], + [9.205941, 45.501526], + [9.214934, 45.501526], + [9.214934, 45.492533], + [9.205941, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.501526], + [9.205941, 45.510519], + [9.214934, 45.510519], + [9.214934, 45.501526], + [9.205941, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.510519], + [9.205941, 45.519513], + [9.214934, 45.519513], + [9.214934, 45.510519], + [9.205941, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.519513], + [9.205941, 45.528506], + [9.214934, 45.528506], + [9.214934, 45.519513], + [9.205941, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 40, + "stroke": "#005099", + "fill": "#005099", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.528506], + [9.205941, 45.537499], + [9.214934, 45.537499], + [9.214934, 45.528506], + [9.205941, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#00407a", + "fill": "#00407a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.537499], + [9.205941, 45.546492], + [9.214934, 45.546492], + [9.214934, 45.537499], + [9.205941, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0055a3", + "fill": "#0055a3", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.546492], + [9.205941, 45.555485], + [9.214934, 45.555485], + [9.214934, 45.546492], + [9.205941, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#006dd1", + "fill": "#006dd1", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.555485], + [9.205941, 45.564479], + [9.214934, 45.564479], + [9.214934, 45.555485], + [9.205941, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.564479], + [9.205941, 45.573472], + [9.214934, 45.573472], + [9.214934, 45.564479], + [9.205941, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.573472], + [9.205941, 45.582465], + [9.214934, 45.582465], + [9.214934, 45.573472], + [9.205941, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.582465], + [9.205941, 45.591458], + [9.214934, 45.591458], + [9.214934, 45.582465], + [9.205941, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.591458], + [9.205941, 45.600451], + [9.214934, 45.600451], + [9.214934, 45.591458], + [9.205941, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.600451], + [9.205941, 45.609445], + [9.214934, 45.609445], + [9.214934, 45.600451], + [9.205941, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.609445], + [9.205941, 45.618438], + [9.214934, 45.618438], + [9.214934, 45.609445], + [9.205941, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.618438], + [9.205941, 45.627431], + [9.214934, 45.627431], + [9.214934, 45.618438], + [9.205941, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.627431], + [9.205941, 45.636424], + [9.214934, 45.636424], + [9.214934, 45.627431], + [9.205941, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.339648], + [9.214934, 45.348642], + [9.223927, 45.348642], + [9.223927, 45.339648], + [9.214934, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.348642], + [9.214934, 45.357635], + [9.223927, 45.357635], + [9.223927, 45.348642], + [9.214934, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.357635], + [9.214934, 45.366628], + [9.223927, 45.366628], + [9.223927, 45.357635], + [9.214934, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.366628], + [9.214934, 45.375621], + [9.223927, 45.375621], + [9.223927, 45.366628], + [9.214934, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.375621], + [9.214934, 45.384614], + [9.223927, 45.384614], + [9.223927, 45.375621], + [9.214934, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.384614], + [9.214934, 45.393608], + [9.223927, 45.393608], + [9.223927, 45.384614], + [9.214934, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.393608], + [9.214934, 45.402601], + [9.223927, 45.402601], + [9.223927, 45.393608], + [9.214934, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.402601], + [9.214934, 45.411594], + [9.223927, 45.411594], + [9.223927, 45.402601], + [9.214934, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.411594], + [9.214934, 45.420587], + [9.223927, 45.420587], + [9.223927, 45.411594], + [9.214934, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.420587], + [9.214934, 45.42958], + [9.223927, 45.42958], + [9.223927, 45.420587], + [9.214934, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.42958], + [9.214934, 45.438574], + [9.223927, 45.438574], + [9.223927, 45.42958], + [9.214934, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.438574], + [9.214934, 45.447567], + [9.223927, 45.447567], + [9.223927, 45.438574], + [9.214934, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.447567], + [9.214934, 45.45656], + [9.223927, 45.45656], + [9.223927, 45.447567], + [9.214934, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.45656], + [9.214934, 45.465553], + [9.223927, 45.465553], + [9.223927, 45.45656], + [9.214934, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.465553], + [9.214934, 45.474547], + [9.223927, 45.474547], + [9.223927, 45.465553], + [9.214934, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.474547], + [9.214934, 45.48354], + [9.223927, 45.48354], + [9.223927, 45.474547], + [9.214934, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.48354], + [9.214934, 45.492533], + [9.223927, 45.492533], + [9.223927, 45.48354], + [9.214934, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.492533], + [9.214934, 45.501526], + [9.223927, 45.501526], + [9.223927, 45.492533], + [9.214934, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.501526], + [9.214934, 45.510519], + [9.223927, 45.510519], + [9.223927, 45.501526], + [9.214934, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.510519], + [9.214934, 45.519513], + [9.223927, 45.519513], + [9.223927, 45.510519], + [9.214934, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.519513], + [9.214934, 45.528506], + [9.223927, 45.528506], + [9.223927, 45.519513], + [9.214934, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#006dd1", + "fill": "#006dd1", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.528506], + [9.214934, 45.537499], + [9.223927, 45.537499], + [9.223927, 45.528506], + [9.214934, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#005db3", + "fill": "#005db3", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.537499], + [9.214934, 45.546492], + [9.223927, 45.546492], + [9.223927, 45.537499], + [9.214934, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#006dd1", + "fill": "#006dd1", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.546492], + [9.214934, 45.555485], + [9.223927, 45.555485], + [9.223927, 45.546492], + [9.214934, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.555485], + [9.214934, 45.564479], + [9.223927, 45.564479], + [9.223927, 45.555485], + [9.214934, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.564479], + [9.214934, 45.573472], + [9.223927, 45.573472], + [9.223927, 45.564479], + [9.214934, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.573472], + [9.214934, 45.582465], + [9.223927, 45.582465], + [9.223927, 45.573472], + [9.214934, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.582465], + [9.214934, 45.591458], + [9.223927, 45.591458], + [9.223927, 45.582465], + [9.214934, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.591458], + [9.214934, 45.600451], + [9.223927, 45.600451], + [9.223927, 45.591458], + [9.214934, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.600451], + [9.214934, 45.609445], + [9.223927, 45.609445], + [9.223927, 45.600451], + [9.214934, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.609445], + [9.214934, 45.618438], + [9.223927, 45.618438], + [9.223927, 45.609445], + [9.214934, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.618438], + [9.214934, 45.627431], + [9.223927, 45.627431], + [9.223927, 45.618438], + [9.214934, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.627431], + [9.214934, 45.636424], + [9.223927, 45.636424], + [9.223927, 45.627431], + [9.214934, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.339648], + [9.223927, 45.348642], + [9.232921, 45.348642], + [9.232921, 45.339648], + [9.223927, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.348642], + [9.223927, 45.357635], + [9.232921, 45.357635], + [9.232921, 45.348642], + [9.223927, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.357635], + [9.223927, 45.366628], + [9.232921, 45.366628], + [9.232921, 45.357635], + [9.223927, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.366628], + [9.223927, 45.375621], + [9.232921, 45.375621], + [9.232921, 45.366628], + [9.223927, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.375621], + [9.223927, 45.384614], + [9.232921, 45.384614], + [9.232921, 45.375621], + [9.223927, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.384614], + [9.223927, 45.393608], + [9.232921, 45.393608], + [9.232921, 45.384614], + [9.223927, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.393608], + [9.223927, 45.402601], + [9.232921, 45.402601], + [9.232921, 45.393608], + [9.223927, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.402601], + [9.223927, 45.411594], + [9.232921, 45.411594], + [9.232921, 45.402601], + [9.223927, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.411594], + [9.223927, 45.420587], + [9.232921, 45.420587], + [9.232921, 45.411594], + [9.223927, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.420587], + [9.223927, 45.42958], + [9.232921, 45.42958], + [9.232921, 45.420587], + [9.223927, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.42958], + [9.223927, 45.438574], + [9.232921, 45.438574], + [9.232921, 45.42958], + [9.223927, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.438574], + [9.223927, 45.447567], + [9.232921, 45.447567], + [9.232921, 45.438574], + [9.223927, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.447567], + [9.223927, 45.45656], + [9.232921, 45.45656], + [9.232921, 45.447567], + [9.223927, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.45656], + [9.223927, 45.465553], + [9.232921, 45.465553], + [9.232921, 45.45656], + [9.223927, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.465553], + [9.223927, 45.474547], + [9.232921, 45.474547], + [9.232921, 45.465553], + [9.223927, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.474547], + [9.223927, 45.48354], + [9.232921, 45.48354], + [9.232921, 45.474547], + [9.223927, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.48354], + [9.223927, 45.492533], + [9.232921, 45.492533], + [9.232921, 45.48354], + [9.223927, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.492533], + [9.223927, 45.501526], + [9.232921, 45.501526], + [9.232921, 45.492533], + [9.223927, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.501526], + [9.223927, 45.510519], + [9.232921, 45.510519], + [9.232921, 45.501526], + [9.223927, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.510519], + [9.223927, 45.519513], + [9.232921, 45.519513], + [9.232921, 45.510519], + [9.223927, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.519513], + [9.223927, 45.528506], + [9.232921, 45.528506], + [9.232921, 45.519513], + [9.223927, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.528506], + [9.223927, 45.537499], + [9.232921, 45.537499], + [9.232921, 45.528506], + [9.223927, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.537499], + [9.223927, 45.546492], + [9.232921, 45.546492], + [9.232921, 45.537499], + [9.223927, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.546492], + [9.223927, 45.555485], + [9.232921, 45.555485], + [9.232921, 45.546492], + [9.223927, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.555485], + [9.223927, 45.564479], + [9.232921, 45.564479], + [9.232921, 45.555485], + [9.223927, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.564479], + [9.223927, 45.573472], + [9.232921, 45.573472], + [9.232921, 45.564479], + [9.223927, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.573472], + [9.223927, 45.582465], + [9.232921, 45.582465], + [9.232921, 45.573472], + [9.223927, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.582465], + [9.223927, 45.591458], + [9.232921, 45.591458], + [9.232921, 45.582465], + [9.223927, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.591458], + [9.223927, 45.600451], + [9.232921, 45.600451], + [9.232921, 45.591458], + [9.223927, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.600451], + [9.223927, 45.609445], + [9.232921, 45.609445], + [9.232921, 45.600451], + [9.223927, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.609445], + [9.223927, 45.618438], + [9.232921, 45.618438], + [9.232921, 45.609445], + [9.223927, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.618438], + [9.223927, 45.627431], + [9.232921, 45.627431], + [9.232921, 45.618438], + [9.223927, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.627431], + [9.223927, 45.636424], + [9.232921, 45.636424], + [9.232921, 45.627431], + [9.223927, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.339648], + [9.232921, 45.348642], + [9.241914, 45.348642], + [9.241914, 45.339648], + [9.232921, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.348642], + [9.232921, 45.357635], + [9.241914, 45.357635], + [9.241914, 45.348642], + [9.232921, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.357635], + [9.232921, 45.366628], + [9.241914, 45.366628], + [9.241914, 45.357635], + [9.232921, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.366628], + [9.232921, 45.375621], + [9.241914, 45.375621], + [9.241914, 45.366628], + [9.232921, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.375621], + [9.232921, 45.384614], + [9.241914, 45.384614], + [9.241914, 45.375621], + [9.232921, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.384614], + [9.232921, 45.393608], + [9.241914, 45.393608], + [9.241914, 45.384614], + [9.232921, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.393608], + [9.232921, 45.402601], + [9.241914, 45.402601], + [9.241914, 45.393608], + [9.232921, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.402601], + [9.232921, 45.411594], + [9.241914, 45.411594], + [9.241914, 45.402601], + [9.232921, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.411594], + [9.232921, 45.420587], + [9.241914, 45.420587], + [9.241914, 45.411594], + [9.232921, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.420587], + [9.232921, 45.42958], + [9.241914, 45.42958], + [9.241914, 45.420587], + [9.232921, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.42958], + [9.232921, 45.438574], + [9.241914, 45.438574], + [9.241914, 45.42958], + [9.232921, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.438574], + [9.232921, 45.447567], + [9.241914, 45.447567], + [9.241914, 45.438574], + [9.232921, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.447567], + [9.232921, 45.45656], + [9.241914, 45.45656], + [9.241914, 45.447567], + [9.232921, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.45656], + [9.232921, 45.465553], + [9.241914, 45.465553], + [9.241914, 45.45656], + [9.232921, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.465553], + [9.232921, 45.474547], + [9.241914, 45.474547], + [9.241914, 45.465553], + [9.232921, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.474547], + [9.232921, 45.48354], + [9.241914, 45.48354], + [9.241914, 45.474547], + [9.232921, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.48354], + [9.232921, 45.492533], + [9.241914, 45.492533], + [9.241914, 45.48354], + [9.232921, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.492533], + [9.232921, 45.501526], + [9.241914, 45.501526], + [9.241914, 45.492533], + [9.232921, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.501526], + [9.232921, 45.510519], + [9.241914, 45.510519], + [9.241914, 45.501526], + [9.232921, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.510519], + [9.232921, 45.519513], + [9.241914, 45.519513], + [9.241914, 45.510519], + [9.232921, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.519513], + [9.232921, 45.528506], + [9.241914, 45.528506], + [9.241914, 45.519513], + [9.232921, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.528506], + [9.232921, 45.537499], + [9.241914, 45.537499], + [9.241914, 45.528506], + [9.232921, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.537499], + [9.232921, 45.546492], + [9.241914, 45.546492], + [9.241914, 45.537499], + [9.232921, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.546492], + [9.232921, 45.555485], + [9.241914, 45.555485], + [9.241914, 45.546492], + [9.232921, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.555485], + [9.232921, 45.564479], + [9.241914, 45.564479], + [9.241914, 45.555485], + [9.232921, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.564479], + [9.232921, 45.573472], + [9.241914, 45.573472], + [9.241914, 45.564479], + [9.232921, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.573472], + [9.232921, 45.582465], + [9.241914, 45.582465], + [9.241914, 45.573472], + [9.232921, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.582465], + [9.232921, 45.591458], + [9.241914, 45.591458], + [9.241914, 45.582465], + [9.232921, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.591458], + [9.232921, 45.600451], + [9.241914, 45.600451], + [9.241914, 45.591458], + [9.232921, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.600451], + [9.232921, 45.609445], + [9.241914, 45.609445], + [9.241914, 45.600451], + [9.232921, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.609445], + [9.232921, 45.618438], + [9.241914, 45.618438], + [9.241914, 45.609445], + [9.232921, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.618438], + [9.232921, 45.627431], + [9.241914, 45.627431], + [9.241914, 45.618438], + [9.232921, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.627431], + [9.232921, 45.636424], + [9.241914, 45.636424], + [9.241914, 45.627431], + [9.232921, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.339648], + [9.241914, 45.348642], + [9.250907, 45.348642], + [9.250907, 45.339648], + [9.241914, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.348642], + [9.241914, 45.357635], + [9.250907, 45.357635], + [9.250907, 45.348642], + [9.241914, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.357635], + [9.241914, 45.366628], + [9.250907, 45.366628], + [9.250907, 45.357635], + [9.241914, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.366628], + [9.241914, 45.375621], + [9.250907, 45.375621], + [9.250907, 45.366628], + [9.241914, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.375621], + [9.241914, 45.384614], + [9.250907, 45.384614], + [9.250907, 45.375621], + [9.241914, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.384614], + [9.241914, 45.393608], + [9.250907, 45.393608], + [9.250907, 45.384614], + [9.241914, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.393608], + [9.241914, 45.402601], + [9.250907, 45.402601], + [9.250907, 45.393608], + [9.241914, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.402601], + [9.241914, 45.411594], + [9.250907, 45.411594], + [9.250907, 45.402601], + [9.241914, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.411594], + [9.241914, 45.420587], + [9.250907, 45.420587], + [9.250907, 45.411594], + [9.241914, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.420587], + [9.241914, 45.42958], + [9.250907, 45.42958], + [9.250907, 45.420587], + [9.241914, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.42958], + [9.241914, 45.438574], + [9.250907, 45.438574], + [9.250907, 45.42958], + [9.241914, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.438574], + [9.241914, 45.447567], + [9.250907, 45.447567], + [9.250907, 45.438574], + [9.241914, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.447567], + [9.241914, 45.45656], + [9.250907, 45.45656], + [9.250907, 45.447567], + [9.241914, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.45656], + [9.241914, 45.465553], + [9.250907, 45.465553], + [9.250907, 45.45656], + [9.241914, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.465553], + [9.241914, 45.474547], + [9.250907, 45.474547], + [9.250907, 45.465553], + [9.241914, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.474547], + [9.241914, 45.48354], + [9.250907, 45.48354], + [9.250907, 45.474547], + [9.241914, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.48354], + [9.241914, 45.492533], + [9.250907, 45.492533], + [9.250907, 45.48354], + [9.241914, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.492533], + [9.241914, 45.501526], + [9.250907, 45.501526], + [9.250907, 45.492533], + [9.241914, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.501526], + [9.241914, 45.510519], + [9.250907, 45.510519], + [9.250907, 45.501526], + [9.241914, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.510519], + [9.241914, 45.519513], + [9.250907, 45.519513], + [9.250907, 45.510519], + [9.241914, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.519513], + [9.241914, 45.528506], + [9.250907, 45.528506], + [9.250907, 45.519513], + [9.241914, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.528506], + [9.241914, 45.537499], + [9.250907, 45.537499], + [9.250907, 45.528506], + [9.241914, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.537499], + [9.241914, 45.546492], + [9.250907, 45.546492], + [9.250907, 45.537499], + [9.241914, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.546492], + [9.241914, 45.555485], + [9.250907, 45.555485], + [9.250907, 45.546492], + [9.241914, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.555485], + [9.241914, 45.564479], + [9.250907, 45.564479], + [9.250907, 45.555485], + [9.241914, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.564479], + [9.241914, 45.573472], + [9.250907, 45.573472], + [9.250907, 45.564479], + [9.241914, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.573472], + [9.241914, 45.582465], + [9.250907, 45.582465], + [9.250907, 45.573472], + [9.241914, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.582465], + [9.241914, 45.591458], + [9.250907, 45.591458], + [9.250907, 45.582465], + [9.241914, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.591458], + [9.241914, 45.600451], + [9.250907, 45.600451], + [9.250907, 45.591458], + [9.241914, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.600451], + [9.241914, 45.609445], + [9.250907, 45.609445], + [9.250907, 45.600451], + [9.241914, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.609445], + [9.241914, 45.618438], + [9.250907, 45.618438], + [9.250907, 45.609445], + [9.241914, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.618438], + [9.241914, 45.627431], + [9.250907, 45.627431], + [9.250907, 45.618438], + [9.241914, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.627431], + [9.241914, 45.636424], + [9.250907, 45.636424], + [9.250907, 45.627431], + [9.241914, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.339648], + [9.250907, 45.348642], + [9.2599, 45.348642], + [9.2599, 45.339648], + [9.250907, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.348642], + [9.250907, 45.357635], + [9.2599, 45.357635], + [9.2599, 45.348642], + [9.250907, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.357635], + [9.250907, 45.366628], + [9.2599, 45.366628], + [9.2599, 45.357635], + [9.250907, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.366628], + [9.250907, 45.375621], + [9.2599, 45.375621], + [9.2599, 45.366628], + [9.250907, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.375621], + [9.250907, 45.384614], + [9.2599, 45.384614], + [9.2599, 45.375621], + [9.250907, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.384614], + [9.250907, 45.393608], + [9.2599, 45.393608], + [9.2599, 45.384614], + [9.250907, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.393608], + [9.250907, 45.402601], + [9.2599, 45.402601], + [9.2599, 45.393608], + [9.250907, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.402601], + [9.250907, 45.411594], + [9.2599, 45.411594], + [9.2599, 45.402601], + [9.250907, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.411594], + [9.250907, 45.420587], + [9.2599, 45.420587], + [9.2599, 45.411594], + [9.250907, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.420587], + [9.250907, 45.42958], + [9.2599, 45.42958], + [9.2599, 45.420587], + [9.250907, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.42958], + [9.250907, 45.438574], + [9.2599, 45.438574], + [9.2599, 45.42958], + [9.250907, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.438574], + [9.250907, 45.447567], + [9.2599, 45.447567], + [9.2599, 45.438574], + [9.250907, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.447567], + [9.250907, 45.45656], + [9.2599, 45.45656], + [9.2599, 45.447567], + [9.250907, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.45656], + [9.250907, 45.465553], + [9.2599, 45.465553], + [9.2599, 45.45656], + [9.250907, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.465553], + [9.250907, 45.474547], + [9.2599, 45.474547], + [9.2599, 45.465553], + [9.250907, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.474547], + [9.250907, 45.48354], + [9.2599, 45.48354], + [9.2599, 45.474547], + [9.250907, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.48354], + [9.250907, 45.492533], + [9.2599, 45.492533], + [9.2599, 45.48354], + [9.250907, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.492533], + [9.250907, 45.501526], + [9.2599, 45.501526], + [9.2599, 45.492533], + [9.250907, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.501526], + [9.250907, 45.510519], + [9.2599, 45.510519], + [9.2599, 45.501526], + [9.250907, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.510519], + [9.250907, 45.519513], + [9.2599, 45.519513], + [9.2599, 45.510519], + [9.250907, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.519513], + [9.250907, 45.528506], + [9.2599, 45.528506], + [9.2599, 45.519513], + [9.250907, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.528506], + [9.250907, 45.537499], + [9.2599, 45.537499], + [9.2599, 45.528506], + [9.250907, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.537499], + [9.250907, 45.546492], + [9.2599, 45.546492], + [9.2599, 45.537499], + [9.250907, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.546492], + [9.250907, 45.555485], + [9.2599, 45.555485], + [9.2599, 45.546492], + [9.250907, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.555485], + [9.250907, 45.564479], + [9.2599, 45.564479], + [9.2599, 45.555485], + [9.250907, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.564479], + [9.250907, 45.573472], + [9.2599, 45.573472], + [9.2599, 45.564479], + [9.250907, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.573472], + [9.250907, 45.582465], + [9.2599, 45.582465], + [9.2599, 45.573472], + [9.250907, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.582465], + [9.250907, 45.591458], + [9.2599, 45.591458], + [9.2599, 45.582465], + [9.250907, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.591458], + [9.250907, 45.600451], + [9.2599, 45.600451], + [9.2599, 45.591458], + [9.250907, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.600451], + [9.250907, 45.609445], + [9.2599, 45.609445], + [9.2599, 45.600451], + [9.250907, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.609445], + [9.250907, 45.618438], + [9.2599, 45.618438], + [9.2599, 45.609445], + [9.250907, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.618438], + [9.250907, 45.627431], + [9.2599, 45.627431], + [9.2599, 45.618438], + [9.250907, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.627431], + [9.250907, 45.636424], + [9.2599, 45.636424], + [9.2599, 45.627431], + [9.250907, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.339648], + [9.2599, 45.348642], + [9.268893, 45.348642], + [9.268893, 45.339648], + [9.2599, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.348642], + [9.2599, 45.357635], + [9.268893, 45.357635], + [9.268893, 45.348642], + [9.2599, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.357635], + [9.2599, 45.366628], + [9.268893, 45.366628], + [9.268893, 45.357635], + [9.2599, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.366628], + [9.2599, 45.375621], + [9.268893, 45.375621], + [9.268893, 45.366628], + [9.2599, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.375621], + [9.2599, 45.384614], + [9.268893, 45.384614], + [9.268893, 45.375621], + [9.2599, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.384614], + [9.2599, 45.393608], + [9.268893, 45.393608], + [9.268893, 45.384614], + [9.2599, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.393608], + [9.2599, 45.402601], + [9.268893, 45.402601], + [9.268893, 45.393608], + [9.2599, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.402601], + [9.2599, 45.411594], + [9.268893, 45.411594], + [9.268893, 45.402601], + [9.2599, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.411594], + [9.2599, 45.420587], + [9.268893, 45.420587], + [9.268893, 45.411594], + [9.2599, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.420587], + [9.2599, 45.42958], + [9.268893, 45.42958], + [9.268893, 45.420587], + [9.2599, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.42958], + [9.2599, 45.438574], + [9.268893, 45.438574], + [9.268893, 45.42958], + [9.2599, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.438574], + [9.2599, 45.447567], + [9.268893, 45.447567], + [9.268893, 45.438574], + [9.2599, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.447567], + [9.2599, 45.45656], + [9.268893, 45.45656], + [9.268893, 45.447567], + [9.2599, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.45656], + [9.2599, 45.465553], + [9.268893, 45.465553], + [9.268893, 45.45656], + [9.2599, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.465553], + [9.2599, 45.474547], + [9.268893, 45.474547], + [9.268893, 45.465553], + [9.2599, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.474547], + [9.2599, 45.48354], + [9.268893, 45.48354], + [9.268893, 45.474547], + [9.2599, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.48354], + [9.2599, 45.492533], + [9.268893, 45.492533], + [9.268893, 45.48354], + [9.2599, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.492533], + [9.2599, 45.501526], + [9.268893, 45.501526], + [9.268893, 45.492533], + [9.2599, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.501526], + [9.2599, 45.510519], + [9.268893, 45.510519], + [9.268893, 45.501526], + [9.2599, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.510519], + [9.2599, 45.519513], + [9.268893, 45.519513], + [9.268893, 45.510519], + [9.2599, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.519513], + [9.2599, 45.528506], + [9.268893, 45.528506], + [9.268893, 45.519513], + [9.2599, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.528506], + [9.2599, 45.537499], + [9.268893, 45.537499], + [9.268893, 45.528506], + [9.2599, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.537499], + [9.2599, 45.546492], + [9.268893, 45.546492], + [9.268893, 45.537499], + [9.2599, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.546492], + [9.2599, 45.555485], + [9.268893, 45.555485], + [9.268893, 45.546492], + [9.2599, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.555485], + [9.2599, 45.564479], + [9.268893, 45.564479], + [9.268893, 45.555485], + [9.2599, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.564479], + [9.2599, 45.573472], + [9.268893, 45.573472], + [9.268893, 45.564479], + [9.2599, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.573472], + [9.2599, 45.582465], + [9.268893, 45.582465], + [9.268893, 45.573472], + [9.2599, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.582465], + [9.2599, 45.591458], + [9.268893, 45.591458], + [9.268893, 45.582465], + [9.2599, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.591458], + [9.2599, 45.600451], + [9.268893, 45.600451], + [9.268893, 45.591458], + [9.2599, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.600451], + [9.2599, 45.609445], + [9.268893, 45.609445], + [9.268893, 45.600451], + [9.2599, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.609445], + [9.2599, 45.618438], + [9.268893, 45.618438], + [9.268893, 45.609445], + [9.2599, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.618438], + [9.2599, 45.627431], + [9.268893, 45.627431], + [9.268893, 45.618438], + [9.2599, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.627431], + [9.2599, 45.636424], + [9.268893, 45.636424], + [9.268893, 45.627431], + [9.2599, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.339648], + [9.268893, 45.348642], + [9.277887, 45.348642], + [9.277887, 45.339648], + [9.268893, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.348642], + [9.268893, 45.357635], + [9.277887, 45.357635], + [9.277887, 45.348642], + [9.268893, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.357635], + [9.268893, 45.366628], + [9.277887, 45.366628], + [9.277887, 45.357635], + [9.268893, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.366628], + [9.268893, 45.375621], + [9.277887, 45.375621], + [9.277887, 45.366628], + [9.268893, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.375621], + [9.268893, 45.384614], + [9.277887, 45.384614], + [9.277887, 45.375621], + [9.268893, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.384614], + [9.268893, 45.393608], + [9.277887, 45.393608], + [9.277887, 45.384614], + [9.268893, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.393608], + [9.268893, 45.402601], + [9.277887, 45.402601], + [9.277887, 45.393608], + [9.268893, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.402601], + [9.268893, 45.411594], + [9.277887, 45.411594], + [9.277887, 45.402601], + [9.268893, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.411594], + [9.268893, 45.420587], + [9.277887, 45.420587], + [9.277887, 45.411594], + [9.268893, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.420587], + [9.268893, 45.42958], + [9.277887, 45.42958], + [9.277887, 45.420587], + [9.268893, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.42958], + [9.268893, 45.438574], + [9.277887, 45.438574], + [9.277887, 45.42958], + [9.268893, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.438574], + [9.268893, 45.447567], + [9.277887, 45.447567], + [9.277887, 45.438574], + [9.268893, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.447567], + [9.268893, 45.45656], + [9.277887, 45.45656], + [9.277887, 45.447567], + [9.268893, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.45656], + [9.268893, 45.465553], + [9.277887, 45.465553], + [9.277887, 45.45656], + [9.268893, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.465553], + [9.268893, 45.474547], + [9.277887, 45.474547], + [9.277887, 45.465553], + [9.268893, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.474547], + [9.268893, 45.48354], + [9.277887, 45.48354], + [9.277887, 45.474547], + [9.268893, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.48354], + [9.268893, 45.492533], + [9.277887, 45.492533], + [9.277887, 45.48354], + [9.268893, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.492533], + [9.268893, 45.501526], + [9.277887, 45.501526], + [9.277887, 45.492533], + [9.268893, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.501526], + [9.268893, 45.510519], + [9.277887, 45.510519], + [9.277887, 45.501526], + [9.268893, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.510519], + [9.268893, 45.519513], + [9.277887, 45.519513], + [9.277887, 45.510519], + [9.268893, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.519513], + [9.268893, 45.528506], + [9.277887, 45.528506], + [9.277887, 45.519513], + [9.268893, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.528506], + [9.268893, 45.537499], + [9.277887, 45.537499], + [9.277887, 45.528506], + [9.268893, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.537499], + [9.268893, 45.546492], + [9.277887, 45.546492], + [9.277887, 45.537499], + [9.268893, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.546492], + [9.268893, 45.555485], + [9.277887, 45.555485], + [9.277887, 45.546492], + [9.268893, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.555485], + [9.268893, 45.564479], + [9.277887, 45.564479], + [9.277887, 45.555485], + [9.268893, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.564479], + [9.268893, 45.573472], + [9.277887, 45.573472], + [9.277887, 45.564479], + [9.268893, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.573472], + [9.268893, 45.582465], + [9.277887, 45.582465], + [9.277887, 45.573472], + [9.268893, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.582465], + [9.268893, 45.591458], + [9.277887, 45.591458], + [9.277887, 45.582465], + [9.268893, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.591458], + [9.268893, 45.600451], + [9.277887, 45.600451], + [9.277887, 45.591458], + [9.268893, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.600451], + [9.268893, 45.609445], + [9.277887, 45.609445], + [9.277887, 45.600451], + [9.268893, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.609445], + [9.268893, 45.618438], + [9.277887, 45.618438], + [9.277887, 45.609445], + [9.268893, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.618438], + [9.268893, 45.627431], + [9.277887, 45.627431], + [9.277887, 45.618438], + [9.268893, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.627431], + [9.268893, 45.636424], + [9.277887, 45.636424], + [9.277887, 45.627431], + [9.268893, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.339648], + [9.277887, 45.348642], + [9.28688, 45.348642], + [9.28688, 45.339648], + [9.277887, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.348642], + [9.277887, 45.357635], + [9.28688, 45.357635], + [9.28688, 45.348642], + [9.277887, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.357635], + [9.277887, 45.366628], + [9.28688, 45.366628], + [9.28688, 45.357635], + [9.277887, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.366628], + [9.277887, 45.375621], + [9.28688, 45.375621], + [9.28688, 45.366628], + [9.277887, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.375621], + [9.277887, 45.384614], + [9.28688, 45.384614], + [9.28688, 45.375621], + [9.277887, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.384614], + [9.277887, 45.393608], + [9.28688, 45.393608], + [9.28688, 45.384614], + [9.277887, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.393608], + [9.277887, 45.402601], + [9.28688, 45.402601], + [9.28688, 45.393608], + [9.277887, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.402601], + [9.277887, 45.411594], + [9.28688, 45.411594], + [9.28688, 45.402601], + [9.277887, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.411594], + [9.277887, 45.420587], + [9.28688, 45.420587], + [9.28688, 45.411594], + [9.277887, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.420587], + [9.277887, 45.42958], + [9.28688, 45.42958], + [9.28688, 45.420587], + [9.277887, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.42958], + [9.277887, 45.438574], + [9.28688, 45.438574], + [9.28688, 45.42958], + [9.277887, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.438574], + [9.277887, 45.447567], + [9.28688, 45.447567], + [9.28688, 45.438574], + [9.277887, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.447567], + [9.277887, 45.45656], + [9.28688, 45.45656], + [9.28688, 45.447567], + [9.277887, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.45656], + [9.277887, 45.465553], + [9.28688, 45.465553], + [9.28688, 45.45656], + [9.277887, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.465553], + [9.277887, 45.474547], + [9.28688, 45.474547], + [9.28688, 45.465553], + [9.277887, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.474547], + [9.277887, 45.48354], + [9.28688, 45.48354], + [9.28688, 45.474547], + [9.277887, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.48354], + [9.277887, 45.492533], + [9.28688, 45.492533], + [9.28688, 45.48354], + [9.277887, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.492533], + [9.277887, 45.501526], + [9.28688, 45.501526], + [9.28688, 45.492533], + [9.277887, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.501526], + [9.277887, 45.510519], + [9.28688, 45.510519], + [9.28688, 45.501526], + [9.277887, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.510519], + [9.277887, 45.519513], + [9.28688, 45.519513], + [9.28688, 45.510519], + [9.277887, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.519513], + [9.277887, 45.528506], + [9.28688, 45.528506], + [9.28688, 45.519513], + [9.277887, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.528506], + [9.277887, 45.537499], + [9.28688, 45.537499], + [9.28688, 45.528506], + [9.277887, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.537499], + [9.277887, 45.546492], + [9.28688, 45.546492], + [9.28688, 45.537499], + [9.277887, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.546492], + [9.277887, 45.555485], + [9.28688, 45.555485], + [9.28688, 45.546492], + [9.277887, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.555485], + [9.277887, 45.564479], + [9.28688, 45.564479], + [9.28688, 45.555485], + [9.277887, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.564479], + [9.277887, 45.573472], + [9.28688, 45.573472], + [9.28688, 45.564479], + [9.277887, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.573472], + [9.277887, 45.582465], + [9.28688, 45.582465], + [9.28688, 45.573472], + [9.277887, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.582465], + [9.277887, 45.591458], + [9.28688, 45.591458], + [9.28688, 45.582465], + [9.277887, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.591458], + [9.277887, 45.600451], + [9.28688, 45.600451], + [9.28688, 45.591458], + [9.277887, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.600451], + [9.277887, 45.609445], + [9.28688, 45.609445], + [9.28688, 45.600451], + [9.277887, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.609445], + [9.277887, 45.618438], + [9.28688, 45.618438], + [9.28688, 45.609445], + [9.277887, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.618438], + [9.277887, 45.627431], + [9.28688, 45.627431], + [9.28688, 45.618438], + [9.277887, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.627431], + [9.277887, 45.636424], + [9.28688, 45.636424], + [9.28688, 45.627431], + [9.277887, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.339648], + [9.28688, 45.348642], + [9.295873, 45.348642], + [9.295873, 45.339648], + [9.28688, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.348642], + [9.28688, 45.357635], + [9.295873, 45.357635], + [9.295873, 45.348642], + [9.28688, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.357635], + [9.28688, 45.366628], + [9.295873, 45.366628], + [9.295873, 45.357635], + [9.28688, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.366628], + [9.28688, 45.375621], + [9.295873, 45.375621], + [9.295873, 45.366628], + [9.28688, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.375621], + [9.28688, 45.384614], + [9.295873, 45.384614], + [9.295873, 45.375621], + [9.28688, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.384614], + [9.28688, 45.393608], + [9.295873, 45.393608], + [9.295873, 45.384614], + [9.28688, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.393608], + [9.28688, 45.402601], + [9.295873, 45.402601], + [9.295873, 45.393608], + [9.28688, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.402601], + [9.28688, 45.411594], + [9.295873, 45.411594], + [9.295873, 45.402601], + [9.28688, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.411594], + [9.28688, 45.420587], + [9.295873, 45.420587], + [9.295873, 45.411594], + [9.28688, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.420587], + [9.28688, 45.42958], + [9.295873, 45.42958], + [9.295873, 45.420587], + [9.28688, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.42958], + [9.28688, 45.438574], + [9.295873, 45.438574], + [9.295873, 45.42958], + [9.28688, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.438574], + [9.28688, 45.447567], + [9.295873, 45.447567], + [9.295873, 45.438574], + [9.28688, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.447567], + [9.28688, 45.45656], + [9.295873, 45.45656], + [9.295873, 45.447567], + [9.28688, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.45656], + [9.28688, 45.465553], + [9.295873, 45.465553], + [9.295873, 45.45656], + [9.28688, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.465553], + [9.28688, 45.474547], + [9.295873, 45.474547], + [9.295873, 45.465553], + [9.28688, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.474547], + [9.28688, 45.48354], + [9.295873, 45.48354], + [9.295873, 45.474547], + [9.28688, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.48354], + [9.28688, 45.492533], + [9.295873, 45.492533], + [9.295873, 45.48354], + [9.28688, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.492533], + [9.28688, 45.501526], + [9.295873, 45.501526], + [9.295873, 45.492533], + [9.28688, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.501526], + [9.28688, 45.510519], + [9.295873, 45.510519], + [9.295873, 45.501526], + [9.28688, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.510519], + [9.28688, 45.519513], + [9.295873, 45.519513], + [9.295873, 45.510519], + [9.28688, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.519513], + [9.28688, 45.528506], + [9.295873, 45.528506], + [9.295873, 45.519513], + [9.28688, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.528506], + [9.28688, 45.537499], + [9.295873, 45.537499], + [9.295873, 45.528506], + [9.28688, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.537499], + [9.28688, 45.546492], + [9.295873, 45.546492], + [9.295873, 45.537499], + [9.28688, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.546492], + [9.28688, 45.555485], + [9.295873, 45.555485], + [9.295873, 45.546492], + [9.28688, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.555485], + [9.28688, 45.564479], + [9.295873, 45.564479], + [9.295873, 45.555485], + [9.28688, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.564479], + [9.28688, 45.573472], + [9.295873, 45.573472], + [9.295873, 45.564479], + [9.28688, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.573472], + [9.28688, 45.582465], + [9.295873, 45.582465], + [9.295873, 45.573472], + [9.28688, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.582465], + [9.28688, 45.591458], + [9.295873, 45.591458], + [9.295873, 45.582465], + [9.28688, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.591458], + [9.28688, 45.600451], + [9.295873, 45.600451], + [9.295873, 45.591458], + [9.28688, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.600451], + [9.28688, 45.609445], + [9.295873, 45.609445], + [9.295873, 45.600451], + [9.28688, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.609445], + [9.28688, 45.618438], + [9.295873, 45.618438], + [9.295873, 45.609445], + [9.28688, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.618438], + [9.28688, 45.627431], + [9.295873, 45.627431], + [9.295873, 45.618438], + [9.28688, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.627431], + [9.28688, 45.636424], + [9.295873, 45.636424], + [9.295873, 45.627431], + [9.28688, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.339648], + [9.295873, 45.348642], + [9.304866, 45.348642], + [9.304866, 45.339648], + [9.295873, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.348642], + [9.295873, 45.357635], + [9.304866, 45.357635], + [9.304866, 45.348642], + [9.295873, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.357635], + [9.295873, 45.366628], + [9.304866, 45.366628], + [9.304866, 45.357635], + [9.295873, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.366628], + [9.295873, 45.375621], + [9.304866, 45.375621], + [9.304866, 45.366628], + [9.295873, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.375621], + [9.295873, 45.384614], + [9.304866, 45.384614], + [9.304866, 45.375621], + [9.295873, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.384614], + [9.295873, 45.393608], + [9.304866, 45.393608], + [9.304866, 45.384614], + [9.295873, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.393608], + [9.295873, 45.402601], + [9.304866, 45.402601], + [9.304866, 45.393608], + [9.295873, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.402601], + [9.295873, 45.411594], + [9.304866, 45.411594], + [9.304866, 45.402601], + [9.295873, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.411594], + [9.295873, 45.420587], + [9.304866, 45.420587], + [9.304866, 45.411594], + [9.295873, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.420587], + [9.295873, 45.42958], + [9.304866, 45.42958], + [9.304866, 45.420587], + [9.295873, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.42958], + [9.295873, 45.438574], + [9.304866, 45.438574], + [9.304866, 45.42958], + [9.295873, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.438574], + [9.295873, 45.447567], + [9.304866, 45.447567], + [9.304866, 45.438574], + [9.295873, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.447567], + [9.295873, 45.45656], + [9.304866, 45.45656], + [9.304866, 45.447567], + [9.295873, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.45656], + [9.295873, 45.465553], + [9.304866, 45.465553], + [9.304866, 45.45656], + [9.295873, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.465553], + [9.295873, 45.474547], + [9.304866, 45.474547], + [9.304866, 45.465553], + [9.295873, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.474547], + [9.295873, 45.48354], + [9.304866, 45.48354], + [9.304866, 45.474547], + [9.295873, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.48354], + [9.295873, 45.492533], + [9.304866, 45.492533], + [9.304866, 45.48354], + [9.295873, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.492533], + [9.295873, 45.501526], + [9.304866, 45.501526], + [9.304866, 45.492533], + [9.295873, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.501526], + [9.295873, 45.510519], + [9.304866, 45.510519], + [9.304866, 45.501526], + [9.295873, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.510519], + [9.295873, 45.519513], + [9.304866, 45.519513], + [9.304866, 45.510519], + [9.295873, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.519513], + [9.295873, 45.528506], + [9.304866, 45.528506], + [9.304866, 45.519513], + [9.295873, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.528506], + [9.295873, 45.537499], + [9.304866, 45.537499], + [9.304866, 45.528506], + [9.295873, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.537499], + [9.295873, 45.546492], + [9.304866, 45.546492], + [9.304866, 45.537499], + [9.295873, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.546492], + [9.295873, 45.555485], + [9.304866, 45.555485], + [9.304866, 45.546492], + [9.295873, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.555485], + [9.295873, 45.564479], + [9.304866, 45.564479], + [9.304866, 45.555485], + [9.295873, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.564479], + [9.295873, 45.573472], + [9.304866, 45.573472], + [9.304866, 45.564479], + [9.295873, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.573472], + [9.295873, 45.582465], + [9.304866, 45.582465], + [9.304866, 45.573472], + [9.295873, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.582465], + [9.295873, 45.591458], + [9.304866, 45.591458], + [9.304866, 45.582465], + [9.295873, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.591458], + [9.295873, 45.600451], + [9.304866, 45.600451], + [9.304866, 45.591458], + [9.295873, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.600451], + [9.295873, 45.609445], + [9.304866, 45.609445], + [9.304866, 45.600451], + [9.295873, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.609445], + [9.295873, 45.618438], + [9.304866, 45.618438], + [9.304866, 45.609445], + [9.295873, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.618438], + [9.295873, 45.627431], + [9.304866, 45.627431], + [9.304866, 45.618438], + [9.295873, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.627431], + [9.295873, 45.636424], + [9.304866, 45.636424], + [9.304866, 45.627431], + [9.295873, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.339648], + [9.304866, 45.348642], + [9.313859, 45.348642], + [9.313859, 45.339648], + [9.304866, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.348642], + [9.304866, 45.357635], + [9.313859, 45.357635], + [9.313859, 45.348642], + [9.304866, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.357635], + [9.304866, 45.366628], + [9.313859, 45.366628], + [9.313859, 45.357635], + [9.304866, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.366628], + [9.304866, 45.375621], + [9.313859, 45.375621], + [9.313859, 45.366628], + [9.304866, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.375621], + [9.304866, 45.384614], + [9.313859, 45.384614], + [9.313859, 45.375621], + [9.304866, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.384614], + [9.304866, 45.393608], + [9.313859, 45.393608], + [9.313859, 45.384614], + [9.304866, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.393608], + [9.304866, 45.402601], + [9.313859, 45.402601], + [9.313859, 45.393608], + [9.304866, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.402601], + [9.304866, 45.411594], + [9.313859, 45.411594], + [9.313859, 45.402601], + [9.304866, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.411594], + [9.304866, 45.420587], + [9.313859, 45.420587], + [9.313859, 45.411594], + [9.304866, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.420587], + [9.304866, 45.42958], + [9.313859, 45.42958], + [9.313859, 45.420587], + [9.304866, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.42958], + [9.304866, 45.438574], + [9.313859, 45.438574], + [9.313859, 45.42958], + [9.304866, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.438574], + [9.304866, 45.447567], + [9.313859, 45.447567], + [9.313859, 45.438574], + [9.304866, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.447567], + [9.304866, 45.45656], + [9.313859, 45.45656], + [9.313859, 45.447567], + [9.304866, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.45656], + [9.304866, 45.465553], + [9.313859, 45.465553], + [9.313859, 45.45656], + [9.304866, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.465553], + [9.304866, 45.474547], + [9.313859, 45.474547], + [9.313859, 45.465553], + [9.304866, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.474547], + [9.304866, 45.48354], + [9.313859, 45.48354], + [9.313859, 45.474547], + [9.304866, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.48354], + [9.304866, 45.492533], + [9.313859, 45.492533], + [9.313859, 45.48354], + [9.304866, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.492533], + [9.304866, 45.501526], + [9.313859, 45.501526], + [9.313859, 45.492533], + [9.304866, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.501526], + [9.304866, 45.510519], + [9.313859, 45.510519], + [9.313859, 45.501526], + [9.304866, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.510519], + [9.304866, 45.519513], + [9.313859, 45.519513], + [9.313859, 45.510519], + [9.304866, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.519513], + [9.304866, 45.528506], + [9.313859, 45.528506], + [9.313859, 45.519513], + [9.304866, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.528506], + [9.304866, 45.537499], + [9.313859, 45.537499], + [9.313859, 45.528506], + [9.304866, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.537499], + [9.304866, 45.546492], + [9.313859, 45.546492], + [9.313859, 45.537499], + [9.304866, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.546492], + [9.304866, 45.555485], + [9.313859, 45.555485], + [9.313859, 45.546492], + [9.304866, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.555485], + [9.304866, 45.564479], + [9.313859, 45.564479], + [9.313859, 45.555485], + [9.304866, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.564479], + [9.304866, 45.573472], + [9.313859, 45.573472], + [9.313859, 45.564479], + [9.304866, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.573472], + [9.304866, 45.582465], + [9.313859, 45.582465], + [9.313859, 45.573472], + [9.304866, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.582465], + [9.304866, 45.591458], + [9.313859, 45.591458], + [9.313859, 45.582465], + [9.304866, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.591458], + [9.304866, 45.600451], + [9.313859, 45.600451], + [9.313859, 45.591458], + [9.304866, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.600451], + [9.304866, 45.609445], + [9.313859, 45.609445], + [9.313859, 45.600451], + [9.304866, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.609445], + [9.304866, 45.618438], + [9.313859, 45.618438], + [9.313859, 45.609445], + [9.304866, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.618438], + [9.304866, 45.627431], + [9.313859, 45.627431], + [9.313859, 45.618438], + [9.304866, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.627431], + [9.304866, 45.636424], + [9.313859, 45.636424], + [9.313859, 45.627431], + [9.304866, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.339648], + [9.313859, 45.348642], + [9.322853, 45.348642], + [9.322853, 45.339648], + [9.313859, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.348642], + [9.313859, 45.357635], + [9.322853, 45.357635], + [9.322853, 45.348642], + [9.313859, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.357635], + [9.313859, 45.366628], + [9.322853, 45.366628], + [9.322853, 45.357635], + [9.313859, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.366628], + [9.313859, 45.375621], + [9.322853, 45.375621], + [9.322853, 45.366628], + [9.313859, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.375621], + [9.313859, 45.384614], + [9.322853, 45.384614], + [9.322853, 45.375621], + [9.313859, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.384614], + [9.313859, 45.393608], + [9.322853, 45.393608], + [9.322853, 45.384614], + [9.313859, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.393608], + [9.313859, 45.402601], + [9.322853, 45.402601], + [9.322853, 45.393608], + [9.313859, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.402601], + [9.313859, 45.411594], + [9.322853, 45.411594], + [9.322853, 45.402601], + [9.313859, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.411594], + [9.313859, 45.420587], + [9.322853, 45.420587], + [9.322853, 45.411594], + [9.313859, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.420587], + [9.313859, 45.42958], + [9.322853, 45.42958], + [9.322853, 45.420587], + [9.313859, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.42958], + [9.313859, 45.438574], + [9.322853, 45.438574], + [9.322853, 45.42958], + [9.313859, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.438574], + [9.313859, 45.447567], + [9.322853, 45.447567], + [9.322853, 45.438574], + [9.313859, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.447567], + [9.313859, 45.45656], + [9.322853, 45.45656], + [9.322853, 45.447567], + [9.313859, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.45656], + [9.313859, 45.465553], + [9.322853, 45.465553], + [9.322853, 45.45656], + [9.313859, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.465553], + [9.313859, 45.474547], + [9.322853, 45.474547], + [9.322853, 45.465553], + [9.313859, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.474547], + [9.313859, 45.48354], + [9.322853, 45.48354], + [9.322853, 45.474547], + [9.313859, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.48354], + [9.313859, 45.492533], + [9.322853, 45.492533], + [9.322853, 45.48354], + [9.313859, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.492533], + [9.313859, 45.501526], + [9.322853, 45.501526], + [9.322853, 45.492533], + [9.313859, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.501526], + [9.313859, 45.510519], + [9.322853, 45.510519], + [9.322853, 45.501526], + [9.313859, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.510519], + [9.313859, 45.519513], + [9.322853, 45.519513], + [9.322853, 45.510519], + [9.313859, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.519513], + [9.313859, 45.528506], + [9.322853, 45.528506], + [9.322853, 45.519513], + [9.313859, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.528506], + [9.313859, 45.537499], + [9.322853, 45.537499], + [9.322853, 45.528506], + [9.313859, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.537499], + [9.313859, 45.546492], + [9.322853, 45.546492], + [9.322853, 45.537499], + [9.313859, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.546492], + [9.313859, 45.555485], + [9.322853, 45.555485], + [9.322853, 45.546492], + [9.313859, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.555485], + [9.313859, 45.564479], + [9.322853, 45.564479], + [9.322853, 45.555485], + [9.313859, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.564479], + [9.313859, 45.573472], + [9.322853, 45.573472], + [9.322853, 45.564479], + [9.313859, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.573472], + [9.313859, 45.582465], + [9.322853, 45.582465], + [9.322853, 45.573472], + [9.313859, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.582465], + [9.313859, 45.591458], + [9.322853, 45.591458], + [9.322853, 45.582465], + [9.313859, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.591458], + [9.313859, 45.600451], + [9.322853, 45.600451], + [9.322853, 45.591458], + [9.313859, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.600451], + [9.313859, 45.609445], + [9.322853, 45.609445], + [9.322853, 45.600451], + [9.313859, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.609445], + [9.313859, 45.618438], + [9.322853, 45.618438], + [9.322853, 45.609445], + [9.313859, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.618438], + [9.313859, 45.627431], + [9.322853, 45.627431], + [9.322853, 45.618438], + [9.313859, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.627431], + [9.313859, 45.636424], + [9.322853, 45.636424], + [9.322853, 45.627431], + [9.313859, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.339648], + [9.322853, 45.348642], + [9.331846, 45.348642], + [9.331846, 45.339648], + [9.322853, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.348642], + [9.322853, 45.357635], + [9.331846, 45.357635], + [9.331846, 45.348642], + [9.322853, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.357635], + [9.322853, 45.366628], + [9.331846, 45.366628], + [9.331846, 45.357635], + [9.322853, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.366628], + [9.322853, 45.375621], + [9.331846, 45.375621], + [9.331846, 45.366628], + [9.322853, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.375621], + [9.322853, 45.384614], + [9.331846, 45.384614], + [9.331846, 45.375621], + [9.322853, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.384614], + [9.322853, 45.393608], + [9.331846, 45.393608], + [9.331846, 45.384614], + [9.322853, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.393608], + [9.322853, 45.402601], + [9.331846, 45.402601], + [9.331846, 45.393608], + [9.322853, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.402601], + [9.322853, 45.411594], + [9.331846, 45.411594], + [9.331846, 45.402601], + [9.322853, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.411594], + [9.322853, 45.420587], + [9.331846, 45.420587], + [9.331846, 45.411594], + [9.322853, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.420587], + [9.322853, 45.42958], + [9.331846, 45.42958], + [9.331846, 45.420587], + [9.322853, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.42958], + [9.322853, 45.438574], + [9.331846, 45.438574], + [9.331846, 45.42958], + [9.322853, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.438574], + [9.322853, 45.447567], + [9.331846, 45.447567], + [9.331846, 45.438574], + [9.322853, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.447567], + [9.322853, 45.45656], + [9.331846, 45.45656], + [9.331846, 45.447567], + [9.322853, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.45656], + [9.322853, 45.465553], + [9.331846, 45.465553], + [9.331846, 45.45656], + [9.322853, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.465553], + [9.322853, 45.474547], + [9.331846, 45.474547], + [9.331846, 45.465553], + [9.322853, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.474547], + [9.322853, 45.48354], + [9.331846, 45.48354], + [9.331846, 45.474547], + [9.322853, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.48354], + [9.322853, 45.492533], + [9.331846, 45.492533], + [9.331846, 45.48354], + [9.322853, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.492533], + [9.322853, 45.501526], + [9.331846, 45.501526], + [9.331846, 45.492533], + [9.322853, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.501526], + [9.322853, 45.510519], + [9.331846, 45.510519], + [9.331846, 45.501526], + [9.322853, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.510519], + [9.322853, 45.519513], + [9.331846, 45.519513], + [9.331846, 45.510519], + [9.322853, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.519513], + [9.322853, 45.528506], + [9.331846, 45.528506], + [9.331846, 45.519513], + [9.322853, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.528506], + [9.322853, 45.537499], + [9.331846, 45.537499], + [9.331846, 45.528506], + [9.322853, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.537499], + [9.322853, 45.546492], + [9.331846, 45.546492], + [9.331846, 45.537499], + [9.322853, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.546492], + [9.322853, 45.555485], + [9.331846, 45.555485], + [9.331846, 45.546492], + [9.322853, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.555485], + [9.322853, 45.564479], + [9.331846, 45.564479], + [9.331846, 45.555485], + [9.322853, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.564479], + [9.322853, 45.573472], + [9.331846, 45.573472], + [9.331846, 45.564479], + [9.322853, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.573472], + [9.322853, 45.582465], + [9.331846, 45.582465], + [9.331846, 45.573472], + [9.322853, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.582465], + [9.322853, 45.591458], + [9.331846, 45.591458], + [9.331846, 45.582465], + [9.322853, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.591458], + [9.322853, 45.600451], + [9.331846, 45.600451], + [9.331846, 45.591458], + [9.322853, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.600451], + [9.322853, 45.609445], + [9.331846, 45.609445], + [9.331846, 45.600451], + [9.322853, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.609445], + [9.322853, 45.618438], + [9.331846, 45.618438], + [9.331846, 45.609445], + [9.322853, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.618438], + [9.322853, 45.627431], + [9.331846, 45.627431], + [9.331846, 45.618438], + [9.322853, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.627431], + [9.322853, 45.636424], + [9.331846, 45.636424], + [9.331846, 45.627431], + [9.322853, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.339648], + [9.331846, 45.348642], + [9.340839, 45.348642], + [9.340839, 45.339648], + [9.331846, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.348642], + [9.331846, 45.357635], + [9.340839, 45.357635], + [9.340839, 45.348642], + [9.331846, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.357635], + [9.331846, 45.366628], + [9.340839, 45.366628], + [9.340839, 45.357635], + [9.331846, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.366628], + [9.331846, 45.375621], + [9.340839, 45.375621], + [9.340839, 45.366628], + [9.331846, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.375621], + [9.331846, 45.384614], + [9.340839, 45.384614], + [9.340839, 45.375621], + [9.331846, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.384614], + [9.331846, 45.393608], + [9.340839, 45.393608], + [9.340839, 45.384614], + [9.331846, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.393608], + [9.331846, 45.402601], + [9.340839, 45.402601], + [9.340839, 45.393608], + [9.331846, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.402601], + [9.331846, 45.411594], + [9.340839, 45.411594], + [9.340839, 45.402601], + [9.331846, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.411594], + [9.331846, 45.420587], + [9.340839, 45.420587], + [9.340839, 45.411594], + [9.331846, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.420587], + [9.331846, 45.42958], + [9.340839, 45.42958], + [9.340839, 45.420587], + [9.331846, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.42958], + [9.331846, 45.438574], + [9.340839, 45.438574], + [9.340839, 45.42958], + [9.331846, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.438574], + [9.331846, 45.447567], + [9.340839, 45.447567], + [9.340839, 45.438574], + [9.331846, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.447567], + [9.331846, 45.45656], + [9.340839, 45.45656], + [9.340839, 45.447567], + [9.331846, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.45656], + [9.331846, 45.465553], + [9.340839, 45.465553], + [9.340839, 45.45656], + [9.331846, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.465553], + [9.331846, 45.474547], + [9.340839, 45.474547], + [9.340839, 45.465553], + [9.331846, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.474547], + [9.331846, 45.48354], + [9.340839, 45.48354], + [9.340839, 45.474547], + [9.331846, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.48354], + [9.331846, 45.492533], + [9.340839, 45.492533], + [9.340839, 45.48354], + [9.331846, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.492533], + [9.331846, 45.501526], + [9.340839, 45.501526], + [9.340839, 45.492533], + [9.331846, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.501526], + [9.331846, 45.510519], + [9.340839, 45.510519], + [9.340839, 45.501526], + [9.331846, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.510519], + [9.331846, 45.519513], + [9.340839, 45.519513], + [9.340839, 45.510519], + [9.331846, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.519513], + [9.331846, 45.528506], + [9.340839, 45.528506], + [9.340839, 45.519513], + [9.331846, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.528506], + [9.331846, 45.537499], + [9.340839, 45.537499], + [9.340839, 45.528506], + [9.331846, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.537499], + [9.331846, 45.546492], + [9.340839, 45.546492], + [9.340839, 45.537499], + [9.331846, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.546492], + [9.331846, 45.555485], + [9.340839, 45.555485], + [9.340839, 45.546492], + [9.331846, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.555485], + [9.331846, 45.564479], + [9.340839, 45.564479], + [9.340839, 45.555485], + [9.331846, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.564479], + [9.331846, 45.573472], + [9.340839, 45.573472], + [9.340839, 45.564479], + [9.331846, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.573472], + [9.331846, 45.582465], + [9.340839, 45.582465], + [9.340839, 45.573472], + [9.331846, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.582465], + [9.331846, 45.591458], + [9.340839, 45.591458], + [9.340839, 45.582465], + [9.331846, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.591458], + [9.331846, 45.600451], + [9.340839, 45.600451], + [9.340839, 45.591458], + [9.331846, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.600451], + [9.331846, 45.609445], + [9.340839, 45.609445], + [9.340839, 45.600451], + [9.331846, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.609445], + [9.331846, 45.618438], + [9.340839, 45.618438], + [9.340839, 45.609445], + [9.331846, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.618438], + [9.331846, 45.627431], + [9.340839, 45.627431], + [9.340839, 45.618438], + [9.331846, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.627431], + [9.331846, 45.636424], + [9.340839, 45.636424], + [9.340839, 45.627431], + [9.331846, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.339648], + [9.340839, 45.348642], + [9.349832, 45.348642], + [9.349832, 45.339648], + [9.340839, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.348642], + [9.340839, 45.357635], + [9.349832, 45.357635], + [9.349832, 45.348642], + [9.340839, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.357635], + [9.340839, 45.366628], + [9.349832, 45.366628], + [9.349832, 45.357635], + [9.340839, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.366628], + [9.340839, 45.375621], + [9.349832, 45.375621], + [9.349832, 45.366628], + [9.340839, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.375621], + [9.340839, 45.384614], + [9.349832, 45.384614], + [9.349832, 45.375621], + [9.340839, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.384614], + [9.340839, 45.393608], + [9.349832, 45.393608], + [9.349832, 45.384614], + [9.340839, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.393608], + [9.340839, 45.402601], + [9.349832, 45.402601], + [9.349832, 45.393608], + [9.340839, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.402601], + [9.340839, 45.411594], + [9.349832, 45.411594], + [9.349832, 45.402601], + [9.340839, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.411594], + [9.340839, 45.420587], + [9.349832, 45.420587], + [9.349832, 45.411594], + [9.340839, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.420587], + [9.340839, 45.42958], + [9.349832, 45.42958], + [9.349832, 45.420587], + [9.340839, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.42958], + [9.340839, 45.438574], + [9.349832, 45.438574], + [9.349832, 45.42958], + [9.340839, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.438574], + [9.340839, 45.447567], + [9.349832, 45.447567], + [9.349832, 45.438574], + [9.340839, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.447567], + [9.340839, 45.45656], + [9.349832, 45.45656], + [9.349832, 45.447567], + [9.340839, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.45656], + [9.340839, 45.465553], + [9.349832, 45.465553], + [9.349832, 45.45656], + [9.340839, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.465553], + [9.340839, 45.474547], + [9.349832, 45.474547], + [9.349832, 45.465553], + [9.340839, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.474547], + [9.340839, 45.48354], + [9.349832, 45.48354], + [9.349832, 45.474547], + [9.340839, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.48354], + [9.340839, 45.492533], + [9.349832, 45.492533], + [9.349832, 45.48354], + [9.340839, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.492533], + [9.340839, 45.501526], + [9.349832, 45.501526], + [9.349832, 45.492533], + [9.340839, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.501526], + [9.340839, 45.510519], + [9.349832, 45.510519], + [9.349832, 45.501526], + [9.340839, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.510519], + [9.340839, 45.519513], + [9.349832, 45.519513], + [9.349832, 45.510519], + [9.340839, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.519513], + [9.340839, 45.528506], + [9.349832, 45.528506], + [9.349832, 45.519513], + [9.340839, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.528506], + [9.340839, 45.537499], + [9.349832, 45.537499], + [9.349832, 45.528506], + [9.340839, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.537499], + [9.340839, 45.546492], + [9.349832, 45.546492], + [9.349832, 45.537499], + [9.340839, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.546492], + [9.340839, 45.555485], + [9.349832, 45.555485], + [9.349832, 45.546492], + [9.340839, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.555485], + [9.340839, 45.564479], + [9.349832, 45.564479], + [9.349832, 45.555485], + [9.340839, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.564479], + [9.340839, 45.573472], + [9.349832, 45.573472], + [9.349832, 45.564479], + [9.340839, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.573472], + [9.340839, 45.582465], + [9.349832, 45.582465], + [9.349832, 45.573472], + [9.340839, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.582465], + [9.340839, 45.591458], + [9.349832, 45.591458], + [9.349832, 45.582465], + [9.340839, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.591458], + [9.340839, 45.600451], + [9.349832, 45.600451], + [9.349832, 45.591458], + [9.340839, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.600451], + [9.340839, 45.609445], + [9.349832, 45.609445], + [9.349832, 45.600451], + [9.340839, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.609445], + [9.340839, 45.618438], + [9.349832, 45.618438], + [9.349832, 45.609445], + [9.340839, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.618438], + [9.340839, 45.627431], + [9.349832, 45.627431], + [9.349832, 45.618438], + [9.340839, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.627431], + [9.340839, 45.636424], + [9.349832, 45.636424], + [9.349832, 45.627431], + [9.340839, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.339648], + [9.349832, 45.348642], + [9.358825, 45.348642], + [9.358825, 45.339648], + [9.349832, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.348642], + [9.349832, 45.357635], + [9.358825, 45.357635], + [9.358825, 45.348642], + [9.349832, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.357635], + [9.349832, 45.366628], + [9.358825, 45.366628], + [9.358825, 45.357635], + [9.349832, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.366628], + [9.349832, 45.375621], + [9.358825, 45.375621], + [9.358825, 45.366628], + [9.349832, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.375621], + [9.349832, 45.384614], + [9.358825, 45.384614], + [9.358825, 45.375621], + [9.349832, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.384614], + [9.349832, 45.393608], + [9.358825, 45.393608], + [9.358825, 45.384614], + [9.349832, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.393608], + [9.349832, 45.402601], + [9.358825, 45.402601], + [9.358825, 45.393608], + [9.349832, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.402601], + [9.349832, 45.411594], + [9.358825, 45.411594], + [9.358825, 45.402601], + [9.349832, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.411594], + [9.349832, 45.420587], + [9.358825, 45.420587], + [9.358825, 45.411594], + [9.349832, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.420587], + [9.349832, 45.42958], + [9.358825, 45.42958], + [9.358825, 45.420587], + [9.349832, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.42958], + [9.349832, 45.438574], + [9.358825, 45.438574], + [9.358825, 45.42958], + [9.349832, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.438574], + [9.349832, 45.447567], + [9.358825, 45.447567], + [9.358825, 45.438574], + [9.349832, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.447567], + [9.349832, 45.45656], + [9.358825, 45.45656], + [9.358825, 45.447567], + [9.349832, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.45656], + [9.349832, 45.465553], + [9.358825, 45.465553], + [9.358825, 45.45656], + [9.349832, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.465553], + [9.349832, 45.474547], + [9.358825, 45.474547], + [9.358825, 45.465553], + [9.349832, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.474547], + [9.349832, 45.48354], + [9.358825, 45.48354], + [9.358825, 45.474547], + [9.349832, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.48354], + [9.349832, 45.492533], + [9.358825, 45.492533], + [9.358825, 45.48354], + [9.349832, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.492533], + [9.349832, 45.501526], + [9.358825, 45.501526], + [9.358825, 45.492533], + [9.349832, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.501526], + [9.349832, 45.510519], + [9.358825, 45.510519], + [9.358825, 45.501526], + [9.349832, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.510519], + [9.349832, 45.519513], + [9.358825, 45.519513], + [9.358825, 45.510519], + [9.349832, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.519513], + [9.349832, 45.528506], + [9.358825, 45.528506], + [9.358825, 45.519513], + [9.349832, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.528506], + [9.349832, 45.537499], + [9.358825, 45.537499], + [9.358825, 45.528506], + [9.349832, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.537499], + [9.349832, 45.546492], + [9.358825, 45.546492], + [9.358825, 45.537499], + [9.349832, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.546492], + [9.349832, 45.555485], + [9.358825, 45.555485], + [9.358825, 45.546492], + [9.349832, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.555485], + [9.349832, 45.564479], + [9.358825, 45.564479], + [9.358825, 45.555485], + [9.349832, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.564479], + [9.349832, 45.573472], + [9.358825, 45.573472], + [9.358825, 45.564479], + [9.349832, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.573472], + [9.349832, 45.582465], + [9.358825, 45.582465], + [9.358825, 45.573472], + [9.349832, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.582465], + [9.349832, 45.591458], + [9.358825, 45.591458], + [9.358825, 45.582465], + [9.349832, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.591458], + [9.349832, 45.600451], + [9.358825, 45.600451], + [9.358825, 45.591458], + [9.349832, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.600451], + [9.349832, 45.609445], + [9.358825, 45.609445], + [9.358825, 45.600451], + [9.349832, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.609445], + [9.349832, 45.618438], + [9.358825, 45.618438], + [9.358825, 45.609445], + [9.349832, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.618438], + [9.349832, 45.627431], + [9.358825, 45.627431], + [9.358825, 45.618438], + [9.349832, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.627431], + [9.349832, 45.636424], + [9.358825, 45.636424], + [9.358825, 45.627431], + [9.349832, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.339648], + [9.358825, 45.348642], + [9.367819, 45.348642], + [9.367819, 45.339648], + [9.358825, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.348642], + [9.358825, 45.357635], + [9.367819, 45.357635], + [9.367819, 45.348642], + [9.358825, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.357635], + [9.358825, 45.366628], + [9.367819, 45.366628], + [9.367819, 45.357635], + [9.358825, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.366628], + [9.358825, 45.375621], + [9.367819, 45.375621], + [9.367819, 45.366628], + [9.358825, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.375621], + [9.358825, 45.384614], + [9.367819, 45.384614], + [9.367819, 45.375621], + [9.358825, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.384614], + [9.358825, 45.393608], + [9.367819, 45.393608], + [9.367819, 45.384614], + [9.358825, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.393608], + [9.358825, 45.402601], + [9.367819, 45.402601], + [9.367819, 45.393608], + [9.358825, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.402601], + [9.358825, 45.411594], + [9.367819, 45.411594], + [9.367819, 45.402601], + [9.358825, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.411594], + [9.358825, 45.420587], + [9.367819, 45.420587], + [9.367819, 45.411594], + [9.358825, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.420587], + [9.358825, 45.42958], + [9.367819, 45.42958], + [9.367819, 45.420587], + [9.358825, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.42958], + [9.358825, 45.438574], + [9.367819, 45.438574], + [9.367819, 45.42958], + [9.358825, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.438574], + [9.358825, 45.447567], + [9.367819, 45.447567], + [9.367819, 45.438574], + [9.358825, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.447567], + [9.358825, 45.45656], + [9.367819, 45.45656], + [9.367819, 45.447567], + [9.358825, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.45656], + [9.358825, 45.465553], + [9.367819, 45.465553], + [9.367819, 45.45656], + [9.358825, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.465553], + [9.358825, 45.474547], + [9.367819, 45.474547], + [9.367819, 45.465553], + [9.358825, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.474547], + [9.358825, 45.48354], + [9.367819, 45.48354], + [9.367819, 45.474547], + [9.358825, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.48354], + [9.358825, 45.492533], + [9.367819, 45.492533], + [9.367819, 45.48354], + [9.358825, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.492533], + [9.358825, 45.501526], + [9.367819, 45.501526], + [9.367819, 45.492533], + [9.358825, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.501526], + [9.358825, 45.510519], + [9.367819, 45.510519], + [9.367819, 45.501526], + [9.358825, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.510519], + [9.358825, 45.519513], + [9.367819, 45.519513], + [9.367819, 45.510519], + [9.358825, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.519513], + [9.358825, 45.528506], + [9.367819, 45.528506], + [9.367819, 45.519513], + [9.358825, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.528506], + [9.358825, 45.537499], + [9.367819, 45.537499], + [9.367819, 45.528506], + [9.358825, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.537499], + [9.358825, 45.546492], + [9.367819, 45.546492], + [9.367819, 45.537499], + [9.358825, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.546492], + [9.358825, 45.555485], + [9.367819, 45.555485], + [9.367819, 45.546492], + [9.358825, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.555485], + [9.358825, 45.564479], + [9.367819, 45.564479], + [9.367819, 45.555485], + [9.358825, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.564479], + [9.358825, 45.573472], + [9.367819, 45.573472], + [9.367819, 45.564479], + [9.358825, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.573472], + [9.358825, 45.582465], + [9.367819, 45.582465], + [9.367819, 45.573472], + [9.358825, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.582465], + [9.358825, 45.591458], + [9.367819, 45.591458], + [9.367819, 45.582465], + [9.358825, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.591458], + [9.358825, 45.600451], + [9.367819, 45.600451], + [9.367819, 45.591458], + [9.358825, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.600451], + [9.358825, 45.609445], + [9.367819, 45.609445], + [9.367819, 45.600451], + [9.358825, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.609445], + [9.358825, 45.618438], + [9.367819, 45.618438], + [9.367819, 45.609445], + [9.358825, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.618438], + [9.358825, 45.627431], + [9.367819, 45.627431], + [9.367819, 45.618438], + [9.358825, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.627431], + [9.358825, 45.636424], + [9.367819, 45.636424], + [9.367819, 45.627431], + [9.358825, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.339648], + [9.367819, 45.348642], + [9.376812, 45.348642], + [9.376812, 45.339648], + [9.367819, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.348642], + [9.367819, 45.357635], + [9.376812, 45.357635], + [9.376812, 45.348642], + [9.367819, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.357635], + [9.367819, 45.366628], + [9.376812, 45.366628], + [9.376812, 45.357635], + [9.367819, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.366628], + [9.367819, 45.375621], + [9.376812, 45.375621], + [9.376812, 45.366628], + [9.367819, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.375621], + [9.367819, 45.384614], + [9.376812, 45.384614], + [9.376812, 45.375621], + [9.367819, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.384614], + [9.367819, 45.393608], + [9.376812, 45.393608], + [9.376812, 45.384614], + [9.367819, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.393608], + [9.367819, 45.402601], + [9.376812, 45.402601], + [9.376812, 45.393608], + [9.367819, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.402601], + [9.367819, 45.411594], + [9.376812, 45.411594], + [9.376812, 45.402601], + [9.367819, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.411594], + [9.367819, 45.420587], + [9.376812, 45.420587], + [9.376812, 45.411594], + [9.367819, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.420587], + [9.367819, 45.42958], + [9.376812, 45.42958], + [9.376812, 45.420587], + [9.367819, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.42958], + [9.367819, 45.438574], + [9.376812, 45.438574], + [9.376812, 45.42958], + [9.367819, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.438574], + [9.367819, 45.447567], + [9.376812, 45.447567], + [9.376812, 45.438574], + [9.367819, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.447567], + [9.367819, 45.45656], + [9.376812, 45.45656], + [9.376812, 45.447567], + [9.367819, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.45656], + [9.367819, 45.465553], + [9.376812, 45.465553], + [9.376812, 45.45656], + [9.367819, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.465553], + [9.367819, 45.474547], + [9.376812, 45.474547], + [9.376812, 45.465553], + [9.367819, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.474547], + [9.367819, 45.48354], + [9.376812, 45.48354], + [9.376812, 45.474547], + [9.367819, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.48354], + [9.367819, 45.492533], + [9.376812, 45.492533], + [9.376812, 45.48354], + [9.367819, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.492533], + [9.367819, 45.501526], + [9.376812, 45.501526], + [9.376812, 45.492533], + [9.367819, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.501526], + [9.367819, 45.510519], + [9.376812, 45.510519], + [9.376812, 45.501526], + [9.367819, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.510519], + [9.367819, 45.519513], + [9.376812, 45.519513], + [9.376812, 45.510519], + [9.367819, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.519513], + [9.367819, 45.528506], + [9.376812, 45.528506], + [9.376812, 45.519513], + [9.367819, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.528506], + [9.367819, 45.537499], + [9.376812, 45.537499], + [9.376812, 45.528506], + [9.367819, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.537499], + [9.367819, 45.546492], + [9.376812, 45.546492], + [9.376812, 45.537499], + [9.367819, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.546492], + [9.367819, 45.555485], + [9.376812, 45.555485], + [9.376812, 45.546492], + [9.367819, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.555485], + [9.367819, 45.564479], + [9.376812, 45.564479], + [9.376812, 45.555485], + [9.367819, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.564479], + [9.367819, 45.573472], + [9.376812, 45.573472], + [9.376812, 45.564479], + [9.367819, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.573472], + [9.367819, 45.582465], + [9.376812, 45.582465], + [9.376812, 45.573472], + [9.367819, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.582465], + [9.367819, 45.591458], + [9.376812, 45.591458], + [9.376812, 45.582465], + [9.367819, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.591458], + [9.367819, 45.600451], + [9.376812, 45.600451], + [9.376812, 45.591458], + [9.367819, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.600451], + [9.367819, 45.609445], + [9.376812, 45.609445], + [9.376812, 45.600451], + [9.367819, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.609445], + [9.367819, 45.618438], + [9.376812, 45.618438], + [9.376812, 45.609445], + [9.367819, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.618438], + [9.367819, 45.627431], + [9.376812, 45.627431], + [9.376812, 45.618438], + [9.367819, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.627431], + [9.367819, 45.636424], + [9.376812, 45.636424], + [9.376812, 45.627431], + [9.367819, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.339648], + [9.376812, 45.348642], + [9.385805, 45.348642], + [9.385805, 45.339648], + [9.376812, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.348642], + [9.376812, 45.357635], + [9.385805, 45.357635], + [9.385805, 45.348642], + [9.376812, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.357635], + [9.376812, 45.366628], + [9.385805, 45.366628], + [9.385805, 45.357635], + [9.376812, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.366628], + [9.376812, 45.375621], + [9.385805, 45.375621], + [9.385805, 45.366628], + [9.376812, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.375621], + [9.376812, 45.384614], + [9.385805, 45.384614], + [9.385805, 45.375621], + [9.376812, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.384614], + [9.376812, 45.393608], + [9.385805, 45.393608], + [9.385805, 45.384614], + [9.376812, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.393608], + [9.376812, 45.402601], + [9.385805, 45.402601], + [9.385805, 45.393608], + [9.376812, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.402601], + [9.376812, 45.411594], + [9.385805, 45.411594], + [9.385805, 45.402601], + [9.376812, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.411594], + [9.376812, 45.420587], + [9.385805, 45.420587], + [9.385805, 45.411594], + [9.376812, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.420587], + [9.376812, 45.42958], + [9.385805, 45.42958], + [9.385805, 45.420587], + [9.376812, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.42958], + [9.376812, 45.438574], + [9.385805, 45.438574], + [9.385805, 45.42958], + [9.376812, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.438574], + [9.376812, 45.447567], + [9.385805, 45.447567], + [9.385805, 45.438574], + [9.376812, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.447567], + [9.376812, 45.45656], + [9.385805, 45.45656], + [9.385805, 45.447567], + [9.376812, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.45656], + [9.376812, 45.465553], + [9.385805, 45.465553], + [9.385805, 45.45656], + [9.376812, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.465553], + [9.376812, 45.474547], + [9.385805, 45.474547], + [9.385805, 45.465553], + [9.376812, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.474547], + [9.376812, 45.48354], + [9.385805, 45.48354], + [9.385805, 45.474547], + [9.376812, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.48354], + [9.376812, 45.492533], + [9.385805, 45.492533], + [9.385805, 45.48354], + [9.376812, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.492533], + [9.376812, 45.501526], + [9.385805, 45.501526], + [9.385805, 45.492533], + [9.376812, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.501526], + [9.376812, 45.510519], + [9.385805, 45.510519], + [9.385805, 45.501526], + [9.376812, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.510519], + [9.376812, 45.519513], + [9.385805, 45.519513], + [9.385805, 45.510519], + [9.376812, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.519513], + [9.376812, 45.528506], + [9.385805, 45.528506], + [9.385805, 45.519513], + [9.376812, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.528506], + [9.376812, 45.537499], + [9.385805, 45.537499], + [9.385805, 45.528506], + [9.376812, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.537499], + [9.376812, 45.546492], + [9.385805, 45.546492], + [9.385805, 45.537499], + [9.376812, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.546492], + [9.376812, 45.555485], + [9.385805, 45.555485], + [9.385805, 45.546492], + [9.376812, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.555485], + [9.376812, 45.564479], + [9.385805, 45.564479], + [9.385805, 45.555485], + [9.376812, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.564479], + [9.376812, 45.573472], + [9.385805, 45.573472], + [9.385805, 45.564479], + [9.376812, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.573472], + [9.376812, 45.582465], + [9.385805, 45.582465], + [9.385805, 45.573472], + [9.376812, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.582465], + [9.376812, 45.591458], + [9.385805, 45.591458], + [9.385805, 45.582465], + [9.376812, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.591458], + [9.376812, 45.600451], + [9.385805, 45.600451], + [9.385805, 45.591458], + [9.376812, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.600451], + [9.376812, 45.609445], + [9.385805, 45.609445], + [9.385805, 45.600451], + [9.376812, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.609445], + [9.376812, 45.618438], + [9.385805, 45.618438], + [9.385805, 45.609445], + [9.376812, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.618438], + [9.376812, 45.627431], + [9.385805, 45.627431], + [9.385805, 45.618438], + [9.376812, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.627431], + [9.376812, 45.636424], + [9.385805, 45.636424], + [9.385805, 45.627431], + [9.376812, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.339648], + [9.385805, 45.348642], + [9.394798, 45.348642], + [9.394798, 45.339648], + [9.385805, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.348642], + [9.385805, 45.357635], + [9.394798, 45.357635], + [9.394798, 45.348642], + [9.385805, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.357635], + [9.385805, 45.366628], + [9.394798, 45.366628], + [9.394798, 45.357635], + [9.385805, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.366628], + [9.385805, 45.375621], + [9.394798, 45.375621], + [9.394798, 45.366628], + [9.385805, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.375621], + [9.385805, 45.384614], + [9.394798, 45.384614], + [9.394798, 45.375621], + [9.385805, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.384614], + [9.385805, 45.393608], + [9.394798, 45.393608], + [9.394798, 45.384614], + [9.385805, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.393608], + [9.385805, 45.402601], + [9.394798, 45.402601], + [9.394798, 45.393608], + [9.385805, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.402601], + [9.385805, 45.411594], + [9.394798, 45.411594], + [9.394798, 45.402601], + [9.385805, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.411594], + [9.385805, 45.420587], + [9.394798, 45.420587], + [9.394798, 45.411594], + [9.385805, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.420587], + [9.385805, 45.42958], + [9.394798, 45.42958], + [9.394798, 45.420587], + [9.385805, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.42958], + [9.385805, 45.438574], + [9.394798, 45.438574], + [9.394798, 45.42958], + [9.385805, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.438574], + [9.385805, 45.447567], + [9.394798, 45.447567], + [9.394798, 45.438574], + [9.385805, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.447567], + [9.385805, 45.45656], + [9.394798, 45.45656], + [9.394798, 45.447567], + [9.385805, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.45656], + [9.385805, 45.465553], + [9.394798, 45.465553], + [9.394798, 45.45656], + [9.385805, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.465553], + [9.385805, 45.474547], + [9.394798, 45.474547], + [9.394798, 45.465553], + [9.385805, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.474547], + [9.385805, 45.48354], + [9.394798, 45.48354], + [9.394798, 45.474547], + [9.385805, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.48354], + [9.385805, 45.492533], + [9.394798, 45.492533], + [9.394798, 45.48354], + [9.385805, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.492533], + [9.385805, 45.501526], + [9.394798, 45.501526], + [9.394798, 45.492533], + [9.385805, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.501526], + [9.385805, 45.510519], + [9.394798, 45.510519], + [9.394798, 45.501526], + [9.385805, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.510519], + [9.385805, 45.519513], + [9.394798, 45.519513], + [9.394798, 45.510519], + [9.385805, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.519513], + [9.385805, 45.528506], + [9.394798, 45.528506], + [9.394798, 45.519513], + [9.385805, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.528506], + [9.385805, 45.537499], + [9.394798, 45.537499], + [9.394798, 45.528506], + [9.385805, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.537499], + [9.385805, 45.546492], + [9.394798, 45.546492], + [9.394798, 45.537499], + [9.385805, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.546492], + [9.385805, 45.555485], + [9.394798, 45.555485], + [9.394798, 45.546492], + [9.385805, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.555485], + [9.385805, 45.564479], + [9.394798, 45.564479], + [9.394798, 45.555485], + [9.385805, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.564479], + [9.385805, 45.573472], + [9.394798, 45.573472], + [9.394798, 45.564479], + [9.385805, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.573472], + [9.385805, 45.582465], + [9.394798, 45.582465], + [9.394798, 45.573472], + [9.385805, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.582465], + [9.385805, 45.591458], + [9.394798, 45.591458], + [9.394798, 45.582465], + [9.385805, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.591458], + [9.385805, 45.600451], + [9.394798, 45.600451], + [9.394798, 45.591458], + [9.385805, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.600451], + [9.385805, 45.609445], + [9.394798, 45.609445], + [9.394798, 45.600451], + [9.385805, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.609445], + [9.385805, 45.618438], + [9.394798, 45.618438], + [9.394798, 45.609445], + [9.385805, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.618438], + [9.385805, 45.627431], + [9.394798, 45.627431], + [9.394798, 45.618438], + [9.385805, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.627431], + [9.385805, 45.636424], + [9.394798, 45.636424], + [9.394798, 45.627431], + [9.385805, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.339648], + [9.394798, 45.348642], + [9.403791, 45.348642], + [9.403791, 45.339648], + [9.394798, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.348642], + [9.394798, 45.357635], + [9.403791, 45.357635], + [9.403791, 45.348642], + [9.394798, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.357635], + [9.394798, 45.366628], + [9.403791, 45.366628], + [9.403791, 45.357635], + [9.394798, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.366628], + [9.394798, 45.375621], + [9.403791, 45.375621], + [9.403791, 45.366628], + [9.394798, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.375621], + [9.394798, 45.384614], + [9.403791, 45.384614], + [9.403791, 45.375621], + [9.394798, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.384614], + [9.394798, 45.393608], + [9.403791, 45.393608], + [9.403791, 45.384614], + [9.394798, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.393608], + [9.394798, 45.402601], + [9.403791, 45.402601], + [9.403791, 45.393608], + [9.394798, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.402601], + [9.394798, 45.411594], + [9.403791, 45.411594], + [9.403791, 45.402601], + [9.394798, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.411594], + [9.394798, 45.420587], + [9.403791, 45.420587], + [9.403791, 45.411594], + [9.394798, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.420587], + [9.394798, 45.42958], + [9.403791, 45.42958], + [9.403791, 45.420587], + [9.394798, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.42958], + [9.394798, 45.438574], + [9.403791, 45.438574], + [9.403791, 45.42958], + [9.394798, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.438574], + [9.394798, 45.447567], + [9.403791, 45.447567], + [9.403791, 45.438574], + [9.394798, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.447567], + [9.394798, 45.45656], + [9.403791, 45.45656], + [9.403791, 45.447567], + [9.394798, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.45656], + [9.394798, 45.465553], + [9.403791, 45.465553], + [9.403791, 45.45656], + [9.394798, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.465553], + [9.394798, 45.474547], + [9.403791, 45.474547], + [9.403791, 45.465553], + [9.394798, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.474547], + [9.394798, 45.48354], + [9.403791, 45.48354], + [9.403791, 45.474547], + [9.394798, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.48354], + [9.394798, 45.492533], + [9.403791, 45.492533], + [9.403791, 45.48354], + [9.394798, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.492533], + [9.394798, 45.501526], + [9.403791, 45.501526], + [9.403791, 45.492533], + [9.394798, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.501526], + [9.394798, 45.510519], + [9.403791, 45.510519], + [9.403791, 45.501526], + [9.394798, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.510519], + [9.394798, 45.519513], + [9.403791, 45.519513], + [9.403791, 45.510519], + [9.394798, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.519513], + [9.394798, 45.528506], + [9.403791, 45.528506], + [9.403791, 45.519513], + [9.394798, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.528506], + [9.394798, 45.537499], + [9.403791, 45.537499], + [9.403791, 45.528506], + [9.394798, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.537499], + [9.394798, 45.546492], + [9.403791, 45.546492], + [9.403791, 45.537499], + [9.394798, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.546492], + [9.394798, 45.555485], + [9.403791, 45.555485], + [9.403791, 45.546492], + [9.394798, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.555485], + [9.394798, 45.564479], + [9.403791, 45.564479], + [9.403791, 45.555485], + [9.394798, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.564479], + [9.394798, 45.573472], + [9.403791, 45.573472], + [9.403791, 45.564479], + [9.394798, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.573472], + [9.394798, 45.582465], + [9.403791, 45.582465], + [9.403791, 45.573472], + [9.394798, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.582465], + [9.394798, 45.591458], + [9.403791, 45.591458], + [9.403791, 45.582465], + [9.394798, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.591458], + [9.394798, 45.600451], + [9.403791, 45.600451], + [9.403791, 45.591458], + [9.394798, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.600451], + [9.394798, 45.609445], + [9.403791, 45.609445], + [9.403791, 45.600451], + [9.394798, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.609445], + [9.394798, 45.618438], + [9.403791, 45.618438], + [9.403791, 45.609445], + [9.394798, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.618438], + [9.394798, 45.627431], + [9.403791, 45.627431], + [9.403791, 45.618438], + [9.394798, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.627431], + [9.394798, 45.636424], + [9.403791, 45.636424], + [9.403791, 45.627431], + [9.394798, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.339648], + [9.403791, 45.348642], + [9.412785, 45.348642], + [9.412785, 45.339648], + [9.403791, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.348642], + [9.403791, 45.357635], + [9.412785, 45.357635], + [9.412785, 45.348642], + [9.403791, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.357635], + [9.403791, 45.366628], + [9.412785, 45.366628], + [9.412785, 45.357635], + [9.403791, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.366628], + [9.403791, 45.375621], + [9.412785, 45.375621], + [9.412785, 45.366628], + [9.403791, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.375621], + [9.403791, 45.384614], + [9.412785, 45.384614], + [9.412785, 45.375621], + [9.403791, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.384614], + [9.403791, 45.393608], + [9.412785, 45.393608], + [9.412785, 45.384614], + [9.403791, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.393608], + [9.403791, 45.402601], + [9.412785, 45.402601], + [9.412785, 45.393608], + [9.403791, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.402601], + [9.403791, 45.411594], + [9.412785, 45.411594], + [9.412785, 45.402601], + [9.403791, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.411594], + [9.403791, 45.420587], + [9.412785, 45.420587], + [9.412785, 45.411594], + [9.403791, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.420587], + [9.403791, 45.42958], + [9.412785, 45.42958], + [9.412785, 45.420587], + [9.403791, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.42958], + [9.403791, 45.438574], + [9.412785, 45.438574], + [9.412785, 45.42958], + [9.403791, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.438574], + [9.403791, 45.447567], + [9.412785, 45.447567], + [9.412785, 45.438574], + [9.403791, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.447567], + [9.403791, 45.45656], + [9.412785, 45.45656], + [9.412785, 45.447567], + [9.403791, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.45656], + [9.403791, 45.465553], + [9.412785, 45.465553], + [9.412785, 45.45656], + [9.403791, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.465553], + [9.403791, 45.474547], + [9.412785, 45.474547], + [9.412785, 45.465553], + [9.403791, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.474547], + [9.403791, 45.48354], + [9.412785, 45.48354], + [9.412785, 45.474547], + [9.403791, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.48354], + [9.403791, 45.492533], + [9.412785, 45.492533], + [9.412785, 45.48354], + [9.403791, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.492533], + [9.403791, 45.501526], + [9.412785, 45.501526], + [9.412785, 45.492533], + [9.403791, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.501526], + [9.403791, 45.510519], + [9.412785, 45.510519], + [9.412785, 45.501526], + [9.403791, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.510519], + [9.403791, 45.519513], + [9.412785, 45.519513], + [9.412785, 45.510519], + [9.403791, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.519513], + [9.403791, 45.528506], + [9.412785, 45.528506], + [9.412785, 45.519513], + [9.403791, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.528506], + [9.403791, 45.537499], + [9.412785, 45.537499], + [9.412785, 45.528506], + [9.403791, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.537499], + [9.403791, 45.546492], + [9.412785, 45.546492], + [9.412785, 45.537499], + [9.403791, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.546492], + [9.403791, 45.555485], + [9.412785, 45.555485], + [9.412785, 45.546492], + [9.403791, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.555485], + [9.403791, 45.564479], + [9.412785, 45.564479], + [9.412785, 45.555485], + [9.403791, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.564479], + [9.403791, 45.573472], + [9.412785, 45.573472], + [9.412785, 45.564479], + [9.403791, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.573472], + [9.403791, 45.582465], + [9.412785, 45.582465], + [9.412785, 45.573472], + [9.403791, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.582465], + [9.403791, 45.591458], + [9.412785, 45.591458], + [9.412785, 45.582465], + [9.403791, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.591458], + [9.403791, 45.600451], + [9.412785, 45.600451], + [9.412785, 45.591458], + [9.403791, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.600451], + [9.403791, 45.609445], + [9.412785, 45.609445], + [9.412785, 45.600451], + [9.403791, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.609445], + [9.403791, 45.618438], + [9.412785, 45.618438], + [9.412785, 45.609445], + [9.403791, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.618438], + [9.403791, 45.627431], + [9.412785, 45.627431], + [9.412785, 45.618438], + [9.403791, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.627431], + [9.403791, 45.636424], + [9.412785, 45.636424], + [9.412785, 45.627431], + [9.403791, 45.627431] + ] + ] + } + } + ] +} diff --git a/packages/turf-interpolate/test/out/data-500m-bbox.geojson b/packages/turf-interpolate/test/out/data-500m-bbox.geojson new file mode 100644 index 000000000..e19987337 --- /dev/null +++ b/packages/turf-interpolate/test/out/data-500m-bbox.geojson @@ -0,0 +1,117815 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.339648], + [9.032822, 45.344145], + [9.037318, 45.344145], + [9.037318, 45.339648], + [9.032822, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.344145], + [9.032822, 45.348642], + [9.037318, 45.348642], + [9.037318, 45.344145], + [9.032822, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.348642], + [9.032822, 45.353138], + [9.037318, 45.353138], + [9.037318, 45.348642], + [9.032822, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.353138], + [9.032822, 45.357635], + [9.037318, 45.357635], + [9.037318, 45.353138], + [9.032822, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.357635], + [9.032822, 45.362131], + [9.037318, 45.362131], + [9.037318, 45.357635], + [9.032822, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.362131], + [9.032822, 45.366628], + [9.037318, 45.366628], + [9.037318, 45.362131], + [9.032822, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.366628], + [9.032822, 45.371125], + [9.037318, 45.371125], + [9.037318, 45.366628], + [9.032822, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.371125], + [9.032822, 45.375621], + [9.037318, 45.375621], + [9.037318, 45.371125], + [9.032822, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.375621], + [9.032822, 45.380118], + [9.037318, 45.380118], + [9.037318, 45.375621], + [9.032822, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.380118], + [9.032822, 45.384614], + [9.037318, 45.384614], + [9.037318, 45.380118], + [9.032822, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.384614], + [9.032822, 45.389111], + [9.037318, 45.389111], + [9.037318, 45.384614], + [9.032822, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.389111], + [9.032822, 45.393608], + [9.037318, 45.393608], + [9.037318, 45.389111], + [9.032822, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.393608], + [9.032822, 45.398104], + [9.037318, 45.398104], + [9.037318, 45.393608], + [9.032822, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.398104], + [9.032822, 45.402601], + [9.037318, 45.402601], + [9.037318, 45.398104], + [9.032822, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.402601], + [9.032822, 45.407097], + [9.037318, 45.407097], + [9.037318, 45.402601], + [9.032822, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.407097], + [9.032822, 45.411594], + [9.037318, 45.411594], + [9.037318, 45.407097], + [9.032822, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.411594], + [9.032822, 45.416091], + [9.037318, 45.416091], + [9.037318, 45.411594], + [9.032822, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.416091], + [9.032822, 45.420587], + [9.037318, 45.420587], + [9.037318, 45.416091], + [9.032822, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.420587], + [9.032822, 45.425084], + [9.037318, 45.425084], + [9.037318, 45.420587], + [9.032822, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.425084], + [9.032822, 45.42958], + [9.037318, 45.42958], + [9.037318, 45.425084], + [9.032822, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.42958], + [9.032822, 45.434077], + [9.037318, 45.434077], + [9.037318, 45.42958], + [9.032822, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.434077], + [9.032822, 45.438574], + [9.037318, 45.438574], + [9.037318, 45.434077], + [9.032822, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.438574], + [9.032822, 45.44307], + [9.037318, 45.44307], + [9.037318, 45.438574], + [9.032822, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.44307], + [9.032822, 45.447567], + [9.037318, 45.447567], + [9.037318, 45.44307], + [9.032822, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.447567], + [9.032822, 45.452063], + [9.037318, 45.452063], + [9.037318, 45.447567], + [9.032822, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.452063], + [9.032822, 45.45656], + [9.037318, 45.45656], + [9.037318, 45.452063], + [9.032822, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.45656], + [9.032822, 45.461057], + [9.037318, 45.461057], + [9.037318, 45.45656], + [9.032822, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.461057], + [9.032822, 45.465553], + [9.037318, 45.465553], + [9.037318, 45.461057], + [9.032822, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.465553], + [9.032822, 45.47005], + [9.037318, 45.47005], + [9.037318, 45.465553], + [9.032822, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.47005], + [9.032822, 45.474547], + [9.037318, 45.474547], + [9.037318, 45.47005], + [9.032822, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.474547], + [9.032822, 45.479043], + [9.037318, 45.479043], + [9.037318, 45.474547], + [9.032822, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.479043], + [9.032822, 45.48354], + [9.037318, 45.48354], + [9.037318, 45.479043], + [9.032822, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.48354], + [9.032822, 45.488036], + [9.037318, 45.488036], + [9.037318, 45.48354], + [9.032822, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.488036], + [9.032822, 45.492533], + [9.037318, 45.492533], + [9.037318, 45.488036], + [9.032822, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.492533], + [9.032822, 45.49703], + [9.037318, 45.49703], + [9.037318, 45.492533], + [9.032822, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.49703], + [9.032822, 45.501526], + [9.037318, 45.501526], + [9.037318, 45.49703], + [9.032822, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.501526], + [9.032822, 45.506023], + [9.037318, 45.506023], + [9.037318, 45.501526], + [9.032822, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.506023], + [9.032822, 45.510519], + [9.037318, 45.510519], + [9.037318, 45.506023], + [9.032822, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.510519], + [9.032822, 45.515016], + [9.037318, 45.515016], + [9.037318, 45.510519], + [9.032822, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.515016], + [9.032822, 45.519513], + [9.037318, 45.519513], + [9.037318, 45.515016], + [9.032822, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.519513], + [9.032822, 45.524009], + [9.037318, 45.524009], + [9.037318, 45.519513], + [9.032822, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.524009], + [9.032822, 45.528506], + [9.037318, 45.528506], + [9.037318, 45.524009], + [9.032822, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.528506], + [9.032822, 45.533002], + [9.037318, 45.533002], + [9.037318, 45.528506], + [9.032822, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.533002], + [9.032822, 45.537499], + [9.037318, 45.537499], + [9.037318, 45.533002], + [9.032822, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.537499], + [9.032822, 45.541996], + [9.037318, 45.541996], + [9.037318, 45.537499], + [9.032822, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.541996], + [9.032822, 45.546492], + [9.037318, 45.546492], + [9.037318, 45.541996], + [9.032822, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.546492], + [9.032822, 45.550989], + [9.037318, 45.550989], + [9.037318, 45.546492], + [9.032822, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.550989], + [9.032822, 45.555485], + [9.037318, 45.555485], + [9.037318, 45.550989], + [9.032822, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.555485], + [9.032822, 45.559982], + [9.037318, 45.559982], + [9.037318, 45.555485], + [9.032822, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.559982], + [9.032822, 45.564479], + [9.037318, 45.564479], + [9.037318, 45.559982], + [9.032822, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.564479], + [9.032822, 45.568975], + [9.037318, 45.568975], + [9.037318, 45.564479], + [9.032822, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.568975], + [9.032822, 45.573472], + [9.037318, 45.573472], + [9.037318, 45.568975], + [9.032822, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.573472], + [9.032822, 45.577968], + [9.037318, 45.577968], + [9.037318, 45.573472], + [9.032822, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.577968], + [9.032822, 45.582465], + [9.037318, 45.582465], + [9.037318, 45.577968], + [9.032822, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.582465], + [9.032822, 45.586962], + [9.037318, 45.586962], + [9.037318, 45.582465], + [9.032822, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.586962], + [9.032822, 45.591458], + [9.037318, 45.591458], + [9.037318, 45.586962], + [9.032822, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.591458], + [9.032822, 45.595955], + [9.037318, 45.595955], + [9.037318, 45.591458], + [9.032822, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.595955], + [9.032822, 45.600451], + [9.037318, 45.600451], + [9.037318, 45.595955], + [9.032822, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.600451], + [9.032822, 45.604948], + [9.037318, 45.604948], + [9.037318, 45.600451], + [9.032822, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.604948], + [9.032822, 45.609445], + [9.037318, 45.609445], + [9.037318, 45.604948], + [9.032822, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.609445], + [9.032822, 45.613941], + [9.037318, 45.613941], + [9.037318, 45.609445], + [9.032822, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.613941], + [9.032822, 45.618438], + [9.037318, 45.618438], + [9.037318, 45.613941], + [9.032822, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.618438], + [9.032822, 45.622934], + [9.037318, 45.622934], + [9.037318, 45.618438], + [9.032822, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.622934], + [9.032822, 45.627431], + [9.037318, 45.627431], + [9.037318, 45.622934], + [9.032822, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.627431], + [9.032822, 45.631928], + [9.037318, 45.631928], + [9.037318, 45.627431], + [9.032822, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.631928], + [9.032822, 45.636424], + [9.037318, 45.636424], + [9.037318, 45.631928], + [9.032822, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.339648], + [9.037318, 45.344145], + [9.041815, 45.344145], + [9.041815, 45.339648], + [9.037318, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.344145], + [9.037318, 45.348642], + [9.041815, 45.348642], + [9.041815, 45.344145], + [9.037318, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.348642], + [9.037318, 45.353138], + [9.041815, 45.353138], + [9.041815, 45.348642], + [9.037318, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.353138], + [9.037318, 45.357635], + [9.041815, 45.357635], + [9.041815, 45.353138], + [9.037318, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.357635], + [9.037318, 45.362131], + [9.041815, 45.362131], + [9.041815, 45.357635], + [9.037318, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.362131], + [9.037318, 45.366628], + [9.041815, 45.366628], + [9.041815, 45.362131], + [9.037318, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.366628], + [9.037318, 45.371125], + [9.041815, 45.371125], + [9.041815, 45.366628], + [9.037318, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.371125], + [9.037318, 45.375621], + [9.041815, 45.375621], + [9.041815, 45.371125], + [9.037318, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.375621], + [9.037318, 45.380118], + [9.041815, 45.380118], + [9.041815, 45.375621], + [9.037318, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.380118], + [9.037318, 45.384614], + [9.041815, 45.384614], + [9.041815, 45.380118], + [9.037318, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.384614], + [9.037318, 45.389111], + [9.041815, 45.389111], + [9.041815, 45.384614], + [9.037318, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.389111], + [9.037318, 45.393608], + [9.041815, 45.393608], + [9.041815, 45.389111], + [9.037318, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.393608], + [9.037318, 45.398104], + [9.041815, 45.398104], + [9.041815, 45.393608], + [9.037318, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.398104], + [9.037318, 45.402601], + [9.041815, 45.402601], + [9.041815, 45.398104], + [9.037318, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.402601], + [9.037318, 45.407097], + [9.041815, 45.407097], + [9.041815, 45.402601], + [9.037318, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.407097], + [9.037318, 45.411594], + [9.041815, 45.411594], + [9.041815, 45.407097], + [9.037318, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.411594], + [9.037318, 45.416091], + [9.041815, 45.416091], + [9.041815, 45.411594], + [9.037318, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.416091], + [9.037318, 45.420587], + [9.041815, 45.420587], + [9.041815, 45.416091], + [9.037318, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.420587], + [9.037318, 45.425084], + [9.041815, 45.425084], + [9.041815, 45.420587], + [9.037318, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.425084], + [9.037318, 45.42958], + [9.041815, 45.42958], + [9.041815, 45.425084], + [9.037318, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.42958], + [9.037318, 45.434077], + [9.041815, 45.434077], + [9.041815, 45.42958], + [9.037318, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.434077], + [9.037318, 45.438574], + [9.041815, 45.438574], + [9.041815, 45.434077], + [9.037318, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.438574], + [9.037318, 45.44307], + [9.041815, 45.44307], + [9.041815, 45.438574], + [9.037318, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.44307], + [9.037318, 45.447567], + [9.041815, 45.447567], + [9.041815, 45.44307], + [9.037318, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.447567], + [9.037318, 45.452063], + [9.041815, 45.452063], + [9.041815, 45.447567], + [9.037318, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.452063], + [9.037318, 45.45656], + [9.041815, 45.45656], + [9.041815, 45.452063], + [9.037318, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.45656], + [9.037318, 45.461057], + [9.041815, 45.461057], + [9.041815, 45.45656], + [9.037318, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.461057], + [9.037318, 45.465553], + [9.041815, 45.465553], + [9.041815, 45.461057], + [9.037318, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.465553], + [9.037318, 45.47005], + [9.041815, 45.47005], + [9.041815, 45.465553], + [9.037318, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.47005], + [9.037318, 45.474547], + [9.041815, 45.474547], + [9.041815, 45.47005], + [9.037318, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.474547], + [9.037318, 45.479043], + [9.041815, 45.479043], + [9.041815, 45.474547], + [9.037318, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.479043], + [9.037318, 45.48354], + [9.041815, 45.48354], + [9.041815, 45.479043], + [9.037318, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.48354], + [9.037318, 45.488036], + [9.041815, 45.488036], + [9.041815, 45.48354], + [9.037318, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.488036], + [9.037318, 45.492533], + [9.041815, 45.492533], + [9.041815, 45.488036], + [9.037318, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.492533], + [9.037318, 45.49703], + [9.041815, 45.49703], + [9.041815, 45.492533], + [9.037318, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.49703], + [9.037318, 45.501526], + [9.041815, 45.501526], + [9.041815, 45.49703], + [9.037318, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.501526], + [9.037318, 45.506023], + [9.041815, 45.506023], + [9.041815, 45.501526], + [9.037318, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.506023], + [9.037318, 45.510519], + [9.041815, 45.510519], + [9.041815, 45.506023], + [9.037318, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.510519], + [9.037318, 45.515016], + [9.041815, 45.515016], + [9.041815, 45.510519], + [9.037318, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.515016], + [9.037318, 45.519513], + [9.041815, 45.519513], + [9.041815, 45.515016], + [9.037318, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.519513], + [9.037318, 45.524009], + [9.041815, 45.524009], + [9.041815, 45.519513], + [9.037318, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.524009], + [9.037318, 45.528506], + [9.041815, 45.528506], + [9.041815, 45.524009], + [9.037318, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.528506], + [9.037318, 45.533002], + [9.041815, 45.533002], + [9.041815, 45.528506], + [9.037318, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.533002], + [9.037318, 45.537499], + [9.041815, 45.537499], + [9.041815, 45.533002], + [9.037318, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.537499], + [9.037318, 45.541996], + [9.041815, 45.541996], + [9.041815, 45.537499], + [9.037318, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.541996], + [9.037318, 45.546492], + [9.041815, 45.546492], + [9.041815, 45.541996], + [9.037318, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.546492], + [9.037318, 45.550989], + [9.041815, 45.550989], + [9.041815, 45.546492], + [9.037318, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.550989], + [9.037318, 45.555485], + [9.041815, 45.555485], + [9.041815, 45.550989], + [9.037318, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.555485], + [9.037318, 45.559982], + [9.041815, 45.559982], + [9.041815, 45.555485], + [9.037318, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.559982], + [9.037318, 45.564479], + [9.041815, 45.564479], + [9.041815, 45.559982], + [9.037318, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.564479], + [9.037318, 45.568975], + [9.041815, 45.568975], + [9.041815, 45.564479], + [9.037318, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.568975], + [9.037318, 45.573472], + [9.041815, 45.573472], + [9.041815, 45.568975], + [9.037318, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.573472], + [9.037318, 45.577968], + [9.041815, 45.577968], + [9.041815, 45.573472], + [9.037318, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.577968], + [9.037318, 45.582465], + [9.041815, 45.582465], + [9.041815, 45.577968], + [9.037318, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.582465], + [9.037318, 45.586962], + [9.041815, 45.586962], + [9.041815, 45.582465], + [9.037318, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.586962], + [9.037318, 45.591458], + [9.041815, 45.591458], + [9.041815, 45.586962], + [9.037318, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.591458], + [9.037318, 45.595955], + [9.041815, 45.595955], + [9.041815, 45.591458], + [9.037318, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.595955], + [9.037318, 45.600451], + [9.041815, 45.600451], + [9.041815, 45.595955], + [9.037318, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.600451], + [9.037318, 45.604948], + [9.041815, 45.604948], + [9.041815, 45.600451], + [9.037318, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.604948], + [9.037318, 45.609445], + [9.041815, 45.609445], + [9.041815, 45.604948], + [9.037318, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.609445], + [9.037318, 45.613941], + [9.041815, 45.613941], + [9.041815, 45.609445], + [9.037318, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.613941], + [9.037318, 45.618438], + [9.041815, 45.618438], + [9.041815, 45.613941], + [9.037318, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.618438], + [9.037318, 45.622934], + [9.041815, 45.622934], + [9.041815, 45.618438], + [9.037318, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.622934], + [9.037318, 45.627431], + [9.041815, 45.627431], + [9.041815, 45.622934], + [9.037318, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.627431], + [9.037318, 45.631928], + [9.041815, 45.631928], + [9.041815, 45.627431], + [9.037318, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.631928], + [9.037318, 45.636424], + [9.041815, 45.636424], + [9.041815, 45.631928], + [9.037318, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.339648], + [9.041815, 45.344145], + [9.046312, 45.344145], + [9.046312, 45.339648], + [9.041815, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.344145], + [9.041815, 45.348642], + [9.046312, 45.348642], + [9.046312, 45.344145], + [9.041815, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.348642], + [9.041815, 45.353138], + [9.046312, 45.353138], + [9.046312, 45.348642], + [9.041815, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.353138], + [9.041815, 45.357635], + [9.046312, 45.357635], + [9.046312, 45.353138], + [9.041815, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.357635], + [9.041815, 45.362131], + [9.046312, 45.362131], + [9.046312, 45.357635], + [9.041815, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.362131], + [9.041815, 45.366628], + [9.046312, 45.366628], + [9.046312, 45.362131], + [9.041815, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.366628], + [9.041815, 45.371125], + [9.046312, 45.371125], + [9.046312, 45.366628], + [9.041815, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.371125], + [9.041815, 45.375621], + [9.046312, 45.375621], + [9.046312, 45.371125], + [9.041815, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.375621], + [9.041815, 45.380118], + [9.046312, 45.380118], + [9.046312, 45.375621], + [9.041815, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.380118], + [9.041815, 45.384614], + [9.046312, 45.384614], + [9.046312, 45.380118], + [9.041815, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.384614], + [9.041815, 45.389111], + [9.046312, 45.389111], + [9.046312, 45.384614], + [9.041815, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.389111], + [9.041815, 45.393608], + [9.046312, 45.393608], + [9.046312, 45.389111], + [9.041815, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.393608], + [9.041815, 45.398104], + [9.046312, 45.398104], + [9.046312, 45.393608], + [9.041815, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.398104], + [9.041815, 45.402601], + [9.046312, 45.402601], + [9.046312, 45.398104], + [9.041815, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.402601], + [9.041815, 45.407097], + [9.046312, 45.407097], + [9.046312, 45.402601], + [9.041815, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.407097], + [9.041815, 45.411594], + [9.046312, 45.411594], + [9.046312, 45.407097], + [9.041815, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.411594], + [9.041815, 45.416091], + [9.046312, 45.416091], + [9.046312, 45.411594], + [9.041815, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.416091], + [9.041815, 45.420587], + [9.046312, 45.420587], + [9.046312, 45.416091], + [9.041815, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.420587], + [9.041815, 45.425084], + [9.046312, 45.425084], + [9.046312, 45.420587], + [9.041815, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.425084], + [9.041815, 45.42958], + [9.046312, 45.42958], + [9.046312, 45.425084], + [9.041815, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.42958], + [9.041815, 45.434077], + [9.046312, 45.434077], + [9.046312, 45.42958], + [9.041815, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.434077], + [9.041815, 45.438574], + [9.046312, 45.438574], + [9.046312, 45.434077], + [9.041815, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.438574], + [9.041815, 45.44307], + [9.046312, 45.44307], + [9.046312, 45.438574], + [9.041815, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.44307], + [9.041815, 45.447567], + [9.046312, 45.447567], + [9.046312, 45.44307], + [9.041815, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.447567], + [9.041815, 45.452063], + [9.046312, 45.452063], + [9.046312, 45.447567], + [9.041815, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.452063], + [9.041815, 45.45656], + [9.046312, 45.45656], + [9.046312, 45.452063], + [9.041815, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.45656], + [9.041815, 45.461057], + [9.046312, 45.461057], + [9.046312, 45.45656], + [9.041815, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.461057], + [9.041815, 45.465553], + [9.046312, 45.465553], + [9.046312, 45.461057], + [9.041815, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.465553], + [9.041815, 45.47005], + [9.046312, 45.47005], + [9.046312, 45.465553], + [9.041815, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.47005], + [9.041815, 45.474547], + [9.046312, 45.474547], + [9.046312, 45.47005], + [9.041815, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.474547], + [9.041815, 45.479043], + [9.046312, 45.479043], + [9.046312, 45.474547], + [9.041815, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.479043], + [9.041815, 45.48354], + [9.046312, 45.48354], + [9.046312, 45.479043], + [9.041815, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.48354], + [9.041815, 45.488036], + [9.046312, 45.488036], + [9.046312, 45.48354], + [9.041815, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.488036], + [9.041815, 45.492533], + [9.046312, 45.492533], + [9.046312, 45.488036], + [9.041815, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.492533], + [9.041815, 45.49703], + [9.046312, 45.49703], + [9.046312, 45.492533], + [9.041815, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.49703], + [9.041815, 45.501526], + [9.046312, 45.501526], + [9.046312, 45.49703], + [9.041815, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.501526], + [9.041815, 45.506023], + [9.046312, 45.506023], + [9.046312, 45.501526], + [9.041815, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.506023], + [9.041815, 45.510519], + [9.046312, 45.510519], + [9.046312, 45.506023], + [9.041815, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.510519], + [9.041815, 45.515016], + [9.046312, 45.515016], + [9.046312, 45.510519], + [9.041815, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.515016], + [9.041815, 45.519513], + [9.046312, 45.519513], + [9.046312, 45.515016], + [9.041815, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.519513], + [9.041815, 45.524009], + [9.046312, 45.524009], + [9.046312, 45.519513], + [9.041815, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.524009], + [9.041815, 45.528506], + [9.046312, 45.528506], + [9.046312, 45.524009], + [9.041815, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.528506], + [9.041815, 45.533002], + [9.046312, 45.533002], + [9.046312, 45.528506], + [9.041815, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.533002], + [9.041815, 45.537499], + [9.046312, 45.537499], + [9.046312, 45.533002], + [9.041815, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.537499], + [9.041815, 45.541996], + [9.046312, 45.541996], + [9.046312, 45.537499], + [9.041815, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.541996], + [9.041815, 45.546492], + [9.046312, 45.546492], + [9.046312, 45.541996], + [9.041815, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.546492], + [9.041815, 45.550989], + [9.046312, 45.550989], + [9.046312, 45.546492], + [9.041815, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.550989], + [9.041815, 45.555485], + [9.046312, 45.555485], + [9.046312, 45.550989], + [9.041815, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.555485], + [9.041815, 45.559982], + [9.046312, 45.559982], + [9.046312, 45.555485], + [9.041815, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.559982], + [9.041815, 45.564479], + [9.046312, 45.564479], + [9.046312, 45.559982], + [9.041815, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.564479], + [9.041815, 45.568975], + [9.046312, 45.568975], + [9.046312, 45.564479], + [9.041815, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.568975], + [9.041815, 45.573472], + [9.046312, 45.573472], + [9.046312, 45.568975], + [9.041815, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.573472], + [9.041815, 45.577968], + [9.046312, 45.577968], + [9.046312, 45.573472], + [9.041815, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.577968], + [9.041815, 45.582465], + [9.046312, 45.582465], + [9.046312, 45.577968], + [9.041815, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.582465], + [9.041815, 45.586962], + [9.046312, 45.586962], + [9.046312, 45.582465], + [9.041815, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.586962], + [9.041815, 45.591458], + [9.046312, 45.591458], + [9.046312, 45.586962], + [9.041815, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.591458], + [9.041815, 45.595955], + [9.046312, 45.595955], + [9.046312, 45.591458], + [9.041815, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.595955], + [9.041815, 45.600451], + [9.046312, 45.600451], + [9.046312, 45.595955], + [9.041815, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.600451], + [9.041815, 45.604948], + [9.046312, 45.604948], + [9.046312, 45.600451], + [9.041815, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.604948], + [9.041815, 45.609445], + [9.046312, 45.609445], + [9.046312, 45.604948], + [9.041815, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.609445], + [9.041815, 45.613941], + [9.046312, 45.613941], + [9.046312, 45.609445], + [9.041815, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.613941], + [9.041815, 45.618438], + [9.046312, 45.618438], + [9.046312, 45.613941], + [9.041815, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.618438], + [9.041815, 45.622934], + [9.046312, 45.622934], + [9.046312, 45.618438], + [9.041815, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.622934], + [9.041815, 45.627431], + [9.046312, 45.627431], + [9.046312, 45.622934], + [9.041815, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.627431], + [9.041815, 45.631928], + [9.046312, 45.631928], + [9.046312, 45.627431], + [9.041815, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.631928], + [9.041815, 45.636424], + [9.046312, 45.636424], + [9.046312, 45.631928], + [9.041815, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.339648], + [9.046312, 45.344145], + [9.050808, 45.344145], + [9.050808, 45.339648], + [9.046312, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.344145], + [9.046312, 45.348642], + [9.050808, 45.348642], + [9.050808, 45.344145], + [9.046312, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.348642], + [9.046312, 45.353138], + [9.050808, 45.353138], + [9.050808, 45.348642], + [9.046312, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.353138], + [9.046312, 45.357635], + [9.050808, 45.357635], + [9.050808, 45.353138], + [9.046312, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.357635], + [9.046312, 45.362131], + [9.050808, 45.362131], + [9.050808, 45.357635], + [9.046312, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.362131], + [9.046312, 45.366628], + [9.050808, 45.366628], + [9.050808, 45.362131], + [9.046312, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.366628], + [9.046312, 45.371125], + [9.050808, 45.371125], + [9.050808, 45.366628], + [9.046312, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.371125], + [9.046312, 45.375621], + [9.050808, 45.375621], + [9.050808, 45.371125], + [9.046312, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.375621], + [9.046312, 45.380118], + [9.050808, 45.380118], + [9.050808, 45.375621], + [9.046312, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.380118], + [9.046312, 45.384614], + [9.050808, 45.384614], + [9.050808, 45.380118], + [9.046312, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.384614], + [9.046312, 45.389111], + [9.050808, 45.389111], + [9.050808, 45.384614], + [9.046312, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.389111], + [9.046312, 45.393608], + [9.050808, 45.393608], + [9.050808, 45.389111], + [9.046312, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.393608], + [9.046312, 45.398104], + [9.050808, 45.398104], + [9.050808, 45.393608], + [9.046312, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.398104], + [9.046312, 45.402601], + [9.050808, 45.402601], + [9.050808, 45.398104], + [9.046312, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.402601], + [9.046312, 45.407097], + [9.050808, 45.407097], + [9.050808, 45.402601], + [9.046312, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.407097], + [9.046312, 45.411594], + [9.050808, 45.411594], + [9.050808, 45.407097], + [9.046312, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.411594], + [9.046312, 45.416091], + [9.050808, 45.416091], + [9.050808, 45.411594], + [9.046312, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.416091], + [9.046312, 45.420587], + [9.050808, 45.420587], + [9.050808, 45.416091], + [9.046312, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.420587], + [9.046312, 45.425084], + [9.050808, 45.425084], + [9.050808, 45.420587], + [9.046312, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.425084], + [9.046312, 45.42958], + [9.050808, 45.42958], + [9.050808, 45.425084], + [9.046312, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.42958], + [9.046312, 45.434077], + [9.050808, 45.434077], + [9.050808, 45.42958], + [9.046312, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.434077], + [9.046312, 45.438574], + [9.050808, 45.438574], + [9.050808, 45.434077], + [9.046312, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.438574], + [9.046312, 45.44307], + [9.050808, 45.44307], + [9.050808, 45.438574], + [9.046312, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.44307], + [9.046312, 45.447567], + [9.050808, 45.447567], + [9.050808, 45.44307], + [9.046312, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.447567], + [9.046312, 45.452063], + [9.050808, 45.452063], + [9.050808, 45.447567], + [9.046312, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.452063], + [9.046312, 45.45656], + [9.050808, 45.45656], + [9.050808, 45.452063], + [9.046312, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.45656], + [9.046312, 45.461057], + [9.050808, 45.461057], + [9.050808, 45.45656], + [9.046312, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.461057], + [9.046312, 45.465553], + [9.050808, 45.465553], + [9.050808, 45.461057], + [9.046312, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.465553], + [9.046312, 45.47005], + [9.050808, 45.47005], + [9.050808, 45.465553], + [9.046312, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.47005], + [9.046312, 45.474547], + [9.050808, 45.474547], + [9.050808, 45.47005], + [9.046312, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.474547], + [9.046312, 45.479043], + [9.050808, 45.479043], + [9.050808, 45.474547], + [9.046312, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.479043], + [9.046312, 45.48354], + [9.050808, 45.48354], + [9.050808, 45.479043], + [9.046312, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.48354], + [9.046312, 45.488036], + [9.050808, 45.488036], + [9.050808, 45.48354], + [9.046312, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.488036], + [9.046312, 45.492533], + [9.050808, 45.492533], + [9.050808, 45.488036], + [9.046312, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.492533], + [9.046312, 45.49703], + [9.050808, 45.49703], + [9.050808, 45.492533], + [9.046312, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.49703], + [9.046312, 45.501526], + [9.050808, 45.501526], + [9.050808, 45.49703], + [9.046312, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.501526], + [9.046312, 45.506023], + [9.050808, 45.506023], + [9.050808, 45.501526], + [9.046312, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.506023], + [9.046312, 45.510519], + [9.050808, 45.510519], + [9.050808, 45.506023], + [9.046312, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.510519], + [9.046312, 45.515016], + [9.050808, 45.515016], + [9.050808, 45.510519], + [9.046312, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.515016], + [9.046312, 45.519513], + [9.050808, 45.519513], + [9.050808, 45.515016], + [9.046312, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.519513], + [9.046312, 45.524009], + [9.050808, 45.524009], + [9.050808, 45.519513], + [9.046312, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.524009], + [9.046312, 45.528506], + [9.050808, 45.528506], + [9.050808, 45.524009], + [9.046312, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.528506], + [9.046312, 45.533002], + [9.050808, 45.533002], + [9.050808, 45.528506], + [9.046312, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.533002], + [9.046312, 45.537499], + [9.050808, 45.537499], + [9.050808, 45.533002], + [9.046312, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.537499], + [9.046312, 45.541996], + [9.050808, 45.541996], + [9.050808, 45.537499], + [9.046312, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.541996], + [9.046312, 45.546492], + [9.050808, 45.546492], + [9.050808, 45.541996], + [9.046312, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.546492], + [9.046312, 45.550989], + [9.050808, 45.550989], + [9.050808, 45.546492], + [9.046312, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.550989], + [9.046312, 45.555485], + [9.050808, 45.555485], + [9.050808, 45.550989], + [9.046312, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.555485], + [9.046312, 45.559982], + [9.050808, 45.559982], + [9.050808, 45.555485], + [9.046312, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.559982], + [9.046312, 45.564479], + [9.050808, 45.564479], + [9.050808, 45.559982], + [9.046312, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.564479], + [9.046312, 45.568975], + [9.050808, 45.568975], + [9.050808, 45.564479], + [9.046312, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.568975], + [9.046312, 45.573472], + [9.050808, 45.573472], + [9.050808, 45.568975], + [9.046312, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.573472], + [9.046312, 45.577968], + [9.050808, 45.577968], + [9.050808, 45.573472], + [9.046312, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.577968], + [9.046312, 45.582465], + [9.050808, 45.582465], + [9.050808, 45.577968], + [9.046312, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.582465], + [9.046312, 45.586962], + [9.050808, 45.586962], + [9.050808, 45.582465], + [9.046312, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.586962], + [9.046312, 45.591458], + [9.050808, 45.591458], + [9.050808, 45.586962], + [9.046312, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.591458], + [9.046312, 45.595955], + [9.050808, 45.595955], + [9.050808, 45.591458], + [9.046312, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.595955], + [9.046312, 45.600451], + [9.050808, 45.600451], + [9.050808, 45.595955], + [9.046312, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.600451], + [9.046312, 45.604948], + [9.050808, 45.604948], + [9.050808, 45.600451], + [9.046312, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.604948], + [9.046312, 45.609445], + [9.050808, 45.609445], + [9.050808, 45.604948], + [9.046312, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.609445], + [9.046312, 45.613941], + [9.050808, 45.613941], + [9.050808, 45.609445], + [9.046312, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.613941], + [9.046312, 45.618438], + [9.050808, 45.618438], + [9.050808, 45.613941], + [9.046312, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.618438], + [9.046312, 45.622934], + [9.050808, 45.622934], + [9.050808, 45.618438], + [9.046312, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.622934], + [9.046312, 45.627431], + [9.050808, 45.627431], + [9.050808, 45.622934], + [9.046312, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.627431], + [9.046312, 45.631928], + [9.050808, 45.631928], + [9.050808, 45.627431], + [9.046312, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.631928], + [9.046312, 45.636424], + [9.050808, 45.636424], + [9.050808, 45.631928], + [9.046312, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.339648], + [9.050808, 45.344145], + [9.055305, 45.344145], + [9.055305, 45.339648], + [9.050808, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.344145], + [9.050808, 45.348642], + [9.055305, 45.348642], + [9.055305, 45.344145], + [9.050808, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.348642], + [9.050808, 45.353138], + [9.055305, 45.353138], + [9.055305, 45.348642], + [9.050808, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.353138], + [9.050808, 45.357635], + [9.055305, 45.357635], + [9.055305, 45.353138], + [9.050808, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.357635], + [9.050808, 45.362131], + [9.055305, 45.362131], + [9.055305, 45.357635], + [9.050808, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.362131], + [9.050808, 45.366628], + [9.055305, 45.366628], + [9.055305, 45.362131], + [9.050808, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.366628], + [9.050808, 45.371125], + [9.055305, 45.371125], + [9.055305, 45.366628], + [9.050808, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.371125], + [9.050808, 45.375621], + [9.055305, 45.375621], + [9.055305, 45.371125], + [9.050808, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.375621], + [9.050808, 45.380118], + [9.055305, 45.380118], + [9.055305, 45.375621], + [9.050808, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.380118], + [9.050808, 45.384614], + [9.055305, 45.384614], + [9.055305, 45.380118], + [9.050808, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.384614], + [9.050808, 45.389111], + [9.055305, 45.389111], + [9.055305, 45.384614], + [9.050808, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.389111], + [9.050808, 45.393608], + [9.055305, 45.393608], + [9.055305, 45.389111], + [9.050808, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.393608], + [9.050808, 45.398104], + [9.055305, 45.398104], + [9.055305, 45.393608], + [9.050808, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.398104], + [9.050808, 45.402601], + [9.055305, 45.402601], + [9.055305, 45.398104], + [9.050808, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.402601], + [9.050808, 45.407097], + [9.055305, 45.407097], + [9.055305, 45.402601], + [9.050808, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.407097], + [9.050808, 45.411594], + [9.055305, 45.411594], + [9.055305, 45.407097], + [9.050808, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.411594], + [9.050808, 45.416091], + [9.055305, 45.416091], + [9.055305, 45.411594], + [9.050808, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.416091], + [9.050808, 45.420587], + [9.055305, 45.420587], + [9.055305, 45.416091], + [9.050808, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.420587], + [9.050808, 45.425084], + [9.055305, 45.425084], + [9.055305, 45.420587], + [9.050808, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.425084], + [9.050808, 45.42958], + [9.055305, 45.42958], + [9.055305, 45.425084], + [9.050808, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.42958], + [9.050808, 45.434077], + [9.055305, 45.434077], + [9.055305, 45.42958], + [9.050808, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.434077], + [9.050808, 45.438574], + [9.055305, 45.438574], + [9.055305, 45.434077], + [9.050808, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.438574], + [9.050808, 45.44307], + [9.055305, 45.44307], + [9.055305, 45.438574], + [9.050808, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.44307], + [9.050808, 45.447567], + [9.055305, 45.447567], + [9.055305, 45.44307], + [9.050808, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.447567], + [9.050808, 45.452063], + [9.055305, 45.452063], + [9.055305, 45.447567], + [9.050808, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.452063], + [9.050808, 45.45656], + [9.055305, 45.45656], + [9.055305, 45.452063], + [9.050808, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.45656], + [9.050808, 45.461057], + [9.055305, 45.461057], + [9.055305, 45.45656], + [9.050808, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.461057], + [9.050808, 45.465553], + [9.055305, 45.465553], + [9.055305, 45.461057], + [9.050808, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.465553], + [9.050808, 45.47005], + [9.055305, 45.47005], + [9.055305, 45.465553], + [9.050808, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.47005], + [9.050808, 45.474547], + [9.055305, 45.474547], + [9.055305, 45.47005], + [9.050808, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.474547], + [9.050808, 45.479043], + [9.055305, 45.479043], + [9.055305, 45.474547], + [9.050808, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.479043], + [9.050808, 45.48354], + [9.055305, 45.48354], + [9.055305, 45.479043], + [9.050808, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.48354], + [9.050808, 45.488036], + [9.055305, 45.488036], + [9.055305, 45.48354], + [9.050808, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.488036], + [9.050808, 45.492533], + [9.055305, 45.492533], + [9.055305, 45.488036], + [9.050808, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.492533], + [9.050808, 45.49703], + [9.055305, 45.49703], + [9.055305, 45.492533], + [9.050808, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.49703], + [9.050808, 45.501526], + [9.055305, 45.501526], + [9.055305, 45.49703], + [9.050808, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.501526], + [9.050808, 45.506023], + [9.055305, 45.506023], + [9.055305, 45.501526], + [9.050808, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.506023], + [9.050808, 45.510519], + [9.055305, 45.510519], + [9.055305, 45.506023], + [9.050808, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.510519], + [9.050808, 45.515016], + [9.055305, 45.515016], + [9.055305, 45.510519], + [9.050808, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.515016], + [9.050808, 45.519513], + [9.055305, 45.519513], + [9.055305, 45.515016], + [9.050808, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.519513], + [9.050808, 45.524009], + [9.055305, 45.524009], + [9.055305, 45.519513], + [9.050808, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.524009], + [9.050808, 45.528506], + [9.055305, 45.528506], + [9.055305, 45.524009], + [9.050808, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.528506], + [9.050808, 45.533002], + [9.055305, 45.533002], + [9.055305, 45.528506], + [9.050808, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.533002], + [9.050808, 45.537499], + [9.055305, 45.537499], + [9.055305, 45.533002], + [9.050808, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.537499], + [9.050808, 45.541996], + [9.055305, 45.541996], + [9.055305, 45.537499], + [9.050808, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.541996], + [9.050808, 45.546492], + [9.055305, 45.546492], + [9.055305, 45.541996], + [9.050808, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.546492], + [9.050808, 45.550989], + [9.055305, 45.550989], + [9.055305, 45.546492], + [9.050808, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.550989], + [9.050808, 45.555485], + [9.055305, 45.555485], + [9.055305, 45.550989], + [9.050808, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.555485], + [9.050808, 45.559982], + [9.055305, 45.559982], + [9.055305, 45.555485], + [9.050808, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.559982], + [9.050808, 45.564479], + [9.055305, 45.564479], + [9.055305, 45.559982], + [9.050808, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.564479], + [9.050808, 45.568975], + [9.055305, 45.568975], + [9.055305, 45.564479], + [9.050808, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.568975], + [9.050808, 45.573472], + [9.055305, 45.573472], + [9.055305, 45.568975], + [9.050808, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.573472], + [9.050808, 45.577968], + [9.055305, 45.577968], + [9.055305, 45.573472], + [9.050808, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.577968], + [9.050808, 45.582465], + [9.055305, 45.582465], + [9.055305, 45.577968], + [9.050808, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.582465], + [9.050808, 45.586962], + [9.055305, 45.586962], + [9.055305, 45.582465], + [9.050808, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.586962], + [9.050808, 45.591458], + [9.055305, 45.591458], + [9.055305, 45.586962], + [9.050808, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.591458], + [9.050808, 45.595955], + [9.055305, 45.595955], + [9.055305, 45.591458], + [9.050808, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.595955], + [9.050808, 45.600451], + [9.055305, 45.600451], + [9.055305, 45.595955], + [9.050808, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.600451], + [9.050808, 45.604948], + [9.055305, 45.604948], + [9.055305, 45.600451], + [9.050808, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.604948], + [9.050808, 45.609445], + [9.055305, 45.609445], + [9.055305, 45.604948], + [9.050808, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.609445], + [9.050808, 45.613941], + [9.055305, 45.613941], + [9.055305, 45.609445], + [9.050808, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.613941], + [9.050808, 45.618438], + [9.055305, 45.618438], + [9.055305, 45.613941], + [9.050808, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.618438], + [9.050808, 45.622934], + [9.055305, 45.622934], + [9.055305, 45.618438], + [9.050808, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.622934], + [9.050808, 45.627431], + [9.055305, 45.627431], + [9.055305, 45.622934], + [9.050808, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.627431], + [9.050808, 45.631928], + [9.055305, 45.631928], + [9.055305, 45.627431], + [9.050808, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.631928], + [9.050808, 45.636424], + [9.055305, 45.636424], + [9.055305, 45.631928], + [9.050808, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.339648], + [9.055305, 45.344145], + [9.059801, 45.344145], + [9.059801, 45.339648], + [9.055305, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.344145], + [9.055305, 45.348642], + [9.059801, 45.348642], + [9.059801, 45.344145], + [9.055305, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.348642], + [9.055305, 45.353138], + [9.059801, 45.353138], + [9.059801, 45.348642], + [9.055305, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.353138], + [9.055305, 45.357635], + [9.059801, 45.357635], + [9.059801, 45.353138], + [9.055305, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.357635], + [9.055305, 45.362131], + [9.059801, 45.362131], + [9.059801, 45.357635], + [9.055305, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.362131], + [9.055305, 45.366628], + [9.059801, 45.366628], + [9.059801, 45.362131], + [9.055305, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.366628], + [9.055305, 45.371125], + [9.059801, 45.371125], + [9.059801, 45.366628], + [9.055305, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.371125], + [9.055305, 45.375621], + [9.059801, 45.375621], + [9.059801, 45.371125], + [9.055305, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.375621], + [9.055305, 45.380118], + [9.059801, 45.380118], + [9.059801, 45.375621], + [9.055305, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.380118], + [9.055305, 45.384614], + [9.059801, 45.384614], + [9.059801, 45.380118], + [9.055305, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.384614], + [9.055305, 45.389111], + [9.059801, 45.389111], + [9.059801, 45.384614], + [9.055305, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.389111], + [9.055305, 45.393608], + [9.059801, 45.393608], + [9.059801, 45.389111], + [9.055305, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.393608], + [9.055305, 45.398104], + [9.059801, 45.398104], + [9.059801, 45.393608], + [9.055305, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.398104], + [9.055305, 45.402601], + [9.059801, 45.402601], + [9.059801, 45.398104], + [9.055305, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.402601], + [9.055305, 45.407097], + [9.059801, 45.407097], + [9.059801, 45.402601], + [9.055305, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.407097], + [9.055305, 45.411594], + [9.059801, 45.411594], + [9.059801, 45.407097], + [9.055305, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.411594], + [9.055305, 45.416091], + [9.059801, 45.416091], + [9.059801, 45.411594], + [9.055305, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.416091], + [9.055305, 45.420587], + [9.059801, 45.420587], + [9.059801, 45.416091], + [9.055305, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.420587], + [9.055305, 45.425084], + [9.059801, 45.425084], + [9.059801, 45.420587], + [9.055305, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.425084], + [9.055305, 45.42958], + [9.059801, 45.42958], + [9.059801, 45.425084], + [9.055305, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.42958], + [9.055305, 45.434077], + [9.059801, 45.434077], + [9.059801, 45.42958], + [9.055305, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.434077], + [9.055305, 45.438574], + [9.059801, 45.438574], + [9.059801, 45.434077], + [9.055305, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.438574], + [9.055305, 45.44307], + [9.059801, 45.44307], + [9.059801, 45.438574], + [9.055305, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.44307], + [9.055305, 45.447567], + [9.059801, 45.447567], + [9.059801, 45.44307], + [9.055305, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.447567], + [9.055305, 45.452063], + [9.059801, 45.452063], + [9.059801, 45.447567], + [9.055305, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.452063], + [9.055305, 45.45656], + [9.059801, 45.45656], + [9.059801, 45.452063], + [9.055305, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.45656], + [9.055305, 45.461057], + [9.059801, 45.461057], + [9.059801, 45.45656], + [9.055305, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.461057], + [9.055305, 45.465553], + [9.059801, 45.465553], + [9.059801, 45.461057], + [9.055305, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.465553], + [9.055305, 45.47005], + [9.059801, 45.47005], + [9.059801, 45.465553], + [9.055305, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.47005], + [9.055305, 45.474547], + [9.059801, 45.474547], + [9.059801, 45.47005], + [9.055305, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.474547], + [9.055305, 45.479043], + [9.059801, 45.479043], + [9.059801, 45.474547], + [9.055305, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.479043], + [9.055305, 45.48354], + [9.059801, 45.48354], + [9.059801, 45.479043], + [9.055305, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.48354], + [9.055305, 45.488036], + [9.059801, 45.488036], + [9.059801, 45.48354], + [9.055305, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.488036], + [9.055305, 45.492533], + [9.059801, 45.492533], + [9.059801, 45.488036], + [9.055305, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.492533], + [9.055305, 45.49703], + [9.059801, 45.49703], + [9.059801, 45.492533], + [9.055305, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.49703], + [9.055305, 45.501526], + [9.059801, 45.501526], + [9.059801, 45.49703], + [9.055305, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.501526], + [9.055305, 45.506023], + [9.059801, 45.506023], + [9.059801, 45.501526], + [9.055305, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.506023], + [9.055305, 45.510519], + [9.059801, 45.510519], + [9.059801, 45.506023], + [9.055305, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.510519], + [9.055305, 45.515016], + [9.059801, 45.515016], + [9.059801, 45.510519], + [9.055305, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.515016], + [9.055305, 45.519513], + [9.059801, 45.519513], + [9.059801, 45.515016], + [9.055305, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.519513], + [9.055305, 45.524009], + [9.059801, 45.524009], + [9.059801, 45.519513], + [9.055305, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.524009], + [9.055305, 45.528506], + [9.059801, 45.528506], + [9.059801, 45.524009], + [9.055305, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.528506], + [9.055305, 45.533002], + [9.059801, 45.533002], + [9.059801, 45.528506], + [9.055305, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.533002], + [9.055305, 45.537499], + [9.059801, 45.537499], + [9.059801, 45.533002], + [9.055305, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.537499], + [9.055305, 45.541996], + [9.059801, 45.541996], + [9.059801, 45.537499], + [9.055305, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.541996], + [9.055305, 45.546492], + [9.059801, 45.546492], + [9.059801, 45.541996], + [9.055305, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.546492], + [9.055305, 45.550989], + [9.059801, 45.550989], + [9.059801, 45.546492], + [9.055305, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.550989], + [9.055305, 45.555485], + [9.059801, 45.555485], + [9.059801, 45.550989], + [9.055305, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.555485], + [9.055305, 45.559982], + [9.059801, 45.559982], + [9.059801, 45.555485], + [9.055305, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.559982], + [9.055305, 45.564479], + [9.059801, 45.564479], + [9.059801, 45.559982], + [9.055305, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.564479], + [9.055305, 45.568975], + [9.059801, 45.568975], + [9.059801, 45.564479], + [9.055305, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.568975], + [9.055305, 45.573472], + [9.059801, 45.573472], + [9.059801, 45.568975], + [9.055305, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.573472], + [9.055305, 45.577968], + [9.059801, 45.577968], + [9.059801, 45.573472], + [9.055305, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.577968], + [9.055305, 45.582465], + [9.059801, 45.582465], + [9.059801, 45.577968], + [9.055305, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.582465], + [9.055305, 45.586962], + [9.059801, 45.586962], + [9.059801, 45.582465], + [9.055305, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.586962], + [9.055305, 45.591458], + [9.059801, 45.591458], + [9.059801, 45.586962], + [9.055305, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.591458], + [9.055305, 45.595955], + [9.059801, 45.595955], + [9.059801, 45.591458], + [9.055305, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.595955], + [9.055305, 45.600451], + [9.059801, 45.600451], + [9.059801, 45.595955], + [9.055305, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.600451], + [9.055305, 45.604948], + [9.059801, 45.604948], + [9.059801, 45.600451], + [9.055305, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.604948], + [9.055305, 45.609445], + [9.059801, 45.609445], + [9.059801, 45.604948], + [9.055305, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.609445], + [9.055305, 45.613941], + [9.059801, 45.613941], + [9.059801, 45.609445], + [9.055305, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.613941], + [9.055305, 45.618438], + [9.059801, 45.618438], + [9.059801, 45.613941], + [9.055305, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.618438], + [9.055305, 45.622934], + [9.059801, 45.622934], + [9.059801, 45.618438], + [9.055305, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.622934], + [9.055305, 45.627431], + [9.059801, 45.627431], + [9.059801, 45.622934], + [9.055305, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.627431], + [9.055305, 45.631928], + [9.059801, 45.631928], + [9.059801, 45.627431], + [9.055305, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.631928], + [9.055305, 45.636424], + [9.059801, 45.636424], + [9.059801, 45.631928], + [9.055305, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.339648], + [9.059801, 45.344145], + [9.064298, 45.344145], + [9.064298, 45.339648], + [9.059801, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.344145], + [9.059801, 45.348642], + [9.064298, 45.348642], + [9.064298, 45.344145], + [9.059801, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.348642], + [9.059801, 45.353138], + [9.064298, 45.353138], + [9.064298, 45.348642], + [9.059801, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.353138], + [9.059801, 45.357635], + [9.064298, 45.357635], + [9.064298, 45.353138], + [9.059801, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.357635], + [9.059801, 45.362131], + [9.064298, 45.362131], + [9.064298, 45.357635], + [9.059801, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.362131], + [9.059801, 45.366628], + [9.064298, 45.366628], + [9.064298, 45.362131], + [9.059801, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.366628], + [9.059801, 45.371125], + [9.064298, 45.371125], + [9.064298, 45.366628], + [9.059801, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.371125], + [9.059801, 45.375621], + [9.064298, 45.375621], + [9.064298, 45.371125], + [9.059801, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.375621], + [9.059801, 45.380118], + [9.064298, 45.380118], + [9.064298, 45.375621], + [9.059801, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.380118], + [9.059801, 45.384614], + [9.064298, 45.384614], + [9.064298, 45.380118], + [9.059801, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.384614], + [9.059801, 45.389111], + [9.064298, 45.389111], + [9.064298, 45.384614], + [9.059801, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.389111], + [9.059801, 45.393608], + [9.064298, 45.393608], + [9.064298, 45.389111], + [9.059801, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.393608], + [9.059801, 45.398104], + [9.064298, 45.398104], + [9.064298, 45.393608], + [9.059801, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.398104], + [9.059801, 45.402601], + [9.064298, 45.402601], + [9.064298, 45.398104], + [9.059801, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.402601], + [9.059801, 45.407097], + [9.064298, 45.407097], + [9.064298, 45.402601], + [9.059801, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.407097], + [9.059801, 45.411594], + [9.064298, 45.411594], + [9.064298, 45.407097], + [9.059801, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.411594], + [9.059801, 45.416091], + [9.064298, 45.416091], + [9.064298, 45.411594], + [9.059801, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.416091], + [9.059801, 45.420587], + [9.064298, 45.420587], + [9.064298, 45.416091], + [9.059801, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.420587], + [9.059801, 45.425084], + [9.064298, 45.425084], + [9.064298, 45.420587], + [9.059801, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.425084], + [9.059801, 45.42958], + [9.064298, 45.42958], + [9.064298, 45.425084], + [9.059801, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.42958], + [9.059801, 45.434077], + [9.064298, 45.434077], + [9.064298, 45.42958], + [9.059801, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.434077], + [9.059801, 45.438574], + [9.064298, 45.438574], + [9.064298, 45.434077], + [9.059801, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.438574], + [9.059801, 45.44307], + [9.064298, 45.44307], + [9.064298, 45.438574], + [9.059801, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.44307], + [9.059801, 45.447567], + [9.064298, 45.447567], + [9.064298, 45.44307], + [9.059801, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.447567], + [9.059801, 45.452063], + [9.064298, 45.452063], + [9.064298, 45.447567], + [9.059801, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.452063], + [9.059801, 45.45656], + [9.064298, 45.45656], + [9.064298, 45.452063], + [9.059801, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.45656], + [9.059801, 45.461057], + [9.064298, 45.461057], + [9.064298, 45.45656], + [9.059801, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.461057], + [9.059801, 45.465553], + [9.064298, 45.465553], + [9.064298, 45.461057], + [9.059801, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.465553], + [9.059801, 45.47005], + [9.064298, 45.47005], + [9.064298, 45.465553], + [9.059801, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.47005], + [9.059801, 45.474547], + [9.064298, 45.474547], + [9.064298, 45.47005], + [9.059801, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.474547], + [9.059801, 45.479043], + [9.064298, 45.479043], + [9.064298, 45.474547], + [9.059801, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.479043], + [9.059801, 45.48354], + [9.064298, 45.48354], + [9.064298, 45.479043], + [9.059801, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.48354], + [9.059801, 45.488036], + [9.064298, 45.488036], + [9.064298, 45.48354], + [9.059801, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.488036], + [9.059801, 45.492533], + [9.064298, 45.492533], + [9.064298, 45.488036], + [9.059801, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.492533], + [9.059801, 45.49703], + [9.064298, 45.49703], + [9.064298, 45.492533], + [9.059801, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.49703], + [9.059801, 45.501526], + [9.064298, 45.501526], + [9.064298, 45.49703], + [9.059801, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.501526], + [9.059801, 45.506023], + [9.064298, 45.506023], + [9.064298, 45.501526], + [9.059801, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.506023], + [9.059801, 45.510519], + [9.064298, 45.510519], + [9.064298, 45.506023], + [9.059801, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.510519], + [9.059801, 45.515016], + [9.064298, 45.515016], + [9.064298, 45.510519], + [9.059801, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.515016], + [9.059801, 45.519513], + [9.064298, 45.519513], + [9.064298, 45.515016], + [9.059801, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.519513], + [9.059801, 45.524009], + [9.064298, 45.524009], + [9.064298, 45.519513], + [9.059801, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.524009], + [9.059801, 45.528506], + [9.064298, 45.528506], + [9.064298, 45.524009], + [9.059801, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.528506], + [9.059801, 45.533002], + [9.064298, 45.533002], + [9.064298, 45.528506], + [9.059801, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.533002], + [9.059801, 45.537499], + [9.064298, 45.537499], + [9.064298, 45.533002], + [9.059801, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.537499], + [9.059801, 45.541996], + [9.064298, 45.541996], + [9.064298, 45.537499], + [9.059801, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.541996], + [9.059801, 45.546492], + [9.064298, 45.546492], + [9.064298, 45.541996], + [9.059801, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.546492], + [9.059801, 45.550989], + [9.064298, 45.550989], + [9.064298, 45.546492], + [9.059801, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.550989], + [9.059801, 45.555485], + [9.064298, 45.555485], + [9.064298, 45.550989], + [9.059801, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.555485], + [9.059801, 45.559982], + [9.064298, 45.559982], + [9.064298, 45.555485], + [9.059801, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.559982], + [9.059801, 45.564479], + [9.064298, 45.564479], + [9.064298, 45.559982], + [9.059801, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.564479], + [9.059801, 45.568975], + [9.064298, 45.568975], + [9.064298, 45.564479], + [9.059801, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.568975], + [9.059801, 45.573472], + [9.064298, 45.573472], + [9.064298, 45.568975], + [9.059801, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.573472], + [9.059801, 45.577968], + [9.064298, 45.577968], + [9.064298, 45.573472], + [9.059801, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.577968], + [9.059801, 45.582465], + [9.064298, 45.582465], + [9.064298, 45.577968], + [9.059801, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.582465], + [9.059801, 45.586962], + [9.064298, 45.586962], + [9.064298, 45.582465], + [9.059801, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.586962], + [9.059801, 45.591458], + [9.064298, 45.591458], + [9.064298, 45.586962], + [9.059801, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.591458], + [9.059801, 45.595955], + [9.064298, 45.595955], + [9.064298, 45.591458], + [9.059801, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.595955], + [9.059801, 45.600451], + [9.064298, 45.600451], + [9.064298, 45.595955], + [9.059801, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.600451], + [9.059801, 45.604948], + [9.064298, 45.604948], + [9.064298, 45.600451], + [9.059801, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.604948], + [9.059801, 45.609445], + [9.064298, 45.609445], + [9.064298, 45.604948], + [9.059801, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.609445], + [9.059801, 45.613941], + [9.064298, 45.613941], + [9.064298, 45.609445], + [9.059801, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.613941], + [9.059801, 45.618438], + [9.064298, 45.618438], + [9.064298, 45.613941], + [9.059801, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.618438], + [9.059801, 45.622934], + [9.064298, 45.622934], + [9.064298, 45.618438], + [9.059801, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.622934], + [9.059801, 45.627431], + [9.064298, 45.627431], + [9.064298, 45.622934], + [9.059801, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.627431], + [9.059801, 45.631928], + [9.064298, 45.631928], + [9.064298, 45.627431], + [9.059801, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.631928], + [9.059801, 45.636424], + [9.064298, 45.636424], + [9.064298, 45.631928], + [9.059801, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.339648], + [9.064298, 45.344145], + [9.068795, 45.344145], + [9.068795, 45.339648], + [9.064298, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.344145], + [9.064298, 45.348642], + [9.068795, 45.348642], + [9.068795, 45.344145], + [9.064298, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.348642], + [9.064298, 45.353138], + [9.068795, 45.353138], + [9.068795, 45.348642], + [9.064298, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.353138], + [9.064298, 45.357635], + [9.068795, 45.357635], + [9.068795, 45.353138], + [9.064298, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.357635], + [9.064298, 45.362131], + [9.068795, 45.362131], + [9.068795, 45.357635], + [9.064298, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.362131], + [9.064298, 45.366628], + [9.068795, 45.366628], + [9.068795, 45.362131], + [9.064298, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.366628], + [9.064298, 45.371125], + [9.068795, 45.371125], + [9.068795, 45.366628], + [9.064298, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.371125], + [9.064298, 45.375621], + [9.068795, 45.375621], + [9.068795, 45.371125], + [9.064298, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.375621], + [9.064298, 45.380118], + [9.068795, 45.380118], + [9.068795, 45.375621], + [9.064298, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.380118], + [9.064298, 45.384614], + [9.068795, 45.384614], + [9.068795, 45.380118], + [9.064298, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.384614], + [9.064298, 45.389111], + [9.068795, 45.389111], + [9.068795, 45.384614], + [9.064298, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.389111], + [9.064298, 45.393608], + [9.068795, 45.393608], + [9.068795, 45.389111], + [9.064298, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.393608], + [9.064298, 45.398104], + [9.068795, 45.398104], + [9.068795, 45.393608], + [9.064298, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.398104], + [9.064298, 45.402601], + [9.068795, 45.402601], + [9.068795, 45.398104], + [9.064298, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.402601], + [9.064298, 45.407097], + [9.068795, 45.407097], + [9.068795, 45.402601], + [9.064298, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.407097], + [9.064298, 45.411594], + [9.068795, 45.411594], + [9.068795, 45.407097], + [9.064298, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.411594], + [9.064298, 45.416091], + [9.068795, 45.416091], + [9.068795, 45.411594], + [9.064298, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.416091], + [9.064298, 45.420587], + [9.068795, 45.420587], + [9.068795, 45.416091], + [9.064298, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.420587], + [9.064298, 45.425084], + [9.068795, 45.425084], + [9.068795, 45.420587], + [9.064298, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.425084], + [9.064298, 45.42958], + [9.068795, 45.42958], + [9.068795, 45.425084], + [9.064298, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.42958], + [9.064298, 45.434077], + [9.068795, 45.434077], + [9.068795, 45.42958], + [9.064298, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.434077], + [9.064298, 45.438574], + [9.068795, 45.438574], + [9.068795, 45.434077], + [9.064298, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.438574], + [9.064298, 45.44307], + [9.068795, 45.44307], + [9.068795, 45.438574], + [9.064298, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.44307], + [9.064298, 45.447567], + [9.068795, 45.447567], + [9.068795, 45.44307], + [9.064298, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.447567], + [9.064298, 45.452063], + [9.068795, 45.452063], + [9.068795, 45.447567], + [9.064298, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.452063], + [9.064298, 45.45656], + [9.068795, 45.45656], + [9.068795, 45.452063], + [9.064298, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.45656], + [9.064298, 45.461057], + [9.068795, 45.461057], + [9.068795, 45.45656], + [9.064298, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.461057], + [9.064298, 45.465553], + [9.068795, 45.465553], + [9.068795, 45.461057], + [9.064298, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.465553], + [9.064298, 45.47005], + [9.068795, 45.47005], + [9.068795, 45.465553], + [9.064298, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.47005], + [9.064298, 45.474547], + [9.068795, 45.474547], + [9.068795, 45.47005], + [9.064298, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.474547], + [9.064298, 45.479043], + [9.068795, 45.479043], + [9.068795, 45.474547], + [9.064298, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.479043], + [9.064298, 45.48354], + [9.068795, 45.48354], + [9.068795, 45.479043], + [9.064298, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.48354], + [9.064298, 45.488036], + [9.068795, 45.488036], + [9.068795, 45.48354], + [9.064298, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.488036], + [9.064298, 45.492533], + [9.068795, 45.492533], + [9.068795, 45.488036], + [9.064298, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.492533], + [9.064298, 45.49703], + [9.068795, 45.49703], + [9.068795, 45.492533], + [9.064298, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.49703], + [9.064298, 45.501526], + [9.068795, 45.501526], + [9.068795, 45.49703], + [9.064298, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.501526], + [9.064298, 45.506023], + [9.068795, 45.506023], + [9.068795, 45.501526], + [9.064298, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.506023], + [9.064298, 45.510519], + [9.068795, 45.510519], + [9.068795, 45.506023], + [9.064298, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.510519], + [9.064298, 45.515016], + [9.068795, 45.515016], + [9.068795, 45.510519], + [9.064298, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.515016], + [9.064298, 45.519513], + [9.068795, 45.519513], + [9.068795, 45.515016], + [9.064298, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.519513], + [9.064298, 45.524009], + [9.068795, 45.524009], + [9.068795, 45.519513], + [9.064298, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.524009], + [9.064298, 45.528506], + [9.068795, 45.528506], + [9.068795, 45.524009], + [9.064298, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.528506], + [9.064298, 45.533002], + [9.068795, 45.533002], + [9.068795, 45.528506], + [9.064298, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.533002], + [9.064298, 45.537499], + [9.068795, 45.537499], + [9.068795, 45.533002], + [9.064298, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.537499], + [9.064298, 45.541996], + [9.068795, 45.541996], + [9.068795, 45.537499], + [9.064298, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.541996], + [9.064298, 45.546492], + [9.068795, 45.546492], + [9.068795, 45.541996], + [9.064298, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.546492], + [9.064298, 45.550989], + [9.068795, 45.550989], + [9.068795, 45.546492], + [9.064298, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.550989], + [9.064298, 45.555485], + [9.068795, 45.555485], + [9.068795, 45.550989], + [9.064298, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.555485], + [9.064298, 45.559982], + [9.068795, 45.559982], + [9.068795, 45.555485], + [9.064298, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.559982], + [9.064298, 45.564479], + [9.068795, 45.564479], + [9.068795, 45.559982], + [9.064298, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.564479], + [9.064298, 45.568975], + [9.068795, 45.568975], + [9.068795, 45.564479], + [9.064298, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.568975], + [9.064298, 45.573472], + [9.068795, 45.573472], + [9.068795, 45.568975], + [9.064298, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.573472], + [9.064298, 45.577968], + [9.068795, 45.577968], + [9.068795, 45.573472], + [9.064298, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.577968], + [9.064298, 45.582465], + [9.068795, 45.582465], + [9.068795, 45.577968], + [9.064298, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.582465], + [9.064298, 45.586962], + [9.068795, 45.586962], + [9.068795, 45.582465], + [9.064298, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.586962], + [9.064298, 45.591458], + [9.068795, 45.591458], + [9.068795, 45.586962], + [9.064298, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.591458], + [9.064298, 45.595955], + [9.068795, 45.595955], + [9.068795, 45.591458], + [9.064298, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.595955], + [9.064298, 45.600451], + [9.068795, 45.600451], + [9.068795, 45.595955], + [9.064298, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.600451], + [9.064298, 45.604948], + [9.068795, 45.604948], + [9.068795, 45.600451], + [9.064298, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.604948], + [9.064298, 45.609445], + [9.068795, 45.609445], + [9.068795, 45.604948], + [9.064298, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.609445], + [9.064298, 45.613941], + [9.068795, 45.613941], + [9.068795, 45.609445], + [9.064298, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.613941], + [9.064298, 45.618438], + [9.068795, 45.618438], + [9.068795, 45.613941], + [9.064298, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.618438], + [9.064298, 45.622934], + [9.068795, 45.622934], + [9.068795, 45.618438], + [9.064298, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.622934], + [9.064298, 45.627431], + [9.068795, 45.627431], + [9.068795, 45.622934], + [9.064298, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.627431], + [9.064298, 45.631928], + [9.068795, 45.631928], + [9.068795, 45.627431], + [9.064298, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.631928], + [9.064298, 45.636424], + [9.068795, 45.636424], + [9.068795, 45.631928], + [9.064298, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.339648], + [9.068795, 45.344145], + [9.073291, 45.344145], + [9.073291, 45.339648], + [9.068795, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.344145], + [9.068795, 45.348642], + [9.073291, 45.348642], + [9.073291, 45.344145], + [9.068795, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.348642], + [9.068795, 45.353138], + [9.073291, 45.353138], + [9.073291, 45.348642], + [9.068795, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.353138], + [9.068795, 45.357635], + [9.073291, 45.357635], + [9.073291, 45.353138], + [9.068795, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.357635], + [9.068795, 45.362131], + [9.073291, 45.362131], + [9.073291, 45.357635], + [9.068795, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.362131], + [9.068795, 45.366628], + [9.073291, 45.366628], + [9.073291, 45.362131], + [9.068795, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.366628], + [9.068795, 45.371125], + [9.073291, 45.371125], + [9.073291, 45.366628], + [9.068795, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.371125], + [9.068795, 45.375621], + [9.073291, 45.375621], + [9.073291, 45.371125], + [9.068795, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.375621], + [9.068795, 45.380118], + [9.073291, 45.380118], + [9.073291, 45.375621], + [9.068795, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.380118], + [9.068795, 45.384614], + [9.073291, 45.384614], + [9.073291, 45.380118], + [9.068795, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.384614], + [9.068795, 45.389111], + [9.073291, 45.389111], + [9.073291, 45.384614], + [9.068795, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.389111], + [9.068795, 45.393608], + [9.073291, 45.393608], + [9.073291, 45.389111], + [9.068795, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.393608], + [9.068795, 45.398104], + [9.073291, 45.398104], + [9.073291, 45.393608], + [9.068795, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.398104], + [9.068795, 45.402601], + [9.073291, 45.402601], + [9.073291, 45.398104], + [9.068795, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.402601], + [9.068795, 45.407097], + [9.073291, 45.407097], + [9.073291, 45.402601], + [9.068795, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.407097], + [9.068795, 45.411594], + [9.073291, 45.411594], + [9.073291, 45.407097], + [9.068795, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.411594], + [9.068795, 45.416091], + [9.073291, 45.416091], + [9.073291, 45.411594], + [9.068795, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.416091], + [9.068795, 45.420587], + [9.073291, 45.420587], + [9.073291, 45.416091], + [9.068795, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.420587], + [9.068795, 45.425084], + [9.073291, 45.425084], + [9.073291, 45.420587], + [9.068795, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.425084], + [9.068795, 45.42958], + [9.073291, 45.42958], + [9.073291, 45.425084], + [9.068795, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.42958], + [9.068795, 45.434077], + [9.073291, 45.434077], + [9.073291, 45.42958], + [9.068795, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.434077], + [9.068795, 45.438574], + [9.073291, 45.438574], + [9.073291, 45.434077], + [9.068795, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.438574], + [9.068795, 45.44307], + [9.073291, 45.44307], + [9.073291, 45.438574], + [9.068795, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.44307], + [9.068795, 45.447567], + [9.073291, 45.447567], + [9.073291, 45.44307], + [9.068795, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.447567], + [9.068795, 45.452063], + [9.073291, 45.452063], + [9.073291, 45.447567], + [9.068795, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.452063], + [9.068795, 45.45656], + [9.073291, 45.45656], + [9.073291, 45.452063], + [9.068795, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.45656], + [9.068795, 45.461057], + [9.073291, 45.461057], + [9.073291, 45.45656], + [9.068795, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.461057], + [9.068795, 45.465553], + [9.073291, 45.465553], + [9.073291, 45.461057], + [9.068795, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.465553], + [9.068795, 45.47005], + [9.073291, 45.47005], + [9.073291, 45.465553], + [9.068795, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.47005], + [9.068795, 45.474547], + [9.073291, 45.474547], + [9.073291, 45.47005], + [9.068795, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.474547], + [9.068795, 45.479043], + [9.073291, 45.479043], + [9.073291, 45.474547], + [9.068795, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.479043], + [9.068795, 45.48354], + [9.073291, 45.48354], + [9.073291, 45.479043], + [9.068795, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.48354], + [9.068795, 45.488036], + [9.073291, 45.488036], + [9.073291, 45.48354], + [9.068795, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.488036], + [9.068795, 45.492533], + [9.073291, 45.492533], + [9.073291, 45.488036], + [9.068795, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.492533], + [9.068795, 45.49703], + [9.073291, 45.49703], + [9.073291, 45.492533], + [9.068795, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.49703], + [9.068795, 45.501526], + [9.073291, 45.501526], + [9.073291, 45.49703], + [9.068795, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.501526], + [9.068795, 45.506023], + [9.073291, 45.506023], + [9.073291, 45.501526], + [9.068795, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.506023], + [9.068795, 45.510519], + [9.073291, 45.510519], + [9.073291, 45.506023], + [9.068795, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.510519], + [9.068795, 45.515016], + [9.073291, 45.515016], + [9.073291, 45.510519], + [9.068795, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.515016], + [9.068795, 45.519513], + [9.073291, 45.519513], + [9.073291, 45.515016], + [9.068795, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.519513], + [9.068795, 45.524009], + [9.073291, 45.524009], + [9.073291, 45.519513], + [9.068795, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.524009], + [9.068795, 45.528506], + [9.073291, 45.528506], + [9.073291, 45.524009], + [9.068795, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.528506], + [9.068795, 45.533002], + [9.073291, 45.533002], + [9.073291, 45.528506], + [9.068795, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.533002], + [9.068795, 45.537499], + [9.073291, 45.537499], + [9.073291, 45.533002], + [9.068795, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.537499], + [9.068795, 45.541996], + [9.073291, 45.541996], + [9.073291, 45.537499], + [9.068795, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.541996], + [9.068795, 45.546492], + [9.073291, 45.546492], + [9.073291, 45.541996], + [9.068795, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.546492], + [9.068795, 45.550989], + [9.073291, 45.550989], + [9.073291, 45.546492], + [9.068795, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.550989], + [9.068795, 45.555485], + [9.073291, 45.555485], + [9.073291, 45.550989], + [9.068795, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.555485], + [9.068795, 45.559982], + [9.073291, 45.559982], + [9.073291, 45.555485], + [9.068795, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.559982], + [9.068795, 45.564479], + [9.073291, 45.564479], + [9.073291, 45.559982], + [9.068795, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.564479], + [9.068795, 45.568975], + [9.073291, 45.568975], + [9.073291, 45.564479], + [9.068795, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.568975], + [9.068795, 45.573472], + [9.073291, 45.573472], + [9.073291, 45.568975], + [9.068795, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.573472], + [9.068795, 45.577968], + [9.073291, 45.577968], + [9.073291, 45.573472], + [9.068795, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.577968], + [9.068795, 45.582465], + [9.073291, 45.582465], + [9.073291, 45.577968], + [9.068795, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.582465], + [9.068795, 45.586962], + [9.073291, 45.586962], + [9.073291, 45.582465], + [9.068795, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.586962], + [9.068795, 45.591458], + [9.073291, 45.591458], + [9.073291, 45.586962], + [9.068795, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.591458], + [9.068795, 45.595955], + [9.073291, 45.595955], + [9.073291, 45.591458], + [9.068795, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.595955], + [9.068795, 45.600451], + [9.073291, 45.600451], + [9.073291, 45.595955], + [9.068795, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.600451], + [9.068795, 45.604948], + [9.073291, 45.604948], + [9.073291, 45.600451], + [9.068795, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.604948], + [9.068795, 45.609445], + [9.073291, 45.609445], + [9.073291, 45.604948], + [9.068795, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.609445], + [9.068795, 45.613941], + [9.073291, 45.613941], + [9.073291, 45.609445], + [9.068795, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.613941], + [9.068795, 45.618438], + [9.073291, 45.618438], + [9.073291, 45.613941], + [9.068795, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.618438], + [9.068795, 45.622934], + [9.073291, 45.622934], + [9.073291, 45.618438], + [9.068795, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.622934], + [9.068795, 45.627431], + [9.073291, 45.627431], + [9.073291, 45.622934], + [9.068795, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.627431], + [9.068795, 45.631928], + [9.073291, 45.631928], + [9.073291, 45.627431], + [9.068795, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.631928], + [9.068795, 45.636424], + [9.073291, 45.636424], + [9.073291, 45.631928], + [9.068795, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.339648], + [9.073291, 45.344145], + [9.077788, 45.344145], + [9.077788, 45.339648], + [9.073291, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.344145], + [9.073291, 45.348642], + [9.077788, 45.348642], + [9.077788, 45.344145], + [9.073291, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.348642], + [9.073291, 45.353138], + [9.077788, 45.353138], + [9.077788, 45.348642], + [9.073291, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.353138], + [9.073291, 45.357635], + [9.077788, 45.357635], + [9.077788, 45.353138], + [9.073291, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.357635], + [9.073291, 45.362131], + [9.077788, 45.362131], + [9.077788, 45.357635], + [9.073291, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.362131], + [9.073291, 45.366628], + [9.077788, 45.366628], + [9.077788, 45.362131], + [9.073291, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.366628], + [9.073291, 45.371125], + [9.077788, 45.371125], + [9.077788, 45.366628], + [9.073291, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.371125], + [9.073291, 45.375621], + [9.077788, 45.375621], + [9.077788, 45.371125], + [9.073291, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.375621], + [9.073291, 45.380118], + [9.077788, 45.380118], + [9.077788, 45.375621], + [9.073291, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.380118], + [9.073291, 45.384614], + [9.077788, 45.384614], + [9.077788, 45.380118], + [9.073291, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.384614], + [9.073291, 45.389111], + [9.077788, 45.389111], + [9.077788, 45.384614], + [9.073291, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.389111], + [9.073291, 45.393608], + [9.077788, 45.393608], + [9.077788, 45.389111], + [9.073291, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.393608], + [9.073291, 45.398104], + [9.077788, 45.398104], + [9.077788, 45.393608], + [9.073291, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.398104], + [9.073291, 45.402601], + [9.077788, 45.402601], + [9.077788, 45.398104], + [9.073291, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.402601], + [9.073291, 45.407097], + [9.077788, 45.407097], + [9.077788, 45.402601], + [9.073291, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.407097], + [9.073291, 45.411594], + [9.077788, 45.411594], + [9.077788, 45.407097], + [9.073291, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.411594], + [9.073291, 45.416091], + [9.077788, 45.416091], + [9.077788, 45.411594], + [9.073291, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.416091], + [9.073291, 45.420587], + [9.077788, 45.420587], + [9.077788, 45.416091], + [9.073291, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.420587], + [9.073291, 45.425084], + [9.077788, 45.425084], + [9.077788, 45.420587], + [9.073291, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.425084], + [9.073291, 45.42958], + [9.077788, 45.42958], + [9.077788, 45.425084], + [9.073291, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.42958], + [9.073291, 45.434077], + [9.077788, 45.434077], + [9.077788, 45.42958], + [9.073291, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.434077], + [9.073291, 45.438574], + [9.077788, 45.438574], + [9.077788, 45.434077], + [9.073291, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.438574], + [9.073291, 45.44307], + [9.077788, 45.44307], + [9.077788, 45.438574], + [9.073291, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.44307], + [9.073291, 45.447567], + [9.077788, 45.447567], + [9.077788, 45.44307], + [9.073291, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.447567], + [9.073291, 45.452063], + [9.077788, 45.452063], + [9.077788, 45.447567], + [9.073291, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.452063], + [9.073291, 45.45656], + [9.077788, 45.45656], + [9.077788, 45.452063], + [9.073291, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.45656], + [9.073291, 45.461057], + [9.077788, 45.461057], + [9.077788, 45.45656], + [9.073291, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.461057], + [9.073291, 45.465553], + [9.077788, 45.465553], + [9.077788, 45.461057], + [9.073291, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.465553], + [9.073291, 45.47005], + [9.077788, 45.47005], + [9.077788, 45.465553], + [9.073291, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.47005], + [9.073291, 45.474547], + [9.077788, 45.474547], + [9.077788, 45.47005], + [9.073291, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.474547], + [9.073291, 45.479043], + [9.077788, 45.479043], + [9.077788, 45.474547], + [9.073291, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.479043], + [9.073291, 45.48354], + [9.077788, 45.48354], + [9.077788, 45.479043], + [9.073291, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.48354], + [9.073291, 45.488036], + [9.077788, 45.488036], + [9.077788, 45.48354], + [9.073291, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.488036], + [9.073291, 45.492533], + [9.077788, 45.492533], + [9.077788, 45.488036], + [9.073291, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.492533], + [9.073291, 45.49703], + [9.077788, 45.49703], + [9.077788, 45.492533], + [9.073291, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.49703], + [9.073291, 45.501526], + [9.077788, 45.501526], + [9.077788, 45.49703], + [9.073291, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.501526], + [9.073291, 45.506023], + [9.077788, 45.506023], + [9.077788, 45.501526], + [9.073291, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.506023], + [9.073291, 45.510519], + [9.077788, 45.510519], + [9.077788, 45.506023], + [9.073291, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.510519], + [9.073291, 45.515016], + [9.077788, 45.515016], + [9.077788, 45.510519], + [9.073291, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.515016], + [9.073291, 45.519513], + [9.077788, 45.519513], + [9.077788, 45.515016], + [9.073291, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.519513], + [9.073291, 45.524009], + [9.077788, 45.524009], + [9.077788, 45.519513], + [9.073291, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.524009], + [9.073291, 45.528506], + [9.077788, 45.528506], + [9.077788, 45.524009], + [9.073291, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.528506], + [9.073291, 45.533002], + [9.077788, 45.533002], + [9.077788, 45.528506], + [9.073291, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.533002], + [9.073291, 45.537499], + [9.077788, 45.537499], + [9.077788, 45.533002], + [9.073291, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.537499], + [9.073291, 45.541996], + [9.077788, 45.541996], + [9.077788, 45.537499], + [9.073291, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.541996], + [9.073291, 45.546492], + [9.077788, 45.546492], + [9.077788, 45.541996], + [9.073291, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.546492], + [9.073291, 45.550989], + [9.077788, 45.550989], + [9.077788, 45.546492], + [9.073291, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.550989], + [9.073291, 45.555485], + [9.077788, 45.555485], + [9.077788, 45.550989], + [9.073291, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.555485], + [9.073291, 45.559982], + [9.077788, 45.559982], + [9.077788, 45.555485], + [9.073291, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.559982], + [9.073291, 45.564479], + [9.077788, 45.564479], + [9.077788, 45.559982], + [9.073291, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.564479], + [9.073291, 45.568975], + [9.077788, 45.568975], + [9.077788, 45.564479], + [9.073291, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.568975], + [9.073291, 45.573472], + [9.077788, 45.573472], + [9.077788, 45.568975], + [9.073291, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.573472], + [9.073291, 45.577968], + [9.077788, 45.577968], + [9.077788, 45.573472], + [9.073291, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.577968], + [9.073291, 45.582465], + [9.077788, 45.582465], + [9.077788, 45.577968], + [9.073291, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.582465], + [9.073291, 45.586962], + [9.077788, 45.586962], + [9.077788, 45.582465], + [9.073291, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.586962], + [9.073291, 45.591458], + [9.077788, 45.591458], + [9.077788, 45.586962], + [9.073291, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.591458], + [9.073291, 45.595955], + [9.077788, 45.595955], + [9.077788, 45.591458], + [9.073291, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.595955], + [9.073291, 45.600451], + [9.077788, 45.600451], + [9.077788, 45.595955], + [9.073291, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.600451], + [9.073291, 45.604948], + [9.077788, 45.604948], + [9.077788, 45.600451], + [9.073291, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.604948], + [9.073291, 45.609445], + [9.077788, 45.609445], + [9.077788, 45.604948], + [9.073291, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.609445], + [9.073291, 45.613941], + [9.077788, 45.613941], + [9.077788, 45.609445], + [9.073291, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.613941], + [9.073291, 45.618438], + [9.077788, 45.618438], + [9.077788, 45.613941], + [9.073291, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.618438], + [9.073291, 45.622934], + [9.077788, 45.622934], + [9.077788, 45.618438], + [9.073291, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.622934], + [9.073291, 45.627431], + [9.077788, 45.627431], + [9.077788, 45.622934], + [9.073291, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.627431], + [9.073291, 45.631928], + [9.077788, 45.631928], + [9.077788, 45.627431], + [9.073291, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.631928], + [9.073291, 45.636424], + [9.077788, 45.636424], + [9.077788, 45.631928], + [9.073291, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.339648], + [9.077788, 45.344145], + [9.082284, 45.344145], + [9.082284, 45.339648], + [9.077788, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.344145], + [9.077788, 45.348642], + [9.082284, 45.348642], + [9.082284, 45.344145], + [9.077788, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.348642], + [9.077788, 45.353138], + [9.082284, 45.353138], + [9.082284, 45.348642], + [9.077788, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.353138], + [9.077788, 45.357635], + [9.082284, 45.357635], + [9.082284, 45.353138], + [9.077788, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.357635], + [9.077788, 45.362131], + [9.082284, 45.362131], + [9.082284, 45.357635], + [9.077788, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.362131], + [9.077788, 45.366628], + [9.082284, 45.366628], + [9.082284, 45.362131], + [9.077788, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.366628], + [9.077788, 45.371125], + [9.082284, 45.371125], + [9.082284, 45.366628], + [9.077788, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.371125], + [9.077788, 45.375621], + [9.082284, 45.375621], + [9.082284, 45.371125], + [9.077788, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.375621], + [9.077788, 45.380118], + [9.082284, 45.380118], + [9.082284, 45.375621], + [9.077788, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.380118], + [9.077788, 45.384614], + [9.082284, 45.384614], + [9.082284, 45.380118], + [9.077788, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.384614], + [9.077788, 45.389111], + [9.082284, 45.389111], + [9.082284, 45.384614], + [9.077788, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.389111], + [9.077788, 45.393608], + [9.082284, 45.393608], + [9.082284, 45.389111], + [9.077788, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.393608], + [9.077788, 45.398104], + [9.082284, 45.398104], + [9.082284, 45.393608], + [9.077788, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.398104], + [9.077788, 45.402601], + [9.082284, 45.402601], + [9.082284, 45.398104], + [9.077788, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.402601], + [9.077788, 45.407097], + [9.082284, 45.407097], + [9.082284, 45.402601], + [9.077788, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.407097], + [9.077788, 45.411594], + [9.082284, 45.411594], + [9.082284, 45.407097], + [9.077788, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.411594], + [9.077788, 45.416091], + [9.082284, 45.416091], + [9.082284, 45.411594], + [9.077788, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.416091], + [9.077788, 45.420587], + [9.082284, 45.420587], + [9.082284, 45.416091], + [9.077788, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.420587], + [9.077788, 45.425084], + [9.082284, 45.425084], + [9.082284, 45.420587], + [9.077788, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.425084], + [9.077788, 45.42958], + [9.082284, 45.42958], + [9.082284, 45.425084], + [9.077788, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.42958], + [9.077788, 45.434077], + [9.082284, 45.434077], + [9.082284, 45.42958], + [9.077788, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.434077], + [9.077788, 45.438574], + [9.082284, 45.438574], + [9.082284, 45.434077], + [9.077788, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.438574], + [9.077788, 45.44307], + [9.082284, 45.44307], + [9.082284, 45.438574], + [9.077788, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.44307], + [9.077788, 45.447567], + [9.082284, 45.447567], + [9.082284, 45.44307], + [9.077788, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.447567], + [9.077788, 45.452063], + [9.082284, 45.452063], + [9.082284, 45.447567], + [9.077788, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.452063], + [9.077788, 45.45656], + [9.082284, 45.45656], + [9.082284, 45.452063], + [9.077788, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.45656], + [9.077788, 45.461057], + [9.082284, 45.461057], + [9.082284, 45.45656], + [9.077788, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.461057], + [9.077788, 45.465553], + [9.082284, 45.465553], + [9.082284, 45.461057], + [9.077788, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.465553], + [9.077788, 45.47005], + [9.082284, 45.47005], + [9.082284, 45.465553], + [9.077788, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.47005], + [9.077788, 45.474547], + [9.082284, 45.474547], + [9.082284, 45.47005], + [9.077788, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.474547], + [9.077788, 45.479043], + [9.082284, 45.479043], + [9.082284, 45.474547], + [9.077788, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.479043], + [9.077788, 45.48354], + [9.082284, 45.48354], + [9.082284, 45.479043], + [9.077788, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.48354], + [9.077788, 45.488036], + [9.082284, 45.488036], + [9.082284, 45.48354], + [9.077788, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.488036], + [9.077788, 45.492533], + [9.082284, 45.492533], + [9.082284, 45.488036], + [9.077788, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.492533], + [9.077788, 45.49703], + [9.082284, 45.49703], + [9.082284, 45.492533], + [9.077788, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.49703], + [9.077788, 45.501526], + [9.082284, 45.501526], + [9.082284, 45.49703], + [9.077788, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.501526], + [9.077788, 45.506023], + [9.082284, 45.506023], + [9.082284, 45.501526], + [9.077788, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.506023], + [9.077788, 45.510519], + [9.082284, 45.510519], + [9.082284, 45.506023], + [9.077788, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.510519], + [9.077788, 45.515016], + [9.082284, 45.515016], + [9.082284, 45.510519], + [9.077788, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.515016], + [9.077788, 45.519513], + [9.082284, 45.519513], + [9.082284, 45.515016], + [9.077788, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.519513], + [9.077788, 45.524009], + [9.082284, 45.524009], + [9.082284, 45.519513], + [9.077788, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.524009], + [9.077788, 45.528506], + [9.082284, 45.528506], + [9.082284, 45.524009], + [9.077788, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.528506], + [9.077788, 45.533002], + [9.082284, 45.533002], + [9.082284, 45.528506], + [9.077788, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.533002], + [9.077788, 45.537499], + [9.082284, 45.537499], + [9.082284, 45.533002], + [9.077788, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.537499], + [9.077788, 45.541996], + [9.082284, 45.541996], + [9.082284, 45.537499], + [9.077788, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.541996], + [9.077788, 45.546492], + [9.082284, 45.546492], + [9.082284, 45.541996], + [9.077788, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.546492], + [9.077788, 45.550989], + [9.082284, 45.550989], + [9.082284, 45.546492], + [9.077788, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.550989], + [9.077788, 45.555485], + [9.082284, 45.555485], + [9.082284, 45.550989], + [9.077788, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.555485], + [9.077788, 45.559982], + [9.082284, 45.559982], + [9.082284, 45.555485], + [9.077788, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.559982], + [9.077788, 45.564479], + [9.082284, 45.564479], + [9.082284, 45.559982], + [9.077788, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.564479], + [9.077788, 45.568975], + [9.082284, 45.568975], + [9.082284, 45.564479], + [9.077788, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.568975], + [9.077788, 45.573472], + [9.082284, 45.573472], + [9.082284, 45.568975], + [9.077788, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.573472], + [9.077788, 45.577968], + [9.082284, 45.577968], + [9.082284, 45.573472], + [9.077788, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.577968], + [9.077788, 45.582465], + [9.082284, 45.582465], + [9.082284, 45.577968], + [9.077788, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.582465], + [9.077788, 45.586962], + [9.082284, 45.586962], + [9.082284, 45.582465], + [9.077788, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.586962], + [9.077788, 45.591458], + [9.082284, 45.591458], + [9.082284, 45.586962], + [9.077788, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.591458], + [9.077788, 45.595955], + [9.082284, 45.595955], + [9.082284, 45.591458], + [9.077788, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.595955], + [9.077788, 45.600451], + [9.082284, 45.600451], + [9.082284, 45.595955], + [9.077788, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.600451], + [9.077788, 45.604948], + [9.082284, 45.604948], + [9.082284, 45.600451], + [9.077788, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.604948], + [9.077788, 45.609445], + [9.082284, 45.609445], + [9.082284, 45.604948], + [9.077788, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.609445], + [9.077788, 45.613941], + [9.082284, 45.613941], + [9.082284, 45.609445], + [9.077788, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.613941], + [9.077788, 45.618438], + [9.082284, 45.618438], + [9.082284, 45.613941], + [9.077788, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.618438], + [9.077788, 45.622934], + [9.082284, 45.622934], + [9.082284, 45.618438], + [9.077788, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.622934], + [9.077788, 45.627431], + [9.082284, 45.627431], + [9.082284, 45.622934], + [9.077788, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.627431], + [9.077788, 45.631928], + [9.082284, 45.631928], + [9.082284, 45.627431], + [9.077788, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.631928], + [9.077788, 45.636424], + [9.082284, 45.636424], + [9.082284, 45.631928], + [9.077788, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.339648], + [9.082284, 45.344145], + [9.086781, 45.344145], + [9.086781, 45.339648], + [9.082284, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.344145], + [9.082284, 45.348642], + [9.086781, 45.348642], + [9.086781, 45.344145], + [9.082284, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.348642], + [9.082284, 45.353138], + [9.086781, 45.353138], + [9.086781, 45.348642], + [9.082284, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.353138], + [9.082284, 45.357635], + [9.086781, 45.357635], + [9.086781, 45.353138], + [9.082284, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.357635], + [9.082284, 45.362131], + [9.086781, 45.362131], + [9.086781, 45.357635], + [9.082284, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.362131], + [9.082284, 45.366628], + [9.086781, 45.366628], + [9.086781, 45.362131], + [9.082284, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.366628], + [9.082284, 45.371125], + [9.086781, 45.371125], + [9.086781, 45.366628], + [9.082284, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.371125], + [9.082284, 45.375621], + [9.086781, 45.375621], + [9.086781, 45.371125], + [9.082284, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.375621], + [9.082284, 45.380118], + [9.086781, 45.380118], + [9.086781, 45.375621], + [9.082284, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.380118], + [9.082284, 45.384614], + [9.086781, 45.384614], + [9.086781, 45.380118], + [9.082284, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.384614], + [9.082284, 45.389111], + [9.086781, 45.389111], + [9.086781, 45.384614], + [9.082284, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.389111], + [9.082284, 45.393608], + [9.086781, 45.393608], + [9.086781, 45.389111], + [9.082284, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.393608], + [9.082284, 45.398104], + [9.086781, 45.398104], + [9.086781, 45.393608], + [9.082284, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.398104], + [9.082284, 45.402601], + [9.086781, 45.402601], + [9.086781, 45.398104], + [9.082284, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.402601], + [9.082284, 45.407097], + [9.086781, 45.407097], + [9.086781, 45.402601], + [9.082284, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.407097], + [9.082284, 45.411594], + [9.086781, 45.411594], + [9.086781, 45.407097], + [9.082284, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.411594], + [9.082284, 45.416091], + [9.086781, 45.416091], + [9.086781, 45.411594], + [9.082284, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.416091], + [9.082284, 45.420587], + [9.086781, 45.420587], + [9.086781, 45.416091], + [9.082284, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.420587], + [9.082284, 45.425084], + [9.086781, 45.425084], + [9.086781, 45.420587], + [9.082284, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.425084], + [9.082284, 45.42958], + [9.086781, 45.42958], + [9.086781, 45.425084], + [9.082284, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.42958], + [9.082284, 45.434077], + [9.086781, 45.434077], + [9.086781, 45.42958], + [9.082284, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.434077], + [9.082284, 45.438574], + [9.086781, 45.438574], + [9.086781, 45.434077], + [9.082284, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.438574], + [9.082284, 45.44307], + [9.086781, 45.44307], + [9.086781, 45.438574], + [9.082284, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.44307], + [9.082284, 45.447567], + [9.086781, 45.447567], + [9.086781, 45.44307], + [9.082284, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.447567], + [9.082284, 45.452063], + [9.086781, 45.452063], + [9.086781, 45.447567], + [9.082284, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.452063], + [9.082284, 45.45656], + [9.086781, 45.45656], + [9.086781, 45.452063], + [9.082284, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.45656], + [9.082284, 45.461057], + [9.086781, 45.461057], + [9.086781, 45.45656], + [9.082284, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.461057], + [9.082284, 45.465553], + [9.086781, 45.465553], + [9.086781, 45.461057], + [9.082284, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.465553], + [9.082284, 45.47005], + [9.086781, 45.47005], + [9.086781, 45.465553], + [9.082284, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.47005], + [9.082284, 45.474547], + [9.086781, 45.474547], + [9.086781, 45.47005], + [9.082284, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.474547], + [9.082284, 45.479043], + [9.086781, 45.479043], + [9.086781, 45.474547], + [9.082284, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.479043], + [9.082284, 45.48354], + [9.086781, 45.48354], + [9.086781, 45.479043], + [9.082284, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.48354], + [9.082284, 45.488036], + [9.086781, 45.488036], + [9.086781, 45.48354], + [9.082284, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.488036], + [9.082284, 45.492533], + [9.086781, 45.492533], + [9.086781, 45.488036], + [9.082284, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.492533], + [9.082284, 45.49703], + [9.086781, 45.49703], + [9.086781, 45.492533], + [9.082284, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.49703], + [9.082284, 45.501526], + [9.086781, 45.501526], + [9.086781, 45.49703], + [9.082284, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.501526], + [9.082284, 45.506023], + [9.086781, 45.506023], + [9.086781, 45.501526], + [9.082284, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.506023], + [9.082284, 45.510519], + [9.086781, 45.510519], + [9.086781, 45.506023], + [9.082284, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.510519], + [9.082284, 45.515016], + [9.086781, 45.515016], + [9.086781, 45.510519], + [9.082284, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.515016], + [9.082284, 45.519513], + [9.086781, 45.519513], + [9.086781, 45.515016], + [9.082284, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.519513], + [9.082284, 45.524009], + [9.086781, 45.524009], + [9.086781, 45.519513], + [9.082284, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.524009], + [9.082284, 45.528506], + [9.086781, 45.528506], + [9.086781, 45.524009], + [9.082284, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.528506], + [9.082284, 45.533002], + [9.086781, 45.533002], + [9.086781, 45.528506], + [9.082284, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.533002], + [9.082284, 45.537499], + [9.086781, 45.537499], + [9.086781, 45.533002], + [9.082284, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.537499], + [9.082284, 45.541996], + [9.086781, 45.541996], + [9.086781, 45.537499], + [9.082284, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.541996], + [9.082284, 45.546492], + [9.086781, 45.546492], + [9.086781, 45.541996], + [9.082284, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.546492], + [9.082284, 45.550989], + [9.086781, 45.550989], + [9.086781, 45.546492], + [9.082284, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.550989], + [9.082284, 45.555485], + [9.086781, 45.555485], + [9.086781, 45.550989], + [9.082284, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.555485], + [9.082284, 45.559982], + [9.086781, 45.559982], + [9.086781, 45.555485], + [9.082284, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.559982], + [9.082284, 45.564479], + [9.086781, 45.564479], + [9.086781, 45.559982], + [9.082284, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.564479], + [9.082284, 45.568975], + [9.086781, 45.568975], + [9.086781, 45.564479], + [9.082284, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.568975], + [9.082284, 45.573472], + [9.086781, 45.573472], + [9.086781, 45.568975], + [9.082284, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.573472], + [9.082284, 45.577968], + [9.086781, 45.577968], + [9.086781, 45.573472], + [9.082284, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.577968], + [9.082284, 45.582465], + [9.086781, 45.582465], + [9.086781, 45.577968], + [9.082284, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.582465], + [9.082284, 45.586962], + [9.086781, 45.586962], + [9.086781, 45.582465], + [9.082284, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.586962], + [9.082284, 45.591458], + [9.086781, 45.591458], + [9.086781, 45.586962], + [9.082284, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.591458], + [9.082284, 45.595955], + [9.086781, 45.595955], + [9.086781, 45.591458], + [9.082284, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.595955], + [9.082284, 45.600451], + [9.086781, 45.600451], + [9.086781, 45.595955], + [9.082284, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.600451], + [9.082284, 45.604948], + [9.086781, 45.604948], + [9.086781, 45.600451], + [9.082284, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.604948], + [9.082284, 45.609445], + [9.086781, 45.609445], + [9.086781, 45.604948], + [9.082284, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.609445], + [9.082284, 45.613941], + [9.086781, 45.613941], + [9.086781, 45.609445], + [9.082284, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.613941], + [9.082284, 45.618438], + [9.086781, 45.618438], + [9.086781, 45.613941], + [9.082284, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.618438], + [9.082284, 45.622934], + [9.086781, 45.622934], + [9.086781, 45.618438], + [9.082284, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.622934], + [9.082284, 45.627431], + [9.086781, 45.627431], + [9.086781, 45.622934], + [9.082284, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.627431], + [9.082284, 45.631928], + [9.086781, 45.631928], + [9.086781, 45.627431], + [9.082284, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.631928], + [9.082284, 45.636424], + [9.086781, 45.636424], + [9.086781, 45.631928], + [9.082284, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.339648], + [9.086781, 45.344145], + [9.091278, 45.344145], + [9.091278, 45.339648], + [9.086781, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.344145], + [9.086781, 45.348642], + [9.091278, 45.348642], + [9.091278, 45.344145], + [9.086781, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.348642], + [9.086781, 45.353138], + [9.091278, 45.353138], + [9.091278, 45.348642], + [9.086781, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.353138], + [9.086781, 45.357635], + [9.091278, 45.357635], + [9.091278, 45.353138], + [9.086781, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.357635], + [9.086781, 45.362131], + [9.091278, 45.362131], + [9.091278, 45.357635], + [9.086781, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.362131], + [9.086781, 45.366628], + [9.091278, 45.366628], + [9.091278, 45.362131], + [9.086781, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.366628], + [9.086781, 45.371125], + [9.091278, 45.371125], + [9.091278, 45.366628], + [9.086781, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.371125], + [9.086781, 45.375621], + [9.091278, 45.375621], + [9.091278, 45.371125], + [9.086781, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.375621], + [9.086781, 45.380118], + [9.091278, 45.380118], + [9.091278, 45.375621], + [9.086781, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.380118], + [9.086781, 45.384614], + [9.091278, 45.384614], + [9.091278, 45.380118], + [9.086781, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.384614], + [9.086781, 45.389111], + [9.091278, 45.389111], + [9.091278, 45.384614], + [9.086781, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.389111], + [9.086781, 45.393608], + [9.091278, 45.393608], + [9.091278, 45.389111], + [9.086781, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.393608], + [9.086781, 45.398104], + [9.091278, 45.398104], + [9.091278, 45.393608], + [9.086781, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.398104], + [9.086781, 45.402601], + [9.091278, 45.402601], + [9.091278, 45.398104], + [9.086781, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.402601], + [9.086781, 45.407097], + [9.091278, 45.407097], + [9.091278, 45.402601], + [9.086781, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.407097], + [9.086781, 45.411594], + [9.091278, 45.411594], + [9.091278, 45.407097], + [9.086781, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.411594], + [9.086781, 45.416091], + [9.091278, 45.416091], + [9.091278, 45.411594], + [9.086781, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.416091], + [9.086781, 45.420587], + [9.091278, 45.420587], + [9.091278, 45.416091], + [9.086781, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.420587], + [9.086781, 45.425084], + [9.091278, 45.425084], + [9.091278, 45.420587], + [9.086781, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.425084], + [9.086781, 45.42958], + [9.091278, 45.42958], + [9.091278, 45.425084], + [9.086781, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.42958], + [9.086781, 45.434077], + [9.091278, 45.434077], + [9.091278, 45.42958], + [9.086781, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.434077], + [9.086781, 45.438574], + [9.091278, 45.438574], + [9.091278, 45.434077], + [9.086781, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.438574], + [9.086781, 45.44307], + [9.091278, 45.44307], + [9.091278, 45.438574], + [9.086781, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.44307], + [9.086781, 45.447567], + [9.091278, 45.447567], + [9.091278, 45.44307], + [9.086781, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.447567], + [9.086781, 45.452063], + [9.091278, 45.452063], + [9.091278, 45.447567], + [9.086781, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.452063], + [9.086781, 45.45656], + [9.091278, 45.45656], + [9.091278, 45.452063], + [9.086781, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.45656], + [9.086781, 45.461057], + [9.091278, 45.461057], + [9.091278, 45.45656], + [9.086781, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.461057], + [9.086781, 45.465553], + [9.091278, 45.465553], + [9.091278, 45.461057], + [9.086781, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.465553], + [9.086781, 45.47005], + [9.091278, 45.47005], + [9.091278, 45.465553], + [9.086781, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.47005], + [9.086781, 45.474547], + [9.091278, 45.474547], + [9.091278, 45.47005], + [9.086781, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.474547], + [9.086781, 45.479043], + [9.091278, 45.479043], + [9.091278, 45.474547], + [9.086781, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.479043], + [9.086781, 45.48354], + [9.091278, 45.48354], + [9.091278, 45.479043], + [9.086781, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.48354], + [9.086781, 45.488036], + [9.091278, 45.488036], + [9.091278, 45.48354], + [9.086781, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.488036], + [9.086781, 45.492533], + [9.091278, 45.492533], + [9.091278, 45.488036], + [9.086781, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.492533], + [9.086781, 45.49703], + [9.091278, 45.49703], + [9.091278, 45.492533], + [9.086781, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.49703], + [9.086781, 45.501526], + [9.091278, 45.501526], + [9.091278, 45.49703], + [9.086781, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.501526], + [9.086781, 45.506023], + [9.091278, 45.506023], + [9.091278, 45.501526], + [9.086781, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.506023], + [9.086781, 45.510519], + [9.091278, 45.510519], + [9.091278, 45.506023], + [9.086781, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.510519], + [9.086781, 45.515016], + [9.091278, 45.515016], + [9.091278, 45.510519], + [9.086781, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.515016], + [9.086781, 45.519513], + [9.091278, 45.519513], + [9.091278, 45.515016], + [9.086781, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.519513], + [9.086781, 45.524009], + [9.091278, 45.524009], + [9.091278, 45.519513], + [9.086781, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.524009], + [9.086781, 45.528506], + [9.091278, 45.528506], + [9.091278, 45.524009], + [9.086781, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.528506], + [9.086781, 45.533002], + [9.091278, 45.533002], + [9.091278, 45.528506], + [9.086781, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.533002], + [9.086781, 45.537499], + [9.091278, 45.537499], + [9.091278, 45.533002], + [9.086781, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.537499], + [9.086781, 45.541996], + [9.091278, 45.541996], + [9.091278, 45.537499], + [9.086781, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.541996], + [9.086781, 45.546492], + [9.091278, 45.546492], + [9.091278, 45.541996], + [9.086781, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.546492], + [9.086781, 45.550989], + [9.091278, 45.550989], + [9.091278, 45.546492], + [9.086781, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.550989], + [9.086781, 45.555485], + [9.091278, 45.555485], + [9.091278, 45.550989], + [9.086781, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.555485], + [9.086781, 45.559982], + [9.091278, 45.559982], + [9.091278, 45.555485], + [9.086781, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.559982], + [9.086781, 45.564479], + [9.091278, 45.564479], + [9.091278, 45.559982], + [9.086781, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.564479], + [9.086781, 45.568975], + [9.091278, 45.568975], + [9.091278, 45.564479], + [9.086781, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.568975], + [9.086781, 45.573472], + [9.091278, 45.573472], + [9.091278, 45.568975], + [9.086781, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.573472], + [9.086781, 45.577968], + [9.091278, 45.577968], + [9.091278, 45.573472], + [9.086781, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.577968], + [9.086781, 45.582465], + [9.091278, 45.582465], + [9.091278, 45.577968], + [9.086781, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.582465], + [9.086781, 45.586962], + [9.091278, 45.586962], + [9.091278, 45.582465], + [9.086781, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.586962], + [9.086781, 45.591458], + [9.091278, 45.591458], + [9.091278, 45.586962], + [9.086781, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.591458], + [9.086781, 45.595955], + [9.091278, 45.595955], + [9.091278, 45.591458], + [9.086781, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.595955], + [9.086781, 45.600451], + [9.091278, 45.600451], + [9.091278, 45.595955], + [9.086781, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.600451], + [9.086781, 45.604948], + [9.091278, 45.604948], + [9.091278, 45.600451], + [9.086781, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.604948], + [9.086781, 45.609445], + [9.091278, 45.609445], + [9.091278, 45.604948], + [9.086781, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.609445], + [9.086781, 45.613941], + [9.091278, 45.613941], + [9.091278, 45.609445], + [9.086781, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.613941], + [9.086781, 45.618438], + [9.091278, 45.618438], + [9.091278, 45.613941], + [9.086781, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.618438], + [9.086781, 45.622934], + [9.091278, 45.622934], + [9.091278, 45.618438], + [9.086781, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.622934], + [9.086781, 45.627431], + [9.091278, 45.627431], + [9.091278, 45.622934], + [9.086781, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.627431], + [9.086781, 45.631928], + [9.091278, 45.631928], + [9.091278, 45.627431], + [9.086781, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.631928], + [9.086781, 45.636424], + [9.091278, 45.636424], + [9.091278, 45.631928], + [9.086781, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.339648], + [9.091278, 45.344145], + [9.095774, 45.344145], + [9.095774, 45.339648], + [9.091278, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.344145], + [9.091278, 45.348642], + [9.095774, 45.348642], + [9.095774, 45.344145], + [9.091278, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.348642], + [9.091278, 45.353138], + [9.095774, 45.353138], + [9.095774, 45.348642], + [9.091278, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.353138], + [9.091278, 45.357635], + [9.095774, 45.357635], + [9.095774, 45.353138], + [9.091278, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.357635], + [9.091278, 45.362131], + [9.095774, 45.362131], + [9.095774, 45.357635], + [9.091278, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.362131], + [9.091278, 45.366628], + [9.095774, 45.366628], + [9.095774, 45.362131], + [9.091278, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.366628], + [9.091278, 45.371125], + [9.095774, 45.371125], + [9.095774, 45.366628], + [9.091278, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.371125], + [9.091278, 45.375621], + [9.095774, 45.375621], + [9.095774, 45.371125], + [9.091278, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.375621], + [9.091278, 45.380118], + [9.095774, 45.380118], + [9.095774, 45.375621], + [9.091278, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.380118], + [9.091278, 45.384614], + [9.095774, 45.384614], + [9.095774, 45.380118], + [9.091278, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.384614], + [9.091278, 45.389111], + [9.095774, 45.389111], + [9.095774, 45.384614], + [9.091278, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.389111], + [9.091278, 45.393608], + [9.095774, 45.393608], + [9.095774, 45.389111], + [9.091278, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.393608], + [9.091278, 45.398104], + [9.095774, 45.398104], + [9.095774, 45.393608], + [9.091278, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.398104], + [9.091278, 45.402601], + [9.095774, 45.402601], + [9.095774, 45.398104], + [9.091278, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.402601], + [9.091278, 45.407097], + [9.095774, 45.407097], + [9.095774, 45.402601], + [9.091278, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.407097], + [9.091278, 45.411594], + [9.095774, 45.411594], + [9.095774, 45.407097], + [9.091278, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.411594], + [9.091278, 45.416091], + [9.095774, 45.416091], + [9.095774, 45.411594], + [9.091278, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.416091], + [9.091278, 45.420587], + [9.095774, 45.420587], + [9.095774, 45.416091], + [9.091278, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.420587], + [9.091278, 45.425084], + [9.095774, 45.425084], + [9.095774, 45.420587], + [9.091278, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.425084], + [9.091278, 45.42958], + [9.095774, 45.42958], + [9.095774, 45.425084], + [9.091278, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.42958], + [9.091278, 45.434077], + [9.095774, 45.434077], + [9.095774, 45.42958], + [9.091278, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.434077], + [9.091278, 45.438574], + [9.095774, 45.438574], + [9.095774, 45.434077], + [9.091278, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.438574], + [9.091278, 45.44307], + [9.095774, 45.44307], + [9.095774, 45.438574], + [9.091278, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.44307], + [9.091278, 45.447567], + [9.095774, 45.447567], + [9.095774, 45.44307], + [9.091278, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.447567], + [9.091278, 45.452063], + [9.095774, 45.452063], + [9.095774, 45.447567], + [9.091278, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.452063], + [9.091278, 45.45656], + [9.095774, 45.45656], + [9.095774, 45.452063], + [9.091278, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.45656], + [9.091278, 45.461057], + [9.095774, 45.461057], + [9.095774, 45.45656], + [9.091278, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.461057], + [9.091278, 45.465553], + [9.095774, 45.465553], + [9.095774, 45.461057], + [9.091278, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.465553], + [9.091278, 45.47005], + [9.095774, 45.47005], + [9.095774, 45.465553], + [9.091278, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.47005], + [9.091278, 45.474547], + [9.095774, 45.474547], + [9.095774, 45.47005], + [9.091278, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.474547], + [9.091278, 45.479043], + [9.095774, 45.479043], + [9.095774, 45.474547], + [9.091278, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.479043], + [9.091278, 45.48354], + [9.095774, 45.48354], + [9.095774, 45.479043], + [9.091278, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.48354], + [9.091278, 45.488036], + [9.095774, 45.488036], + [9.095774, 45.48354], + [9.091278, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.488036], + [9.091278, 45.492533], + [9.095774, 45.492533], + [9.095774, 45.488036], + [9.091278, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.492533], + [9.091278, 45.49703], + [9.095774, 45.49703], + [9.095774, 45.492533], + [9.091278, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.49703], + [9.091278, 45.501526], + [9.095774, 45.501526], + [9.095774, 45.49703], + [9.091278, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.501526], + [9.091278, 45.506023], + [9.095774, 45.506023], + [9.095774, 45.501526], + [9.091278, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.506023], + [9.091278, 45.510519], + [9.095774, 45.510519], + [9.095774, 45.506023], + [9.091278, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.510519], + [9.091278, 45.515016], + [9.095774, 45.515016], + [9.095774, 45.510519], + [9.091278, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.515016], + [9.091278, 45.519513], + [9.095774, 45.519513], + [9.095774, 45.515016], + [9.091278, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.519513], + [9.091278, 45.524009], + [9.095774, 45.524009], + [9.095774, 45.519513], + [9.091278, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.524009], + [9.091278, 45.528506], + [9.095774, 45.528506], + [9.095774, 45.524009], + [9.091278, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.528506], + [9.091278, 45.533002], + [9.095774, 45.533002], + [9.095774, 45.528506], + [9.091278, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.533002], + [9.091278, 45.537499], + [9.095774, 45.537499], + [9.095774, 45.533002], + [9.091278, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.537499], + [9.091278, 45.541996], + [9.095774, 45.541996], + [9.095774, 45.537499], + [9.091278, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.541996], + [9.091278, 45.546492], + [9.095774, 45.546492], + [9.095774, 45.541996], + [9.091278, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.546492], + [9.091278, 45.550989], + [9.095774, 45.550989], + [9.095774, 45.546492], + [9.091278, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.550989], + [9.091278, 45.555485], + [9.095774, 45.555485], + [9.095774, 45.550989], + [9.091278, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.555485], + [9.091278, 45.559982], + [9.095774, 45.559982], + [9.095774, 45.555485], + [9.091278, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.559982], + [9.091278, 45.564479], + [9.095774, 45.564479], + [9.095774, 45.559982], + [9.091278, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.564479], + [9.091278, 45.568975], + [9.095774, 45.568975], + [9.095774, 45.564479], + [9.091278, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.568975], + [9.091278, 45.573472], + [9.095774, 45.573472], + [9.095774, 45.568975], + [9.091278, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.573472], + [9.091278, 45.577968], + [9.095774, 45.577968], + [9.095774, 45.573472], + [9.091278, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.577968], + [9.091278, 45.582465], + [9.095774, 45.582465], + [9.095774, 45.577968], + [9.091278, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.582465], + [9.091278, 45.586962], + [9.095774, 45.586962], + [9.095774, 45.582465], + [9.091278, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.586962], + [9.091278, 45.591458], + [9.095774, 45.591458], + [9.095774, 45.586962], + [9.091278, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.591458], + [9.091278, 45.595955], + [9.095774, 45.595955], + [9.095774, 45.591458], + [9.091278, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.595955], + [9.091278, 45.600451], + [9.095774, 45.600451], + [9.095774, 45.595955], + [9.091278, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.600451], + [9.091278, 45.604948], + [9.095774, 45.604948], + [9.095774, 45.600451], + [9.091278, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.604948], + [9.091278, 45.609445], + [9.095774, 45.609445], + [9.095774, 45.604948], + [9.091278, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.609445], + [9.091278, 45.613941], + [9.095774, 45.613941], + [9.095774, 45.609445], + [9.091278, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.613941], + [9.091278, 45.618438], + [9.095774, 45.618438], + [9.095774, 45.613941], + [9.091278, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.618438], + [9.091278, 45.622934], + [9.095774, 45.622934], + [9.095774, 45.618438], + [9.091278, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.622934], + [9.091278, 45.627431], + [9.095774, 45.627431], + [9.095774, 45.622934], + [9.091278, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.627431], + [9.091278, 45.631928], + [9.095774, 45.631928], + [9.095774, 45.627431], + [9.091278, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.631928], + [9.091278, 45.636424], + [9.095774, 45.636424], + [9.095774, 45.631928], + [9.091278, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.339648], + [9.095774, 45.344145], + [9.100271, 45.344145], + [9.100271, 45.339648], + [9.095774, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.344145], + [9.095774, 45.348642], + [9.100271, 45.348642], + [9.100271, 45.344145], + [9.095774, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.348642], + [9.095774, 45.353138], + [9.100271, 45.353138], + [9.100271, 45.348642], + [9.095774, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.353138], + [9.095774, 45.357635], + [9.100271, 45.357635], + [9.100271, 45.353138], + [9.095774, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.357635], + [9.095774, 45.362131], + [9.100271, 45.362131], + [9.100271, 45.357635], + [9.095774, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.362131], + [9.095774, 45.366628], + [9.100271, 45.366628], + [9.100271, 45.362131], + [9.095774, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.366628], + [9.095774, 45.371125], + [9.100271, 45.371125], + [9.100271, 45.366628], + [9.095774, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.371125], + [9.095774, 45.375621], + [9.100271, 45.375621], + [9.100271, 45.371125], + [9.095774, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.375621], + [9.095774, 45.380118], + [9.100271, 45.380118], + [9.100271, 45.375621], + [9.095774, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.380118], + [9.095774, 45.384614], + [9.100271, 45.384614], + [9.100271, 45.380118], + [9.095774, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.384614], + [9.095774, 45.389111], + [9.100271, 45.389111], + [9.100271, 45.384614], + [9.095774, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.389111], + [9.095774, 45.393608], + [9.100271, 45.393608], + [9.100271, 45.389111], + [9.095774, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.393608], + [9.095774, 45.398104], + [9.100271, 45.398104], + [9.100271, 45.393608], + [9.095774, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.398104], + [9.095774, 45.402601], + [9.100271, 45.402601], + [9.100271, 45.398104], + [9.095774, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.402601], + [9.095774, 45.407097], + [9.100271, 45.407097], + [9.100271, 45.402601], + [9.095774, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.407097], + [9.095774, 45.411594], + [9.100271, 45.411594], + [9.100271, 45.407097], + [9.095774, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.411594], + [9.095774, 45.416091], + [9.100271, 45.416091], + [9.100271, 45.411594], + [9.095774, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.416091], + [9.095774, 45.420587], + [9.100271, 45.420587], + [9.100271, 45.416091], + [9.095774, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.420587], + [9.095774, 45.425084], + [9.100271, 45.425084], + [9.100271, 45.420587], + [9.095774, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.425084], + [9.095774, 45.42958], + [9.100271, 45.42958], + [9.100271, 45.425084], + [9.095774, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.42958], + [9.095774, 45.434077], + [9.100271, 45.434077], + [9.100271, 45.42958], + [9.095774, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.434077], + [9.095774, 45.438574], + [9.100271, 45.438574], + [9.100271, 45.434077], + [9.095774, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.438574], + [9.095774, 45.44307], + [9.100271, 45.44307], + [9.100271, 45.438574], + [9.095774, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.44307], + [9.095774, 45.447567], + [9.100271, 45.447567], + [9.100271, 45.44307], + [9.095774, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.447567], + [9.095774, 45.452063], + [9.100271, 45.452063], + [9.100271, 45.447567], + [9.095774, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.452063], + [9.095774, 45.45656], + [9.100271, 45.45656], + [9.100271, 45.452063], + [9.095774, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.45656], + [9.095774, 45.461057], + [9.100271, 45.461057], + [9.100271, 45.45656], + [9.095774, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.461057], + [9.095774, 45.465553], + [9.100271, 45.465553], + [9.100271, 45.461057], + [9.095774, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.465553], + [9.095774, 45.47005], + [9.100271, 45.47005], + [9.100271, 45.465553], + [9.095774, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.47005], + [9.095774, 45.474547], + [9.100271, 45.474547], + [9.100271, 45.47005], + [9.095774, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.474547], + [9.095774, 45.479043], + [9.100271, 45.479043], + [9.100271, 45.474547], + [9.095774, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.479043], + [9.095774, 45.48354], + [9.100271, 45.48354], + [9.100271, 45.479043], + [9.095774, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.48354], + [9.095774, 45.488036], + [9.100271, 45.488036], + [9.100271, 45.48354], + [9.095774, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.488036], + [9.095774, 45.492533], + [9.100271, 45.492533], + [9.100271, 45.488036], + [9.095774, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.492533], + [9.095774, 45.49703], + [9.100271, 45.49703], + [9.100271, 45.492533], + [9.095774, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.49703], + [9.095774, 45.501526], + [9.100271, 45.501526], + [9.100271, 45.49703], + [9.095774, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.501526], + [9.095774, 45.506023], + [9.100271, 45.506023], + [9.100271, 45.501526], + [9.095774, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.506023], + [9.095774, 45.510519], + [9.100271, 45.510519], + [9.100271, 45.506023], + [9.095774, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.510519], + [9.095774, 45.515016], + [9.100271, 45.515016], + [9.100271, 45.510519], + [9.095774, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.515016], + [9.095774, 45.519513], + [9.100271, 45.519513], + [9.100271, 45.515016], + [9.095774, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.519513], + [9.095774, 45.524009], + [9.100271, 45.524009], + [9.100271, 45.519513], + [9.095774, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.524009], + [9.095774, 45.528506], + [9.100271, 45.528506], + [9.100271, 45.524009], + [9.095774, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.528506], + [9.095774, 45.533002], + [9.100271, 45.533002], + [9.100271, 45.528506], + [9.095774, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.533002], + [9.095774, 45.537499], + [9.100271, 45.537499], + [9.100271, 45.533002], + [9.095774, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.537499], + [9.095774, 45.541996], + [9.100271, 45.541996], + [9.100271, 45.537499], + [9.095774, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.541996], + [9.095774, 45.546492], + [9.100271, 45.546492], + [9.100271, 45.541996], + [9.095774, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.546492], + [9.095774, 45.550989], + [9.100271, 45.550989], + [9.100271, 45.546492], + [9.095774, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.550989], + [9.095774, 45.555485], + [9.100271, 45.555485], + [9.100271, 45.550989], + [9.095774, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.555485], + [9.095774, 45.559982], + [9.100271, 45.559982], + [9.100271, 45.555485], + [9.095774, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.559982], + [9.095774, 45.564479], + [9.100271, 45.564479], + [9.100271, 45.559982], + [9.095774, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.564479], + [9.095774, 45.568975], + [9.100271, 45.568975], + [9.100271, 45.564479], + [9.095774, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.568975], + [9.095774, 45.573472], + [9.100271, 45.573472], + [9.100271, 45.568975], + [9.095774, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.573472], + [9.095774, 45.577968], + [9.100271, 45.577968], + [9.100271, 45.573472], + [9.095774, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.577968], + [9.095774, 45.582465], + [9.100271, 45.582465], + [9.100271, 45.577968], + [9.095774, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.582465], + [9.095774, 45.586962], + [9.100271, 45.586962], + [9.100271, 45.582465], + [9.095774, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.586962], + [9.095774, 45.591458], + [9.100271, 45.591458], + [9.100271, 45.586962], + [9.095774, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.591458], + [9.095774, 45.595955], + [9.100271, 45.595955], + [9.100271, 45.591458], + [9.095774, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.595955], + [9.095774, 45.600451], + [9.100271, 45.600451], + [9.100271, 45.595955], + [9.095774, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.600451], + [9.095774, 45.604948], + [9.100271, 45.604948], + [9.100271, 45.600451], + [9.095774, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.604948], + [9.095774, 45.609445], + [9.100271, 45.609445], + [9.100271, 45.604948], + [9.095774, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.609445], + [9.095774, 45.613941], + [9.100271, 45.613941], + [9.100271, 45.609445], + [9.095774, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.613941], + [9.095774, 45.618438], + [9.100271, 45.618438], + [9.100271, 45.613941], + [9.095774, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.618438], + [9.095774, 45.622934], + [9.100271, 45.622934], + [9.100271, 45.618438], + [9.095774, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.622934], + [9.095774, 45.627431], + [9.100271, 45.627431], + [9.100271, 45.622934], + [9.095774, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.627431], + [9.095774, 45.631928], + [9.100271, 45.631928], + [9.100271, 45.627431], + [9.095774, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.631928], + [9.095774, 45.636424], + [9.100271, 45.636424], + [9.100271, 45.631928], + [9.095774, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.339648], + [9.100271, 45.344145], + [9.104767, 45.344145], + [9.104767, 45.339648], + [9.100271, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.344145], + [9.100271, 45.348642], + [9.104767, 45.348642], + [9.104767, 45.344145], + [9.100271, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.348642], + [9.100271, 45.353138], + [9.104767, 45.353138], + [9.104767, 45.348642], + [9.100271, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.353138], + [9.100271, 45.357635], + [9.104767, 45.357635], + [9.104767, 45.353138], + [9.100271, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.357635], + [9.100271, 45.362131], + [9.104767, 45.362131], + [9.104767, 45.357635], + [9.100271, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.362131], + [9.100271, 45.366628], + [9.104767, 45.366628], + [9.104767, 45.362131], + [9.100271, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.366628], + [9.100271, 45.371125], + [9.104767, 45.371125], + [9.104767, 45.366628], + [9.100271, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.371125], + [9.100271, 45.375621], + [9.104767, 45.375621], + [9.104767, 45.371125], + [9.100271, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.375621], + [9.100271, 45.380118], + [9.104767, 45.380118], + [9.104767, 45.375621], + [9.100271, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.380118], + [9.100271, 45.384614], + [9.104767, 45.384614], + [9.104767, 45.380118], + [9.100271, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.384614], + [9.100271, 45.389111], + [9.104767, 45.389111], + [9.104767, 45.384614], + [9.100271, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.389111], + [9.100271, 45.393608], + [9.104767, 45.393608], + [9.104767, 45.389111], + [9.100271, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.393608], + [9.100271, 45.398104], + [9.104767, 45.398104], + [9.104767, 45.393608], + [9.100271, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.398104], + [9.100271, 45.402601], + [9.104767, 45.402601], + [9.104767, 45.398104], + [9.100271, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.402601], + [9.100271, 45.407097], + [9.104767, 45.407097], + [9.104767, 45.402601], + [9.100271, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.407097], + [9.100271, 45.411594], + [9.104767, 45.411594], + [9.104767, 45.407097], + [9.100271, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.411594], + [9.100271, 45.416091], + [9.104767, 45.416091], + [9.104767, 45.411594], + [9.100271, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.416091], + [9.100271, 45.420587], + [9.104767, 45.420587], + [9.104767, 45.416091], + [9.100271, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.420587], + [9.100271, 45.425084], + [9.104767, 45.425084], + [9.104767, 45.420587], + [9.100271, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.425084], + [9.100271, 45.42958], + [9.104767, 45.42958], + [9.104767, 45.425084], + [9.100271, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.42958], + [9.100271, 45.434077], + [9.104767, 45.434077], + [9.104767, 45.42958], + [9.100271, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.434077], + [9.100271, 45.438574], + [9.104767, 45.438574], + [9.104767, 45.434077], + [9.100271, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.438574], + [9.100271, 45.44307], + [9.104767, 45.44307], + [9.104767, 45.438574], + [9.100271, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.44307], + [9.100271, 45.447567], + [9.104767, 45.447567], + [9.104767, 45.44307], + [9.100271, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.447567], + [9.100271, 45.452063], + [9.104767, 45.452063], + [9.104767, 45.447567], + [9.100271, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.452063], + [9.100271, 45.45656], + [9.104767, 45.45656], + [9.104767, 45.452063], + [9.100271, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.45656], + [9.100271, 45.461057], + [9.104767, 45.461057], + [9.104767, 45.45656], + [9.100271, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.461057], + [9.100271, 45.465553], + [9.104767, 45.465553], + [9.104767, 45.461057], + [9.100271, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.465553], + [9.100271, 45.47005], + [9.104767, 45.47005], + [9.104767, 45.465553], + [9.100271, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.47005], + [9.100271, 45.474547], + [9.104767, 45.474547], + [9.104767, 45.47005], + [9.100271, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.474547], + [9.100271, 45.479043], + [9.104767, 45.479043], + [9.104767, 45.474547], + [9.100271, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.479043], + [9.100271, 45.48354], + [9.104767, 45.48354], + [9.104767, 45.479043], + [9.100271, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.48354], + [9.100271, 45.488036], + [9.104767, 45.488036], + [9.104767, 45.48354], + [9.100271, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.488036], + [9.100271, 45.492533], + [9.104767, 45.492533], + [9.104767, 45.488036], + [9.100271, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.492533], + [9.100271, 45.49703], + [9.104767, 45.49703], + [9.104767, 45.492533], + [9.100271, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.49703], + [9.100271, 45.501526], + [9.104767, 45.501526], + [9.104767, 45.49703], + [9.100271, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.501526], + [9.100271, 45.506023], + [9.104767, 45.506023], + [9.104767, 45.501526], + [9.100271, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.506023], + [9.100271, 45.510519], + [9.104767, 45.510519], + [9.104767, 45.506023], + [9.100271, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.510519], + [9.100271, 45.515016], + [9.104767, 45.515016], + [9.104767, 45.510519], + [9.100271, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.515016], + [9.100271, 45.519513], + [9.104767, 45.519513], + [9.104767, 45.515016], + [9.100271, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.519513], + [9.100271, 45.524009], + [9.104767, 45.524009], + [9.104767, 45.519513], + [9.100271, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.524009], + [9.100271, 45.528506], + [9.104767, 45.528506], + [9.104767, 45.524009], + [9.100271, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.528506], + [9.100271, 45.533002], + [9.104767, 45.533002], + [9.104767, 45.528506], + [9.100271, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.533002], + [9.100271, 45.537499], + [9.104767, 45.537499], + [9.104767, 45.533002], + [9.100271, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.537499], + [9.100271, 45.541996], + [9.104767, 45.541996], + [9.104767, 45.537499], + [9.100271, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.541996], + [9.100271, 45.546492], + [9.104767, 45.546492], + [9.104767, 45.541996], + [9.100271, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.546492], + [9.100271, 45.550989], + [9.104767, 45.550989], + [9.104767, 45.546492], + [9.100271, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.550989], + [9.100271, 45.555485], + [9.104767, 45.555485], + [9.104767, 45.550989], + [9.100271, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.555485], + [9.100271, 45.559982], + [9.104767, 45.559982], + [9.104767, 45.555485], + [9.100271, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.559982], + [9.100271, 45.564479], + [9.104767, 45.564479], + [9.104767, 45.559982], + [9.100271, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.564479], + [9.100271, 45.568975], + [9.104767, 45.568975], + [9.104767, 45.564479], + [9.100271, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.568975], + [9.100271, 45.573472], + [9.104767, 45.573472], + [9.104767, 45.568975], + [9.100271, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.573472], + [9.100271, 45.577968], + [9.104767, 45.577968], + [9.104767, 45.573472], + [9.100271, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.577968], + [9.100271, 45.582465], + [9.104767, 45.582465], + [9.104767, 45.577968], + [9.100271, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.582465], + [9.100271, 45.586962], + [9.104767, 45.586962], + [9.104767, 45.582465], + [9.100271, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.586962], + [9.100271, 45.591458], + [9.104767, 45.591458], + [9.104767, 45.586962], + [9.100271, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.591458], + [9.100271, 45.595955], + [9.104767, 45.595955], + [9.104767, 45.591458], + [9.100271, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.595955], + [9.100271, 45.600451], + [9.104767, 45.600451], + [9.104767, 45.595955], + [9.100271, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.600451], + [9.100271, 45.604948], + [9.104767, 45.604948], + [9.104767, 45.600451], + [9.100271, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.604948], + [9.100271, 45.609445], + [9.104767, 45.609445], + [9.104767, 45.604948], + [9.100271, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.609445], + [9.100271, 45.613941], + [9.104767, 45.613941], + [9.104767, 45.609445], + [9.100271, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.613941], + [9.100271, 45.618438], + [9.104767, 45.618438], + [9.104767, 45.613941], + [9.100271, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.618438], + [9.100271, 45.622934], + [9.104767, 45.622934], + [9.104767, 45.618438], + [9.100271, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.622934], + [9.100271, 45.627431], + [9.104767, 45.627431], + [9.104767, 45.622934], + [9.100271, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.627431], + [9.100271, 45.631928], + [9.104767, 45.631928], + [9.104767, 45.627431], + [9.100271, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.631928], + [9.100271, 45.636424], + [9.104767, 45.636424], + [9.104767, 45.631928], + [9.100271, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.339648], + [9.104767, 45.344145], + [9.109264, 45.344145], + [9.109264, 45.339648], + [9.104767, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.344145], + [9.104767, 45.348642], + [9.109264, 45.348642], + [9.109264, 45.344145], + [9.104767, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.348642], + [9.104767, 45.353138], + [9.109264, 45.353138], + [9.109264, 45.348642], + [9.104767, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.353138], + [9.104767, 45.357635], + [9.109264, 45.357635], + [9.109264, 45.353138], + [9.104767, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.357635], + [9.104767, 45.362131], + [9.109264, 45.362131], + [9.109264, 45.357635], + [9.104767, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.362131], + [9.104767, 45.366628], + [9.109264, 45.366628], + [9.109264, 45.362131], + [9.104767, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.366628], + [9.104767, 45.371125], + [9.109264, 45.371125], + [9.109264, 45.366628], + [9.104767, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.371125], + [9.104767, 45.375621], + [9.109264, 45.375621], + [9.109264, 45.371125], + [9.104767, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.375621], + [9.104767, 45.380118], + [9.109264, 45.380118], + [9.109264, 45.375621], + [9.104767, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.380118], + [9.104767, 45.384614], + [9.109264, 45.384614], + [9.109264, 45.380118], + [9.104767, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.384614], + [9.104767, 45.389111], + [9.109264, 45.389111], + [9.109264, 45.384614], + [9.104767, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.389111], + [9.104767, 45.393608], + [9.109264, 45.393608], + [9.109264, 45.389111], + [9.104767, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.393608], + [9.104767, 45.398104], + [9.109264, 45.398104], + [9.109264, 45.393608], + [9.104767, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.398104], + [9.104767, 45.402601], + [9.109264, 45.402601], + [9.109264, 45.398104], + [9.104767, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.402601], + [9.104767, 45.407097], + [9.109264, 45.407097], + [9.109264, 45.402601], + [9.104767, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.407097], + [9.104767, 45.411594], + [9.109264, 45.411594], + [9.109264, 45.407097], + [9.104767, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.411594], + [9.104767, 45.416091], + [9.109264, 45.416091], + [9.109264, 45.411594], + [9.104767, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.416091], + [9.104767, 45.420587], + [9.109264, 45.420587], + [9.109264, 45.416091], + [9.104767, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.420587], + [9.104767, 45.425084], + [9.109264, 45.425084], + [9.109264, 45.420587], + [9.104767, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.425084], + [9.104767, 45.42958], + [9.109264, 45.42958], + [9.109264, 45.425084], + [9.104767, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.42958], + [9.104767, 45.434077], + [9.109264, 45.434077], + [9.109264, 45.42958], + [9.104767, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.434077], + [9.104767, 45.438574], + [9.109264, 45.438574], + [9.109264, 45.434077], + [9.104767, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.438574], + [9.104767, 45.44307], + [9.109264, 45.44307], + [9.109264, 45.438574], + [9.104767, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.44307], + [9.104767, 45.447567], + [9.109264, 45.447567], + [9.109264, 45.44307], + [9.104767, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.447567], + [9.104767, 45.452063], + [9.109264, 45.452063], + [9.109264, 45.447567], + [9.104767, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.452063], + [9.104767, 45.45656], + [9.109264, 45.45656], + [9.109264, 45.452063], + [9.104767, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.45656], + [9.104767, 45.461057], + [9.109264, 45.461057], + [9.109264, 45.45656], + [9.104767, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.461057], + [9.104767, 45.465553], + [9.109264, 45.465553], + [9.109264, 45.461057], + [9.104767, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.465553], + [9.104767, 45.47005], + [9.109264, 45.47005], + [9.109264, 45.465553], + [9.104767, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.47005], + [9.104767, 45.474547], + [9.109264, 45.474547], + [9.109264, 45.47005], + [9.104767, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.474547], + [9.104767, 45.479043], + [9.109264, 45.479043], + [9.109264, 45.474547], + [9.104767, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.479043], + [9.104767, 45.48354], + [9.109264, 45.48354], + [9.109264, 45.479043], + [9.104767, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.48354], + [9.104767, 45.488036], + [9.109264, 45.488036], + [9.109264, 45.48354], + [9.104767, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.488036], + [9.104767, 45.492533], + [9.109264, 45.492533], + [9.109264, 45.488036], + [9.104767, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.492533], + [9.104767, 45.49703], + [9.109264, 45.49703], + [9.109264, 45.492533], + [9.104767, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.49703], + [9.104767, 45.501526], + [9.109264, 45.501526], + [9.109264, 45.49703], + [9.104767, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.501526], + [9.104767, 45.506023], + [9.109264, 45.506023], + [9.109264, 45.501526], + [9.104767, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.506023], + [9.104767, 45.510519], + [9.109264, 45.510519], + [9.109264, 45.506023], + [9.104767, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.510519], + [9.104767, 45.515016], + [9.109264, 45.515016], + [9.109264, 45.510519], + [9.104767, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.515016], + [9.104767, 45.519513], + [9.109264, 45.519513], + [9.109264, 45.515016], + [9.104767, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.519513], + [9.104767, 45.524009], + [9.109264, 45.524009], + [9.109264, 45.519513], + [9.104767, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.524009], + [9.104767, 45.528506], + [9.109264, 45.528506], + [9.109264, 45.524009], + [9.104767, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.528506], + [9.104767, 45.533002], + [9.109264, 45.533002], + [9.109264, 45.528506], + [9.104767, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.533002], + [9.104767, 45.537499], + [9.109264, 45.537499], + [9.109264, 45.533002], + [9.104767, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.537499], + [9.104767, 45.541996], + [9.109264, 45.541996], + [9.109264, 45.537499], + [9.104767, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.541996], + [9.104767, 45.546492], + [9.109264, 45.546492], + [9.109264, 45.541996], + [9.104767, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.546492], + [9.104767, 45.550989], + [9.109264, 45.550989], + [9.109264, 45.546492], + [9.104767, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.550989], + [9.104767, 45.555485], + [9.109264, 45.555485], + [9.109264, 45.550989], + [9.104767, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.555485], + [9.104767, 45.559982], + [9.109264, 45.559982], + [9.109264, 45.555485], + [9.104767, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.559982], + [9.104767, 45.564479], + [9.109264, 45.564479], + [9.109264, 45.559982], + [9.104767, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.564479], + [9.104767, 45.568975], + [9.109264, 45.568975], + [9.109264, 45.564479], + [9.104767, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.568975], + [9.104767, 45.573472], + [9.109264, 45.573472], + [9.109264, 45.568975], + [9.104767, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.573472], + [9.104767, 45.577968], + [9.109264, 45.577968], + [9.109264, 45.573472], + [9.104767, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.577968], + [9.104767, 45.582465], + [9.109264, 45.582465], + [9.109264, 45.577968], + [9.104767, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.582465], + [9.104767, 45.586962], + [9.109264, 45.586962], + [9.109264, 45.582465], + [9.104767, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.586962], + [9.104767, 45.591458], + [9.109264, 45.591458], + [9.109264, 45.586962], + [9.104767, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.591458], + [9.104767, 45.595955], + [9.109264, 45.595955], + [9.109264, 45.591458], + [9.104767, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.595955], + [9.104767, 45.600451], + [9.109264, 45.600451], + [9.109264, 45.595955], + [9.104767, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.600451], + [9.104767, 45.604948], + [9.109264, 45.604948], + [9.109264, 45.600451], + [9.104767, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.604948], + [9.104767, 45.609445], + [9.109264, 45.609445], + [9.109264, 45.604948], + [9.104767, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.609445], + [9.104767, 45.613941], + [9.109264, 45.613941], + [9.109264, 45.609445], + [9.104767, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.613941], + [9.104767, 45.618438], + [9.109264, 45.618438], + [9.109264, 45.613941], + [9.104767, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.618438], + [9.104767, 45.622934], + [9.109264, 45.622934], + [9.109264, 45.618438], + [9.104767, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.622934], + [9.104767, 45.627431], + [9.109264, 45.627431], + [9.109264, 45.622934], + [9.104767, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.627431], + [9.104767, 45.631928], + [9.109264, 45.631928], + [9.109264, 45.627431], + [9.104767, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.631928], + [9.104767, 45.636424], + [9.109264, 45.636424], + [9.109264, 45.631928], + [9.104767, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.339648], + [9.109264, 45.344145], + [9.113761, 45.344145], + [9.113761, 45.339648], + [9.109264, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.344145], + [9.109264, 45.348642], + [9.113761, 45.348642], + [9.113761, 45.344145], + [9.109264, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.348642], + [9.109264, 45.353138], + [9.113761, 45.353138], + [9.113761, 45.348642], + [9.109264, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.353138], + [9.109264, 45.357635], + [9.113761, 45.357635], + [9.113761, 45.353138], + [9.109264, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.357635], + [9.109264, 45.362131], + [9.113761, 45.362131], + [9.113761, 45.357635], + [9.109264, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.362131], + [9.109264, 45.366628], + [9.113761, 45.366628], + [9.113761, 45.362131], + [9.109264, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.366628], + [9.109264, 45.371125], + [9.113761, 45.371125], + [9.113761, 45.366628], + [9.109264, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.371125], + [9.109264, 45.375621], + [9.113761, 45.375621], + [9.113761, 45.371125], + [9.109264, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.375621], + [9.109264, 45.380118], + [9.113761, 45.380118], + [9.113761, 45.375621], + [9.109264, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.380118], + [9.109264, 45.384614], + [9.113761, 45.384614], + [9.113761, 45.380118], + [9.109264, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.384614], + [9.109264, 45.389111], + [9.113761, 45.389111], + [9.113761, 45.384614], + [9.109264, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.389111], + [9.109264, 45.393608], + [9.113761, 45.393608], + [9.113761, 45.389111], + [9.109264, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.393608], + [9.109264, 45.398104], + [9.113761, 45.398104], + [9.113761, 45.393608], + [9.109264, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.398104], + [9.109264, 45.402601], + [9.113761, 45.402601], + [9.113761, 45.398104], + [9.109264, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.402601], + [9.109264, 45.407097], + [9.113761, 45.407097], + [9.113761, 45.402601], + [9.109264, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.407097], + [9.109264, 45.411594], + [9.113761, 45.411594], + [9.113761, 45.407097], + [9.109264, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.411594], + [9.109264, 45.416091], + [9.113761, 45.416091], + [9.113761, 45.411594], + [9.109264, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.416091], + [9.109264, 45.420587], + [9.113761, 45.420587], + [9.113761, 45.416091], + [9.109264, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.420587], + [9.109264, 45.425084], + [9.113761, 45.425084], + [9.113761, 45.420587], + [9.109264, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.425084], + [9.109264, 45.42958], + [9.113761, 45.42958], + [9.113761, 45.425084], + [9.109264, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.42958], + [9.109264, 45.434077], + [9.113761, 45.434077], + [9.113761, 45.42958], + [9.109264, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#cce7ff", + "fill": "#cce7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.434077], + [9.109264, 45.438574], + [9.113761, 45.438574], + [9.113761, 45.434077], + [9.109264, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#cce7ff", + "fill": "#cce7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.438574], + [9.109264, 45.44307], + [9.113761, 45.44307], + [9.113761, 45.438574], + [9.109264, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.44307], + [9.109264, 45.447567], + [9.113761, 45.447567], + [9.113761, 45.44307], + [9.109264, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.447567], + [9.109264, 45.452063], + [9.113761, 45.452063], + [9.113761, 45.447567], + [9.109264, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.452063], + [9.109264, 45.45656], + [9.113761, 45.45656], + [9.113761, 45.452063], + [9.109264, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.45656], + [9.109264, 45.461057], + [9.113761, 45.461057], + [9.113761, 45.45656], + [9.109264, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.461057], + [9.109264, 45.465553], + [9.113761, 45.465553], + [9.113761, 45.461057], + [9.109264, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.465553], + [9.109264, 45.47005], + [9.113761, 45.47005], + [9.113761, 45.465553], + [9.109264, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.47005], + [9.109264, 45.474547], + [9.113761, 45.474547], + [9.113761, 45.47005], + [9.109264, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.474547], + [9.109264, 45.479043], + [9.113761, 45.479043], + [9.113761, 45.474547], + [9.109264, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.479043], + [9.109264, 45.48354], + [9.113761, 45.48354], + [9.113761, 45.479043], + [9.109264, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.48354], + [9.109264, 45.488036], + [9.113761, 45.488036], + [9.113761, 45.48354], + [9.109264, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.488036], + [9.109264, 45.492533], + [9.113761, 45.492533], + [9.113761, 45.488036], + [9.109264, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.492533], + [9.109264, 45.49703], + [9.113761, 45.49703], + [9.113761, 45.492533], + [9.109264, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.49703], + [9.109264, 45.501526], + [9.113761, 45.501526], + [9.113761, 45.49703], + [9.109264, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.501526], + [9.109264, 45.506023], + [9.113761, 45.506023], + [9.113761, 45.501526], + [9.109264, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.506023], + [9.109264, 45.510519], + [9.113761, 45.510519], + [9.113761, 45.506023], + [9.109264, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.510519], + [9.109264, 45.515016], + [9.113761, 45.515016], + [9.113761, 45.510519], + [9.109264, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.515016], + [9.109264, 45.519513], + [9.113761, 45.519513], + [9.113761, 45.515016], + [9.109264, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.519513], + [9.109264, 45.524009], + [9.113761, 45.524009], + [9.113761, 45.519513], + [9.109264, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.524009], + [9.109264, 45.528506], + [9.113761, 45.528506], + [9.113761, 45.524009], + [9.109264, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.528506], + [9.109264, 45.533002], + [9.113761, 45.533002], + [9.113761, 45.528506], + [9.109264, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.533002], + [9.109264, 45.537499], + [9.113761, 45.537499], + [9.113761, 45.533002], + [9.109264, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.537499], + [9.109264, 45.541996], + [9.113761, 45.541996], + [9.113761, 45.537499], + [9.109264, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.541996], + [9.109264, 45.546492], + [9.113761, 45.546492], + [9.113761, 45.541996], + [9.109264, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.546492], + [9.109264, 45.550989], + [9.113761, 45.550989], + [9.113761, 45.546492], + [9.109264, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.550989], + [9.109264, 45.555485], + [9.113761, 45.555485], + [9.113761, 45.550989], + [9.109264, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.555485], + [9.109264, 45.559982], + [9.113761, 45.559982], + [9.113761, 45.555485], + [9.109264, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.559982], + [9.109264, 45.564479], + [9.113761, 45.564479], + [9.113761, 45.559982], + [9.109264, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.564479], + [9.109264, 45.568975], + [9.113761, 45.568975], + [9.113761, 45.564479], + [9.109264, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.568975], + [9.109264, 45.573472], + [9.113761, 45.573472], + [9.113761, 45.568975], + [9.109264, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.573472], + [9.109264, 45.577968], + [9.113761, 45.577968], + [9.113761, 45.573472], + [9.109264, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.577968], + [9.109264, 45.582465], + [9.113761, 45.582465], + [9.113761, 45.577968], + [9.109264, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.582465], + [9.109264, 45.586962], + [9.113761, 45.586962], + [9.113761, 45.582465], + [9.109264, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.586962], + [9.109264, 45.591458], + [9.113761, 45.591458], + [9.113761, 45.586962], + [9.109264, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.591458], + [9.109264, 45.595955], + [9.113761, 45.595955], + [9.113761, 45.591458], + [9.109264, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.595955], + [9.109264, 45.600451], + [9.113761, 45.600451], + [9.113761, 45.595955], + [9.109264, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.600451], + [9.109264, 45.604948], + [9.113761, 45.604948], + [9.113761, 45.600451], + [9.109264, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.604948], + [9.109264, 45.609445], + [9.113761, 45.609445], + [9.113761, 45.604948], + [9.109264, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.609445], + [9.109264, 45.613941], + [9.113761, 45.613941], + [9.113761, 45.609445], + [9.109264, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.613941], + [9.109264, 45.618438], + [9.113761, 45.618438], + [9.113761, 45.613941], + [9.109264, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.618438], + [9.109264, 45.622934], + [9.113761, 45.622934], + [9.113761, 45.618438], + [9.109264, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.622934], + [9.109264, 45.627431], + [9.113761, 45.627431], + [9.113761, 45.622934], + [9.109264, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.627431], + [9.109264, 45.631928], + [9.113761, 45.631928], + [9.113761, 45.627431], + [9.109264, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.631928], + [9.109264, 45.636424], + [9.113761, 45.636424], + [9.113761, 45.631928], + [9.109264, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.339648], + [9.113761, 45.344145], + [9.118257, 45.344145], + [9.118257, 45.339648], + [9.113761, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.344145], + [9.113761, 45.348642], + [9.118257, 45.348642], + [9.118257, 45.344145], + [9.113761, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.348642], + [9.113761, 45.353138], + [9.118257, 45.353138], + [9.118257, 45.348642], + [9.113761, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.353138], + [9.113761, 45.357635], + [9.118257, 45.357635], + [9.118257, 45.353138], + [9.113761, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.357635], + [9.113761, 45.362131], + [9.118257, 45.362131], + [9.118257, 45.357635], + [9.113761, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.362131], + [9.113761, 45.366628], + [9.118257, 45.366628], + [9.118257, 45.362131], + [9.113761, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.366628], + [9.113761, 45.371125], + [9.118257, 45.371125], + [9.118257, 45.366628], + [9.113761, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.371125], + [9.113761, 45.375621], + [9.118257, 45.375621], + [9.118257, 45.371125], + [9.113761, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.375621], + [9.113761, 45.380118], + [9.118257, 45.380118], + [9.118257, 45.375621], + [9.113761, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.380118], + [9.113761, 45.384614], + [9.118257, 45.384614], + [9.118257, 45.380118], + [9.113761, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.384614], + [9.113761, 45.389111], + [9.118257, 45.389111], + [9.118257, 45.384614], + [9.113761, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.389111], + [9.113761, 45.393608], + [9.118257, 45.393608], + [9.118257, 45.389111], + [9.113761, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.393608], + [9.113761, 45.398104], + [9.118257, 45.398104], + [9.118257, 45.393608], + [9.113761, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.398104], + [9.113761, 45.402601], + [9.118257, 45.402601], + [9.118257, 45.398104], + [9.113761, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.402601], + [9.113761, 45.407097], + [9.118257, 45.407097], + [9.118257, 45.402601], + [9.113761, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.407097], + [9.113761, 45.411594], + [9.118257, 45.411594], + [9.118257, 45.407097], + [9.113761, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.411594], + [9.113761, 45.416091], + [9.118257, 45.416091], + [9.118257, 45.411594], + [9.113761, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.416091], + [9.113761, 45.420587], + [9.118257, 45.420587], + [9.118257, 45.416091], + [9.113761, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.420587], + [9.113761, 45.425084], + [9.118257, 45.425084], + [9.118257, 45.420587], + [9.113761, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.425084], + [9.113761, 45.42958], + [9.118257, 45.42958], + [9.118257, 45.425084], + [9.113761, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.42958], + [9.113761, 45.434077], + [9.118257, 45.434077], + [9.118257, 45.42958], + [9.113761, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 15, + "stroke": "#d6ebff", + "fill": "#d6ebff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.434077], + [9.113761, 45.438574], + [9.118257, 45.438574], + [9.118257, 45.434077], + [9.113761, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 14, + "stroke": "#e0f0ff", + "fill": "#e0f0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.438574], + [9.113761, 45.44307], + [9.118257, 45.44307], + [9.118257, 45.438574], + [9.113761, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.44307], + [9.113761, 45.447567], + [9.118257, 45.447567], + [9.118257, 45.44307], + [9.113761, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.447567], + [9.113761, 45.452063], + [9.118257, 45.452063], + [9.118257, 45.447567], + [9.113761, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.452063], + [9.113761, 45.45656], + [9.118257, 45.45656], + [9.118257, 45.452063], + [9.113761, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.45656], + [9.113761, 45.461057], + [9.118257, 45.461057], + [9.118257, 45.45656], + [9.113761, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.461057], + [9.113761, 45.465553], + [9.118257, 45.465553], + [9.118257, 45.461057], + [9.113761, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.465553], + [9.113761, 45.47005], + [9.118257, 45.47005], + [9.118257, 45.465553], + [9.113761, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.47005], + [9.113761, 45.474547], + [9.118257, 45.474547], + [9.118257, 45.47005], + [9.113761, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.474547], + [9.113761, 45.479043], + [9.118257, 45.479043], + [9.118257, 45.474547], + [9.113761, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.479043], + [9.113761, 45.48354], + [9.118257, 45.48354], + [9.118257, 45.479043], + [9.113761, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.48354], + [9.113761, 45.488036], + [9.118257, 45.488036], + [9.118257, 45.48354], + [9.113761, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.488036], + [9.113761, 45.492533], + [9.118257, 45.492533], + [9.118257, 45.488036], + [9.113761, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.492533], + [9.113761, 45.49703], + [9.118257, 45.49703], + [9.118257, 45.492533], + [9.113761, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.49703], + [9.113761, 45.501526], + [9.118257, 45.501526], + [9.118257, 45.49703], + [9.113761, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.501526], + [9.113761, 45.506023], + [9.118257, 45.506023], + [9.118257, 45.501526], + [9.113761, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.506023], + [9.113761, 45.510519], + [9.118257, 45.510519], + [9.118257, 45.506023], + [9.113761, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.510519], + [9.113761, 45.515016], + [9.118257, 45.515016], + [9.118257, 45.510519], + [9.113761, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.515016], + [9.113761, 45.519513], + [9.118257, 45.519513], + [9.118257, 45.515016], + [9.113761, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.519513], + [9.113761, 45.524009], + [9.118257, 45.524009], + [9.118257, 45.519513], + [9.113761, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.524009], + [9.113761, 45.528506], + [9.118257, 45.528506], + [9.118257, 45.524009], + [9.113761, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.528506], + [9.113761, 45.533002], + [9.118257, 45.533002], + [9.118257, 45.528506], + [9.113761, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.533002], + [9.113761, 45.537499], + [9.118257, 45.537499], + [9.118257, 45.533002], + [9.113761, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.537499], + [9.113761, 45.541996], + [9.118257, 45.541996], + [9.118257, 45.537499], + [9.113761, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.541996], + [9.113761, 45.546492], + [9.118257, 45.546492], + [9.118257, 45.541996], + [9.113761, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.546492], + [9.113761, 45.550989], + [9.118257, 45.550989], + [9.118257, 45.546492], + [9.113761, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.550989], + [9.113761, 45.555485], + [9.118257, 45.555485], + [9.118257, 45.550989], + [9.113761, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.555485], + [9.113761, 45.559982], + [9.118257, 45.559982], + [9.118257, 45.555485], + [9.113761, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.559982], + [9.113761, 45.564479], + [9.118257, 45.564479], + [9.118257, 45.559982], + [9.113761, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.564479], + [9.113761, 45.568975], + [9.118257, 45.568975], + [9.118257, 45.564479], + [9.113761, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.568975], + [9.113761, 45.573472], + [9.118257, 45.573472], + [9.118257, 45.568975], + [9.113761, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.573472], + [9.113761, 45.577968], + [9.118257, 45.577968], + [9.118257, 45.573472], + [9.113761, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.577968], + [9.113761, 45.582465], + [9.118257, 45.582465], + [9.118257, 45.577968], + [9.113761, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.582465], + [9.113761, 45.586962], + [9.118257, 45.586962], + [9.118257, 45.582465], + [9.113761, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.586962], + [9.113761, 45.591458], + [9.118257, 45.591458], + [9.118257, 45.586962], + [9.113761, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.591458], + [9.113761, 45.595955], + [9.118257, 45.595955], + [9.118257, 45.591458], + [9.113761, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.595955], + [9.113761, 45.600451], + [9.118257, 45.600451], + [9.118257, 45.595955], + [9.113761, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.600451], + [9.113761, 45.604948], + [9.118257, 45.604948], + [9.118257, 45.600451], + [9.113761, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.604948], + [9.113761, 45.609445], + [9.118257, 45.609445], + [9.118257, 45.604948], + [9.113761, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.609445], + [9.113761, 45.613941], + [9.118257, 45.613941], + [9.118257, 45.609445], + [9.113761, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.613941], + [9.113761, 45.618438], + [9.118257, 45.618438], + [9.118257, 45.613941], + [9.113761, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.618438], + [9.113761, 45.622934], + [9.118257, 45.622934], + [9.118257, 45.618438], + [9.113761, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.622934], + [9.113761, 45.627431], + [9.118257, 45.627431], + [9.118257, 45.622934], + [9.113761, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.627431], + [9.113761, 45.631928], + [9.118257, 45.631928], + [9.118257, 45.627431], + [9.113761, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.631928], + [9.113761, 45.636424], + [9.118257, 45.636424], + [9.118257, 45.631928], + [9.113761, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.339648], + [9.118257, 45.344145], + [9.122754, 45.344145], + [9.122754, 45.339648], + [9.118257, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.344145], + [9.118257, 45.348642], + [9.122754, 45.348642], + [9.122754, 45.344145], + [9.118257, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.348642], + [9.118257, 45.353138], + [9.122754, 45.353138], + [9.122754, 45.348642], + [9.118257, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.353138], + [9.118257, 45.357635], + [9.122754, 45.357635], + [9.122754, 45.353138], + [9.118257, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.357635], + [9.118257, 45.362131], + [9.122754, 45.362131], + [9.122754, 45.357635], + [9.118257, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.362131], + [9.118257, 45.366628], + [9.122754, 45.366628], + [9.122754, 45.362131], + [9.118257, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.366628], + [9.118257, 45.371125], + [9.122754, 45.371125], + [9.122754, 45.366628], + [9.118257, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.371125], + [9.118257, 45.375621], + [9.122754, 45.375621], + [9.122754, 45.371125], + [9.118257, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.375621], + [9.118257, 45.380118], + [9.122754, 45.380118], + [9.122754, 45.375621], + [9.118257, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.380118], + [9.118257, 45.384614], + [9.122754, 45.384614], + [9.122754, 45.380118], + [9.118257, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.384614], + [9.118257, 45.389111], + [9.122754, 45.389111], + [9.122754, 45.384614], + [9.118257, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.389111], + [9.118257, 45.393608], + [9.122754, 45.393608], + [9.122754, 45.389111], + [9.118257, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.393608], + [9.118257, 45.398104], + [9.122754, 45.398104], + [9.122754, 45.393608], + [9.118257, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.398104], + [9.118257, 45.402601], + [9.122754, 45.402601], + [9.122754, 45.398104], + [9.118257, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.402601], + [9.118257, 45.407097], + [9.122754, 45.407097], + [9.122754, 45.402601], + [9.118257, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.407097], + [9.118257, 45.411594], + [9.122754, 45.411594], + [9.122754, 45.407097], + [9.118257, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.411594], + [9.118257, 45.416091], + [9.122754, 45.416091], + [9.122754, 45.411594], + [9.118257, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.416091], + [9.118257, 45.420587], + [9.122754, 45.420587], + [9.122754, 45.416091], + [9.118257, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.420587], + [9.118257, 45.425084], + [9.122754, 45.425084], + [9.122754, 45.420587], + [9.118257, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.425084], + [9.118257, 45.42958], + [9.122754, 45.42958], + [9.122754, 45.425084], + [9.118257, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.42958], + [9.118257, 45.434077], + [9.122754, 45.434077], + [9.122754, 45.42958], + [9.118257, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#cce7ff", + "fill": "#cce7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.434077], + [9.118257, 45.438574], + [9.122754, 45.438574], + [9.122754, 45.434077], + [9.118257, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 15, + "stroke": "#d6ebff", + "fill": "#d6ebff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.438574], + [9.118257, 45.44307], + [9.122754, 45.44307], + [9.122754, 45.438574], + [9.118257, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.44307], + [9.118257, 45.447567], + [9.122754, 45.447567], + [9.122754, 45.44307], + [9.118257, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.447567], + [9.118257, 45.452063], + [9.122754, 45.452063], + [9.122754, 45.447567], + [9.118257, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.452063], + [9.118257, 45.45656], + [9.122754, 45.45656], + [9.122754, 45.452063], + [9.118257, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.45656], + [9.118257, 45.461057], + [9.122754, 45.461057], + [9.122754, 45.45656], + [9.118257, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.461057], + [9.118257, 45.465553], + [9.122754, 45.465553], + [9.122754, 45.461057], + [9.118257, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.465553], + [9.118257, 45.47005], + [9.122754, 45.47005], + [9.122754, 45.465553], + [9.118257, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.47005], + [9.118257, 45.474547], + [9.122754, 45.474547], + [9.122754, 45.47005], + [9.118257, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.474547], + [9.118257, 45.479043], + [9.122754, 45.479043], + [9.122754, 45.474547], + [9.118257, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.479043], + [9.118257, 45.48354], + [9.122754, 45.48354], + [9.122754, 45.479043], + [9.118257, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.48354], + [9.118257, 45.488036], + [9.122754, 45.488036], + [9.122754, 45.48354], + [9.118257, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.488036], + [9.118257, 45.492533], + [9.122754, 45.492533], + [9.122754, 45.488036], + [9.118257, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.492533], + [9.118257, 45.49703], + [9.122754, 45.49703], + [9.122754, 45.492533], + [9.118257, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.49703], + [9.118257, 45.501526], + [9.122754, 45.501526], + [9.122754, 45.49703], + [9.118257, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.501526], + [9.118257, 45.506023], + [9.122754, 45.506023], + [9.122754, 45.501526], + [9.118257, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.506023], + [9.118257, 45.510519], + [9.122754, 45.510519], + [9.122754, 45.506023], + [9.118257, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.510519], + [9.118257, 45.515016], + [9.122754, 45.515016], + [9.122754, 45.510519], + [9.118257, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.515016], + [9.118257, 45.519513], + [9.122754, 45.519513], + [9.122754, 45.515016], + [9.118257, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.519513], + [9.118257, 45.524009], + [9.122754, 45.524009], + [9.122754, 45.519513], + [9.118257, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.524009], + [9.118257, 45.528506], + [9.122754, 45.528506], + [9.122754, 45.524009], + [9.118257, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.528506], + [9.118257, 45.533002], + [9.122754, 45.533002], + [9.122754, 45.528506], + [9.118257, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.533002], + [9.118257, 45.537499], + [9.122754, 45.537499], + [9.122754, 45.533002], + [9.118257, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.537499], + [9.118257, 45.541996], + [9.122754, 45.541996], + [9.122754, 45.537499], + [9.118257, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.541996], + [9.118257, 45.546492], + [9.122754, 45.546492], + [9.122754, 45.541996], + [9.118257, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.546492], + [9.118257, 45.550989], + [9.122754, 45.550989], + [9.122754, 45.546492], + [9.118257, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.550989], + [9.118257, 45.555485], + [9.122754, 45.555485], + [9.122754, 45.550989], + [9.118257, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.555485], + [9.118257, 45.559982], + [9.122754, 45.559982], + [9.122754, 45.555485], + [9.118257, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.559982], + [9.118257, 45.564479], + [9.122754, 45.564479], + [9.122754, 45.559982], + [9.118257, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.564479], + [9.118257, 45.568975], + [9.122754, 45.568975], + [9.122754, 45.564479], + [9.118257, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.568975], + [9.118257, 45.573472], + [9.122754, 45.573472], + [9.122754, 45.568975], + [9.118257, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.573472], + [9.118257, 45.577968], + [9.122754, 45.577968], + [9.122754, 45.573472], + [9.118257, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.577968], + [9.118257, 45.582465], + [9.122754, 45.582465], + [9.122754, 45.577968], + [9.118257, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.582465], + [9.118257, 45.586962], + [9.122754, 45.586962], + [9.122754, 45.582465], + [9.118257, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.586962], + [9.118257, 45.591458], + [9.122754, 45.591458], + [9.122754, 45.586962], + [9.118257, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.591458], + [9.118257, 45.595955], + [9.122754, 45.595955], + [9.122754, 45.591458], + [9.118257, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.595955], + [9.118257, 45.600451], + [9.122754, 45.600451], + [9.122754, 45.595955], + [9.118257, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.600451], + [9.118257, 45.604948], + [9.122754, 45.604948], + [9.122754, 45.600451], + [9.118257, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.604948], + [9.118257, 45.609445], + [9.122754, 45.609445], + [9.122754, 45.604948], + [9.118257, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.609445], + [9.118257, 45.613941], + [9.122754, 45.613941], + [9.122754, 45.609445], + [9.118257, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.613941], + [9.118257, 45.618438], + [9.122754, 45.618438], + [9.122754, 45.613941], + [9.118257, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.618438], + [9.118257, 45.622934], + [9.122754, 45.622934], + [9.122754, 45.618438], + [9.118257, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.622934], + [9.118257, 45.627431], + [9.122754, 45.627431], + [9.122754, 45.622934], + [9.118257, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.627431], + [9.118257, 45.631928], + [9.122754, 45.631928], + [9.122754, 45.627431], + [9.118257, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.631928], + [9.118257, 45.636424], + [9.122754, 45.636424], + [9.122754, 45.631928], + [9.118257, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.339648], + [9.122754, 45.344145], + [9.12725, 45.344145], + [9.12725, 45.339648], + [9.122754, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.344145], + [9.122754, 45.348642], + [9.12725, 45.348642], + [9.12725, 45.344145], + [9.122754, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.348642], + [9.122754, 45.353138], + [9.12725, 45.353138], + [9.12725, 45.348642], + [9.122754, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.353138], + [9.122754, 45.357635], + [9.12725, 45.357635], + [9.12725, 45.353138], + [9.122754, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.357635], + [9.122754, 45.362131], + [9.12725, 45.362131], + [9.12725, 45.357635], + [9.122754, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.362131], + [9.122754, 45.366628], + [9.12725, 45.366628], + [9.12725, 45.362131], + [9.122754, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.366628], + [9.122754, 45.371125], + [9.12725, 45.371125], + [9.12725, 45.366628], + [9.122754, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.371125], + [9.122754, 45.375621], + [9.12725, 45.375621], + [9.12725, 45.371125], + [9.122754, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.375621], + [9.122754, 45.380118], + [9.12725, 45.380118], + [9.12725, 45.375621], + [9.122754, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.380118], + [9.122754, 45.384614], + [9.12725, 45.384614], + [9.12725, 45.380118], + [9.122754, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.384614], + [9.122754, 45.389111], + [9.12725, 45.389111], + [9.12725, 45.384614], + [9.122754, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.389111], + [9.122754, 45.393608], + [9.12725, 45.393608], + [9.12725, 45.389111], + [9.122754, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.393608], + [9.122754, 45.398104], + [9.12725, 45.398104], + [9.12725, 45.393608], + [9.122754, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.398104], + [9.122754, 45.402601], + [9.12725, 45.402601], + [9.12725, 45.398104], + [9.122754, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.402601], + [9.122754, 45.407097], + [9.12725, 45.407097], + [9.12725, 45.402601], + [9.122754, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.407097], + [9.122754, 45.411594], + [9.12725, 45.411594], + [9.12725, 45.407097], + [9.122754, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.411594], + [9.122754, 45.416091], + [9.12725, 45.416091], + [9.12725, 45.411594], + [9.122754, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.416091], + [9.122754, 45.420587], + [9.12725, 45.420587], + [9.12725, 45.416091], + [9.122754, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.420587], + [9.122754, 45.425084], + [9.12725, 45.425084], + [9.12725, 45.420587], + [9.122754, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.425084], + [9.122754, 45.42958], + [9.12725, 45.42958], + [9.12725, 45.425084], + [9.122754, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.42958], + [9.122754, 45.434077], + [9.12725, 45.434077], + [9.12725, 45.42958], + [9.122754, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.434077], + [9.122754, 45.438574], + [9.12725, 45.438574], + [9.12725, 45.434077], + [9.122754, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.438574], + [9.122754, 45.44307], + [9.12725, 45.44307], + [9.12725, 45.438574], + [9.122754, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.44307], + [9.122754, 45.447567], + [9.12725, 45.447567], + [9.12725, 45.44307], + [9.122754, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.447567], + [9.122754, 45.452063], + [9.12725, 45.452063], + [9.12725, 45.447567], + [9.122754, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.452063], + [9.122754, 45.45656], + [9.12725, 45.45656], + [9.12725, 45.452063], + [9.122754, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.45656], + [9.122754, 45.461057], + [9.12725, 45.461057], + [9.12725, 45.45656], + [9.122754, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.461057], + [9.122754, 45.465553], + [9.12725, 45.465553], + [9.12725, 45.461057], + [9.122754, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.465553], + [9.122754, 45.47005], + [9.12725, 45.47005], + [9.12725, 45.465553], + [9.122754, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.47005], + [9.122754, 45.474547], + [9.12725, 45.474547], + [9.12725, 45.47005], + [9.122754, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.474547], + [9.122754, 45.479043], + [9.12725, 45.479043], + [9.12725, 45.474547], + [9.122754, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.479043], + [9.122754, 45.48354], + [9.12725, 45.48354], + [9.12725, 45.479043], + [9.122754, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.48354], + [9.122754, 45.488036], + [9.12725, 45.488036], + [9.12725, 45.48354], + [9.122754, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.488036], + [9.122754, 45.492533], + [9.12725, 45.492533], + [9.12725, 45.488036], + [9.122754, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.492533], + [9.122754, 45.49703], + [9.12725, 45.49703], + [9.12725, 45.492533], + [9.122754, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.49703], + [9.122754, 45.501526], + [9.12725, 45.501526], + [9.12725, 45.49703], + [9.122754, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.501526], + [9.122754, 45.506023], + [9.12725, 45.506023], + [9.12725, 45.501526], + [9.122754, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.506023], + [9.122754, 45.510519], + [9.12725, 45.510519], + [9.12725, 45.506023], + [9.122754, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.510519], + [9.122754, 45.515016], + [9.12725, 45.515016], + [9.12725, 45.510519], + [9.122754, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.515016], + [9.122754, 45.519513], + [9.12725, 45.519513], + [9.12725, 45.515016], + [9.122754, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.519513], + [9.122754, 45.524009], + [9.12725, 45.524009], + [9.12725, 45.519513], + [9.122754, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.524009], + [9.122754, 45.528506], + [9.12725, 45.528506], + [9.12725, 45.524009], + [9.122754, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.528506], + [9.122754, 45.533002], + [9.12725, 45.533002], + [9.12725, 45.528506], + [9.122754, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.533002], + [9.122754, 45.537499], + [9.12725, 45.537499], + [9.12725, 45.533002], + [9.122754, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.537499], + [9.122754, 45.541996], + [9.12725, 45.541996], + [9.12725, 45.537499], + [9.122754, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.541996], + [9.122754, 45.546492], + [9.12725, 45.546492], + [9.12725, 45.541996], + [9.122754, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.546492], + [9.122754, 45.550989], + [9.12725, 45.550989], + [9.12725, 45.546492], + [9.122754, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.550989], + [9.122754, 45.555485], + [9.12725, 45.555485], + [9.12725, 45.550989], + [9.122754, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.555485], + [9.122754, 45.559982], + [9.12725, 45.559982], + [9.12725, 45.555485], + [9.122754, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.559982], + [9.122754, 45.564479], + [9.12725, 45.564479], + [9.12725, 45.559982], + [9.122754, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.564479], + [9.122754, 45.568975], + [9.12725, 45.568975], + [9.12725, 45.564479], + [9.122754, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.568975], + [9.122754, 45.573472], + [9.12725, 45.573472], + [9.12725, 45.568975], + [9.122754, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.573472], + [9.122754, 45.577968], + [9.12725, 45.577968], + [9.12725, 45.573472], + [9.122754, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.577968], + [9.122754, 45.582465], + [9.12725, 45.582465], + [9.12725, 45.577968], + [9.122754, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.582465], + [9.122754, 45.586962], + [9.12725, 45.586962], + [9.12725, 45.582465], + [9.122754, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.586962], + [9.122754, 45.591458], + [9.12725, 45.591458], + [9.12725, 45.586962], + [9.122754, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.591458], + [9.122754, 45.595955], + [9.12725, 45.595955], + [9.12725, 45.591458], + [9.122754, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.595955], + [9.122754, 45.600451], + [9.12725, 45.600451], + [9.12725, 45.595955], + [9.122754, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.600451], + [9.122754, 45.604948], + [9.12725, 45.604948], + [9.12725, 45.600451], + [9.122754, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.604948], + [9.122754, 45.609445], + [9.12725, 45.609445], + [9.12725, 45.604948], + [9.122754, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.609445], + [9.122754, 45.613941], + [9.12725, 45.613941], + [9.12725, 45.609445], + [9.122754, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.613941], + [9.122754, 45.618438], + [9.12725, 45.618438], + [9.12725, 45.613941], + [9.122754, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.618438], + [9.122754, 45.622934], + [9.12725, 45.622934], + [9.12725, 45.618438], + [9.122754, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.622934], + [9.122754, 45.627431], + [9.12725, 45.627431], + [9.12725, 45.622934], + [9.122754, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.627431], + [9.122754, 45.631928], + [9.12725, 45.631928], + [9.12725, 45.627431], + [9.122754, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.631928], + [9.122754, 45.636424], + [9.12725, 45.636424], + [9.12725, 45.631928], + [9.122754, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.339648], + [9.12725, 45.344145], + [9.131747, 45.344145], + [9.131747, 45.339648], + [9.12725, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.344145], + [9.12725, 45.348642], + [9.131747, 45.348642], + [9.131747, 45.344145], + [9.12725, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.348642], + [9.12725, 45.353138], + [9.131747, 45.353138], + [9.131747, 45.348642], + [9.12725, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.353138], + [9.12725, 45.357635], + [9.131747, 45.357635], + [9.131747, 45.353138], + [9.12725, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.357635], + [9.12725, 45.362131], + [9.131747, 45.362131], + [9.131747, 45.357635], + [9.12725, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.362131], + [9.12725, 45.366628], + [9.131747, 45.366628], + [9.131747, 45.362131], + [9.12725, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.366628], + [9.12725, 45.371125], + [9.131747, 45.371125], + [9.131747, 45.366628], + [9.12725, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.371125], + [9.12725, 45.375621], + [9.131747, 45.375621], + [9.131747, 45.371125], + [9.12725, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.375621], + [9.12725, 45.380118], + [9.131747, 45.380118], + [9.131747, 45.375621], + [9.12725, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.380118], + [9.12725, 45.384614], + [9.131747, 45.384614], + [9.131747, 45.380118], + [9.12725, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.384614], + [9.12725, 45.389111], + [9.131747, 45.389111], + [9.131747, 45.384614], + [9.12725, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.389111], + [9.12725, 45.393608], + [9.131747, 45.393608], + [9.131747, 45.389111], + [9.12725, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.393608], + [9.12725, 45.398104], + [9.131747, 45.398104], + [9.131747, 45.393608], + [9.12725, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.398104], + [9.12725, 45.402601], + [9.131747, 45.402601], + [9.131747, 45.398104], + [9.12725, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.402601], + [9.12725, 45.407097], + [9.131747, 45.407097], + [9.131747, 45.402601], + [9.12725, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.407097], + [9.12725, 45.411594], + [9.131747, 45.411594], + [9.131747, 45.407097], + [9.12725, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.411594], + [9.12725, 45.416091], + [9.131747, 45.416091], + [9.131747, 45.411594], + [9.12725, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.416091], + [9.12725, 45.420587], + [9.131747, 45.420587], + [9.131747, 45.416091], + [9.12725, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.420587], + [9.12725, 45.425084], + [9.131747, 45.425084], + [9.131747, 45.420587], + [9.12725, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.425084], + [9.12725, 45.42958], + [9.131747, 45.42958], + [9.131747, 45.425084], + [9.12725, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.42958], + [9.12725, 45.434077], + [9.131747, 45.434077], + [9.131747, 45.42958], + [9.12725, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.434077], + [9.12725, 45.438574], + [9.131747, 45.438574], + [9.131747, 45.434077], + [9.12725, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.438574], + [9.12725, 45.44307], + [9.131747, 45.44307], + [9.131747, 45.438574], + [9.12725, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.44307], + [9.12725, 45.447567], + [9.131747, 45.447567], + [9.131747, 45.44307], + [9.12725, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.447567], + [9.12725, 45.452063], + [9.131747, 45.452063], + [9.131747, 45.447567], + [9.12725, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.452063], + [9.12725, 45.45656], + [9.131747, 45.45656], + [9.131747, 45.452063], + [9.12725, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.45656], + [9.12725, 45.461057], + [9.131747, 45.461057], + [9.131747, 45.45656], + [9.12725, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.461057], + [9.12725, 45.465553], + [9.131747, 45.465553], + [9.131747, 45.461057], + [9.12725, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.465553], + [9.12725, 45.47005], + [9.131747, 45.47005], + [9.131747, 45.465553], + [9.12725, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.47005], + [9.12725, 45.474547], + [9.131747, 45.474547], + [9.131747, 45.47005], + [9.12725, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.474547], + [9.12725, 45.479043], + [9.131747, 45.479043], + [9.131747, 45.474547], + [9.12725, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.479043], + [9.12725, 45.48354], + [9.131747, 45.48354], + [9.131747, 45.479043], + [9.12725, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.48354], + [9.12725, 45.488036], + [9.131747, 45.488036], + [9.131747, 45.48354], + [9.12725, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.488036], + [9.12725, 45.492533], + [9.131747, 45.492533], + [9.131747, 45.488036], + [9.12725, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.492533], + [9.12725, 45.49703], + [9.131747, 45.49703], + [9.131747, 45.492533], + [9.12725, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.49703], + [9.12725, 45.501526], + [9.131747, 45.501526], + [9.131747, 45.49703], + [9.12725, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.501526], + [9.12725, 45.506023], + [9.131747, 45.506023], + [9.131747, 45.501526], + [9.12725, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.506023], + [9.12725, 45.510519], + [9.131747, 45.510519], + [9.131747, 45.506023], + [9.12725, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.510519], + [9.12725, 45.515016], + [9.131747, 45.515016], + [9.131747, 45.510519], + [9.12725, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.515016], + [9.12725, 45.519513], + [9.131747, 45.519513], + [9.131747, 45.515016], + [9.12725, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.519513], + [9.12725, 45.524009], + [9.131747, 45.524009], + [9.131747, 45.519513], + [9.12725, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.524009], + [9.12725, 45.528506], + [9.131747, 45.528506], + [9.131747, 45.524009], + [9.12725, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.528506], + [9.12725, 45.533002], + [9.131747, 45.533002], + [9.131747, 45.528506], + [9.12725, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.533002], + [9.12725, 45.537499], + [9.131747, 45.537499], + [9.131747, 45.533002], + [9.12725, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.537499], + [9.12725, 45.541996], + [9.131747, 45.541996], + [9.131747, 45.537499], + [9.12725, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.541996], + [9.12725, 45.546492], + [9.131747, 45.546492], + [9.131747, 45.541996], + [9.12725, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.546492], + [9.12725, 45.550989], + [9.131747, 45.550989], + [9.131747, 45.546492], + [9.12725, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.550989], + [9.12725, 45.555485], + [9.131747, 45.555485], + [9.131747, 45.550989], + [9.12725, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.555485], + [9.12725, 45.559982], + [9.131747, 45.559982], + [9.131747, 45.555485], + [9.12725, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.559982], + [9.12725, 45.564479], + [9.131747, 45.564479], + [9.131747, 45.559982], + [9.12725, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.564479], + [9.12725, 45.568975], + [9.131747, 45.568975], + [9.131747, 45.564479], + [9.12725, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.568975], + [9.12725, 45.573472], + [9.131747, 45.573472], + [9.131747, 45.568975], + [9.12725, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.573472], + [9.12725, 45.577968], + [9.131747, 45.577968], + [9.131747, 45.573472], + [9.12725, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.577968], + [9.12725, 45.582465], + [9.131747, 45.582465], + [9.131747, 45.577968], + [9.12725, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.582465], + [9.12725, 45.586962], + [9.131747, 45.586962], + [9.131747, 45.582465], + [9.12725, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.586962], + [9.12725, 45.591458], + [9.131747, 45.591458], + [9.131747, 45.586962], + [9.12725, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.591458], + [9.12725, 45.595955], + [9.131747, 45.595955], + [9.131747, 45.591458], + [9.12725, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.595955], + [9.12725, 45.600451], + [9.131747, 45.600451], + [9.131747, 45.595955], + [9.12725, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.600451], + [9.12725, 45.604948], + [9.131747, 45.604948], + [9.131747, 45.600451], + [9.12725, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.604948], + [9.12725, 45.609445], + [9.131747, 45.609445], + [9.131747, 45.604948], + [9.12725, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.609445], + [9.12725, 45.613941], + [9.131747, 45.613941], + [9.131747, 45.609445], + [9.12725, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.613941], + [9.12725, 45.618438], + [9.131747, 45.618438], + [9.131747, 45.613941], + [9.12725, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.618438], + [9.12725, 45.622934], + [9.131747, 45.622934], + [9.131747, 45.618438], + [9.12725, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.622934], + [9.12725, 45.627431], + [9.131747, 45.627431], + [9.131747, 45.622934], + [9.12725, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.627431], + [9.12725, 45.631928], + [9.131747, 45.631928], + [9.131747, 45.627431], + [9.12725, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.631928], + [9.12725, 45.636424], + [9.131747, 45.636424], + [9.131747, 45.631928], + [9.12725, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.339648], + [9.131747, 45.344145], + [9.136244, 45.344145], + [9.136244, 45.339648], + [9.131747, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.344145], + [9.131747, 45.348642], + [9.136244, 45.348642], + [9.136244, 45.344145], + [9.131747, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.348642], + [9.131747, 45.353138], + [9.136244, 45.353138], + [9.136244, 45.348642], + [9.131747, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.353138], + [9.131747, 45.357635], + [9.136244, 45.357635], + [9.136244, 45.353138], + [9.131747, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.357635], + [9.131747, 45.362131], + [9.136244, 45.362131], + [9.136244, 45.357635], + [9.131747, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.362131], + [9.131747, 45.366628], + [9.136244, 45.366628], + [9.136244, 45.362131], + [9.131747, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.366628], + [9.131747, 45.371125], + [9.136244, 45.371125], + [9.136244, 45.366628], + [9.131747, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.371125], + [9.131747, 45.375621], + [9.136244, 45.375621], + [9.136244, 45.371125], + [9.131747, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.375621], + [9.131747, 45.380118], + [9.136244, 45.380118], + [9.136244, 45.375621], + [9.131747, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.380118], + [9.131747, 45.384614], + [9.136244, 45.384614], + [9.136244, 45.380118], + [9.131747, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.384614], + [9.131747, 45.389111], + [9.136244, 45.389111], + [9.136244, 45.384614], + [9.131747, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.389111], + [9.131747, 45.393608], + [9.136244, 45.393608], + [9.136244, 45.389111], + [9.131747, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.393608], + [9.131747, 45.398104], + [9.136244, 45.398104], + [9.136244, 45.393608], + [9.131747, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.398104], + [9.131747, 45.402601], + [9.136244, 45.402601], + [9.136244, 45.398104], + [9.131747, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.402601], + [9.131747, 45.407097], + [9.136244, 45.407097], + [9.136244, 45.402601], + [9.131747, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.407097], + [9.131747, 45.411594], + [9.136244, 45.411594], + [9.136244, 45.407097], + [9.131747, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.411594], + [9.131747, 45.416091], + [9.136244, 45.416091], + [9.136244, 45.411594], + [9.131747, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.416091], + [9.131747, 45.420587], + [9.136244, 45.420587], + [9.136244, 45.416091], + [9.131747, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.420587], + [9.131747, 45.425084], + [9.136244, 45.425084], + [9.136244, 45.420587], + [9.131747, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.425084], + [9.131747, 45.42958], + [9.136244, 45.42958], + [9.136244, 45.425084], + [9.131747, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.42958], + [9.131747, 45.434077], + [9.136244, 45.434077], + [9.136244, 45.42958], + [9.131747, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.434077], + [9.131747, 45.438574], + [9.136244, 45.438574], + [9.136244, 45.434077], + [9.131747, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.438574], + [9.131747, 45.44307], + [9.136244, 45.44307], + [9.136244, 45.438574], + [9.131747, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.44307], + [9.131747, 45.447567], + [9.136244, 45.447567], + [9.136244, 45.44307], + [9.131747, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.447567], + [9.131747, 45.452063], + [9.136244, 45.452063], + [9.136244, 45.447567], + [9.131747, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.452063], + [9.131747, 45.45656], + [9.136244, 45.45656], + [9.136244, 45.452063], + [9.131747, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.45656], + [9.131747, 45.461057], + [9.136244, 45.461057], + [9.136244, 45.45656], + [9.131747, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.461057], + [9.131747, 45.465553], + [9.136244, 45.465553], + [9.136244, 45.461057], + [9.131747, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.465553], + [9.131747, 45.47005], + [9.136244, 45.47005], + [9.136244, 45.465553], + [9.131747, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.47005], + [9.131747, 45.474547], + [9.136244, 45.474547], + [9.136244, 45.47005], + [9.131747, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.474547], + [9.131747, 45.479043], + [9.136244, 45.479043], + [9.136244, 45.474547], + [9.131747, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.479043], + [9.131747, 45.48354], + [9.136244, 45.48354], + [9.136244, 45.479043], + [9.131747, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.48354], + [9.131747, 45.488036], + [9.136244, 45.488036], + [9.136244, 45.48354], + [9.131747, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.488036], + [9.131747, 45.492533], + [9.136244, 45.492533], + [9.136244, 45.488036], + [9.131747, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.492533], + [9.131747, 45.49703], + [9.136244, 45.49703], + [9.136244, 45.492533], + [9.131747, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.49703], + [9.131747, 45.501526], + [9.136244, 45.501526], + [9.136244, 45.49703], + [9.131747, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.501526], + [9.131747, 45.506023], + [9.136244, 45.506023], + [9.136244, 45.501526], + [9.131747, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.506023], + [9.131747, 45.510519], + [9.136244, 45.510519], + [9.136244, 45.506023], + [9.131747, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.510519], + [9.131747, 45.515016], + [9.136244, 45.515016], + [9.136244, 45.510519], + [9.131747, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.515016], + [9.131747, 45.519513], + [9.136244, 45.519513], + [9.136244, 45.515016], + [9.131747, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.519513], + [9.131747, 45.524009], + [9.136244, 45.524009], + [9.136244, 45.519513], + [9.131747, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.524009], + [9.131747, 45.528506], + [9.136244, 45.528506], + [9.136244, 45.524009], + [9.131747, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.528506], + [9.131747, 45.533002], + [9.136244, 45.533002], + [9.136244, 45.528506], + [9.131747, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.533002], + [9.131747, 45.537499], + [9.136244, 45.537499], + [9.136244, 45.533002], + [9.131747, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.537499], + [9.131747, 45.541996], + [9.136244, 45.541996], + [9.136244, 45.537499], + [9.131747, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.541996], + [9.131747, 45.546492], + [9.136244, 45.546492], + [9.136244, 45.541996], + [9.131747, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.546492], + [9.131747, 45.550989], + [9.136244, 45.550989], + [9.136244, 45.546492], + [9.131747, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.550989], + [9.131747, 45.555485], + [9.136244, 45.555485], + [9.136244, 45.550989], + [9.131747, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.555485], + [9.131747, 45.559982], + [9.136244, 45.559982], + [9.136244, 45.555485], + [9.131747, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.559982], + [9.131747, 45.564479], + [9.136244, 45.564479], + [9.136244, 45.559982], + [9.131747, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.564479], + [9.131747, 45.568975], + [9.136244, 45.568975], + [9.136244, 45.564479], + [9.131747, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.568975], + [9.131747, 45.573472], + [9.136244, 45.573472], + [9.136244, 45.568975], + [9.131747, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.573472], + [9.131747, 45.577968], + [9.136244, 45.577968], + [9.136244, 45.573472], + [9.131747, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.577968], + [9.131747, 45.582465], + [9.136244, 45.582465], + [9.136244, 45.577968], + [9.131747, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.582465], + [9.131747, 45.586962], + [9.136244, 45.586962], + [9.136244, 45.582465], + [9.131747, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.586962], + [9.131747, 45.591458], + [9.136244, 45.591458], + [9.136244, 45.586962], + [9.131747, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.591458], + [9.131747, 45.595955], + [9.136244, 45.595955], + [9.136244, 45.591458], + [9.131747, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.595955], + [9.131747, 45.600451], + [9.136244, 45.600451], + [9.136244, 45.595955], + [9.131747, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.600451], + [9.131747, 45.604948], + [9.136244, 45.604948], + [9.136244, 45.600451], + [9.131747, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.604948], + [9.131747, 45.609445], + [9.136244, 45.609445], + [9.136244, 45.604948], + [9.131747, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.609445], + [9.131747, 45.613941], + [9.136244, 45.613941], + [9.136244, 45.609445], + [9.131747, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.613941], + [9.131747, 45.618438], + [9.136244, 45.618438], + [9.136244, 45.613941], + [9.131747, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.618438], + [9.131747, 45.622934], + [9.136244, 45.622934], + [9.136244, 45.618438], + [9.131747, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.622934], + [9.131747, 45.627431], + [9.136244, 45.627431], + [9.136244, 45.622934], + [9.131747, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.627431], + [9.131747, 45.631928], + [9.136244, 45.631928], + [9.136244, 45.627431], + [9.131747, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.631928], + [9.131747, 45.636424], + [9.136244, 45.636424], + [9.136244, 45.631928], + [9.131747, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.339648], + [9.136244, 45.344145], + [9.14074, 45.344145], + [9.14074, 45.339648], + [9.136244, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.344145], + [9.136244, 45.348642], + [9.14074, 45.348642], + [9.14074, 45.344145], + [9.136244, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.348642], + [9.136244, 45.353138], + [9.14074, 45.353138], + [9.14074, 45.348642], + [9.136244, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.353138], + [9.136244, 45.357635], + [9.14074, 45.357635], + [9.14074, 45.353138], + [9.136244, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.357635], + [9.136244, 45.362131], + [9.14074, 45.362131], + [9.14074, 45.357635], + [9.136244, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.362131], + [9.136244, 45.366628], + [9.14074, 45.366628], + [9.14074, 45.362131], + [9.136244, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.366628], + [9.136244, 45.371125], + [9.14074, 45.371125], + [9.14074, 45.366628], + [9.136244, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.371125], + [9.136244, 45.375621], + [9.14074, 45.375621], + [9.14074, 45.371125], + [9.136244, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.375621], + [9.136244, 45.380118], + [9.14074, 45.380118], + [9.14074, 45.375621], + [9.136244, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.380118], + [9.136244, 45.384614], + [9.14074, 45.384614], + [9.14074, 45.380118], + [9.136244, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.384614], + [9.136244, 45.389111], + [9.14074, 45.389111], + [9.14074, 45.384614], + [9.136244, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.389111], + [9.136244, 45.393608], + [9.14074, 45.393608], + [9.14074, 45.389111], + [9.136244, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.393608], + [9.136244, 45.398104], + [9.14074, 45.398104], + [9.14074, 45.393608], + [9.136244, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.398104], + [9.136244, 45.402601], + [9.14074, 45.402601], + [9.14074, 45.398104], + [9.136244, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.402601], + [9.136244, 45.407097], + [9.14074, 45.407097], + [9.14074, 45.402601], + [9.136244, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.407097], + [9.136244, 45.411594], + [9.14074, 45.411594], + [9.14074, 45.407097], + [9.136244, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.411594], + [9.136244, 45.416091], + [9.14074, 45.416091], + [9.14074, 45.411594], + [9.136244, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.416091], + [9.136244, 45.420587], + [9.14074, 45.420587], + [9.14074, 45.416091], + [9.136244, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.420587], + [9.136244, 45.425084], + [9.14074, 45.425084], + [9.14074, 45.420587], + [9.136244, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.425084], + [9.136244, 45.42958], + [9.14074, 45.42958], + [9.14074, 45.425084], + [9.136244, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.42958], + [9.136244, 45.434077], + [9.14074, 45.434077], + [9.14074, 45.42958], + [9.136244, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.434077], + [9.136244, 45.438574], + [9.14074, 45.438574], + [9.14074, 45.434077], + [9.136244, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.438574], + [9.136244, 45.44307], + [9.14074, 45.44307], + [9.14074, 45.438574], + [9.136244, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.44307], + [9.136244, 45.447567], + [9.14074, 45.447567], + [9.14074, 45.44307], + [9.136244, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.447567], + [9.136244, 45.452063], + [9.14074, 45.452063], + [9.14074, 45.447567], + [9.136244, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.452063], + [9.136244, 45.45656], + [9.14074, 45.45656], + [9.14074, 45.452063], + [9.136244, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.45656], + [9.136244, 45.461057], + [9.14074, 45.461057], + [9.14074, 45.45656], + [9.136244, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.461057], + [9.136244, 45.465553], + [9.14074, 45.465553], + [9.14074, 45.461057], + [9.136244, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.465553], + [9.136244, 45.47005], + [9.14074, 45.47005], + [9.14074, 45.465553], + [9.136244, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.47005], + [9.136244, 45.474547], + [9.14074, 45.474547], + [9.14074, 45.47005], + [9.136244, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.474547], + [9.136244, 45.479043], + [9.14074, 45.479043], + [9.14074, 45.474547], + [9.136244, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.479043], + [9.136244, 45.48354], + [9.14074, 45.48354], + [9.14074, 45.479043], + [9.136244, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.48354], + [9.136244, 45.488036], + [9.14074, 45.488036], + [9.14074, 45.48354], + [9.136244, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.488036], + [9.136244, 45.492533], + [9.14074, 45.492533], + [9.14074, 45.488036], + [9.136244, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.492533], + [9.136244, 45.49703], + [9.14074, 45.49703], + [9.14074, 45.492533], + [9.136244, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.49703], + [9.136244, 45.501526], + [9.14074, 45.501526], + [9.14074, 45.49703], + [9.136244, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.501526], + [9.136244, 45.506023], + [9.14074, 45.506023], + [9.14074, 45.501526], + [9.136244, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.506023], + [9.136244, 45.510519], + [9.14074, 45.510519], + [9.14074, 45.506023], + [9.136244, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.510519], + [9.136244, 45.515016], + [9.14074, 45.515016], + [9.14074, 45.510519], + [9.136244, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.515016], + [9.136244, 45.519513], + [9.14074, 45.519513], + [9.14074, 45.515016], + [9.136244, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.519513], + [9.136244, 45.524009], + [9.14074, 45.524009], + [9.14074, 45.519513], + [9.136244, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.524009], + [9.136244, 45.528506], + [9.14074, 45.528506], + [9.14074, 45.524009], + [9.136244, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.528506], + [9.136244, 45.533002], + [9.14074, 45.533002], + [9.14074, 45.528506], + [9.136244, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.533002], + [9.136244, 45.537499], + [9.14074, 45.537499], + [9.14074, 45.533002], + [9.136244, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.537499], + [9.136244, 45.541996], + [9.14074, 45.541996], + [9.14074, 45.537499], + [9.136244, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.541996], + [9.136244, 45.546492], + [9.14074, 45.546492], + [9.14074, 45.541996], + [9.136244, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.546492], + [9.136244, 45.550989], + [9.14074, 45.550989], + [9.14074, 45.546492], + [9.136244, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.550989], + [9.136244, 45.555485], + [9.14074, 45.555485], + [9.14074, 45.550989], + [9.136244, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.555485], + [9.136244, 45.559982], + [9.14074, 45.559982], + [9.14074, 45.555485], + [9.136244, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.559982], + [9.136244, 45.564479], + [9.14074, 45.564479], + [9.14074, 45.559982], + [9.136244, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.564479], + [9.136244, 45.568975], + [9.14074, 45.568975], + [9.14074, 45.564479], + [9.136244, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.568975], + [9.136244, 45.573472], + [9.14074, 45.573472], + [9.14074, 45.568975], + [9.136244, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.573472], + [9.136244, 45.577968], + [9.14074, 45.577968], + [9.14074, 45.573472], + [9.136244, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.577968], + [9.136244, 45.582465], + [9.14074, 45.582465], + [9.14074, 45.577968], + [9.136244, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.582465], + [9.136244, 45.586962], + [9.14074, 45.586962], + [9.14074, 45.582465], + [9.136244, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.586962], + [9.136244, 45.591458], + [9.14074, 45.591458], + [9.14074, 45.586962], + [9.136244, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.591458], + [9.136244, 45.595955], + [9.14074, 45.595955], + [9.14074, 45.591458], + [9.136244, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.595955], + [9.136244, 45.600451], + [9.14074, 45.600451], + [9.14074, 45.595955], + [9.136244, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.600451], + [9.136244, 45.604948], + [9.14074, 45.604948], + [9.14074, 45.600451], + [9.136244, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.604948], + [9.136244, 45.609445], + [9.14074, 45.609445], + [9.14074, 45.604948], + [9.136244, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.609445], + [9.136244, 45.613941], + [9.14074, 45.613941], + [9.14074, 45.609445], + [9.136244, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.613941], + [9.136244, 45.618438], + [9.14074, 45.618438], + [9.14074, 45.613941], + [9.136244, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.618438], + [9.136244, 45.622934], + [9.14074, 45.622934], + [9.14074, 45.618438], + [9.136244, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.622934], + [9.136244, 45.627431], + [9.14074, 45.627431], + [9.14074, 45.622934], + [9.136244, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.627431], + [9.136244, 45.631928], + [9.14074, 45.631928], + [9.14074, 45.627431], + [9.136244, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.631928], + [9.136244, 45.636424], + [9.14074, 45.636424], + [9.14074, 45.631928], + [9.136244, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.339648], + [9.14074, 45.344145], + [9.145237, 45.344145], + [9.145237, 45.339648], + [9.14074, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.344145], + [9.14074, 45.348642], + [9.145237, 45.348642], + [9.145237, 45.344145], + [9.14074, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.348642], + [9.14074, 45.353138], + [9.145237, 45.353138], + [9.145237, 45.348642], + [9.14074, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.353138], + [9.14074, 45.357635], + [9.145237, 45.357635], + [9.145237, 45.353138], + [9.14074, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.357635], + [9.14074, 45.362131], + [9.145237, 45.362131], + [9.145237, 45.357635], + [9.14074, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.362131], + [9.14074, 45.366628], + [9.145237, 45.366628], + [9.145237, 45.362131], + [9.14074, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.366628], + [9.14074, 45.371125], + [9.145237, 45.371125], + [9.145237, 45.366628], + [9.14074, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.371125], + [9.14074, 45.375621], + [9.145237, 45.375621], + [9.145237, 45.371125], + [9.14074, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.375621], + [9.14074, 45.380118], + [9.145237, 45.380118], + [9.145237, 45.375621], + [9.14074, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.380118], + [9.14074, 45.384614], + [9.145237, 45.384614], + [9.145237, 45.380118], + [9.14074, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.384614], + [9.14074, 45.389111], + [9.145237, 45.389111], + [9.145237, 45.384614], + [9.14074, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.389111], + [9.14074, 45.393608], + [9.145237, 45.393608], + [9.145237, 45.389111], + [9.14074, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.393608], + [9.14074, 45.398104], + [9.145237, 45.398104], + [9.145237, 45.393608], + [9.14074, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.398104], + [9.14074, 45.402601], + [9.145237, 45.402601], + [9.145237, 45.398104], + [9.14074, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.402601], + [9.14074, 45.407097], + [9.145237, 45.407097], + [9.145237, 45.402601], + [9.14074, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.407097], + [9.14074, 45.411594], + [9.145237, 45.411594], + [9.145237, 45.407097], + [9.14074, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.411594], + [9.14074, 45.416091], + [9.145237, 45.416091], + [9.145237, 45.411594], + [9.14074, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.416091], + [9.14074, 45.420587], + [9.145237, 45.420587], + [9.145237, 45.416091], + [9.14074, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.420587], + [9.14074, 45.425084], + [9.145237, 45.425084], + [9.145237, 45.420587], + [9.14074, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.425084], + [9.14074, 45.42958], + [9.145237, 45.42958], + [9.145237, 45.425084], + [9.14074, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.42958], + [9.14074, 45.434077], + [9.145237, 45.434077], + [9.145237, 45.42958], + [9.14074, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.434077], + [9.14074, 45.438574], + [9.145237, 45.438574], + [9.145237, 45.434077], + [9.14074, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.438574], + [9.14074, 45.44307], + [9.145237, 45.44307], + [9.145237, 45.438574], + [9.14074, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.44307], + [9.14074, 45.447567], + [9.145237, 45.447567], + [9.145237, 45.44307], + [9.14074, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.447567], + [9.14074, 45.452063], + [9.145237, 45.452063], + [9.145237, 45.447567], + [9.14074, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.452063], + [9.14074, 45.45656], + [9.145237, 45.45656], + [9.145237, 45.452063], + [9.14074, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.45656], + [9.14074, 45.461057], + [9.145237, 45.461057], + [9.145237, 45.45656], + [9.14074, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.461057], + [9.14074, 45.465553], + [9.145237, 45.465553], + [9.145237, 45.461057], + [9.14074, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.465553], + [9.14074, 45.47005], + [9.145237, 45.47005], + [9.145237, 45.465553], + [9.14074, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.47005], + [9.14074, 45.474547], + [9.145237, 45.474547], + [9.145237, 45.47005], + [9.14074, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.474547], + [9.14074, 45.479043], + [9.145237, 45.479043], + [9.145237, 45.474547], + [9.14074, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.479043], + [9.14074, 45.48354], + [9.145237, 45.48354], + [9.145237, 45.479043], + [9.14074, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.48354], + [9.14074, 45.488036], + [9.145237, 45.488036], + [9.145237, 45.48354], + [9.14074, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.488036], + [9.14074, 45.492533], + [9.145237, 45.492533], + [9.145237, 45.488036], + [9.14074, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.492533], + [9.14074, 45.49703], + [9.145237, 45.49703], + [9.145237, 45.492533], + [9.14074, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.49703], + [9.14074, 45.501526], + [9.145237, 45.501526], + [9.145237, 45.49703], + [9.14074, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.501526], + [9.14074, 45.506023], + [9.145237, 45.506023], + [9.145237, 45.501526], + [9.14074, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.506023], + [9.14074, 45.510519], + [9.145237, 45.510519], + [9.145237, 45.506023], + [9.14074, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.510519], + [9.14074, 45.515016], + [9.145237, 45.515016], + [9.145237, 45.510519], + [9.14074, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.515016], + [9.14074, 45.519513], + [9.145237, 45.519513], + [9.145237, 45.515016], + [9.14074, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.519513], + [9.14074, 45.524009], + [9.145237, 45.524009], + [9.145237, 45.519513], + [9.14074, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.524009], + [9.14074, 45.528506], + [9.145237, 45.528506], + [9.145237, 45.524009], + [9.14074, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.528506], + [9.14074, 45.533002], + [9.145237, 45.533002], + [9.145237, 45.528506], + [9.14074, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.533002], + [9.14074, 45.537499], + [9.145237, 45.537499], + [9.145237, 45.533002], + [9.14074, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.537499], + [9.14074, 45.541996], + [9.145237, 45.541996], + [9.145237, 45.537499], + [9.14074, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.541996], + [9.14074, 45.546492], + [9.145237, 45.546492], + [9.145237, 45.541996], + [9.14074, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.546492], + [9.14074, 45.550989], + [9.145237, 45.550989], + [9.145237, 45.546492], + [9.14074, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.550989], + [9.14074, 45.555485], + [9.145237, 45.555485], + [9.145237, 45.550989], + [9.14074, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.555485], + [9.14074, 45.559982], + [9.145237, 45.559982], + [9.145237, 45.555485], + [9.14074, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.559982], + [9.14074, 45.564479], + [9.145237, 45.564479], + [9.145237, 45.559982], + [9.14074, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.564479], + [9.14074, 45.568975], + [9.145237, 45.568975], + [9.145237, 45.564479], + [9.14074, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.568975], + [9.14074, 45.573472], + [9.145237, 45.573472], + [9.145237, 45.568975], + [9.14074, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.573472], + [9.14074, 45.577968], + [9.145237, 45.577968], + [9.145237, 45.573472], + [9.14074, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.577968], + [9.14074, 45.582465], + [9.145237, 45.582465], + [9.145237, 45.577968], + [9.14074, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.582465], + [9.14074, 45.586962], + [9.145237, 45.586962], + [9.145237, 45.582465], + [9.14074, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.586962], + [9.14074, 45.591458], + [9.145237, 45.591458], + [9.145237, 45.586962], + [9.14074, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.591458], + [9.14074, 45.595955], + [9.145237, 45.595955], + [9.145237, 45.591458], + [9.14074, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.595955], + [9.14074, 45.600451], + [9.145237, 45.600451], + [9.145237, 45.595955], + [9.14074, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.600451], + [9.14074, 45.604948], + [9.145237, 45.604948], + [9.145237, 45.600451], + [9.14074, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.604948], + [9.14074, 45.609445], + [9.145237, 45.609445], + [9.145237, 45.604948], + [9.14074, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.609445], + [9.14074, 45.613941], + [9.145237, 45.613941], + [9.145237, 45.609445], + [9.14074, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.613941], + [9.14074, 45.618438], + [9.145237, 45.618438], + [9.145237, 45.613941], + [9.14074, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.618438], + [9.14074, 45.622934], + [9.145237, 45.622934], + [9.145237, 45.618438], + [9.14074, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.622934], + [9.14074, 45.627431], + [9.145237, 45.627431], + [9.145237, 45.622934], + [9.14074, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.627431], + [9.14074, 45.631928], + [9.145237, 45.631928], + [9.145237, 45.627431], + [9.14074, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.631928], + [9.14074, 45.636424], + [9.145237, 45.636424], + [9.145237, 45.631928], + [9.14074, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.339648], + [9.145237, 45.344145], + [9.149733, 45.344145], + [9.149733, 45.339648], + [9.145237, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.344145], + [9.145237, 45.348642], + [9.149733, 45.348642], + [9.149733, 45.344145], + [9.145237, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.348642], + [9.145237, 45.353138], + [9.149733, 45.353138], + [9.149733, 45.348642], + [9.145237, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.353138], + [9.145237, 45.357635], + [9.149733, 45.357635], + [9.149733, 45.353138], + [9.145237, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.357635], + [9.145237, 45.362131], + [9.149733, 45.362131], + [9.149733, 45.357635], + [9.145237, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.362131], + [9.145237, 45.366628], + [9.149733, 45.366628], + [9.149733, 45.362131], + [9.145237, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.366628], + [9.145237, 45.371125], + [9.149733, 45.371125], + [9.149733, 45.366628], + [9.145237, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.371125], + [9.145237, 45.375621], + [9.149733, 45.375621], + [9.149733, 45.371125], + [9.145237, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.375621], + [9.145237, 45.380118], + [9.149733, 45.380118], + [9.149733, 45.375621], + [9.145237, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.380118], + [9.145237, 45.384614], + [9.149733, 45.384614], + [9.149733, 45.380118], + [9.145237, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.384614], + [9.145237, 45.389111], + [9.149733, 45.389111], + [9.149733, 45.384614], + [9.145237, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.389111], + [9.145237, 45.393608], + [9.149733, 45.393608], + [9.149733, 45.389111], + [9.145237, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.393608], + [9.145237, 45.398104], + [9.149733, 45.398104], + [9.149733, 45.393608], + [9.145237, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.398104], + [9.145237, 45.402601], + [9.149733, 45.402601], + [9.149733, 45.398104], + [9.145237, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.402601], + [9.145237, 45.407097], + [9.149733, 45.407097], + [9.149733, 45.402601], + [9.145237, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.407097], + [9.145237, 45.411594], + [9.149733, 45.411594], + [9.149733, 45.407097], + [9.145237, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.411594], + [9.145237, 45.416091], + [9.149733, 45.416091], + [9.149733, 45.411594], + [9.145237, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.416091], + [9.145237, 45.420587], + [9.149733, 45.420587], + [9.149733, 45.416091], + [9.145237, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.420587], + [9.145237, 45.425084], + [9.149733, 45.425084], + [9.149733, 45.420587], + [9.145237, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.425084], + [9.145237, 45.42958], + [9.149733, 45.42958], + [9.149733, 45.425084], + [9.145237, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.42958], + [9.145237, 45.434077], + [9.149733, 45.434077], + [9.149733, 45.42958], + [9.145237, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.434077], + [9.145237, 45.438574], + [9.149733, 45.438574], + [9.149733, 45.434077], + [9.145237, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.438574], + [9.145237, 45.44307], + [9.149733, 45.44307], + [9.149733, 45.438574], + [9.145237, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.44307], + [9.145237, 45.447567], + [9.149733, 45.447567], + [9.149733, 45.44307], + [9.145237, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.447567], + [9.145237, 45.452063], + [9.149733, 45.452063], + [9.149733, 45.447567], + [9.145237, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.452063], + [9.145237, 45.45656], + [9.149733, 45.45656], + [9.149733, 45.452063], + [9.145237, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.45656], + [9.145237, 45.461057], + [9.149733, 45.461057], + [9.149733, 45.45656], + [9.145237, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.461057], + [9.145237, 45.465553], + [9.149733, 45.465553], + [9.149733, 45.461057], + [9.145237, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.465553], + [9.145237, 45.47005], + [9.149733, 45.47005], + [9.149733, 45.465553], + [9.145237, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.47005], + [9.145237, 45.474547], + [9.149733, 45.474547], + [9.149733, 45.47005], + [9.145237, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.474547], + [9.145237, 45.479043], + [9.149733, 45.479043], + [9.149733, 45.474547], + [9.145237, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.479043], + [9.145237, 45.48354], + [9.149733, 45.48354], + [9.149733, 45.479043], + [9.145237, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.48354], + [9.145237, 45.488036], + [9.149733, 45.488036], + [9.149733, 45.48354], + [9.145237, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.488036], + [9.145237, 45.492533], + [9.149733, 45.492533], + [9.149733, 45.488036], + [9.145237, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.492533], + [9.145237, 45.49703], + [9.149733, 45.49703], + [9.149733, 45.492533], + [9.145237, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.49703], + [9.145237, 45.501526], + [9.149733, 45.501526], + [9.149733, 45.49703], + [9.145237, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.501526], + [9.145237, 45.506023], + [9.149733, 45.506023], + [9.149733, 45.501526], + [9.145237, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.506023], + [9.145237, 45.510519], + [9.149733, 45.510519], + [9.149733, 45.506023], + [9.145237, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.510519], + [9.145237, 45.515016], + [9.149733, 45.515016], + [9.149733, 45.510519], + [9.145237, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.515016], + [9.145237, 45.519513], + [9.149733, 45.519513], + [9.149733, 45.515016], + [9.145237, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.519513], + [9.145237, 45.524009], + [9.149733, 45.524009], + [9.149733, 45.519513], + [9.145237, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.524009], + [9.145237, 45.528506], + [9.149733, 45.528506], + [9.149733, 45.524009], + [9.145237, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.528506], + [9.145237, 45.533002], + [9.149733, 45.533002], + [9.149733, 45.528506], + [9.145237, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.533002], + [9.145237, 45.537499], + [9.149733, 45.537499], + [9.149733, 45.533002], + [9.145237, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.537499], + [9.145237, 45.541996], + [9.149733, 45.541996], + [9.149733, 45.537499], + [9.145237, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.541996], + [9.145237, 45.546492], + [9.149733, 45.546492], + [9.149733, 45.541996], + [9.145237, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.546492], + [9.145237, 45.550989], + [9.149733, 45.550989], + [9.149733, 45.546492], + [9.145237, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.550989], + [9.145237, 45.555485], + [9.149733, 45.555485], + [9.149733, 45.550989], + [9.145237, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.555485], + [9.145237, 45.559982], + [9.149733, 45.559982], + [9.149733, 45.555485], + [9.145237, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.559982], + [9.145237, 45.564479], + [9.149733, 45.564479], + [9.149733, 45.559982], + [9.145237, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.564479], + [9.145237, 45.568975], + [9.149733, 45.568975], + [9.149733, 45.564479], + [9.145237, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.568975], + [9.145237, 45.573472], + [9.149733, 45.573472], + [9.149733, 45.568975], + [9.145237, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.573472], + [9.145237, 45.577968], + [9.149733, 45.577968], + [9.149733, 45.573472], + [9.145237, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.577968], + [9.145237, 45.582465], + [9.149733, 45.582465], + [9.149733, 45.577968], + [9.145237, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.582465], + [9.145237, 45.586962], + [9.149733, 45.586962], + [9.149733, 45.582465], + [9.145237, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.586962], + [9.145237, 45.591458], + [9.149733, 45.591458], + [9.149733, 45.586962], + [9.145237, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.591458], + [9.145237, 45.595955], + [9.149733, 45.595955], + [9.149733, 45.591458], + [9.145237, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.595955], + [9.145237, 45.600451], + [9.149733, 45.600451], + [9.149733, 45.595955], + [9.145237, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.600451], + [9.145237, 45.604948], + [9.149733, 45.604948], + [9.149733, 45.600451], + [9.145237, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.604948], + [9.145237, 45.609445], + [9.149733, 45.609445], + [9.149733, 45.604948], + [9.145237, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.609445], + [9.145237, 45.613941], + [9.149733, 45.613941], + [9.149733, 45.609445], + [9.145237, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.613941], + [9.145237, 45.618438], + [9.149733, 45.618438], + [9.149733, 45.613941], + [9.145237, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.618438], + [9.145237, 45.622934], + [9.149733, 45.622934], + [9.149733, 45.618438], + [9.145237, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.622934], + [9.145237, 45.627431], + [9.149733, 45.627431], + [9.149733, 45.622934], + [9.145237, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.627431], + [9.145237, 45.631928], + [9.149733, 45.631928], + [9.149733, 45.627431], + [9.145237, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.631928], + [9.145237, 45.636424], + [9.149733, 45.636424], + [9.149733, 45.631928], + [9.145237, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.339648], + [9.149733, 45.344145], + [9.15423, 45.344145], + [9.15423, 45.339648], + [9.149733, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.344145], + [9.149733, 45.348642], + [9.15423, 45.348642], + [9.15423, 45.344145], + [9.149733, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.348642], + [9.149733, 45.353138], + [9.15423, 45.353138], + [9.15423, 45.348642], + [9.149733, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.353138], + [9.149733, 45.357635], + [9.15423, 45.357635], + [9.15423, 45.353138], + [9.149733, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.357635], + [9.149733, 45.362131], + [9.15423, 45.362131], + [9.15423, 45.357635], + [9.149733, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.362131], + [9.149733, 45.366628], + [9.15423, 45.366628], + [9.15423, 45.362131], + [9.149733, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.366628], + [9.149733, 45.371125], + [9.15423, 45.371125], + [9.15423, 45.366628], + [9.149733, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.371125], + [9.149733, 45.375621], + [9.15423, 45.375621], + [9.15423, 45.371125], + [9.149733, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.375621], + [9.149733, 45.380118], + [9.15423, 45.380118], + [9.15423, 45.375621], + [9.149733, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.380118], + [9.149733, 45.384614], + [9.15423, 45.384614], + [9.15423, 45.380118], + [9.149733, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.384614], + [9.149733, 45.389111], + [9.15423, 45.389111], + [9.15423, 45.384614], + [9.149733, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.389111], + [9.149733, 45.393608], + [9.15423, 45.393608], + [9.15423, 45.389111], + [9.149733, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.393608], + [9.149733, 45.398104], + [9.15423, 45.398104], + [9.15423, 45.393608], + [9.149733, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.398104], + [9.149733, 45.402601], + [9.15423, 45.402601], + [9.15423, 45.398104], + [9.149733, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.402601], + [9.149733, 45.407097], + [9.15423, 45.407097], + [9.15423, 45.402601], + [9.149733, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.407097], + [9.149733, 45.411594], + [9.15423, 45.411594], + [9.15423, 45.407097], + [9.149733, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.411594], + [9.149733, 45.416091], + [9.15423, 45.416091], + [9.15423, 45.411594], + [9.149733, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.416091], + [9.149733, 45.420587], + [9.15423, 45.420587], + [9.15423, 45.416091], + [9.149733, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.420587], + [9.149733, 45.425084], + [9.15423, 45.425084], + [9.15423, 45.420587], + [9.149733, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.425084], + [9.149733, 45.42958], + [9.15423, 45.42958], + [9.15423, 45.425084], + [9.149733, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.42958], + [9.149733, 45.434077], + [9.15423, 45.434077], + [9.15423, 45.42958], + [9.149733, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.434077], + [9.149733, 45.438574], + [9.15423, 45.438574], + [9.15423, 45.434077], + [9.149733, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.438574], + [9.149733, 45.44307], + [9.15423, 45.44307], + [9.15423, 45.438574], + [9.149733, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.44307], + [9.149733, 45.447567], + [9.15423, 45.447567], + [9.15423, 45.44307], + [9.149733, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.447567], + [9.149733, 45.452063], + [9.15423, 45.452063], + [9.15423, 45.447567], + [9.149733, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.452063], + [9.149733, 45.45656], + [9.15423, 45.45656], + [9.15423, 45.452063], + [9.149733, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.45656], + [9.149733, 45.461057], + [9.15423, 45.461057], + [9.15423, 45.45656], + [9.149733, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.461057], + [9.149733, 45.465553], + [9.15423, 45.465553], + [9.15423, 45.461057], + [9.149733, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#cce7ff", + "fill": "#cce7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.465553], + [9.149733, 45.47005], + [9.15423, 45.47005], + [9.15423, 45.465553], + [9.149733, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 15, + "stroke": "#d6ebff", + "fill": "#d6ebff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.47005], + [9.149733, 45.474547], + [9.15423, 45.474547], + [9.15423, 45.47005], + [9.149733, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.474547], + [9.149733, 45.479043], + [9.15423, 45.479043], + [9.15423, 45.474547], + [9.149733, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.479043], + [9.149733, 45.48354], + [9.15423, 45.48354], + [9.15423, 45.479043], + [9.149733, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.48354], + [9.149733, 45.488036], + [9.15423, 45.488036], + [9.15423, 45.48354], + [9.149733, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.488036], + [9.149733, 45.492533], + [9.15423, 45.492533], + [9.15423, 45.488036], + [9.149733, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.492533], + [9.149733, 45.49703], + [9.15423, 45.49703], + [9.15423, 45.492533], + [9.149733, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.49703], + [9.149733, 45.501526], + [9.15423, 45.501526], + [9.15423, 45.49703], + [9.149733, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.501526], + [9.149733, 45.506023], + [9.15423, 45.506023], + [9.15423, 45.501526], + [9.149733, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.506023], + [9.149733, 45.510519], + [9.15423, 45.510519], + [9.15423, 45.506023], + [9.149733, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.510519], + [9.149733, 45.515016], + [9.15423, 45.515016], + [9.15423, 45.510519], + [9.149733, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.515016], + [9.149733, 45.519513], + [9.15423, 45.519513], + [9.15423, 45.515016], + [9.149733, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.519513], + [9.149733, 45.524009], + [9.15423, 45.524009], + [9.15423, 45.519513], + [9.149733, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.524009], + [9.149733, 45.528506], + [9.15423, 45.528506], + [9.15423, 45.524009], + [9.149733, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.528506], + [9.149733, 45.533002], + [9.15423, 45.533002], + [9.15423, 45.528506], + [9.149733, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.533002], + [9.149733, 45.537499], + [9.15423, 45.537499], + [9.15423, 45.533002], + [9.149733, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.537499], + [9.149733, 45.541996], + [9.15423, 45.541996], + [9.15423, 45.537499], + [9.149733, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.541996], + [9.149733, 45.546492], + [9.15423, 45.546492], + [9.15423, 45.541996], + [9.149733, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.546492], + [9.149733, 45.550989], + [9.15423, 45.550989], + [9.15423, 45.546492], + [9.149733, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.550989], + [9.149733, 45.555485], + [9.15423, 45.555485], + [9.15423, 45.550989], + [9.149733, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.555485], + [9.149733, 45.559982], + [9.15423, 45.559982], + [9.15423, 45.555485], + [9.149733, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.559982], + [9.149733, 45.564479], + [9.15423, 45.564479], + [9.15423, 45.559982], + [9.149733, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.564479], + [9.149733, 45.568975], + [9.15423, 45.568975], + [9.15423, 45.564479], + [9.149733, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.568975], + [9.149733, 45.573472], + [9.15423, 45.573472], + [9.15423, 45.568975], + [9.149733, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.573472], + [9.149733, 45.577968], + [9.15423, 45.577968], + [9.15423, 45.573472], + [9.149733, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.577968], + [9.149733, 45.582465], + [9.15423, 45.582465], + [9.15423, 45.577968], + [9.149733, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.582465], + [9.149733, 45.586962], + [9.15423, 45.586962], + [9.15423, 45.582465], + [9.149733, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.586962], + [9.149733, 45.591458], + [9.15423, 45.591458], + [9.15423, 45.586962], + [9.149733, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.591458], + [9.149733, 45.595955], + [9.15423, 45.595955], + [9.15423, 45.591458], + [9.149733, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.595955], + [9.149733, 45.600451], + [9.15423, 45.600451], + [9.15423, 45.595955], + [9.149733, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.600451], + [9.149733, 45.604948], + [9.15423, 45.604948], + [9.15423, 45.600451], + [9.149733, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.604948], + [9.149733, 45.609445], + [9.15423, 45.609445], + [9.15423, 45.604948], + [9.149733, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.609445], + [9.149733, 45.613941], + [9.15423, 45.613941], + [9.15423, 45.609445], + [9.149733, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.613941], + [9.149733, 45.618438], + [9.15423, 45.618438], + [9.15423, 45.613941], + [9.149733, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.618438], + [9.149733, 45.622934], + [9.15423, 45.622934], + [9.15423, 45.618438], + [9.149733, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.622934], + [9.149733, 45.627431], + [9.15423, 45.627431], + [9.15423, 45.622934], + [9.149733, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.627431], + [9.149733, 45.631928], + [9.15423, 45.631928], + [9.15423, 45.627431], + [9.149733, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.631928], + [9.149733, 45.636424], + [9.15423, 45.636424], + [9.15423, 45.631928], + [9.149733, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.339648], + [9.15423, 45.344145], + [9.158727, 45.344145], + [9.158727, 45.339648], + [9.15423, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.344145], + [9.15423, 45.348642], + [9.158727, 45.348642], + [9.158727, 45.344145], + [9.15423, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.348642], + [9.15423, 45.353138], + [9.158727, 45.353138], + [9.158727, 45.348642], + [9.15423, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.353138], + [9.15423, 45.357635], + [9.158727, 45.357635], + [9.158727, 45.353138], + [9.15423, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.357635], + [9.15423, 45.362131], + [9.158727, 45.362131], + [9.158727, 45.357635], + [9.15423, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.362131], + [9.15423, 45.366628], + [9.158727, 45.366628], + [9.158727, 45.362131], + [9.15423, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.366628], + [9.15423, 45.371125], + [9.158727, 45.371125], + [9.158727, 45.366628], + [9.15423, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.371125], + [9.15423, 45.375621], + [9.158727, 45.375621], + [9.158727, 45.371125], + [9.15423, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.375621], + [9.15423, 45.380118], + [9.158727, 45.380118], + [9.158727, 45.375621], + [9.15423, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.380118], + [9.15423, 45.384614], + [9.158727, 45.384614], + [9.158727, 45.380118], + [9.15423, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.384614], + [9.15423, 45.389111], + [9.158727, 45.389111], + [9.158727, 45.384614], + [9.15423, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.389111], + [9.15423, 45.393608], + [9.158727, 45.393608], + [9.158727, 45.389111], + [9.15423, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.393608], + [9.15423, 45.398104], + [9.158727, 45.398104], + [9.158727, 45.393608], + [9.15423, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.398104], + [9.15423, 45.402601], + [9.158727, 45.402601], + [9.158727, 45.398104], + [9.15423, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.402601], + [9.15423, 45.407097], + [9.158727, 45.407097], + [9.158727, 45.402601], + [9.15423, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.407097], + [9.15423, 45.411594], + [9.158727, 45.411594], + [9.158727, 45.407097], + [9.15423, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.411594], + [9.15423, 45.416091], + [9.158727, 45.416091], + [9.158727, 45.411594], + [9.15423, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.416091], + [9.15423, 45.420587], + [9.158727, 45.420587], + [9.158727, 45.416091], + [9.15423, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.420587], + [9.15423, 45.425084], + [9.158727, 45.425084], + [9.158727, 45.420587], + [9.15423, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.425084], + [9.15423, 45.42958], + [9.158727, 45.42958], + [9.158727, 45.425084], + [9.15423, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.42958], + [9.15423, 45.434077], + [9.158727, 45.434077], + [9.158727, 45.42958], + [9.15423, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.434077], + [9.15423, 45.438574], + [9.158727, 45.438574], + [9.158727, 45.434077], + [9.15423, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.438574], + [9.15423, 45.44307], + [9.158727, 45.44307], + [9.158727, 45.438574], + [9.15423, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.44307], + [9.15423, 45.447567], + [9.158727, 45.447567], + [9.158727, 45.44307], + [9.15423, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.447567], + [9.15423, 45.452063], + [9.158727, 45.452063], + [9.158727, 45.447567], + [9.15423, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.452063], + [9.15423, 45.45656], + [9.158727, 45.45656], + [9.158727, 45.452063], + [9.15423, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.45656], + [9.15423, 45.461057], + [9.158727, 45.461057], + [9.158727, 45.45656], + [9.15423, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.461057], + [9.15423, 45.465553], + [9.158727, 45.465553], + [9.158727, 45.461057], + [9.15423, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#cce7ff", + "fill": "#cce7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.465553], + [9.15423, 45.47005], + [9.158727, 45.47005], + [9.158727, 45.465553], + [9.15423, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 11, + "stroke": "#ffffff", + "fill": "#ffffff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.47005], + [9.15423, 45.474547], + [9.158727, 45.474547], + [9.158727, 45.47005], + [9.15423, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.474547], + [9.15423, 45.479043], + [9.158727, 45.479043], + [9.158727, 45.474547], + [9.15423, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.479043], + [9.15423, 45.48354], + [9.158727, 45.48354], + [9.158727, 45.479043], + [9.15423, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.48354], + [9.15423, 45.488036], + [9.158727, 45.488036], + [9.158727, 45.48354], + [9.15423, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.488036], + [9.15423, 45.492533], + [9.158727, 45.492533], + [9.158727, 45.488036], + [9.15423, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.492533], + [9.15423, 45.49703], + [9.158727, 45.49703], + [9.158727, 45.492533], + [9.15423, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.49703], + [9.15423, 45.501526], + [9.158727, 45.501526], + [9.158727, 45.49703], + [9.15423, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.501526], + [9.15423, 45.506023], + [9.158727, 45.506023], + [9.158727, 45.501526], + [9.15423, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.506023], + [9.15423, 45.510519], + [9.158727, 45.510519], + [9.158727, 45.506023], + [9.15423, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.510519], + [9.15423, 45.515016], + [9.158727, 45.515016], + [9.158727, 45.510519], + [9.15423, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.515016], + [9.15423, 45.519513], + [9.158727, 45.519513], + [9.158727, 45.515016], + [9.15423, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.519513], + [9.15423, 45.524009], + [9.158727, 45.524009], + [9.158727, 45.519513], + [9.15423, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.524009], + [9.15423, 45.528506], + [9.158727, 45.528506], + [9.158727, 45.524009], + [9.15423, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.528506], + [9.15423, 45.533002], + [9.158727, 45.533002], + [9.158727, 45.528506], + [9.15423, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.533002], + [9.15423, 45.537499], + [9.158727, 45.537499], + [9.158727, 45.533002], + [9.15423, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.537499], + [9.15423, 45.541996], + [9.158727, 45.541996], + [9.158727, 45.537499], + [9.15423, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.541996], + [9.15423, 45.546492], + [9.158727, 45.546492], + [9.158727, 45.541996], + [9.15423, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.546492], + [9.15423, 45.550989], + [9.158727, 45.550989], + [9.158727, 45.546492], + [9.15423, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.550989], + [9.15423, 45.555485], + [9.158727, 45.555485], + [9.158727, 45.550989], + [9.15423, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.555485], + [9.15423, 45.559982], + [9.158727, 45.559982], + [9.158727, 45.555485], + [9.15423, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.559982], + [9.15423, 45.564479], + [9.158727, 45.564479], + [9.158727, 45.559982], + [9.15423, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.564479], + [9.15423, 45.568975], + [9.158727, 45.568975], + [9.158727, 45.564479], + [9.15423, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.568975], + [9.15423, 45.573472], + [9.158727, 45.573472], + [9.158727, 45.568975], + [9.15423, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.573472], + [9.15423, 45.577968], + [9.158727, 45.577968], + [9.158727, 45.573472], + [9.15423, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.577968], + [9.15423, 45.582465], + [9.158727, 45.582465], + [9.158727, 45.577968], + [9.15423, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.582465], + [9.15423, 45.586962], + [9.158727, 45.586962], + [9.158727, 45.582465], + [9.15423, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.586962], + [9.15423, 45.591458], + [9.158727, 45.591458], + [9.158727, 45.586962], + [9.15423, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.591458], + [9.15423, 45.595955], + [9.158727, 45.595955], + [9.158727, 45.591458], + [9.15423, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.595955], + [9.15423, 45.600451], + [9.158727, 45.600451], + [9.158727, 45.595955], + [9.15423, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.600451], + [9.15423, 45.604948], + [9.158727, 45.604948], + [9.158727, 45.600451], + [9.15423, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.604948], + [9.15423, 45.609445], + [9.158727, 45.609445], + [9.158727, 45.604948], + [9.15423, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.609445], + [9.15423, 45.613941], + [9.158727, 45.613941], + [9.158727, 45.609445], + [9.15423, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.613941], + [9.15423, 45.618438], + [9.158727, 45.618438], + [9.158727, 45.613941], + [9.15423, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.618438], + [9.15423, 45.622934], + [9.158727, 45.622934], + [9.158727, 45.618438], + [9.15423, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.622934], + [9.15423, 45.627431], + [9.158727, 45.627431], + [9.158727, 45.622934], + [9.15423, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.627431], + [9.15423, 45.631928], + [9.158727, 45.631928], + [9.158727, 45.627431], + [9.15423, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.631928], + [9.15423, 45.636424], + [9.158727, 45.636424], + [9.158727, 45.631928], + [9.15423, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.339648], + [9.158727, 45.344145], + [9.163223, 45.344145], + [9.163223, 45.339648], + [9.158727, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.344145], + [9.158727, 45.348642], + [9.163223, 45.348642], + [9.163223, 45.344145], + [9.158727, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.348642], + [9.158727, 45.353138], + [9.163223, 45.353138], + [9.163223, 45.348642], + [9.158727, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.353138], + [9.158727, 45.357635], + [9.163223, 45.357635], + [9.163223, 45.353138], + [9.158727, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.357635], + [9.158727, 45.362131], + [9.163223, 45.362131], + [9.163223, 45.357635], + [9.158727, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.362131], + [9.158727, 45.366628], + [9.163223, 45.366628], + [9.163223, 45.362131], + [9.158727, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.366628], + [9.158727, 45.371125], + [9.163223, 45.371125], + [9.163223, 45.366628], + [9.158727, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.371125], + [9.158727, 45.375621], + [9.163223, 45.375621], + [9.163223, 45.371125], + [9.158727, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.375621], + [9.158727, 45.380118], + [9.163223, 45.380118], + [9.163223, 45.375621], + [9.158727, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.380118], + [9.158727, 45.384614], + [9.163223, 45.384614], + [9.163223, 45.380118], + [9.158727, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.384614], + [9.158727, 45.389111], + [9.163223, 45.389111], + [9.163223, 45.384614], + [9.158727, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.389111], + [9.158727, 45.393608], + [9.163223, 45.393608], + [9.163223, 45.389111], + [9.158727, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.393608], + [9.158727, 45.398104], + [9.163223, 45.398104], + [9.163223, 45.393608], + [9.158727, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.398104], + [9.158727, 45.402601], + [9.163223, 45.402601], + [9.163223, 45.398104], + [9.158727, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.402601], + [9.158727, 45.407097], + [9.163223, 45.407097], + [9.163223, 45.402601], + [9.158727, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.407097], + [9.158727, 45.411594], + [9.163223, 45.411594], + [9.163223, 45.407097], + [9.158727, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.411594], + [9.158727, 45.416091], + [9.163223, 45.416091], + [9.163223, 45.411594], + [9.158727, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.416091], + [9.158727, 45.420587], + [9.163223, 45.420587], + [9.163223, 45.416091], + [9.158727, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.420587], + [9.158727, 45.425084], + [9.163223, 45.425084], + [9.163223, 45.420587], + [9.158727, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.425084], + [9.158727, 45.42958], + [9.163223, 45.42958], + [9.163223, 45.425084], + [9.158727, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.42958], + [9.158727, 45.434077], + [9.163223, 45.434077], + [9.163223, 45.42958], + [9.158727, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.434077], + [9.158727, 45.438574], + [9.163223, 45.438574], + [9.163223, 45.434077], + [9.158727, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.438574], + [9.158727, 45.44307], + [9.163223, 45.44307], + [9.163223, 45.438574], + [9.158727, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.44307], + [9.158727, 45.447567], + [9.163223, 45.447567], + [9.163223, 45.44307], + [9.158727, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.447567], + [9.158727, 45.452063], + [9.163223, 45.452063], + [9.163223, 45.447567], + [9.158727, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.452063], + [9.158727, 45.45656], + [9.163223, 45.45656], + [9.163223, 45.452063], + [9.158727, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.45656], + [9.158727, 45.461057], + [9.163223, 45.461057], + [9.163223, 45.45656], + [9.158727, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.461057], + [9.158727, 45.465553], + [9.163223, 45.465553], + [9.163223, 45.461057], + [9.158727, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.465553], + [9.158727, 45.47005], + [9.163223, 45.47005], + [9.163223, 45.465553], + [9.158727, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#cce7ff", + "fill": "#cce7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.47005], + [9.158727, 45.474547], + [9.163223, 45.474547], + [9.163223, 45.47005], + [9.158727, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.474547], + [9.158727, 45.479043], + [9.163223, 45.479043], + [9.163223, 45.474547], + [9.158727, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.479043], + [9.158727, 45.48354], + [9.163223, 45.48354], + [9.163223, 45.479043], + [9.158727, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.48354], + [9.158727, 45.488036], + [9.163223, 45.488036], + [9.163223, 45.48354], + [9.158727, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.488036], + [9.158727, 45.492533], + [9.163223, 45.492533], + [9.163223, 45.488036], + [9.158727, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.492533], + [9.158727, 45.49703], + [9.163223, 45.49703], + [9.163223, 45.492533], + [9.158727, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.49703], + [9.158727, 45.501526], + [9.163223, 45.501526], + [9.163223, 45.49703], + [9.158727, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.501526], + [9.158727, 45.506023], + [9.163223, 45.506023], + [9.163223, 45.501526], + [9.158727, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.506023], + [9.158727, 45.510519], + [9.163223, 45.510519], + [9.163223, 45.506023], + [9.158727, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.510519], + [9.158727, 45.515016], + [9.163223, 45.515016], + [9.163223, 45.510519], + [9.158727, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.515016], + [9.158727, 45.519513], + [9.163223, 45.519513], + [9.163223, 45.515016], + [9.158727, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.519513], + [9.158727, 45.524009], + [9.163223, 45.524009], + [9.163223, 45.519513], + [9.158727, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.524009], + [9.158727, 45.528506], + [9.163223, 45.528506], + [9.163223, 45.524009], + [9.158727, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.528506], + [9.158727, 45.533002], + [9.163223, 45.533002], + [9.163223, 45.528506], + [9.158727, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.533002], + [9.158727, 45.537499], + [9.163223, 45.537499], + [9.163223, 45.533002], + [9.158727, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.537499], + [9.158727, 45.541996], + [9.163223, 45.541996], + [9.163223, 45.537499], + [9.158727, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.541996], + [9.158727, 45.546492], + [9.163223, 45.546492], + [9.163223, 45.541996], + [9.158727, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.546492], + [9.158727, 45.550989], + [9.163223, 45.550989], + [9.163223, 45.546492], + [9.158727, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.550989], + [9.158727, 45.555485], + [9.163223, 45.555485], + [9.163223, 45.550989], + [9.158727, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.555485], + [9.158727, 45.559982], + [9.163223, 45.559982], + [9.163223, 45.555485], + [9.158727, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.559982], + [9.158727, 45.564479], + [9.163223, 45.564479], + [9.163223, 45.559982], + [9.158727, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.564479], + [9.158727, 45.568975], + [9.163223, 45.568975], + [9.163223, 45.564479], + [9.158727, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.568975], + [9.158727, 45.573472], + [9.163223, 45.573472], + [9.163223, 45.568975], + [9.158727, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.573472], + [9.158727, 45.577968], + [9.163223, 45.577968], + [9.163223, 45.573472], + [9.158727, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.577968], + [9.158727, 45.582465], + [9.163223, 45.582465], + [9.163223, 45.577968], + [9.158727, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.582465], + [9.158727, 45.586962], + [9.163223, 45.586962], + [9.163223, 45.582465], + [9.158727, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.586962], + [9.158727, 45.591458], + [9.163223, 45.591458], + [9.163223, 45.586962], + [9.158727, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.591458], + [9.158727, 45.595955], + [9.163223, 45.595955], + [9.163223, 45.591458], + [9.158727, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.595955], + [9.158727, 45.600451], + [9.163223, 45.600451], + [9.163223, 45.595955], + [9.158727, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.600451], + [9.158727, 45.604948], + [9.163223, 45.604948], + [9.163223, 45.600451], + [9.158727, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.604948], + [9.158727, 45.609445], + [9.163223, 45.609445], + [9.163223, 45.604948], + [9.158727, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.609445], + [9.158727, 45.613941], + [9.163223, 45.613941], + [9.163223, 45.609445], + [9.158727, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.613941], + [9.158727, 45.618438], + [9.163223, 45.618438], + [9.163223, 45.613941], + [9.158727, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.618438], + [9.158727, 45.622934], + [9.163223, 45.622934], + [9.163223, 45.618438], + [9.158727, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.622934], + [9.158727, 45.627431], + [9.163223, 45.627431], + [9.163223, 45.622934], + [9.158727, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.627431], + [9.158727, 45.631928], + [9.163223, 45.631928], + [9.163223, 45.627431], + [9.158727, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.631928], + [9.158727, 45.636424], + [9.163223, 45.636424], + [9.163223, 45.631928], + [9.158727, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.339648], + [9.163223, 45.344145], + [9.16772, 45.344145], + [9.16772, 45.339648], + [9.163223, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.344145], + [9.163223, 45.348642], + [9.16772, 45.348642], + [9.16772, 45.344145], + [9.163223, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.348642], + [9.163223, 45.353138], + [9.16772, 45.353138], + [9.16772, 45.348642], + [9.163223, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.353138], + [9.163223, 45.357635], + [9.16772, 45.357635], + [9.16772, 45.353138], + [9.163223, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.357635], + [9.163223, 45.362131], + [9.16772, 45.362131], + [9.16772, 45.357635], + [9.163223, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.362131], + [9.163223, 45.366628], + [9.16772, 45.366628], + [9.16772, 45.362131], + [9.163223, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.366628], + [9.163223, 45.371125], + [9.16772, 45.371125], + [9.16772, 45.366628], + [9.163223, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.371125], + [9.163223, 45.375621], + [9.16772, 45.375621], + [9.16772, 45.371125], + [9.163223, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.375621], + [9.163223, 45.380118], + [9.16772, 45.380118], + [9.16772, 45.375621], + [9.163223, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.380118], + [9.163223, 45.384614], + [9.16772, 45.384614], + [9.16772, 45.380118], + [9.163223, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.384614], + [9.163223, 45.389111], + [9.16772, 45.389111], + [9.16772, 45.384614], + [9.163223, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.389111], + [9.163223, 45.393608], + [9.16772, 45.393608], + [9.16772, 45.389111], + [9.163223, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.393608], + [9.163223, 45.398104], + [9.16772, 45.398104], + [9.16772, 45.393608], + [9.163223, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.398104], + [9.163223, 45.402601], + [9.16772, 45.402601], + [9.16772, 45.398104], + [9.163223, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.402601], + [9.163223, 45.407097], + [9.16772, 45.407097], + [9.16772, 45.402601], + [9.163223, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.407097], + [9.163223, 45.411594], + [9.16772, 45.411594], + [9.16772, 45.407097], + [9.163223, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.411594], + [9.163223, 45.416091], + [9.16772, 45.416091], + [9.16772, 45.411594], + [9.163223, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.416091], + [9.163223, 45.420587], + [9.16772, 45.420587], + [9.16772, 45.416091], + [9.163223, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.420587], + [9.163223, 45.425084], + [9.16772, 45.425084], + [9.16772, 45.420587], + [9.163223, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.425084], + [9.163223, 45.42958], + [9.16772, 45.42958], + [9.16772, 45.425084], + [9.163223, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.42958], + [9.163223, 45.434077], + [9.16772, 45.434077], + [9.16772, 45.42958], + [9.163223, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.434077], + [9.163223, 45.438574], + [9.16772, 45.438574], + [9.16772, 45.434077], + [9.163223, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.438574], + [9.163223, 45.44307], + [9.16772, 45.44307], + [9.16772, 45.438574], + [9.163223, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.44307], + [9.163223, 45.447567], + [9.16772, 45.447567], + [9.16772, 45.44307], + [9.163223, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.447567], + [9.163223, 45.452063], + [9.16772, 45.452063], + [9.16772, 45.447567], + [9.163223, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.452063], + [9.163223, 45.45656], + [9.16772, 45.45656], + [9.16772, 45.452063], + [9.163223, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.45656], + [9.163223, 45.461057], + [9.16772, 45.461057], + [9.16772, 45.45656], + [9.163223, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.461057], + [9.163223, 45.465553], + [9.16772, 45.465553], + [9.16772, 45.461057], + [9.163223, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.465553], + [9.163223, 45.47005], + [9.16772, 45.47005], + [9.16772, 45.465553], + [9.163223, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.47005], + [9.163223, 45.474547], + [9.16772, 45.474547], + [9.16772, 45.47005], + [9.163223, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.474547], + [9.163223, 45.479043], + [9.16772, 45.479043], + [9.16772, 45.474547], + [9.163223, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.479043], + [9.163223, 45.48354], + [9.16772, 45.48354], + [9.16772, 45.479043], + [9.163223, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.48354], + [9.163223, 45.488036], + [9.16772, 45.488036], + [9.16772, 45.48354], + [9.163223, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.488036], + [9.163223, 45.492533], + [9.16772, 45.492533], + [9.16772, 45.488036], + [9.163223, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.492533], + [9.163223, 45.49703], + [9.16772, 45.49703], + [9.16772, 45.492533], + [9.163223, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.49703], + [9.163223, 45.501526], + [9.16772, 45.501526], + [9.16772, 45.49703], + [9.163223, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.501526], + [9.163223, 45.506023], + [9.16772, 45.506023], + [9.16772, 45.501526], + [9.163223, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.506023], + [9.163223, 45.510519], + [9.16772, 45.510519], + [9.16772, 45.506023], + [9.163223, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.510519], + [9.163223, 45.515016], + [9.16772, 45.515016], + [9.16772, 45.510519], + [9.163223, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.515016], + [9.163223, 45.519513], + [9.16772, 45.519513], + [9.16772, 45.515016], + [9.163223, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.519513], + [9.163223, 45.524009], + [9.16772, 45.524009], + [9.16772, 45.519513], + [9.163223, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.524009], + [9.163223, 45.528506], + [9.16772, 45.528506], + [9.16772, 45.524009], + [9.163223, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.528506], + [9.163223, 45.533002], + [9.16772, 45.533002], + [9.16772, 45.528506], + [9.163223, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.533002], + [9.163223, 45.537499], + [9.16772, 45.537499], + [9.16772, 45.533002], + [9.163223, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.537499], + [9.163223, 45.541996], + [9.16772, 45.541996], + [9.16772, 45.537499], + [9.163223, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.541996], + [9.163223, 45.546492], + [9.16772, 45.546492], + [9.16772, 45.541996], + [9.163223, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.546492], + [9.163223, 45.550989], + [9.16772, 45.550989], + [9.16772, 45.546492], + [9.163223, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.550989], + [9.163223, 45.555485], + [9.16772, 45.555485], + [9.16772, 45.550989], + [9.163223, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.555485], + [9.163223, 45.559982], + [9.16772, 45.559982], + [9.16772, 45.555485], + [9.163223, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.559982], + [9.163223, 45.564479], + [9.16772, 45.564479], + [9.16772, 45.559982], + [9.163223, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.564479], + [9.163223, 45.568975], + [9.16772, 45.568975], + [9.16772, 45.564479], + [9.163223, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.568975], + [9.163223, 45.573472], + [9.16772, 45.573472], + [9.16772, 45.568975], + [9.163223, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.573472], + [9.163223, 45.577968], + [9.16772, 45.577968], + [9.16772, 45.573472], + [9.163223, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.577968], + [9.163223, 45.582465], + [9.16772, 45.582465], + [9.16772, 45.577968], + [9.163223, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.582465], + [9.163223, 45.586962], + [9.16772, 45.586962], + [9.16772, 45.582465], + [9.163223, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.586962], + [9.163223, 45.591458], + [9.16772, 45.591458], + [9.16772, 45.586962], + [9.163223, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.591458], + [9.163223, 45.595955], + [9.16772, 45.595955], + [9.16772, 45.591458], + [9.163223, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.595955], + [9.163223, 45.600451], + [9.16772, 45.600451], + [9.16772, 45.595955], + [9.163223, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.600451], + [9.163223, 45.604948], + [9.16772, 45.604948], + [9.16772, 45.600451], + [9.163223, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.604948], + [9.163223, 45.609445], + [9.16772, 45.609445], + [9.16772, 45.604948], + [9.163223, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.609445], + [9.163223, 45.613941], + [9.16772, 45.613941], + [9.16772, 45.609445], + [9.163223, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.613941], + [9.163223, 45.618438], + [9.16772, 45.618438], + [9.16772, 45.613941], + [9.163223, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.618438], + [9.163223, 45.622934], + [9.16772, 45.622934], + [9.16772, 45.618438], + [9.163223, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.622934], + [9.163223, 45.627431], + [9.16772, 45.627431], + [9.16772, 45.622934], + [9.163223, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.627431], + [9.163223, 45.631928], + [9.16772, 45.631928], + [9.16772, 45.627431], + [9.163223, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.631928], + [9.163223, 45.636424], + [9.16772, 45.636424], + [9.16772, 45.631928], + [9.163223, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.339648], + [9.16772, 45.344145], + [9.172216, 45.344145], + [9.172216, 45.339648], + [9.16772, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.344145], + [9.16772, 45.348642], + [9.172216, 45.348642], + [9.172216, 45.344145], + [9.16772, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.348642], + [9.16772, 45.353138], + [9.172216, 45.353138], + [9.172216, 45.348642], + [9.16772, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.353138], + [9.16772, 45.357635], + [9.172216, 45.357635], + [9.172216, 45.353138], + [9.16772, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.357635], + [9.16772, 45.362131], + [9.172216, 45.362131], + [9.172216, 45.357635], + [9.16772, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.362131], + [9.16772, 45.366628], + [9.172216, 45.366628], + [9.172216, 45.362131], + [9.16772, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.366628], + [9.16772, 45.371125], + [9.172216, 45.371125], + [9.172216, 45.366628], + [9.16772, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.371125], + [9.16772, 45.375621], + [9.172216, 45.375621], + [9.172216, 45.371125], + [9.16772, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.375621], + [9.16772, 45.380118], + [9.172216, 45.380118], + [9.172216, 45.375621], + [9.16772, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.380118], + [9.16772, 45.384614], + [9.172216, 45.384614], + [9.172216, 45.380118], + [9.16772, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.384614], + [9.16772, 45.389111], + [9.172216, 45.389111], + [9.172216, 45.384614], + [9.16772, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.389111], + [9.16772, 45.393608], + [9.172216, 45.393608], + [9.172216, 45.389111], + [9.16772, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.393608], + [9.16772, 45.398104], + [9.172216, 45.398104], + [9.172216, 45.393608], + [9.16772, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.398104], + [9.16772, 45.402601], + [9.172216, 45.402601], + [9.172216, 45.398104], + [9.16772, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.402601], + [9.16772, 45.407097], + [9.172216, 45.407097], + [9.172216, 45.402601], + [9.16772, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.407097], + [9.16772, 45.411594], + [9.172216, 45.411594], + [9.172216, 45.407097], + [9.16772, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.411594], + [9.16772, 45.416091], + [9.172216, 45.416091], + [9.172216, 45.411594], + [9.16772, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.416091], + [9.16772, 45.420587], + [9.172216, 45.420587], + [9.172216, 45.416091], + [9.16772, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.420587], + [9.16772, 45.425084], + [9.172216, 45.425084], + [9.172216, 45.420587], + [9.16772, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.425084], + [9.16772, 45.42958], + [9.172216, 45.42958], + [9.172216, 45.425084], + [9.16772, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.42958], + [9.16772, 45.434077], + [9.172216, 45.434077], + [9.172216, 45.42958], + [9.16772, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.434077], + [9.16772, 45.438574], + [9.172216, 45.438574], + [9.172216, 45.434077], + [9.16772, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.438574], + [9.16772, 45.44307], + [9.172216, 45.44307], + [9.172216, 45.438574], + [9.16772, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.44307], + [9.16772, 45.447567], + [9.172216, 45.447567], + [9.172216, 45.44307], + [9.16772, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.447567], + [9.16772, 45.452063], + [9.172216, 45.452063], + [9.172216, 45.447567], + [9.16772, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.452063], + [9.16772, 45.45656], + [9.172216, 45.45656], + [9.172216, 45.452063], + [9.16772, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.45656], + [9.16772, 45.461057], + [9.172216, 45.461057], + [9.172216, 45.45656], + [9.16772, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.461057], + [9.16772, 45.465553], + [9.172216, 45.465553], + [9.172216, 45.461057], + [9.16772, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.465553], + [9.16772, 45.47005], + [9.172216, 45.47005], + [9.172216, 45.465553], + [9.16772, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.47005], + [9.16772, 45.474547], + [9.172216, 45.474547], + [9.172216, 45.47005], + [9.16772, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.474547], + [9.16772, 45.479043], + [9.172216, 45.479043], + [9.172216, 45.474547], + [9.16772, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.479043], + [9.16772, 45.48354], + [9.172216, 45.48354], + [9.172216, 45.479043], + [9.16772, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.48354], + [9.16772, 45.488036], + [9.172216, 45.488036], + [9.172216, 45.48354], + [9.16772, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.488036], + [9.16772, 45.492533], + [9.172216, 45.492533], + [9.172216, 45.488036], + [9.16772, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.492533], + [9.16772, 45.49703], + [9.172216, 45.49703], + [9.172216, 45.492533], + [9.16772, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.49703], + [9.16772, 45.501526], + [9.172216, 45.501526], + [9.172216, 45.49703], + [9.16772, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.501526], + [9.16772, 45.506023], + [9.172216, 45.506023], + [9.172216, 45.501526], + [9.16772, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.506023], + [9.16772, 45.510519], + [9.172216, 45.510519], + [9.172216, 45.506023], + [9.16772, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.510519], + [9.16772, 45.515016], + [9.172216, 45.515016], + [9.172216, 45.510519], + [9.16772, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.515016], + [9.16772, 45.519513], + [9.172216, 45.519513], + [9.172216, 45.515016], + [9.16772, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.519513], + [9.16772, 45.524009], + [9.172216, 45.524009], + [9.172216, 45.519513], + [9.16772, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.524009], + [9.16772, 45.528506], + [9.172216, 45.528506], + [9.172216, 45.524009], + [9.16772, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.528506], + [9.16772, 45.533002], + [9.172216, 45.533002], + [9.172216, 45.528506], + [9.16772, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.533002], + [9.16772, 45.537499], + [9.172216, 45.537499], + [9.172216, 45.533002], + [9.16772, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.537499], + [9.16772, 45.541996], + [9.172216, 45.541996], + [9.172216, 45.537499], + [9.16772, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.541996], + [9.16772, 45.546492], + [9.172216, 45.546492], + [9.172216, 45.541996], + [9.16772, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.546492], + [9.16772, 45.550989], + [9.172216, 45.550989], + [9.172216, 45.546492], + [9.16772, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.550989], + [9.16772, 45.555485], + [9.172216, 45.555485], + [9.172216, 45.550989], + [9.16772, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.555485], + [9.16772, 45.559982], + [9.172216, 45.559982], + [9.172216, 45.555485], + [9.16772, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.559982], + [9.16772, 45.564479], + [9.172216, 45.564479], + [9.172216, 45.559982], + [9.16772, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.564479], + [9.16772, 45.568975], + [9.172216, 45.568975], + [9.172216, 45.564479], + [9.16772, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.568975], + [9.16772, 45.573472], + [9.172216, 45.573472], + [9.172216, 45.568975], + [9.16772, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.573472], + [9.16772, 45.577968], + [9.172216, 45.577968], + [9.172216, 45.573472], + [9.16772, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.577968], + [9.16772, 45.582465], + [9.172216, 45.582465], + [9.172216, 45.577968], + [9.16772, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.582465], + [9.16772, 45.586962], + [9.172216, 45.586962], + [9.172216, 45.582465], + [9.16772, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.586962], + [9.16772, 45.591458], + [9.172216, 45.591458], + [9.172216, 45.586962], + [9.16772, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.591458], + [9.16772, 45.595955], + [9.172216, 45.595955], + [9.172216, 45.591458], + [9.16772, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.595955], + [9.16772, 45.600451], + [9.172216, 45.600451], + [9.172216, 45.595955], + [9.16772, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.600451], + [9.16772, 45.604948], + [9.172216, 45.604948], + [9.172216, 45.600451], + [9.16772, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.604948], + [9.16772, 45.609445], + [9.172216, 45.609445], + [9.172216, 45.604948], + [9.16772, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.609445], + [9.16772, 45.613941], + [9.172216, 45.613941], + [9.172216, 45.609445], + [9.16772, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.613941], + [9.16772, 45.618438], + [9.172216, 45.618438], + [9.172216, 45.613941], + [9.16772, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.618438], + [9.16772, 45.622934], + [9.172216, 45.622934], + [9.172216, 45.618438], + [9.16772, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.622934], + [9.16772, 45.627431], + [9.172216, 45.627431], + [9.172216, 45.622934], + [9.16772, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.627431], + [9.16772, 45.631928], + [9.172216, 45.631928], + [9.172216, 45.627431], + [9.16772, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.631928], + [9.16772, 45.636424], + [9.172216, 45.636424], + [9.172216, 45.631928], + [9.16772, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.339648], + [9.172216, 45.344145], + [9.176713, 45.344145], + [9.176713, 45.339648], + [9.172216, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.344145], + [9.172216, 45.348642], + [9.176713, 45.348642], + [9.176713, 45.344145], + [9.172216, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.348642], + [9.172216, 45.353138], + [9.176713, 45.353138], + [9.176713, 45.348642], + [9.172216, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.353138], + [9.172216, 45.357635], + [9.176713, 45.357635], + [9.176713, 45.353138], + [9.172216, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.357635], + [9.172216, 45.362131], + [9.176713, 45.362131], + [9.176713, 45.357635], + [9.172216, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.362131], + [9.172216, 45.366628], + [9.176713, 45.366628], + [9.176713, 45.362131], + [9.172216, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.366628], + [9.172216, 45.371125], + [9.176713, 45.371125], + [9.176713, 45.366628], + [9.172216, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.371125], + [9.172216, 45.375621], + [9.176713, 45.375621], + [9.176713, 45.371125], + [9.172216, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.375621], + [9.172216, 45.380118], + [9.176713, 45.380118], + [9.176713, 45.375621], + [9.172216, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.380118], + [9.172216, 45.384614], + [9.176713, 45.384614], + [9.176713, 45.380118], + [9.172216, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.384614], + [9.172216, 45.389111], + [9.176713, 45.389111], + [9.176713, 45.384614], + [9.172216, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.389111], + [9.172216, 45.393608], + [9.176713, 45.393608], + [9.176713, 45.389111], + [9.172216, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.393608], + [9.172216, 45.398104], + [9.176713, 45.398104], + [9.176713, 45.393608], + [9.172216, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.398104], + [9.172216, 45.402601], + [9.176713, 45.402601], + [9.176713, 45.398104], + [9.172216, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.402601], + [9.172216, 45.407097], + [9.176713, 45.407097], + [9.176713, 45.402601], + [9.172216, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.407097], + [9.172216, 45.411594], + [9.176713, 45.411594], + [9.176713, 45.407097], + [9.172216, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.411594], + [9.172216, 45.416091], + [9.176713, 45.416091], + [9.176713, 45.411594], + [9.172216, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.416091], + [9.172216, 45.420587], + [9.176713, 45.420587], + [9.176713, 45.416091], + [9.172216, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.420587], + [9.172216, 45.425084], + [9.176713, 45.425084], + [9.176713, 45.420587], + [9.172216, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.425084], + [9.172216, 45.42958], + [9.176713, 45.42958], + [9.176713, 45.425084], + [9.172216, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.42958], + [9.172216, 45.434077], + [9.176713, 45.434077], + [9.176713, 45.42958], + [9.172216, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.434077], + [9.172216, 45.438574], + [9.176713, 45.438574], + [9.176713, 45.434077], + [9.172216, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.438574], + [9.172216, 45.44307], + [9.176713, 45.44307], + [9.176713, 45.438574], + [9.172216, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.44307], + [9.172216, 45.447567], + [9.176713, 45.447567], + [9.176713, 45.44307], + [9.172216, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.447567], + [9.172216, 45.452063], + [9.176713, 45.452063], + [9.176713, 45.447567], + [9.172216, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.452063], + [9.172216, 45.45656], + [9.176713, 45.45656], + [9.176713, 45.452063], + [9.172216, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.45656], + [9.172216, 45.461057], + [9.176713, 45.461057], + [9.176713, 45.45656], + [9.172216, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.461057], + [9.172216, 45.465553], + [9.176713, 45.465553], + [9.176713, 45.461057], + [9.172216, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.465553], + [9.172216, 45.47005], + [9.176713, 45.47005], + [9.176713, 45.465553], + [9.172216, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.47005], + [9.172216, 45.474547], + [9.176713, 45.474547], + [9.176713, 45.47005], + [9.172216, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.474547], + [9.172216, 45.479043], + [9.176713, 45.479043], + [9.176713, 45.474547], + [9.172216, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.479043], + [9.172216, 45.48354], + [9.176713, 45.48354], + [9.176713, 45.479043], + [9.172216, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.48354], + [9.172216, 45.488036], + [9.176713, 45.488036], + [9.176713, 45.48354], + [9.172216, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.488036], + [9.172216, 45.492533], + [9.176713, 45.492533], + [9.176713, 45.488036], + [9.172216, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.492533], + [9.172216, 45.49703], + [9.176713, 45.49703], + [9.176713, 45.492533], + [9.172216, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#cce7ff", + "fill": "#cce7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.49703], + [9.172216, 45.501526], + [9.176713, 45.501526], + [9.176713, 45.49703], + [9.172216, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.501526], + [9.172216, 45.506023], + [9.176713, 45.506023], + [9.176713, 45.501526], + [9.172216, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.506023], + [9.172216, 45.510519], + [9.176713, 45.510519], + [9.176713, 45.506023], + [9.172216, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.510519], + [9.172216, 45.515016], + [9.176713, 45.515016], + [9.176713, 45.510519], + [9.172216, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.515016], + [9.172216, 45.519513], + [9.176713, 45.519513], + [9.176713, 45.515016], + [9.172216, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.519513], + [9.172216, 45.524009], + [9.176713, 45.524009], + [9.176713, 45.519513], + [9.172216, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.524009], + [9.172216, 45.528506], + [9.176713, 45.528506], + [9.176713, 45.524009], + [9.172216, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.528506], + [9.172216, 45.533002], + [9.176713, 45.533002], + [9.176713, 45.528506], + [9.172216, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.533002], + [9.172216, 45.537499], + [9.176713, 45.537499], + [9.176713, 45.533002], + [9.172216, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.537499], + [9.172216, 45.541996], + [9.176713, 45.541996], + [9.176713, 45.537499], + [9.172216, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.541996], + [9.172216, 45.546492], + [9.176713, 45.546492], + [9.176713, 45.541996], + [9.172216, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.546492], + [9.172216, 45.550989], + [9.176713, 45.550989], + [9.176713, 45.546492], + [9.172216, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.550989], + [9.172216, 45.555485], + [9.176713, 45.555485], + [9.176713, 45.550989], + [9.172216, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.555485], + [9.172216, 45.559982], + [9.176713, 45.559982], + [9.176713, 45.555485], + [9.172216, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.559982], + [9.172216, 45.564479], + [9.176713, 45.564479], + [9.176713, 45.559982], + [9.172216, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.564479], + [9.172216, 45.568975], + [9.176713, 45.568975], + [9.176713, 45.564479], + [9.172216, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.568975], + [9.172216, 45.573472], + [9.176713, 45.573472], + [9.176713, 45.568975], + [9.172216, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.573472], + [9.172216, 45.577968], + [9.176713, 45.577968], + [9.176713, 45.573472], + [9.172216, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.577968], + [9.172216, 45.582465], + [9.176713, 45.582465], + [9.176713, 45.577968], + [9.172216, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.582465], + [9.172216, 45.586962], + [9.176713, 45.586962], + [9.176713, 45.582465], + [9.172216, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.586962], + [9.172216, 45.591458], + [9.176713, 45.591458], + [9.176713, 45.586962], + [9.172216, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.591458], + [9.172216, 45.595955], + [9.176713, 45.595955], + [9.176713, 45.591458], + [9.172216, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.595955], + [9.172216, 45.600451], + [9.176713, 45.600451], + [9.176713, 45.595955], + [9.172216, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.600451], + [9.172216, 45.604948], + [9.176713, 45.604948], + [9.176713, 45.600451], + [9.172216, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.604948], + [9.172216, 45.609445], + [9.176713, 45.609445], + [9.176713, 45.604948], + [9.172216, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.609445], + [9.172216, 45.613941], + [9.176713, 45.613941], + [9.176713, 45.609445], + [9.172216, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.613941], + [9.172216, 45.618438], + [9.176713, 45.618438], + [9.176713, 45.613941], + [9.172216, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.618438], + [9.172216, 45.622934], + [9.176713, 45.622934], + [9.176713, 45.618438], + [9.172216, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.622934], + [9.172216, 45.627431], + [9.176713, 45.627431], + [9.176713, 45.622934], + [9.172216, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.627431], + [9.172216, 45.631928], + [9.176713, 45.631928], + [9.176713, 45.627431], + [9.172216, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.631928], + [9.172216, 45.636424], + [9.176713, 45.636424], + [9.176713, 45.631928], + [9.172216, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.339648], + [9.176713, 45.344145], + [9.18121, 45.344145], + [9.18121, 45.339648], + [9.176713, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.344145], + [9.176713, 45.348642], + [9.18121, 45.348642], + [9.18121, 45.344145], + [9.176713, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.348642], + [9.176713, 45.353138], + [9.18121, 45.353138], + [9.18121, 45.348642], + [9.176713, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.353138], + [9.176713, 45.357635], + [9.18121, 45.357635], + [9.18121, 45.353138], + [9.176713, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.357635], + [9.176713, 45.362131], + [9.18121, 45.362131], + [9.18121, 45.357635], + [9.176713, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.362131], + [9.176713, 45.366628], + [9.18121, 45.366628], + [9.18121, 45.362131], + [9.176713, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.366628], + [9.176713, 45.371125], + [9.18121, 45.371125], + [9.18121, 45.366628], + [9.176713, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.371125], + [9.176713, 45.375621], + [9.18121, 45.375621], + [9.18121, 45.371125], + [9.176713, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.375621], + [9.176713, 45.380118], + [9.18121, 45.380118], + [9.18121, 45.375621], + [9.176713, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.380118], + [9.176713, 45.384614], + [9.18121, 45.384614], + [9.18121, 45.380118], + [9.176713, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.384614], + [9.176713, 45.389111], + [9.18121, 45.389111], + [9.18121, 45.384614], + [9.176713, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.389111], + [9.176713, 45.393608], + [9.18121, 45.393608], + [9.18121, 45.389111], + [9.176713, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.393608], + [9.176713, 45.398104], + [9.18121, 45.398104], + [9.18121, 45.393608], + [9.176713, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.398104], + [9.176713, 45.402601], + [9.18121, 45.402601], + [9.18121, 45.398104], + [9.176713, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.402601], + [9.176713, 45.407097], + [9.18121, 45.407097], + [9.18121, 45.402601], + [9.176713, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.407097], + [9.176713, 45.411594], + [9.18121, 45.411594], + [9.18121, 45.407097], + [9.176713, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.411594], + [9.176713, 45.416091], + [9.18121, 45.416091], + [9.18121, 45.411594], + [9.176713, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.416091], + [9.176713, 45.420587], + [9.18121, 45.420587], + [9.18121, 45.416091], + [9.176713, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.420587], + [9.176713, 45.425084], + [9.18121, 45.425084], + [9.18121, 45.420587], + [9.176713, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.425084], + [9.176713, 45.42958], + [9.18121, 45.42958], + [9.18121, 45.425084], + [9.176713, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.42958], + [9.176713, 45.434077], + [9.18121, 45.434077], + [9.18121, 45.42958], + [9.176713, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.434077], + [9.176713, 45.438574], + [9.18121, 45.438574], + [9.18121, 45.434077], + [9.176713, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.438574], + [9.176713, 45.44307], + [9.18121, 45.44307], + [9.18121, 45.438574], + [9.176713, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.44307], + [9.176713, 45.447567], + [9.18121, 45.447567], + [9.18121, 45.44307], + [9.176713, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.447567], + [9.176713, 45.452063], + [9.18121, 45.452063], + [9.18121, 45.447567], + [9.176713, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.452063], + [9.176713, 45.45656], + [9.18121, 45.45656], + [9.18121, 45.452063], + [9.176713, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.45656], + [9.176713, 45.461057], + [9.18121, 45.461057], + [9.18121, 45.45656], + [9.176713, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.461057], + [9.176713, 45.465553], + [9.18121, 45.465553], + [9.18121, 45.461057], + [9.176713, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.465553], + [9.176713, 45.47005], + [9.18121, 45.47005], + [9.18121, 45.465553], + [9.176713, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.47005], + [9.176713, 45.474547], + [9.18121, 45.474547], + [9.18121, 45.47005], + [9.176713, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.474547], + [9.176713, 45.479043], + [9.18121, 45.479043], + [9.18121, 45.474547], + [9.176713, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.479043], + [9.176713, 45.48354], + [9.18121, 45.48354], + [9.18121, 45.479043], + [9.176713, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.48354], + [9.176713, 45.488036], + [9.18121, 45.488036], + [9.18121, 45.48354], + [9.176713, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.488036], + [9.176713, 45.492533], + [9.18121, 45.492533], + [9.18121, 45.488036], + [9.176713, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.492533], + [9.176713, 45.49703], + [9.18121, 45.49703], + [9.18121, 45.492533], + [9.176713, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.49703], + [9.176713, 45.501526], + [9.18121, 45.501526], + [9.18121, 45.49703], + [9.176713, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.501526], + [9.176713, 45.506023], + [9.18121, 45.506023], + [9.18121, 45.501526], + [9.176713, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.506023], + [9.176713, 45.510519], + [9.18121, 45.510519], + [9.18121, 45.506023], + [9.176713, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.510519], + [9.176713, 45.515016], + [9.18121, 45.515016], + [9.18121, 45.510519], + [9.176713, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.515016], + [9.176713, 45.519513], + [9.18121, 45.519513], + [9.18121, 45.515016], + [9.176713, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.519513], + [9.176713, 45.524009], + [9.18121, 45.524009], + [9.18121, 45.519513], + [9.176713, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.524009], + [9.176713, 45.528506], + [9.18121, 45.528506], + [9.18121, 45.524009], + [9.176713, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.528506], + [9.176713, 45.533002], + [9.18121, 45.533002], + [9.18121, 45.528506], + [9.176713, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 40, + "stroke": "#006dd1", + "fill": "#006dd1", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.533002], + [9.176713, 45.537499], + [9.18121, 45.537499], + [9.18121, 45.533002], + [9.176713, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 41, + "stroke": "#0068c7", + "fill": "#0068c7", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.537499], + [9.176713, 45.541996], + [9.18121, 45.541996], + [9.18121, 45.537499], + [9.176713, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 40, + "stroke": "#006dd1", + "fill": "#006dd1", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.541996], + [9.176713, 45.546492], + [9.18121, 45.546492], + [9.18121, 45.541996], + [9.176713, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.546492], + [9.176713, 45.550989], + [9.18121, 45.550989], + [9.18121, 45.546492], + [9.176713, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.550989], + [9.176713, 45.555485], + [9.18121, 45.555485], + [9.18121, 45.550989], + [9.176713, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.555485], + [9.176713, 45.559982], + [9.18121, 45.559982], + [9.18121, 45.555485], + [9.176713, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.559982], + [9.176713, 45.564479], + [9.18121, 45.564479], + [9.18121, 45.559982], + [9.176713, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.564479], + [9.176713, 45.568975], + [9.18121, 45.568975], + [9.18121, 45.564479], + [9.176713, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.568975], + [9.176713, 45.573472], + [9.18121, 45.573472], + [9.18121, 45.568975], + [9.176713, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.573472], + [9.176713, 45.577968], + [9.18121, 45.577968], + [9.18121, 45.573472], + [9.176713, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.577968], + [9.176713, 45.582465], + [9.18121, 45.582465], + [9.18121, 45.577968], + [9.176713, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.582465], + [9.176713, 45.586962], + [9.18121, 45.586962], + [9.18121, 45.582465], + [9.176713, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.586962], + [9.176713, 45.591458], + [9.18121, 45.591458], + [9.18121, 45.586962], + [9.176713, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.591458], + [9.176713, 45.595955], + [9.18121, 45.595955], + [9.18121, 45.591458], + [9.176713, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.595955], + [9.176713, 45.600451], + [9.18121, 45.600451], + [9.18121, 45.595955], + [9.176713, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.600451], + [9.176713, 45.604948], + [9.18121, 45.604948], + [9.18121, 45.600451], + [9.176713, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.604948], + [9.176713, 45.609445], + [9.18121, 45.609445], + [9.18121, 45.604948], + [9.176713, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.609445], + [9.176713, 45.613941], + [9.18121, 45.613941], + [9.18121, 45.609445], + [9.176713, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.613941], + [9.176713, 45.618438], + [9.18121, 45.618438], + [9.18121, 45.613941], + [9.176713, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.618438], + [9.176713, 45.622934], + [9.18121, 45.622934], + [9.18121, 45.618438], + [9.176713, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.622934], + [9.176713, 45.627431], + [9.18121, 45.627431], + [9.18121, 45.622934], + [9.176713, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.627431], + [9.176713, 45.631928], + [9.18121, 45.631928], + [9.18121, 45.627431], + [9.176713, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.631928], + [9.176713, 45.636424], + [9.18121, 45.636424], + [9.18121, 45.631928], + [9.176713, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.339648], + [9.18121, 45.344145], + [9.185706, 45.344145], + [9.185706, 45.339648], + [9.18121, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.344145], + [9.18121, 45.348642], + [9.185706, 45.348642], + [9.185706, 45.344145], + [9.18121, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.348642], + [9.18121, 45.353138], + [9.185706, 45.353138], + [9.185706, 45.348642], + [9.18121, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.353138], + [9.18121, 45.357635], + [9.185706, 45.357635], + [9.185706, 45.353138], + [9.18121, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.357635], + [9.18121, 45.362131], + [9.185706, 45.362131], + [9.185706, 45.357635], + [9.18121, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.362131], + [9.18121, 45.366628], + [9.185706, 45.366628], + [9.185706, 45.362131], + [9.18121, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.366628], + [9.18121, 45.371125], + [9.185706, 45.371125], + [9.185706, 45.366628], + [9.18121, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.371125], + [9.18121, 45.375621], + [9.185706, 45.375621], + [9.185706, 45.371125], + [9.18121, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.375621], + [9.18121, 45.380118], + [9.185706, 45.380118], + [9.185706, 45.375621], + [9.18121, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.380118], + [9.18121, 45.384614], + [9.185706, 45.384614], + [9.185706, 45.380118], + [9.18121, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.384614], + [9.18121, 45.389111], + [9.185706, 45.389111], + [9.185706, 45.384614], + [9.18121, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.389111], + [9.18121, 45.393608], + [9.185706, 45.393608], + [9.185706, 45.389111], + [9.18121, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.393608], + [9.18121, 45.398104], + [9.185706, 45.398104], + [9.185706, 45.393608], + [9.18121, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.398104], + [9.18121, 45.402601], + [9.185706, 45.402601], + [9.185706, 45.398104], + [9.18121, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.402601], + [9.18121, 45.407097], + [9.185706, 45.407097], + [9.185706, 45.402601], + [9.18121, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.407097], + [9.18121, 45.411594], + [9.185706, 45.411594], + [9.185706, 45.407097], + [9.18121, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.411594], + [9.18121, 45.416091], + [9.185706, 45.416091], + [9.185706, 45.411594], + [9.18121, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.416091], + [9.18121, 45.420587], + [9.185706, 45.420587], + [9.185706, 45.416091], + [9.18121, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.420587], + [9.18121, 45.425084], + [9.185706, 45.425084], + [9.185706, 45.420587], + [9.18121, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.425084], + [9.18121, 45.42958], + [9.185706, 45.42958], + [9.185706, 45.425084], + [9.18121, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.42958], + [9.18121, 45.434077], + [9.185706, 45.434077], + [9.185706, 45.42958], + [9.18121, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.434077], + [9.18121, 45.438574], + [9.185706, 45.438574], + [9.185706, 45.434077], + [9.18121, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.438574], + [9.18121, 45.44307], + [9.185706, 45.44307], + [9.185706, 45.438574], + [9.18121, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.44307], + [9.18121, 45.447567], + [9.185706, 45.447567], + [9.185706, 45.44307], + [9.18121, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.447567], + [9.18121, 45.452063], + [9.185706, 45.452063], + [9.185706, 45.447567], + [9.18121, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.452063], + [9.18121, 45.45656], + [9.185706, 45.45656], + [9.185706, 45.452063], + [9.18121, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.45656], + [9.18121, 45.461057], + [9.185706, 45.461057], + [9.185706, 45.45656], + [9.18121, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.461057], + [9.18121, 45.465553], + [9.185706, 45.465553], + [9.185706, 45.461057], + [9.18121, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.465553], + [9.18121, 45.47005], + [9.185706, 45.47005], + [9.185706, 45.465553], + [9.18121, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.47005], + [9.18121, 45.474547], + [9.185706, 45.474547], + [9.185706, 45.47005], + [9.18121, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.474547], + [9.18121, 45.479043], + [9.185706, 45.479043], + [9.185706, 45.474547], + [9.18121, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.479043], + [9.18121, 45.48354], + [9.185706, 45.48354], + [9.185706, 45.479043], + [9.18121, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.48354], + [9.18121, 45.488036], + [9.185706, 45.488036], + [9.185706, 45.48354], + [9.18121, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.488036], + [9.18121, 45.492533], + [9.185706, 45.492533], + [9.185706, 45.488036], + [9.18121, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.492533], + [9.18121, 45.49703], + [9.185706, 45.49703], + [9.185706, 45.492533], + [9.18121, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.49703], + [9.18121, 45.501526], + [9.185706, 45.501526], + [9.185706, 45.49703], + [9.18121, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.501526], + [9.18121, 45.506023], + [9.185706, 45.506023], + [9.185706, 45.501526], + [9.18121, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.506023], + [9.18121, 45.510519], + [9.185706, 45.510519], + [9.185706, 45.506023], + [9.18121, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.510519], + [9.18121, 45.515016], + [9.185706, 45.515016], + [9.185706, 45.510519], + [9.18121, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.515016], + [9.18121, 45.519513], + [9.185706, 45.519513], + [9.185706, 45.515016], + [9.18121, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.519513], + [9.18121, 45.524009], + [9.185706, 45.524009], + [9.185706, 45.519513], + [9.18121, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.524009], + [9.18121, 45.528506], + [9.185706, 45.528506], + [9.185706, 45.524009], + [9.18121, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 41, + "stroke": "#0068c7", + "fill": "#0068c7", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.528506], + [9.18121, 45.533002], + [9.185706, 45.533002], + [9.185706, 45.528506], + [9.18121, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 44, + "stroke": "#0058a8", + "fill": "#0058a8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.533002], + [9.18121, 45.537499], + [9.185706, 45.537499], + [9.185706, 45.533002], + [9.18121, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 44, + "stroke": "#0058a8", + "fill": "#0058a8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.537499], + [9.18121, 45.541996], + [9.185706, 45.541996], + [9.185706, 45.537499], + [9.18121, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#0062bd", + "fill": "#0062bd", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.541996], + [9.18121, 45.546492], + [9.185706, 45.546492], + [9.185706, 45.541996], + [9.18121, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 40, + "stroke": "#006dd1", + "fill": "#006dd1", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.546492], + [9.18121, 45.550989], + [9.185706, 45.550989], + [9.185706, 45.546492], + [9.18121, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.550989], + [9.18121, 45.555485], + [9.185706, 45.555485], + [9.185706, 45.550989], + [9.18121, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.555485], + [9.18121, 45.559982], + [9.185706, 45.559982], + [9.185706, 45.555485], + [9.18121, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.559982], + [9.18121, 45.564479], + [9.185706, 45.564479], + [9.185706, 45.559982], + [9.18121, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.564479], + [9.18121, 45.568975], + [9.185706, 45.568975], + [9.185706, 45.564479], + [9.18121, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.568975], + [9.18121, 45.573472], + [9.185706, 45.573472], + [9.185706, 45.568975], + [9.18121, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.573472], + [9.18121, 45.577968], + [9.185706, 45.577968], + [9.185706, 45.573472], + [9.18121, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.577968], + [9.18121, 45.582465], + [9.185706, 45.582465], + [9.185706, 45.577968], + [9.18121, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.582465], + [9.18121, 45.586962], + [9.185706, 45.586962], + [9.185706, 45.582465], + [9.18121, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.586962], + [9.18121, 45.591458], + [9.185706, 45.591458], + [9.185706, 45.586962], + [9.18121, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.591458], + [9.18121, 45.595955], + [9.185706, 45.595955], + [9.185706, 45.591458], + [9.18121, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.595955], + [9.18121, 45.600451], + [9.185706, 45.600451], + [9.185706, 45.595955], + [9.18121, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.600451], + [9.18121, 45.604948], + [9.185706, 45.604948], + [9.185706, 45.600451], + [9.18121, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.604948], + [9.18121, 45.609445], + [9.185706, 45.609445], + [9.185706, 45.604948], + [9.18121, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.609445], + [9.18121, 45.613941], + [9.185706, 45.613941], + [9.185706, 45.609445], + [9.18121, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.613941], + [9.18121, 45.618438], + [9.185706, 45.618438], + [9.185706, 45.613941], + [9.18121, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.618438], + [9.18121, 45.622934], + [9.185706, 45.622934], + [9.185706, 45.618438], + [9.18121, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.622934], + [9.18121, 45.627431], + [9.185706, 45.627431], + [9.185706, 45.622934], + [9.18121, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.627431], + [9.18121, 45.631928], + [9.185706, 45.631928], + [9.185706, 45.627431], + [9.18121, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.631928], + [9.18121, 45.636424], + [9.185706, 45.636424], + [9.185706, 45.631928], + [9.18121, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.339648], + [9.185706, 45.344145], + [9.190203, 45.344145], + [9.190203, 45.339648], + [9.185706, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.344145], + [9.185706, 45.348642], + [9.190203, 45.348642], + [9.190203, 45.344145], + [9.185706, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.348642], + [9.185706, 45.353138], + [9.190203, 45.353138], + [9.190203, 45.348642], + [9.185706, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.353138], + [9.185706, 45.357635], + [9.190203, 45.357635], + [9.190203, 45.353138], + [9.185706, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.357635], + [9.185706, 45.362131], + [9.190203, 45.362131], + [9.190203, 45.357635], + [9.185706, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.362131], + [9.185706, 45.366628], + [9.190203, 45.366628], + [9.190203, 45.362131], + [9.185706, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.366628], + [9.185706, 45.371125], + [9.190203, 45.371125], + [9.190203, 45.366628], + [9.185706, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.371125], + [9.185706, 45.375621], + [9.190203, 45.375621], + [9.190203, 45.371125], + [9.185706, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.375621], + [9.185706, 45.380118], + [9.190203, 45.380118], + [9.190203, 45.375621], + [9.185706, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.380118], + [9.185706, 45.384614], + [9.190203, 45.384614], + [9.190203, 45.380118], + [9.185706, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.384614], + [9.185706, 45.389111], + [9.190203, 45.389111], + [9.190203, 45.384614], + [9.185706, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.389111], + [9.185706, 45.393608], + [9.190203, 45.393608], + [9.190203, 45.389111], + [9.185706, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.393608], + [9.185706, 45.398104], + [9.190203, 45.398104], + [9.190203, 45.393608], + [9.185706, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.398104], + [9.185706, 45.402601], + [9.190203, 45.402601], + [9.190203, 45.398104], + [9.185706, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.402601], + [9.185706, 45.407097], + [9.190203, 45.407097], + [9.190203, 45.402601], + [9.185706, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.407097], + [9.185706, 45.411594], + [9.190203, 45.411594], + [9.190203, 45.407097], + [9.185706, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.411594], + [9.185706, 45.416091], + [9.190203, 45.416091], + [9.190203, 45.411594], + [9.185706, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.416091], + [9.185706, 45.420587], + [9.190203, 45.420587], + [9.190203, 45.416091], + [9.185706, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.420587], + [9.185706, 45.425084], + [9.190203, 45.425084], + [9.190203, 45.420587], + [9.185706, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.425084], + [9.185706, 45.42958], + [9.190203, 45.42958], + [9.190203, 45.425084], + [9.185706, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.42958], + [9.185706, 45.434077], + [9.190203, 45.434077], + [9.190203, 45.42958], + [9.185706, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.434077], + [9.185706, 45.438574], + [9.190203, 45.438574], + [9.190203, 45.434077], + [9.185706, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.438574], + [9.185706, 45.44307], + [9.190203, 45.44307], + [9.190203, 45.438574], + [9.185706, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.44307], + [9.185706, 45.447567], + [9.190203, 45.447567], + [9.190203, 45.44307], + [9.185706, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.447567], + [9.185706, 45.452063], + [9.190203, 45.452063], + [9.190203, 45.447567], + [9.185706, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.452063], + [9.185706, 45.45656], + [9.190203, 45.45656], + [9.190203, 45.452063], + [9.185706, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.45656], + [9.185706, 45.461057], + [9.190203, 45.461057], + [9.190203, 45.45656], + [9.185706, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.461057], + [9.185706, 45.465553], + [9.190203, 45.465553], + [9.190203, 45.461057], + [9.185706, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.465553], + [9.185706, 45.47005], + [9.190203, 45.47005], + [9.190203, 45.465553], + [9.185706, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.47005], + [9.185706, 45.474547], + [9.190203, 45.474547], + [9.190203, 45.47005], + [9.185706, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.474547], + [9.185706, 45.479043], + [9.190203, 45.479043], + [9.190203, 45.474547], + [9.185706, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.479043], + [9.185706, 45.48354], + [9.190203, 45.48354], + [9.190203, 45.479043], + [9.185706, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.48354], + [9.185706, 45.488036], + [9.190203, 45.488036], + [9.190203, 45.48354], + [9.185706, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.488036], + [9.185706, 45.492533], + [9.190203, 45.492533], + [9.190203, 45.488036], + [9.185706, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.492533], + [9.185706, 45.49703], + [9.190203, 45.49703], + [9.190203, 45.492533], + [9.185706, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.49703], + [9.185706, 45.501526], + [9.190203, 45.501526], + [9.190203, 45.49703], + [9.185706, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.501526], + [9.185706, 45.506023], + [9.190203, 45.506023], + [9.190203, 45.501526], + [9.185706, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.506023], + [9.185706, 45.510519], + [9.190203, 45.510519], + [9.190203, 45.506023], + [9.185706, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.510519], + [9.185706, 45.515016], + [9.190203, 45.515016], + [9.190203, 45.510519], + [9.185706, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.515016], + [9.185706, 45.519513], + [9.190203, 45.519513], + [9.190203, 45.515016], + [9.185706, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.519513], + [9.185706, 45.524009], + [9.190203, 45.524009], + [9.190203, 45.519513], + [9.185706, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.524009], + [9.185706, 45.528506], + [9.190203, 45.528506], + [9.190203, 45.524009], + [9.185706, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 43, + "stroke": "#005db3", + "fill": "#005db3", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.528506], + [9.185706, 45.533002], + [9.190203, 45.533002], + [9.190203, 45.528506], + [9.185706, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 49, + "stroke": "#003b70", + "fill": "#003b70", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.533002], + [9.185706, 45.537499], + [9.190203, 45.537499], + [9.190203, 45.533002], + [9.185706, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 49, + "stroke": "#003b70", + "fill": "#003b70", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.537499], + [9.185706, 45.541996], + [9.190203, 45.541996], + [9.190203, 45.537499], + [9.185706, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 45, + "stroke": "#00529e", + "fill": "#00529e", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.541996], + [9.185706, 45.546492], + [9.190203, 45.546492], + [9.190203, 45.541996], + [9.185706, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 41, + "stroke": "#0068c7", + "fill": "#0068c7", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.546492], + [9.185706, 45.550989], + [9.190203, 45.550989], + [9.190203, 45.546492], + [9.185706, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.550989], + [9.185706, 45.555485], + [9.190203, 45.555485], + [9.190203, 45.550989], + [9.185706, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.555485], + [9.185706, 45.559982], + [9.190203, 45.559982], + [9.190203, 45.555485], + [9.185706, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.559982], + [9.185706, 45.564479], + [9.190203, 45.564479], + [9.190203, 45.559982], + [9.185706, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.564479], + [9.185706, 45.568975], + [9.190203, 45.568975], + [9.190203, 45.564479], + [9.185706, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.568975], + [9.185706, 45.573472], + [9.190203, 45.573472], + [9.190203, 45.568975], + [9.185706, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.573472], + [9.185706, 45.577968], + [9.190203, 45.577968], + [9.190203, 45.573472], + [9.185706, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.577968], + [9.185706, 45.582465], + [9.190203, 45.582465], + [9.190203, 45.577968], + [9.185706, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.582465], + [9.185706, 45.586962], + [9.190203, 45.586962], + [9.190203, 45.582465], + [9.185706, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.586962], + [9.185706, 45.591458], + [9.190203, 45.591458], + [9.190203, 45.586962], + [9.185706, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.591458], + [9.185706, 45.595955], + [9.190203, 45.595955], + [9.190203, 45.591458], + [9.185706, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.595955], + [9.185706, 45.600451], + [9.190203, 45.600451], + [9.190203, 45.595955], + [9.185706, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.600451], + [9.185706, 45.604948], + [9.190203, 45.604948], + [9.190203, 45.600451], + [9.185706, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.604948], + [9.185706, 45.609445], + [9.190203, 45.609445], + [9.190203, 45.604948], + [9.185706, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.609445], + [9.185706, 45.613941], + [9.190203, 45.613941], + [9.190203, 45.609445], + [9.185706, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.613941], + [9.185706, 45.618438], + [9.190203, 45.618438], + [9.190203, 45.613941], + [9.185706, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.618438], + [9.185706, 45.622934], + [9.190203, 45.622934], + [9.190203, 45.618438], + [9.185706, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.622934], + [9.185706, 45.627431], + [9.190203, 45.627431], + [9.190203, 45.622934], + [9.185706, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.627431], + [9.185706, 45.631928], + [9.190203, 45.631928], + [9.190203, 45.627431], + [9.185706, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.631928], + [9.185706, 45.636424], + [9.190203, 45.636424], + [9.190203, 45.631928], + [9.185706, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.339648], + [9.190203, 45.344145], + [9.194699, 45.344145], + [9.194699, 45.339648], + [9.190203, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.344145], + [9.190203, 45.348642], + [9.194699, 45.348642], + [9.194699, 45.344145], + [9.190203, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.348642], + [9.190203, 45.353138], + [9.194699, 45.353138], + [9.194699, 45.348642], + [9.190203, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.353138], + [9.190203, 45.357635], + [9.194699, 45.357635], + [9.194699, 45.353138], + [9.190203, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.357635], + [9.190203, 45.362131], + [9.194699, 45.362131], + [9.194699, 45.357635], + [9.190203, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.362131], + [9.190203, 45.366628], + [9.194699, 45.366628], + [9.194699, 45.362131], + [9.190203, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.366628], + [9.190203, 45.371125], + [9.194699, 45.371125], + [9.194699, 45.366628], + [9.190203, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.371125], + [9.190203, 45.375621], + [9.194699, 45.375621], + [9.194699, 45.371125], + [9.190203, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.375621], + [9.190203, 45.380118], + [9.194699, 45.380118], + [9.194699, 45.375621], + [9.190203, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.380118], + [9.190203, 45.384614], + [9.194699, 45.384614], + [9.194699, 45.380118], + [9.190203, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.384614], + [9.190203, 45.389111], + [9.194699, 45.389111], + [9.194699, 45.384614], + [9.190203, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.389111], + [9.190203, 45.393608], + [9.194699, 45.393608], + [9.194699, 45.389111], + [9.190203, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.393608], + [9.190203, 45.398104], + [9.194699, 45.398104], + [9.194699, 45.393608], + [9.190203, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.398104], + [9.190203, 45.402601], + [9.194699, 45.402601], + [9.194699, 45.398104], + [9.190203, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.402601], + [9.190203, 45.407097], + [9.194699, 45.407097], + [9.194699, 45.402601], + [9.190203, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.407097], + [9.190203, 45.411594], + [9.194699, 45.411594], + [9.194699, 45.407097], + [9.190203, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.411594], + [9.190203, 45.416091], + [9.194699, 45.416091], + [9.194699, 45.411594], + [9.190203, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.416091], + [9.190203, 45.420587], + [9.194699, 45.420587], + [9.194699, 45.416091], + [9.190203, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.420587], + [9.190203, 45.425084], + [9.194699, 45.425084], + [9.194699, 45.420587], + [9.190203, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.425084], + [9.190203, 45.42958], + [9.194699, 45.42958], + [9.194699, 45.425084], + [9.190203, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.42958], + [9.190203, 45.434077], + [9.194699, 45.434077], + [9.194699, 45.42958], + [9.190203, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.434077], + [9.190203, 45.438574], + [9.194699, 45.438574], + [9.194699, 45.434077], + [9.190203, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.438574], + [9.190203, 45.44307], + [9.194699, 45.44307], + [9.194699, 45.438574], + [9.190203, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.44307], + [9.190203, 45.447567], + [9.194699, 45.447567], + [9.194699, 45.44307], + [9.190203, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.447567], + [9.190203, 45.452063], + [9.194699, 45.452063], + [9.194699, 45.447567], + [9.190203, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.452063], + [9.190203, 45.45656], + [9.194699, 45.45656], + [9.194699, 45.452063], + [9.190203, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.45656], + [9.190203, 45.461057], + [9.194699, 45.461057], + [9.194699, 45.45656], + [9.190203, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.461057], + [9.190203, 45.465553], + [9.194699, 45.465553], + [9.194699, 45.461057], + [9.190203, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.465553], + [9.190203, 45.47005], + [9.194699, 45.47005], + [9.194699, 45.465553], + [9.190203, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.47005], + [9.190203, 45.474547], + [9.194699, 45.474547], + [9.194699, 45.47005], + [9.190203, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.474547], + [9.190203, 45.479043], + [9.194699, 45.479043], + [9.194699, 45.474547], + [9.190203, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.479043], + [9.190203, 45.48354], + [9.194699, 45.48354], + [9.194699, 45.479043], + [9.190203, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.48354], + [9.190203, 45.488036], + [9.194699, 45.488036], + [9.194699, 45.48354], + [9.190203, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.488036], + [9.190203, 45.492533], + [9.194699, 45.492533], + [9.194699, 45.488036], + [9.190203, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.492533], + [9.190203, 45.49703], + [9.194699, 45.49703], + [9.194699, 45.492533], + [9.190203, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.49703], + [9.190203, 45.501526], + [9.194699, 45.501526], + [9.194699, 45.49703], + [9.190203, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.501526], + [9.190203, 45.506023], + [9.194699, 45.506023], + [9.194699, 45.501526], + [9.190203, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.506023], + [9.190203, 45.510519], + [9.194699, 45.510519], + [9.194699, 45.506023], + [9.190203, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.510519], + [9.190203, 45.515016], + [9.194699, 45.515016], + [9.194699, 45.510519], + [9.190203, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.515016], + [9.190203, 45.519513], + [9.194699, 45.519513], + [9.194699, 45.515016], + [9.190203, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.519513], + [9.190203, 45.524009], + [9.194699, 45.524009], + [9.194699, 45.519513], + [9.190203, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.524009], + [9.190203, 45.528506], + [9.194699, 45.528506], + [9.194699, 45.524009], + [9.190203, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 46, + "stroke": "#004d94", + "fill": "#004d94", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.528506], + [9.190203, 45.533002], + [9.194699, 45.533002], + [9.194699, 45.528506], + [9.190203, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 57, + "stroke": "#00101f", + "fill": "#00101f", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.533002], + [9.190203, 45.537499], + [9.194699, 45.537499], + [9.194699, 45.533002], + [9.190203, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 55, + "stroke": "#001b33", + "fill": "#001b33", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.537499], + [9.190203, 45.541996], + [9.194699, 45.541996], + [9.194699, 45.537499], + [9.190203, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 46, + "stroke": "#004d94", + "fill": "#004d94", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.541996], + [9.190203, 45.546492], + [9.194699, 45.546492], + [9.194699, 45.541996], + [9.190203, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#0062bd", + "fill": "#0062bd", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.546492], + [9.190203, 45.550989], + [9.194699, 45.550989], + [9.194699, 45.546492], + [9.190203, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.550989], + [9.190203, 45.555485], + [9.194699, 45.555485], + [9.194699, 45.550989], + [9.190203, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.555485], + [9.190203, 45.559982], + [9.194699, 45.559982], + [9.194699, 45.555485], + [9.190203, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.559982], + [9.190203, 45.564479], + [9.194699, 45.564479], + [9.194699, 45.559982], + [9.190203, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.564479], + [9.190203, 45.568975], + [9.194699, 45.568975], + [9.194699, 45.564479], + [9.190203, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.568975], + [9.190203, 45.573472], + [9.194699, 45.573472], + [9.194699, 45.568975], + [9.190203, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.573472], + [9.190203, 45.577968], + [9.194699, 45.577968], + [9.194699, 45.573472], + [9.190203, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.577968], + [9.190203, 45.582465], + [9.194699, 45.582465], + [9.194699, 45.577968], + [9.190203, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.582465], + [9.190203, 45.586962], + [9.194699, 45.586962], + [9.194699, 45.582465], + [9.190203, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.586962], + [9.190203, 45.591458], + [9.194699, 45.591458], + [9.194699, 45.586962], + [9.190203, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.591458], + [9.190203, 45.595955], + [9.194699, 45.595955], + [9.194699, 45.591458], + [9.190203, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.595955], + [9.190203, 45.600451], + [9.194699, 45.600451], + [9.194699, 45.595955], + [9.190203, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.600451], + [9.190203, 45.604948], + [9.194699, 45.604948], + [9.194699, 45.600451], + [9.190203, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.604948], + [9.190203, 45.609445], + [9.194699, 45.609445], + [9.194699, 45.604948], + [9.190203, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.609445], + [9.190203, 45.613941], + [9.194699, 45.613941], + [9.194699, 45.609445], + [9.190203, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.613941], + [9.190203, 45.618438], + [9.194699, 45.618438], + [9.194699, 45.613941], + [9.190203, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.618438], + [9.190203, 45.622934], + [9.194699, 45.622934], + [9.194699, 45.618438], + [9.190203, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.622934], + [9.190203, 45.627431], + [9.194699, 45.627431], + [9.194699, 45.622934], + [9.190203, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.627431], + [9.190203, 45.631928], + [9.194699, 45.631928], + [9.194699, 45.627431], + [9.190203, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.631928], + [9.190203, 45.636424], + [9.194699, 45.636424], + [9.194699, 45.631928], + [9.190203, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.339648], + [9.194699, 45.344145], + [9.199196, 45.344145], + [9.199196, 45.339648], + [9.194699, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.344145], + [9.194699, 45.348642], + [9.199196, 45.348642], + [9.199196, 45.344145], + [9.194699, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.348642], + [9.194699, 45.353138], + [9.199196, 45.353138], + [9.199196, 45.348642], + [9.194699, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.353138], + [9.194699, 45.357635], + [9.199196, 45.357635], + [9.199196, 45.353138], + [9.194699, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.357635], + [9.194699, 45.362131], + [9.199196, 45.362131], + [9.199196, 45.357635], + [9.194699, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.362131], + [9.194699, 45.366628], + [9.199196, 45.366628], + [9.199196, 45.362131], + [9.194699, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.366628], + [9.194699, 45.371125], + [9.199196, 45.371125], + [9.199196, 45.366628], + [9.194699, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.371125], + [9.194699, 45.375621], + [9.199196, 45.375621], + [9.199196, 45.371125], + [9.194699, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.375621], + [9.194699, 45.380118], + [9.199196, 45.380118], + [9.199196, 45.375621], + [9.194699, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.380118], + [9.194699, 45.384614], + [9.199196, 45.384614], + [9.199196, 45.380118], + [9.194699, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.384614], + [9.194699, 45.389111], + [9.199196, 45.389111], + [9.199196, 45.384614], + [9.194699, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.389111], + [9.194699, 45.393608], + [9.199196, 45.393608], + [9.199196, 45.389111], + [9.194699, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.393608], + [9.194699, 45.398104], + [9.199196, 45.398104], + [9.199196, 45.393608], + [9.194699, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.398104], + [9.194699, 45.402601], + [9.199196, 45.402601], + [9.199196, 45.398104], + [9.194699, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.402601], + [9.194699, 45.407097], + [9.199196, 45.407097], + [9.199196, 45.402601], + [9.194699, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.407097], + [9.194699, 45.411594], + [9.199196, 45.411594], + [9.199196, 45.407097], + [9.194699, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.411594], + [9.194699, 45.416091], + [9.199196, 45.416091], + [9.199196, 45.411594], + [9.194699, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.416091], + [9.194699, 45.420587], + [9.199196, 45.420587], + [9.199196, 45.416091], + [9.194699, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.420587], + [9.194699, 45.425084], + [9.199196, 45.425084], + [9.199196, 45.420587], + [9.194699, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.425084], + [9.194699, 45.42958], + [9.199196, 45.42958], + [9.199196, 45.425084], + [9.194699, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.42958], + [9.194699, 45.434077], + [9.199196, 45.434077], + [9.199196, 45.42958], + [9.194699, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.434077], + [9.194699, 45.438574], + [9.199196, 45.438574], + [9.199196, 45.434077], + [9.194699, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.438574], + [9.194699, 45.44307], + [9.199196, 45.44307], + [9.199196, 45.438574], + [9.194699, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.44307], + [9.194699, 45.447567], + [9.199196, 45.447567], + [9.199196, 45.44307], + [9.194699, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.447567], + [9.194699, 45.452063], + [9.199196, 45.452063], + [9.199196, 45.447567], + [9.194699, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.452063], + [9.194699, 45.45656], + [9.199196, 45.45656], + [9.199196, 45.452063], + [9.194699, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.45656], + [9.194699, 45.461057], + [9.199196, 45.461057], + [9.199196, 45.45656], + [9.194699, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.461057], + [9.194699, 45.465553], + [9.199196, 45.465553], + [9.199196, 45.461057], + [9.194699, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.465553], + [9.194699, 45.47005], + [9.199196, 45.47005], + [9.199196, 45.465553], + [9.194699, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.47005], + [9.194699, 45.474547], + [9.199196, 45.474547], + [9.199196, 45.47005], + [9.194699, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.474547], + [9.194699, 45.479043], + [9.199196, 45.479043], + [9.199196, 45.474547], + [9.194699, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.479043], + [9.194699, 45.48354], + [9.199196, 45.48354], + [9.199196, 45.479043], + [9.194699, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.48354], + [9.194699, 45.488036], + [9.199196, 45.488036], + [9.199196, 45.48354], + [9.194699, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.488036], + [9.194699, 45.492533], + [9.199196, 45.492533], + [9.199196, 45.488036], + [9.194699, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.492533], + [9.194699, 45.49703], + [9.199196, 45.49703], + [9.199196, 45.492533], + [9.194699, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.49703], + [9.194699, 45.501526], + [9.199196, 45.501526], + [9.199196, 45.49703], + [9.194699, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.501526], + [9.194699, 45.506023], + [9.199196, 45.506023], + [9.199196, 45.501526], + [9.194699, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.506023], + [9.194699, 45.510519], + [9.199196, 45.510519], + [9.199196, 45.506023], + [9.194699, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.510519], + [9.194699, 45.515016], + [9.199196, 45.515016], + [9.199196, 45.510519], + [9.194699, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.515016], + [9.194699, 45.519513], + [9.199196, 45.519513], + [9.199196, 45.515016], + [9.194699, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.519513], + [9.194699, 45.524009], + [9.199196, 45.524009], + [9.199196, 45.519513], + [9.194699, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 40, + "stroke": "#006dd1", + "fill": "#006dd1", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.524009], + [9.194699, 45.528506], + [9.199196, 45.528506], + [9.199196, 45.524009], + [9.194699, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 46, + "stroke": "#004d94", + "fill": "#004d94", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.528506], + [9.194699, 45.533002], + [9.199196, 45.533002], + [9.199196, 45.528506], + [9.194699, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 60, + "stroke": "#000000", + "fill": "#000000", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.533002], + [9.194699, 45.537499], + [9.199196, 45.537499], + [9.199196, 45.533002], + [9.194699, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 56, + "stroke": "#001529", + "fill": "#001529", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.537499], + [9.194699, 45.541996], + [9.199196, 45.541996], + [9.199196, 45.537499], + [9.194699, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 47, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.541996], + [9.194699, 45.546492], + [9.199196, 45.546492], + [9.199196, 45.541996], + [9.194699, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#0062bd", + "fill": "#0062bd", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.546492], + [9.194699, 45.550989], + [9.199196, 45.550989], + [9.199196, 45.546492], + [9.194699, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.550989], + [9.194699, 45.555485], + [9.199196, 45.555485], + [9.199196, 45.550989], + [9.194699, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.555485], + [9.194699, 45.559982], + [9.199196, 45.559982], + [9.199196, 45.555485], + [9.194699, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.559982], + [9.194699, 45.564479], + [9.199196, 45.564479], + [9.199196, 45.559982], + [9.194699, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.564479], + [9.194699, 45.568975], + [9.199196, 45.568975], + [9.199196, 45.564479], + [9.194699, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.568975], + [9.194699, 45.573472], + [9.199196, 45.573472], + [9.199196, 45.568975], + [9.194699, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.573472], + [9.194699, 45.577968], + [9.199196, 45.577968], + [9.199196, 45.573472], + [9.194699, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.577968], + [9.194699, 45.582465], + [9.199196, 45.582465], + [9.199196, 45.577968], + [9.194699, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.582465], + [9.194699, 45.586962], + [9.199196, 45.586962], + [9.199196, 45.582465], + [9.194699, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.586962], + [9.194699, 45.591458], + [9.199196, 45.591458], + [9.199196, 45.586962], + [9.194699, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.591458], + [9.194699, 45.595955], + [9.199196, 45.595955], + [9.199196, 45.591458], + [9.194699, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.595955], + [9.194699, 45.600451], + [9.199196, 45.600451], + [9.199196, 45.595955], + [9.194699, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.600451], + [9.194699, 45.604948], + [9.199196, 45.604948], + [9.199196, 45.600451], + [9.194699, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.604948], + [9.194699, 45.609445], + [9.199196, 45.609445], + [9.199196, 45.604948], + [9.194699, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.609445], + [9.194699, 45.613941], + [9.199196, 45.613941], + [9.199196, 45.609445], + [9.194699, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.613941], + [9.194699, 45.618438], + [9.199196, 45.618438], + [9.199196, 45.613941], + [9.194699, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.618438], + [9.194699, 45.622934], + [9.199196, 45.622934], + [9.199196, 45.618438], + [9.194699, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.622934], + [9.194699, 45.627431], + [9.199196, 45.627431], + [9.199196, 45.622934], + [9.194699, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.627431], + [9.194699, 45.631928], + [9.199196, 45.631928], + [9.199196, 45.627431], + [9.194699, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.631928], + [9.194699, 45.636424], + [9.199196, 45.636424], + [9.199196, 45.631928], + [9.194699, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.339648], + [9.199196, 45.344145], + [9.203693, 45.344145], + [9.203693, 45.339648], + [9.199196, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.344145], + [9.199196, 45.348642], + [9.203693, 45.348642], + [9.203693, 45.344145], + [9.199196, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.348642], + [9.199196, 45.353138], + [9.203693, 45.353138], + [9.203693, 45.348642], + [9.199196, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.353138], + [9.199196, 45.357635], + [9.203693, 45.357635], + [9.203693, 45.353138], + [9.199196, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.357635], + [9.199196, 45.362131], + [9.203693, 45.362131], + [9.203693, 45.357635], + [9.199196, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.362131], + [9.199196, 45.366628], + [9.203693, 45.366628], + [9.203693, 45.362131], + [9.199196, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.366628], + [9.199196, 45.371125], + [9.203693, 45.371125], + [9.203693, 45.366628], + [9.199196, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.371125], + [9.199196, 45.375621], + [9.203693, 45.375621], + [9.203693, 45.371125], + [9.199196, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.375621], + [9.199196, 45.380118], + [9.203693, 45.380118], + [9.203693, 45.375621], + [9.199196, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.380118], + [9.199196, 45.384614], + [9.203693, 45.384614], + [9.203693, 45.380118], + [9.199196, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.384614], + [9.199196, 45.389111], + [9.203693, 45.389111], + [9.203693, 45.384614], + [9.199196, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.389111], + [9.199196, 45.393608], + [9.203693, 45.393608], + [9.203693, 45.389111], + [9.199196, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.393608], + [9.199196, 45.398104], + [9.203693, 45.398104], + [9.203693, 45.393608], + [9.199196, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.398104], + [9.199196, 45.402601], + [9.203693, 45.402601], + [9.203693, 45.398104], + [9.199196, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.402601], + [9.199196, 45.407097], + [9.203693, 45.407097], + [9.203693, 45.402601], + [9.199196, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.407097], + [9.199196, 45.411594], + [9.203693, 45.411594], + [9.203693, 45.407097], + [9.199196, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.411594], + [9.199196, 45.416091], + [9.203693, 45.416091], + [9.203693, 45.411594], + [9.199196, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.416091], + [9.199196, 45.420587], + [9.203693, 45.420587], + [9.203693, 45.416091], + [9.199196, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.420587], + [9.199196, 45.425084], + [9.203693, 45.425084], + [9.203693, 45.420587], + [9.199196, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.425084], + [9.199196, 45.42958], + [9.203693, 45.42958], + [9.203693, 45.425084], + [9.199196, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.42958], + [9.199196, 45.434077], + [9.203693, 45.434077], + [9.203693, 45.42958], + [9.199196, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.434077], + [9.199196, 45.438574], + [9.203693, 45.438574], + [9.203693, 45.434077], + [9.199196, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.438574], + [9.199196, 45.44307], + [9.203693, 45.44307], + [9.203693, 45.438574], + [9.199196, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.44307], + [9.199196, 45.447567], + [9.203693, 45.447567], + [9.203693, 45.44307], + [9.199196, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.447567], + [9.199196, 45.452063], + [9.203693, 45.452063], + [9.203693, 45.447567], + [9.199196, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.452063], + [9.199196, 45.45656], + [9.203693, 45.45656], + [9.203693, 45.452063], + [9.199196, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.45656], + [9.199196, 45.461057], + [9.203693, 45.461057], + [9.203693, 45.45656], + [9.199196, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.461057], + [9.199196, 45.465553], + [9.203693, 45.465553], + [9.203693, 45.461057], + [9.199196, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.465553], + [9.199196, 45.47005], + [9.203693, 45.47005], + [9.203693, 45.465553], + [9.199196, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.47005], + [9.199196, 45.474547], + [9.203693, 45.474547], + [9.203693, 45.47005], + [9.199196, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.474547], + [9.199196, 45.479043], + [9.203693, 45.479043], + [9.203693, 45.474547], + [9.199196, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.479043], + [9.199196, 45.48354], + [9.203693, 45.48354], + [9.203693, 45.479043], + [9.199196, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.48354], + [9.199196, 45.488036], + [9.203693, 45.488036], + [9.203693, 45.48354], + [9.199196, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.488036], + [9.199196, 45.492533], + [9.203693, 45.492533], + [9.203693, 45.488036], + [9.199196, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.492533], + [9.199196, 45.49703], + [9.203693, 45.49703], + [9.203693, 45.492533], + [9.199196, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.49703], + [9.199196, 45.501526], + [9.203693, 45.501526], + [9.203693, 45.49703], + [9.199196, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.501526], + [9.199196, 45.506023], + [9.203693, 45.506023], + [9.203693, 45.501526], + [9.199196, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.506023], + [9.199196, 45.510519], + [9.203693, 45.510519], + [9.203693, 45.506023], + [9.199196, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.510519], + [9.199196, 45.515016], + [9.203693, 45.515016], + [9.203693, 45.510519], + [9.199196, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.515016], + [9.199196, 45.519513], + [9.203693, 45.519513], + [9.203693, 45.515016], + [9.199196, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.519513], + [9.199196, 45.524009], + [9.203693, 45.524009], + [9.203693, 45.519513], + [9.199196, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.524009], + [9.199196, 45.528506], + [9.203693, 45.528506], + [9.203693, 45.524009], + [9.199196, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 44, + "stroke": "#0058a8", + "fill": "#0058a8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.528506], + [9.199196, 45.533002], + [9.203693, 45.533002], + [9.203693, 45.528506], + [9.199196, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 51, + "stroke": "#00305c", + "fill": "#00305c", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.533002], + [9.199196, 45.537499], + [9.203693, 45.537499], + [9.203693, 45.533002], + [9.199196, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 50, + "stroke": "#003566", + "fill": "#003566", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.537499], + [9.199196, 45.541996], + [9.203693, 45.541996], + [9.203693, 45.537499], + [9.199196, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 45, + "stroke": "#00529e", + "fill": "#00529e", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.541996], + [9.199196, 45.546492], + [9.203693, 45.546492], + [9.203693, 45.541996], + [9.199196, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#0062bd", + "fill": "#0062bd", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.546492], + [9.199196, 45.550989], + [9.203693, 45.550989], + [9.203693, 45.546492], + [9.199196, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.550989], + [9.199196, 45.555485], + [9.203693, 45.555485], + [9.203693, 45.550989], + [9.199196, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.555485], + [9.199196, 45.559982], + [9.203693, 45.559982], + [9.203693, 45.555485], + [9.199196, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.559982], + [9.199196, 45.564479], + [9.203693, 45.564479], + [9.203693, 45.559982], + [9.199196, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.564479], + [9.199196, 45.568975], + [9.203693, 45.568975], + [9.203693, 45.564479], + [9.199196, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.568975], + [9.199196, 45.573472], + [9.203693, 45.573472], + [9.203693, 45.568975], + [9.199196, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.573472], + [9.199196, 45.577968], + [9.203693, 45.577968], + [9.203693, 45.573472], + [9.199196, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.577968], + [9.199196, 45.582465], + [9.203693, 45.582465], + [9.203693, 45.577968], + [9.199196, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.582465], + [9.199196, 45.586962], + [9.203693, 45.586962], + [9.203693, 45.582465], + [9.199196, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.586962], + [9.199196, 45.591458], + [9.203693, 45.591458], + [9.203693, 45.586962], + [9.199196, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.591458], + [9.199196, 45.595955], + [9.203693, 45.595955], + [9.203693, 45.591458], + [9.199196, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.595955], + [9.199196, 45.600451], + [9.203693, 45.600451], + [9.203693, 45.595955], + [9.199196, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.600451], + [9.199196, 45.604948], + [9.203693, 45.604948], + [9.203693, 45.600451], + [9.199196, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.604948], + [9.199196, 45.609445], + [9.203693, 45.609445], + [9.203693, 45.604948], + [9.199196, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.609445], + [9.199196, 45.613941], + [9.203693, 45.613941], + [9.203693, 45.609445], + [9.199196, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.613941], + [9.199196, 45.618438], + [9.203693, 45.618438], + [9.203693, 45.613941], + [9.199196, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.618438], + [9.199196, 45.622934], + [9.203693, 45.622934], + [9.203693, 45.618438], + [9.199196, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.622934], + [9.199196, 45.627431], + [9.203693, 45.627431], + [9.203693, 45.622934], + [9.199196, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.627431], + [9.199196, 45.631928], + [9.203693, 45.631928], + [9.203693, 45.627431], + [9.199196, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.631928], + [9.199196, 45.636424], + [9.203693, 45.636424], + [9.203693, 45.631928], + [9.199196, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.339648], + [9.203693, 45.344145], + [9.208189, 45.344145], + [9.208189, 45.339648], + [9.203693, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.344145], + [9.203693, 45.348642], + [9.208189, 45.348642], + [9.208189, 45.344145], + [9.203693, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.348642], + [9.203693, 45.353138], + [9.208189, 45.353138], + [9.208189, 45.348642], + [9.203693, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.353138], + [9.203693, 45.357635], + [9.208189, 45.357635], + [9.208189, 45.353138], + [9.203693, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.357635], + [9.203693, 45.362131], + [9.208189, 45.362131], + [9.208189, 45.357635], + [9.203693, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.362131], + [9.203693, 45.366628], + [9.208189, 45.366628], + [9.208189, 45.362131], + [9.203693, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.366628], + [9.203693, 45.371125], + [9.208189, 45.371125], + [9.208189, 45.366628], + [9.203693, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.371125], + [9.203693, 45.375621], + [9.208189, 45.375621], + [9.208189, 45.371125], + [9.203693, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.375621], + [9.203693, 45.380118], + [9.208189, 45.380118], + [9.208189, 45.375621], + [9.203693, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.380118], + [9.203693, 45.384614], + [9.208189, 45.384614], + [9.208189, 45.380118], + [9.203693, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.384614], + [9.203693, 45.389111], + [9.208189, 45.389111], + [9.208189, 45.384614], + [9.203693, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.389111], + [9.203693, 45.393608], + [9.208189, 45.393608], + [9.208189, 45.389111], + [9.203693, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.393608], + [9.203693, 45.398104], + [9.208189, 45.398104], + [9.208189, 45.393608], + [9.203693, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.398104], + [9.203693, 45.402601], + [9.208189, 45.402601], + [9.208189, 45.398104], + [9.203693, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.402601], + [9.203693, 45.407097], + [9.208189, 45.407097], + [9.208189, 45.402601], + [9.203693, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.407097], + [9.203693, 45.411594], + [9.208189, 45.411594], + [9.208189, 45.407097], + [9.203693, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.411594], + [9.203693, 45.416091], + [9.208189, 45.416091], + [9.208189, 45.411594], + [9.203693, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.416091], + [9.203693, 45.420587], + [9.208189, 45.420587], + [9.208189, 45.416091], + [9.203693, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.420587], + [9.203693, 45.425084], + [9.208189, 45.425084], + [9.208189, 45.420587], + [9.203693, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.425084], + [9.203693, 45.42958], + [9.208189, 45.42958], + [9.208189, 45.425084], + [9.203693, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.42958], + [9.203693, 45.434077], + [9.208189, 45.434077], + [9.208189, 45.42958], + [9.203693, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.434077], + [9.203693, 45.438574], + [9.208189, 45.438574], + [9.208189, 45.434077], + [9.203693, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.438574], + [9.203693, 45.44307], + [9.208189, 45.44307], + [9.208189, 45.438574], + [9.203693, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.44307], + [9.203693, 45.447567], + [9.208189, 45.447567], + [9.208189, 45.44307], + [9.203693, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.447567], + [9.203693, 45.452063], + [9.208189, 45.452063], + [9.208189, 45.447567], + [9.203693, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.452063], + [9.203693, 45.45656], + [9.208189, 45.45656], + [9.208189, 45.452063], + [9.203693, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.45656], + [9.203693, 45.461057], + [9.208189, 45.461057], + [9.208189, 45.45656], + [9.203693, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.461057], + [9.203693, 45.465553], + [9.208189, 45.465553], + [9.208189, 45.461057], + [9.203693, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.465553], + [9.203693, 45.47005], + [9.208189, 45.47005], + [9.208189, 45.465553], + [9.203693, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.47005], + [9.203693, 45.474547], + [9.208189, 45.474547], + [9.208189, 45.47005], + [9.203693, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.474547], + [9.203693, 45.479043], + [9.208189, 45.479043], + [9.208189, 45.474547], + [9.203693, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.479043], + [9.203693, 45.48354], + [9.208189, 45.48354], + [9.208189, 45.479043], + [9.203693, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.48354], + [9.203693, 45.488036], + [9.208189, 45.488036], + [9.208189, 45.48354], + [9.203693, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.488036], + [9.203693, 45.492533], + [9.208189, 45.492533], + [9.208189, 45.488036], + [9.203693, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.492533], + [9.203693, 45.49703], + [9.208189, 45.49703], + [9.208189, 45.492533], + [9.203693, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.49703], + [9.203693, 45.501526], + [9.208189, 45.501526], + [9.208189, 45.49703], + [9.203693, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.501526], + [9.203693, 45.506023], + [9.208189, 45.506023], + [9.208189, 45.501526], + [9.203693, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.506023], + [9.203693, 45.510519], + [9.208189, 45.510519], + [9.208189, 45.506023], + [9.203693, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.510519], + [9.203693, 45.515016], + [9.208189, 45.515016], + [9.208189, 45.510519], + [9.203693, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.515016], + [9.203693, 45.519513], + [9.208189, 45.519513], + [9.208189, 45.515016], + [9.203693, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.519513], + [9.203693, 45.524009], + [9.208189, 45.524009], + [9.208189, 45.519513], + [9.203693, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.524009], + [9.203693, 45.528506], + [9.208189, 45.528506], + [9.208189, 45.524009], + [9.203693, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#0062bd", + "fill": "#0062bd", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.528506], + [9.203693, 45.533002], + [9.208189, 45.533002], + [9.208189, 45.528506], + [9.203693, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 45, + "stroke": "#00529e", + "fill": "#00529e", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.533002], + [9.203693, 45.537499], + [9.208189, 45.537499], + [9.208189, 45.533002], + [9.203693, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 45, + "stroke": "#00529e", + "fill": "#00529e", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.537499], + [9.203693, 45.541996], + [9.208189, 45.541996], + [9.208189, 45.537499], + [9.203693, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 43, + "stroke": "#005db3", + "fill": "#005db3", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.541996], + [9.203693, 45.546492], + [9.208189, 45.546492], + [9.208189, 45.541996], + [9.203693, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 41, + "stroke": "#0068c7", + "fill": "#0068c7", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.546492], + [9.203693, 45.550989], + [9.208189, 45.550989], + [9.208189, 45.546492], + [9.203693, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.550989], + [9.203693, 45.555485], + [9.208189, 45.555485], + [9.208189, 45.550989], + [9.203693, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.555485], + [9.203693, 45.559982], + [9.208189, 45.559982], + [9.208189, 45.555485], + [9.203693, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.559982], + [9.203693, 45.564479], + [9.208189, 45.564479], + [9.208189, 45.559982], + [9.203693, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.564479], + [9.203693, 45.568975], + [9.208189, 45.568975], + [9.208189, 45.564479], + [9.203693, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.568975], + [9.203693, 45.573472], + [9.208189, 45.573472], + [9.208189, 45.568975], + [9.203693, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.573472], + [9.203693, 45.577968], + [9.208189, 45.577968], + [9.208189, 45.573472], + [9.203693, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.577968], + [9.203693, 45.582465], + [9.208189, 45.582465], + [9.208189, 45.577968], + [9.203693, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.582465], + [9.203693, 45.586962], + [9.208189, 45.586962], + [9.208189, 45.582465], + [9.203693, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.586962], + [9.203693, 45.591458], + [9.208189, 45.591458], + [9.208189, 45.586962], + [9.203693, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.591458], + [9.203693, 45.595955], + [9.208189, 45.595955], + [9.208189, 45.591458], + [9.203693, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.595955], + [9.203693, 45.600451], + [9.208189, 45.600451], + [9.208189, 45.595955], + [9.203693, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.600451], + [9.203693, 45.604948], + [9.208189, 45.604948], + [9.208189, 45.600451], + [9.203693, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.604948], + [9.203693, 45.609445], + [9.208189, 45.609445], + [9.208189, 45.604948], + [9.203693, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.609445], + [9.203693, 45.613941], + [9.208189, 45.613941], + [9.208189, 45.609445], + [9.203693, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.613941], + [9.203693, 45.618438], + [9.208189, 45.618438], + [9.208189, 45.613941], + [9.203693, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.618438], + [9.203693, 45.622934], + [9.208189, 45.622934], + [9.208189, 45.618438], + [9.203693, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.622934], + [9.203693, 45.627431], + [9.208189, 45.627431], + [9.208189, 45.622934], + [9.203693, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.627431], + [9.203693, 45.631928], + [9.208189, 45.631928], + [9.208189, 45.627431], + [9.203693, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.631928], + [9.203693, 45.636424], + [9.208189, 45.636424], + [9.208189, 45.631928], + [9.203693, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.339648], + [9.208189, 45.344145], + [9.212686, 45.344145], + [9.212686, 45.339648], + [9.208189, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.344145], + [9.208189, 45.348642], + [9.212686, 45.348642], + [9.212686, 45.344145], + [9.208189, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.348642], + [9.208189, 45.353138], + [9.212686, 45.353138], + [9.212686, 45.348642], + [9.208189, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.353138], + [9.208189, 45.357635], + [9.212686, 45.357635], + [9.212686, 45.353138], + [9.208189, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.357635], + [9.208189, 45.362131], + [9.212686, 45.362131], + [9.212686, 45.357635], + [9.208189, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.362131], + [9.208189, 45.366628], + [9.212686, 45.366628], + [9.212686, 45.362131], + [9.208189, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.366628], + [9.208189, 45.371125], + [9.212686, 45.371125], + [9.212686, 45.366628], + [9.208189, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.371125], + [9.208189, 45.375621], + [9.212686, 45.375621], + [9.212686, 45.371125], + [9.208189, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.375621], + [9.208189, 45.380118], + [9.212686, 45.380118], + [9.212686, 45.375621], + [9.208189, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.380118], + [9.208189, 45.384614], + [9.212686, 45.384614], + [9.212686, 45.380118], + [9.208189, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.384614], + [9.208189, 45.389111], + [9.212686, 45.389111], + [9.212686, 45.384614], + [9.208189, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.389111], + [9.208189, 45.393608], + [9.212686, 45.393608], + [9.212686, 45.389111], + [9.208189, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.393608], + [9.208189, 45.398104], + [9.212686, 45.398104], + [9.212686, 45.393608], + [9.208189, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.398104], + [9.208189, 45.402601], + [9.212686, 45.402601], + [9.212686, 45.398104], + [9.208189, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.402601], + [9.208189, 45.407097], + [9.212686, 45.407097], + [9.212686, 45.402601], + [9.208189, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.407097], + [9.208189, 45.411594], + [9.212686, 45.411594], + [9.212686, 45.407097], + [9.208189, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.411594], + [9.208189, 45.416091], + [9.212686, 45.416091], + [9.212686, 45.411594], + [9.208189, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.416091], + [9.208189, 45.420587], + [9.212686, 45.420587], + [9.212686, 45.416091], + [9.208189, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.420587], + [9.208189, 45.425084], + [9.212686, 45.425084], + [9.212686, 45.420587], + [9.208189, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.425084], + [9.208189, 45.42958], + [9.212686, 45.42958], + [9.212686, 45.425084], + [9.208189, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.42958], + [9.208189, 45.434077], + [9.212686, 45.434077], + [9.212686, 45.42958], + [9.208189, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.434077], + [9.208189, 45.438574], + [9.212686, 45.438574], + [9.212686, 45.434077], + [9.208189, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.438574], + [9.208189, 45.44307], + [9.212686, 45.44307], + [9.212686, 45.438574], + [9.208189, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.44307], + [9.208189, 45.447567], + [9.212686, 45.447567], + [9.212686, 45.44307], + [9.208189, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.447567], + [9.208189, 45.452063], + [9.212686, 45.452063], + [9.212686, 45.447567], + [9.208189, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.452063], + [9.208189, 45.45656], + [9.212686, 45.45656], + [9.212686, 45.452063], + [9.208189, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.45656], + [9.208189, 45.461057], + [9.212686, 45.461057], + [9.212686, 45.45656], + [9.208189, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.461057], + [9.208189, 45.465553], + [9.212686, 45.465553], + [9.212686, 45.461057], + [9.208189, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.465553], + [9.208189, 45.47005], + [9.212686, 45.47005], + [9.212686, 45.465553], + [9.208189, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.47005], + [9.208189, 45.474547], + [9.212686, 45.474547], + [9.212686, 45.47005], + [9.208189, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.474547], + [9.208189, 45.479043], + [9.212686, 45.479043], + [9.212686, 45.474547], + [9.208189, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.479043], + [9.208189, 45.48354], + [9.212686, 45.48354], + [9.212686, 45.479043], + [9.208189, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.48354], + [9.208189, 45.488036], + [9.212686, 45.488036], + [9.212686, 45.48354], + [9.208189, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.488036], + [9.208189, 45.492533], + [9.212686, 45.492533], + [9.212686, 45.488036], + [9.208189, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.492533], + [9.208189, 45.49703], + [9.212686, 45.49703], + [9.212686, 45.492533], + [9.208189, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.49703], + [9.208189, 45.501526], + [9.212686, 45.501526], + [9.212686, 45.49703], + [9.208189, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.501526], + [9.208189, 45.506023], + [9.212686, 45.506023], + [9.212686, 45.501526], + [9.208189, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.506023], + [9.208189, 45.510519], + [9.212686, 45.510519], + [9.212686, 45.506023], + [9.208189, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.510519], + [9.208189, 45.515016], + [9.212686, 45.515016], + [9.212686, 45.510519], + [9.208189, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.515016], + [9.208189, 45.519513], + [9.212686, 45.519513], + [9.212686, 45.515016], + [9.208189, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.519513], + [9.208189, 45.524009], + [9.212686, 45.524009], + [9.212686, 45.519513], + [9.208189, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.524009], + [9.208189, 45.528506], + [9.212686, 45.528506], + [9.212686, 45.524009], + [9.208189, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.528506], + [9.208189, 45.533002], + [9.212686, 45.533002], + [9.212686, 45.528506], + [9.208189, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 41, + "stroke": "#0068c7", + "fill": "#0068c7", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.533002], + [9.208189, 45.537499], + [9.212686, 45.537499], + [9.212686, 45.533002], + [9.208189, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#0062bd", + "fill": "#0062bd", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.537499], + [9.208189, 45.541996], + [9.212686, 45.541996], + [9.212686, 45.537499], + [9.208189, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 41, + "stroke": "#0068c7", + "fill": "#0068c7", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.541996], + [9.208189, 45.546492], + [9.212686, 45.546492], + [9.212686, 45.541996], + [9.208189, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.546492], + [9.208189, 45.550989], + [9.212686, 45.550989], + [9.212686, 45.546492], + [9.208189, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.550989], + [9.208189, 45.555485], + [9.212686, 45.555485], + [9.212686, 45.550989], + [9.208189, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.555485], + [9.208189, 45.559982], + [9.212686, 45.559982], + [9.212686, 45.555485], + [9.208189, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.559982], + [9.208189, 45.564479], + [9.212686, 45.564479], + [9.212686, 45.559982], + [9.208189, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.564479], + [9.208189, 45.568975], + [9.212686, 45.568975], + [9.212686, 45.564479], + [9.208189, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.568975], + [9.208189, 45.573472], + [9.212686, 45.573472], + [9.212686, 45.568975], + [9.208189, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.573472], + [9.208189, 45.577968], + [9.212686, 45.577968], + [9.212686, 45.573472], + [9.208189, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.577968], + [9.208189, 45.582465], + [9.212686, 45.582465], + [9.212686, 45.577968], + [9.208189, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.582465], + [9.208189, 45.586962], + [9.212686, 45.586962], + [9.212686, 45.582465], + [9.208189, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.586962], + [9.208189, 45.591458], + [9.212686, 45.591458], + [9.212686, 45.586962], + [9.208189, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.591458], + [9.208189, 45.595955], + [9.212686, 45.595955], + [9.212686, 45.591458], + [9.208189, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.595955], + [9.208189, 45.600451], + [9.212686, 45.600451], + [9.212686, 45.595955], + [9.208189, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.600451], + [9.208189, 45.604948], + [9.212686, 45.604948], + [9.212686, 45.600451], + [9.208189, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.604948], + [9.208189, 45.609445], + [9.212686, 45.609445], + [9.212686, 45.604948], + [9.208189, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.609445], + [9.208189, 45.613941], + [9.212686, 45.613941], + [9.212686, 45.609445], + [9.208189, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.613941], + [9.208189, 45.618438], + [9.212686, 45.618438], + [9.212686, 45.613941], + [9.208189, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.618438], + [9.208189, 45.622934], + [9.212686, 45.622934], + [9.212686, 45.618438], + [9.208189, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.622934], + [9.208189, 45.627431], + [9.212686, 45.627431], + [9.212686, 45.622934], + [9.208189, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.627431], + [9.208189, 45.631928], + [9.212686, 45.631928], + [9.212686, 45.627431], + [9.208189, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.631928], + [9.208189, 45.636424], + [9.212686, 45.636424], + [9.212686, 45.631928], + [9.208189, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.339648], + [9.212686, 45.344145], + [9.217182, 45.344145], + [9.217182, 45.339648], + [9.212686, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.344145], + [9.212686, 45.348642], + [9.217182, 45.348642], + [9.217182, 45.344145], + [9.212686, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.348642], + [9.212686, 45.353138], + [9.217182, 45.353138], + [9.217182, 45.348642], + [9.212686, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.353138], + [9.212686, 45.357635], + [9.217182, 45.357635], + [9.217182, 45.353138], + [9.212686, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.357635], + [9.212686, 45.362131], + [9.217182, 45.362131], + [9.217182, 45.357635], + [9.212686, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.362131], + [9.212686, 45.366628], + [9.217182, 45.366628], + [9.217182, 45.362131], + [9.212686, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.366628], + [9.212686, 45.371125], + [9.217182, 45.371125], + [9.217182, 45.366628], + [9.212686, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.371125], + [9.212686, 45.375621], + [9.217182, 45.375621], + [9.217182, 45.371125], + [9.212686, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.375621], + [9.212686, 45.380118], + [9.217182, 45.380118], + [9.217182, 45.375621], + [9.212686, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.380118], + [9.212686, 45.384614], + [9.217182, 45.384614], + [9.217182, 45.380118], + [9.212686, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.384614], + [9.212686, 45.389111], + [9.217182, 45.389111], + [9.217182, 45.384614], + [9.212686, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.389111], + [9.212686, 45.393608], + [9.217182, 45.393608], + [9.217182, 45.389111], + [9.212686, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.393608], + [9.212686, 45.398104], + [9.217182, 45.398104], + [9.217182, 45.393608], + [9.212686, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.398104], + [9.212686, 45.402601], + [9.217182, 45.402601], + [9.217182, 45.398104], + [9.212686, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.402601], + [9.212686, 45.407097], + [9.217182, 45.407097], + [9.217182, 45.402601], + [9.212686, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.407097], + [9.212686, 45.411594], + [9.217182, 45.411594], + [9.217182, 45.407097], + [9.212686, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.411594], + [9.212686, 45.416091], + [9.217182, 45.416091], + [9.217182, 45.411594], + [9.212686, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.416091], + [9.212686, 45.420587], + [9.217182, 45.420587], + [9.217182, 45.416091], + [9.212686, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.420587], + [9.212686, 45.425084], + [9.217182, 45.425084], + [9.217182, 45.420587], + [9.212686, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.425084], + [9.212686, 45.42958], + [9.217182, 45.42958], + [9.217182, 45.425084], + [9.212686, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.42958], + [9.212686, 45.434077], + [9.217182, 45.434077], + [9.217182, 45.42958], + [9.212686, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.434077], + [9.212686, 45.438574], + [9.217182, 45.438574], + [9.217182, 45.434077], + [9.212686, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.438574], + [9.212686, 45.44307], + [9.217182, 45.44307], + [9.217182, 45.438574], + [9.212686, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.44307], + [9.212686, 45.447567], + [9.217182, 45.447567], + [9.217182, 45.44307], + [9.212686, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.447567], + [9.212686, 45.452063], + [9.217182, 45.452063], + [9.217182, 45.447567], + [9.212686, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.452063], + [9.212686, 45.45656], + [9.217182, 45.45656], + [9.217182, 45.452063], + [9.212686, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.45656], + [9.212686, 45.461057], + [9.217182, 45.461057], + [9.217182, 45.45656], + [9.212686, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.461057], + [9.212686, 45.465553], + [9.217182, 45.465553], + [9.217182, 45.461057], + [9.212686, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.465553], + [9.212686, 45.47005], + [9.217182, 45.47005], + [9.217182, 45.465553], + [9.212686, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.47005], + [9.212686, 45.474547], + [9.217182, 45.474547], + [9.217182, 45.47005], + [9.212686, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.474547], + [9.212686, 45.479043], + [9.217182, 45.479043], + [9.217182, 45.474547], + [9.212686, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.479043], + [9.212686, 45.48354], + [9.217182, 45.48354], + [9.217182, 45.479043], + [9.212686, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.48354], + [9.212686, 45.488036], + [9.217182, 45.488036], + [9.217182, 45.48354], + [9.212686, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.488036], + [9.212686, 45.492533], + [9.217182, 45.492533], + [9.217182, 45.488036], + [9.212686, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.492533], + [9.212686, 45.49703], + [9.217182, 45.49703], + [9.217182, 45.492533], + [9.212686, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.49703], + [9.212686, 45.501526], + [9.217182, 45.501526], + [9.217182, 45.49703], + [9.212686, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.501526], + [9.212686, 45.506023], + [9.217182, 45.506023], + [9.217182, 45.501526], + [9.212686, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.506023], + [9.212686, 45.510519], + [9.217182, 45.510519], + [9.217182, 45.506023], + [9.212686, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.510519], + [9.212686, 45.515016], + [9.217182, 45.515016], + [9.217182, 45.510519], + [9.212686, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.515016], + [9.212686, 45.519513], + [9.217182, 45.519513], + [9.217182, 45.515016], + [9.212686, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.519513], + [9.212686, 45.524009], + [9.217182, 45.524009], + [9.217182, 45.519513], + [9.212686, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.524009], + [9.212686, 45.528506], + [9.217182, 45.528506], + [9.217182, 45.524009], + [9.212686, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.528506], + [9.212686, 45.533002], + [9.217182, 45.533002], + [9.217182, 45.528506], + [9.212686, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.533002], + [9.212686, 45.537499], + [9.217182, 45.537499], + [9.217182, 45.533002], + [9.212686, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.537499], + [9.212686, 45.541996], + [9.217182, 45.541996], + [9.217182, 45.537499], + [9.212686, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.541996], + [9.212686, 45.546492], + [9.217182, 45.546492], + [9.217182, 45.541996], + [9.212686, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.546492], + [9.212686, 45.550989], + [9.217182, 45.550989], + [9.217182, 45.546492], + [9.212686, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.550989], + [9.212686, 45.555485], + [9.217182, 45.555485], + [9.217182, 45.550989], + [9.212686, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.555485], + [9.212686, 45.559982], + [9.217182, 45.559982], + [9.217182, 45.555485], + [9.212686, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.559982], + [9.212686, 45.564479], + [9.217182, 45.564479], + [9.217182, 45.559982], + [9.212686, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.564479], + [9.212686, 45.568975], + [9.217182, 45.568975], + [9.217182, 45.564479], + [9.212686, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.568975], + [9.212686, 45.573472], + [9.217182, 45.573472], + [9.217182, 45.568975], + [9.212686, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.573472], + [9.212686, 45.577968], + [9.217182, 45.577968], + [9.217182, 45.573472], + [9.212686, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.577968], + [9.212686, 45.582465], + [9.217182, 45.582465], + [9.217182, 45.577968], + [9.212686, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.582465], + [9.212686, 45.586962], + [9.217182, 45.586962], + [9.217182, 45.582465], + [9.212686, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.586962], + [9.212686, 45.591458], + [9.217182, 45.591458], + [9.217182, 45.586962], + [9.212686, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.591458], + [9.212686, 45.595955], + [9.217182, 45.595955], + [9.217182, 45.591458], + [9.212686, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.595955], + [9.212686, 45.600451], + [9.217182, 45.600451], + [9.217182, 45.595955], + [9.212686, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.600451], + [9.212686, 45.604948], + [9.217182, 45.604948], + [9.217182, 45.600451], + [9.212686, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.604948], + [9.212686, 45.609445], + [9.217182, 45.609445], + [9.217182, 45.604948], + [9.212686, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.609445], + [9.212686, 45.613941], + [9.217182, 45.613941], + [9.217182, 45.609445], + [9.212686, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.613941], + [9.212686, 45.618438], + [9.217182, 45.618438], + [9.217182, 45.613941], + [9.212686, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.618438], + [9.212686, 45.622934], + [9.217182, 45.622934], + [9.217182, 45.618438], + [9.212686, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.622934], + [9.212686, 45.627431], + [9.217182, 45.627431], + [9.217182, 45.622934], + [9.212686, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.627431], + [9.212686, 45.631928], + [9.217182, 45.631928], + [9.217182, 45.627431], + [9.212686, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.631928], + [9.212686, 45.636424], + [9.217182, 45.636424], + [9.217182, 45.631928], + [9.212686, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.339648], + [9.217182, 45.344145], + [9.221679, 45.344145], + [9.221679, 45.339648], + [9.217182, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.344145], + [9.217182, 45.348642], + [9.221679, 45.348642], + [9.221679, 45.344145], + [9.217182, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.348642], + [9.217182, 45.353138], + [9.221679, 45.353138], + [9.221679, 45.348642], + [9.217182, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.353138], + [9.217182, 45.357635], + [9.221679, 45.357635], + [9.221679, 45.353138], + [9.217182, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.357635], + [9.217182, 45.362131], + [9.221679, 45.362131], + [9.221679, 45.357635], + [9.217182, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.362131], + [9.217182, 45.366628], + [9.221679, 45.366628], + [9.221679, 45.362131], + [9.217182, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.366628], + [9.217182, 45.371125], + [9.221679, 45.371125], + [9.221679, 45.366628], + [9.217182, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.371125], + [9.217182, 45.375621], + [9.221679, 45.375621], + [9.221679, 45.371125], + [9.217182, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.375621], + [9.217182, 45.380118], + [9.221679, 45.380118], + [9.221679, 45.375621], + [9.217182, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.380118], + [9.217182, 45.384614], + [9.221679, 45.384614], + [9.221679, 45.380118], + [9.217182, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.384614], + [9.217182, 45.389111], + [9.221679, 45.389111], + [9.221679, 45.384614], + [9.217182, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.389111], + [9.217182, 45.393608], + [9.221679, 45.393608], + [9.221679, 45.389111], + [9.217182, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.393608], + [9.217182, 45.398104], + [9.221679, 45.398104], + [9.221679, 45.393608], + [9.217182, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.398104], + [9.217182, 45.402601], + [9.221679, 45.402601], + [9.221679, 45.398104], + [9.217182, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.402601], + [9.217182, 45.407097], + [9.221679, 45.407097], + [9.221679, 45.402601], + [9.217182, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.407097], + [9.217182, 45.411594], + [9.221679, 45.411594], + [9.221679, 45.407097], + [9.217182, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.411594], + [9.217182, 45.416091], + [9.221679, 45.416091], + [9.221679, 45.411594], + [9.217182, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.416091], + [9.217182, 45.420587], + [9.221679, 45.420587], + [9.221679, 45.416091], + [9.217182, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.420587], + [9.217182, 45.425084], + [9.221679, 45.425084], + [9.221679, 45.420587], + [9.217182, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.425084], + [9.217182, 45.42958], + [9.221679, 45.42958], + [9.221679, 45.425084], + [9.217182, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.42958], + [9.217182, 45.434077], + [9.221679, 45.434077], + [9.221679, 45.42958], + [9.217182, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.434077], + [9.217182, 45.438574], + [9.221679, 45.438574], + [9.221679, 45.434077], + [9.217182, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.438574], + [9.217182, 45.44307], + [9.221679, 45.44307], + [9.221679, 45.438574], + [9.217182, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.44307], + [9.217182, 45.447567], + [9.221679, 45.447567], + [9.221679, 45.44307], + [9.217182, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.447567], + [9.217182, 45.452063], + [9.221679, 45.452063], + [9.221679, 45.447567], + [9.217182, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.452063], + [9.217182, 45.45656], + [9.221679, 45.45656], + [9.221679, 45.452063], + [9.217182, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.45656], + [9.217182, 45.461057], + [9.221679, 45.461057], + [9.221679, 45.45656], + [9.217182, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.461057], + [9.217182, 45.465553], + [9.221679, 45.465553], + [9.221679, 45.461057], + [9.217182, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.465553], + [9.217182, 45.47005], + [9.221679, 45.47005], + [9.221679, 45.465553], + [9.217182, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.47005], + [9.217182, 45.474547], + [9.221679, 45.474547], + [9.221679, 45.47005], + [9.217182, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.474547], + [9.217182, 45.479043], + [9.221679, 45.479043], + [9.221679, 45.474547], + [9.217182, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.479043], + [9.217182, 45.48354], + [9.221679, 45.48354], + [9.221679, 45.479043], + [9.217182, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.48354], + [9.217182, 45.488036], + [9.221679, 45.488036], + [9.221679, 45.48354], + [9.217182, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.488036], + [9.217182, 45.492533], + [9.221679, 45.492533], + [9.221679, 45.488036], + [9.217182, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.492533], + [9.217182, 45.49703], + [9.221679, 45.49703], + [9.221679, 45.492533], + [9.217182, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.49703], + [9.217182, 45.501526], + [9.221679, 45.501526], + [9.221679, 45.49703], + [9.217182, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.501526], + [9.217182, 45.506023], + [9.221679, 45.506023], + [9.221679, 45.501526], + [9.217182, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.506023], + [9.217182, 45.510519], + [9.221679, 45.510519], + [9.221679, 45.506023], + [9.217182, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.510519], + [9.217182, 45.515016], + [9.221679, 45.515016], + [9.221679, 45.510519], + [9.217182, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.515016], + [9.217182, 45.519513], + [9.221679, 45.519513], + [9.221679, 45.515016], + [9.217182, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.519513], + [9.217182, 45.524009], + [9.221679, 45.524009], + [9.221679, 45.519513], + [9.217182, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.524009], + [9.217182, 45.528506], + [9.221679, 45.528506], + [9.221679, 45.524009], + [9.217182, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.528506], + [9.217182, 45.533002], + [9.221679, 45.533002], + [9.221679, 45.528506], + [9.217182, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.533002], + [9.217182, 45.537499], + [9.221679, 45.537499], + [9.221679, 45.533002], + [9.217182, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.537499], + [9.217182, 45.541996], + [9.221679, 45.541996], + [9.221679, 45.537499], + [9.217182, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.541996], + [9.217182, 45.546492], + [9.221679, 45.546492], + [9.221679, 45.541996], + [9.217182, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.546492], + [9.217182, 45.550989], + [9.221679, 45.550989], + [9.221679, 45.546492], + [9.217182, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.550989], + [9.217182, 45.555485], + [9.221679, 45.555485], + [9.221679, 45.550989], + [9.217182, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.555485], + [9.217182, 45.559982], + [9.221679, 45.559982], + [9.221679, 45.555485], + [9.217182, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.559982], + [9.217182, 45.564479], + [9.221679, 45.564479], + [9.221679, 45.559982], + [9.217182, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.564479], + [9.217182, 45.568975], + [9.221679, 45.568975], + [9.221679, 45.564479], + [9.217182, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.568975], + [9.217182, 45.573472], + [9.221679, 45.573472], + [9.221679, 45.568975], + [9.217182, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.573472], + [9.217182, 45.577968], + [9.221679, 45.577968], + [9.221679, 45.573472], + [9.217182, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.577968], + [9.217182, 45.582465], + [9.221679, 45.582465], + [9.221679, 45.577968], + [9.217182, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.582465], + [9.217182, 45.586962], + [9.221679, 45.586962], + [9.221679, 45.582465], + [9.217182, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.586962], + [9.217182, 45.591458], + [9.221679, 45.591458], + [9.221679, 45.586962], + [9.217182, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.591458], + [9.217182, 45.595955], + [9.221679, 45.595955], + [9.221679, 45.591458], + [9.217182, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.595955], + [9.217182, 45.600451], + [9.221679, 45.600451], + [9.221679, 45.595955], + [9.217182, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.600451], + [9.217182, 45.604948], + [9.221679, 45.604948], + [9.221679, 45.600451], + [9.217182, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.604948], + [9.217182, 45.609445], + [9.221679, 45.609445], + [9.221679, 45.604948], + [9.217182, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.609445], + [9.217182, 45.613941], + [9.221679, 45.613941], + [9.221679, 45.609445], + [9.217182, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.613941], + [9.217182, 45.618438], + [9.221679, 45.618438], + [9.221679, 45.613941], + [9.217182, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.618438], + [9.217182, 45.622934], + [9.221679, 45.622934], + [9.221679, 45.618438], + [9.217182, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.622934], + [9.217182, 45.627431], + [9.221679, 45.627431], + [9.221679, 45.622934], + [9.217182, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.627431], + [9.217182, 45.631928], + [9.221679, 45.631928], + [9.221679, 45.627431], + [9.217182, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.631928], + [9.217182, 45.636424], + [9.221679, 45.636424], + [9.221679, 45.631928], + [9.217182, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.339648], + [9.221679, 45.344145], + [9.226176, 45.344145], + [9.226176, 45.339648], + [9.221679, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.344145], + [9.221679, 45.348642], + [9.226176, 45.348642], + [9.226176, 45.344145], + [9.221679, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.348642], + [9.221679, 45.353138], + [9.226176, 45.353138], + [9.226176, 45.348642], + [9.221679, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.353138], + [9.221679, 45.357635], + [9.226176, 45.357635], + [9.226176, 45.353138], + [9.221679, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.357635], + [9.221679, 45.362131], + [9.226176, 45.362131], + [9.226176, 45.357635], + [9.221679, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.362131], + [9.221679, 45.366628], + [9.226176, 45.366628], + [9.226176, 45.362131], + [9.221679, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.366628], + [9.221679, 45.371125], + [9.226176, 45.371125], + [9.226176, 45.366628], + [9.221679, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.371125], + [9.221679, 45.375621], + [9.226176, 45.375621], + [9.226176, 45.371125], + [9.221679, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.375621], + [9.221679, 45.380118], + [9.226176, 45.380118], + [9.226176, 45.375621], + [9.221679, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.380118], + [9.221679, 45.384614], + [9.226176, 45.384614], + [9.226176, 45.380118], + [9.221679, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.384614], + [9.221679, 45.389111], + [9.226176, 45.389111], + [9.226176, 45.384614], + [9.221679, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.389111], + [9.221679, 45.393608], + [9.226176, 45.393608], + [9.226176, 45.389111], + [9.221679, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.393608], + [9.221679, 45.398104], + [9.226176, 45.398104], + [9.226176, 45.393608], + [9.221679, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.398104], + [9.221679, 45.402601], + [9.226176, 45.402601], + [9.226176, 45.398104], + [9.221679, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.402601], + [9.221679, 45.407097], + [9.226176, 45.407097], + [9.226176, 45.402601], + [9.221679, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.407097], + [9.221679, 45.411594], + [9.226176, 45.411594], + [9.226176, 45.407097], + [9.221679, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.411594], + [9.221679, 45.416091], + [9.226176, 45.416091], + [9.226176, 45.411594], + [9.221679, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.416091], + [9.221679, 45.420587], + [9.226176, 45.420587], + [9.226176, 45.416091], + [9.221679, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.420587], + [9.221679, 45.425084], + [9.226176, 45.425084], + [9.226176, 45.420587], + [9.221679, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.425084], + [9.221679, 45.42958], + [9.226176, 45.42958], + [9.226176, 45.425084], + [9.221679, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.42958], + [9.221679, 45.434077], + [9.226176, 45.434077], + [9.226176, 45.42958], + [9.221679, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.434077], + [9.221679, 45.438574], + [9.226176, 45.438574], + [9.226176, 45.434077], + [9.221679, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.438574], + [9.221679, 45.44307], + [9.226176, 45.44307], + [9.226176, 45.438574], + [9.221679, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.44307], + [9.221679, 45.447567], + [9.226176, 45.447567], + [9.226176, 45.44307], + [9.221679, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.447567], + [9.221679, 45.452063], + [9.226176, 45.452063], + [9.226176, 45.447567], + [9.221679, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.452063], + [9.221679, 45.45656], + [9.226176, 45.45656], + [9.226176, 45.452063], + [9.221679, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.45656], + [9.221679, 45.461057], + [9.226176, 45.461057], + [9.226176, 45.45656], + [9.221679, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.461057], + [9.221679, 45.465553], + [9.226176, 45.465553], + [9.226176, 45.461057], + [9.221679, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.465553], + [9.221679, 45.47005], + [9.226176, 45.47005], + [9.226176, 45.465553], + [9.221679, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.47005], + [9.221679, 45.474547], + [9.226176, 45.474547], + [9.226176, 45.47005], + [9.221679, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.474547], + [9.221679, 45.479043], + [9.226176, 45.479043], + [9.226176, 45.474547], + [9.221679, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.479043], + [9.221679, 45.48354], + [9.226176, 45.48354], + [9.226176, 45.479043], + [9.221679, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.48354], + [9.221679, 45.488036], + [9.226176, 45.488036], + [9.226176, 45.48354], + [9.221679, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.488036], + [9.221679, 45.492533], + [9.226176, 45.492533], + [9.226176, 45.488036], + [9.221679, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.492533], + [9.221679, 45.49703], + [9.226176, 45.49703], + [9.226176, 45.492533], + [9.221679, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.49703], + [9.221679, 45.501526], + [9.226176, 45.501526], + [9.226176, 45.49703], + [9.221679, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.501526], + [9.221679, 45.506023], + [9.226176, 45.506023], + [9.226176, 45.501526], + [9.221679, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.506023], + [9.221679, 45.510519], + [9.226176, 45.510519], + [9.226176, 45.506023], + [9.221679, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.510519], + [9.221679, 45.515016], + [9.226176, 45.515016], + [9.226176, 45.510519], + [9.221679, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.515016], + [9.221679, 45.519513], + [9.226176, 45.519513], + [9.226176, 45.515016], + [9.221679, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.519513], + [9.221679, 45.524009], + [9.226176, 45.524009], + [9.226176, 45.519513], + [9.221679, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.524009], + [9.221679, 45.528506], + [9.226176, 45.528506], + [9.226176, 45.524009], + [9.221679, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.528506], + [9.221679, 45.533002], + [9.226176, 45.533002], + [9.226176, 45.528506], + [9.221679, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.533002], + [9.221679, 45.537499], + [9.226176, 45.537499], + [9.226176, 45.533002], + [9.221679, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.537499], + [9.221679, 45.541996], + [9.226176, 45.541996], + [9.226176, 45.537499], + [9.221679, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.541996], + [9.221679, 45.546492], + [9.226176, 45.546492], + [9.226176, 45.541996], + [9.221679, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.546492], + [9.221679, 45.550989], + [9.226176, 45.550989], + [9.226176, 45.546492], + [9.221679, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.550989], + [9.221679, 45.555485], + [9.226176, 45.555485], + [9.226176, 45.550989], + [9.221679, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.555485], + [9.221679, 45.559982], + [9.226176, 45.559982], + [9.226176, 45.555485], + [9.221679, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.559982], + [9.221679, 45.564479], + [9.226176, 45.564479], + [9.226176, 45.559982], + [9.221679, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.564479], + [9.221679, 45.568975], + [9.226176, 45.568975], + [9.226176, 45.564479], + [9.221679, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.568975], + [9.221679, 45.573472], + [9.226176, 45.573472], + [9.226176, 45.568975], + [9.221679, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.573472], + [9.221679, 45.577968], + [9.226176, 45.577968], + [9.226176, 45.573472], + [9.221679, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.577968], + [9.221679, 45.582465], + [9.226176, 45.582465], + [9.226176, 45.577968], + [9.221679, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.582465], + [9.221679, 45.586962], + [9.226176, 45.586962], + [9.226176, 45.582465], + [9.221679, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.586962], + [9.221679, 45.591458], + [9.226176, 45.591458], + [9.226176, 45.586962], + [9.221679, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.591458], + [9.221679, 45.595955], + [9.226176, 45.595955], + [9.226176, 45.591458], + [9.221679, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.595955], + [9.221679, 45.600451], + [9.226176, 45.600451], + [9.226176, 45.595955], + [9.221679, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.600451], + [9.221679, 45.604948], + [9.226176, 45.604948], + [9.226176, 45.600451], + [9.221679, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.604948], + [9.221679, 45.609445], + [9.226176, 45.609445], + [9.226176, 45.604948], + [9.221679, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.609445], + [9.221679, 45.613941], + [9.226176, 45.613941], + [9.226176, 45.609445], + [9.221679, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.613941], + [9.221679, 45.618438], + [9.226176, 45.618438], + [9.226176, 45.613941], + [9.221679, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.618438], + [9.221679, 45.622934], + [9.226176, 45.622934], + [9.226176, 45.618438], + [9.221679, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.622934], + [9.221679, 45.627431], + [9.226176, 45.627431], + [9.226176, 45.622934], + [9.221679, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.627431], + [9.221679, 45.631928], + [9.226176, 45.631928], + [9.226176, 45.627431], + [9.221679, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.631928], + [9.221679, 45.636424], + [9.226176, 45.636424], + [9.226176, 45.631928], + [9.221679, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.339648], + [9.226176, 45.344145], + [9.230672, 45.344145], + [9.230672, 45.339648], + [9.226176, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.344145], + [9.226176, 45.348642], + [9.230672, 45.348642], + [9.230672, 45.344145], + [9.226176, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.348642], + [9.226176, 45.353138], + [9.230672, 45.353138], + [9.230672, 45.348642], + [9.226176, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.353138], + [9.226176, 45.357635], + [9.230672, 45.357635], + [9.230672, 45.353138], + [9.226176, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.357635], + [9.226176, 45.362131], + [9.230672, 45.362131], + [9.230672, 45.357635], + [9.226176, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.362131], + [9.226176, 45.366628], + [9.230672, 45.366628], + [9.230672, 45.362131], + [9.226176, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.366628], + [9.226176, 45.371125], + [9.230672, 45.371125], + [9.230672, 45.366628], + [9.226176, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.371125], + [9.226176, 45.375621], + [9.230672, 45.375621], + [9.230672, 45.371125], + [9.226176, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.375621], + [9.226176, 45.380118], + [9.230672, 45.380118], + [9.230672, 45.375621], + [9.226176, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.380118], + [9.226176, 45.384614], + [9.230672, 45.384614], + [9.230672, 45.380118], + [9.226176, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.384614], + [9.226176, 45.389111], + [9.230672, 45.389111], + [9.230672, 45.384614], + [9.226176, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.389111], + [9.226176, 45.393608], + [9.230672, 45.393608], + [9.230672, 45.389111], + [9.226176, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.393608], + [9.226176, 45.398104], + [9.230672, 45.398104], + [9.230672, 45.393608], + [9.226176, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.398104], + [9.226176, 45.402601], + [9.230672, 45.402601], + [9.230672, 45.398104], + [9.226176, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.402601], + [9.226176, 45.407097], + [9.230672, 45.407097], + [9.230672, 45.402601], + [9.226176, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.407097], + [9.226176, 45.411594], + [9.230672, 45.411594], + [9.230672, 45.407097], + [9.226176, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.411594], + [9.226176, 45.416091], + [9.230672, 45.416091], + [9.230672, 45.411594], + [9.226176, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.416091], + [9.226176, 45.420587], + [9.230672, 45.420587], + [9.230672, 45.416091], + [9.226176, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.420587], + [9.226176, 45.425084], + [9.230672, 45.425084], + [9.230672, 45.420587], + [9.226176, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.425084], + [9.226176, 45.42958], + [9.230672, 45.42958], + [9.230672, 45.425084], + [9.226176, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.42958], + [9.226176, 45.434077], + [9.230672, 45.434077], + [9.230672, 45.42958], + [9.226176, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.434077], + [9.226176, 45.438574], + [9.230672, 45.438574], + [9.230672, 45.434077], + [9.226176, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.438574], + [9.226176, 45.44307], + [9.230672, 45.44307], + [9.230672, 45.438574], + [9.226176, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.44307], + [9.226176, 45.447567], + [9.230672, 45.447567], + [9.230672, 45.44307], + [9.226176, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.447567], + [9.226176, 45.452063], + [9.230672, 45.452063], + [9.230672, 45.447567], + [9.226176, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.452063], + [9.226176, 45.45656], + [9.230672, 45.45656], + [9.230672, 45.452063], + [9.226176, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.45656], + [9.226176, 45.461057], + [9.230672, 45.461057], + [9.230672, 45.45656], + [9.226176, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.461057], + [9.226176, 45.465553], + [9.230672, 45.465553], + [9.230672, 45.461057], + [9.226176, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.465553], + [9.226176, 45.47005], + [9.230672, 45.47005], + [9.230672, 45.465553], + [9.226176, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.47005], + [9.226176, 45.474547], + [9.230672, 45.474547], + [9.230672, 45.47005], + [9.226176, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.474547], + [9.226176, 45.479043], + [9.230672, 45.479043], + [9.230672, 45.474547], + [9.226176, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.479043], + [9.226176, 45.48354], + [9.230672, 45.48354], + [9.230672, 45.479043], + [9.226176, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.48354], + [9.226176, 45.488036], + [9.230672, 45.488036], + [9.230672, 45.48354], + [9.226176, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.488036], + [9.226176, 45.492533], + [9.230672, 45.492533], + [9.230672, 45.488036], + [9.226176, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.492533], + [9.226176, 45.49703], + [9.230672, 45.49703], + [9.230672, 45.492533], + [9.226176, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.49703], + [9.226176, 45.501526], + [9.230672, 45.501526], + [9.230672, 45.49703], + [9.226176, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.501526], + [9.226176, 45.506023], + [9.230672, 45.506023], + [9.230672, 45.501526], + [9.226176, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.506023], + [9.226176, 45.510519], + [9.230672, 45.510519], + [9.230672, 45.506023], + [9.226176, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.510519], + [9.226176, 45.515016], + [9.230672, 45.515016], + [9.230672, 45.510519], + [9.226176, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.515016], + [9.226176, 45.519513], + [9.230672, 45.519513], + [9.230672, 45.515016], + [9.226176, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.519513], + [9.226176, 45.524009], + [9.230672, 45.524009], + [9.230672, 45.519513], + [9.226176, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.524009], + [9.226176, 45.528506], + [9.230672, 45.528506], + [9.230672, 45.524009], + [9.226176, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.528506], + [9.226176, 45.533002], + [9.230672, 45.533002], + [9.230672, 45.528506], + [9.226176, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.533002], + [9.226176, 45.537499], + [9.230672, 45.537499], + [9.230672, 45.533002], + [9.226176, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.537499], + [9.226176, 45.541996], + [9.230672, 45.541996], + [9.230672, 45.537499], + [9.226176, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.541996], + [9.226176, 45.546492], + [9.230672, 45.546492], + [9.230672, 45.541996], + [9.226176, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.546492], + [9.226176, 45.550989], + [9.230672, 45.550989], + [9.230672, 45.546492], + [9.226176, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.550989], + [9.226176, 45.555485], + [9.230672, 45.555485], + [9.230672, 45.550989], + [9.226176, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.555485], + [9.226176, 45.559982], + [9.230672, 45.559982], + [9.230672, 45.555485], + [9.226176, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.559982], + [9.226176, 45.564479], + [9.230672, 45.564479], + [9.230672, 45.559982], + [9.226176, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.564479], + [9.226176, 45.568975], + [9.230672, 45.568975], + [9.230672, 45.564479], + [9.226176, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.568975], + [9.226176, 45.573472], + [9.230672, 45.573472], + [9.230672, 45.568975], + [9.226176, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.573472], + [9.226176, 45.577968], + [9.230672, 45.577968], + [9.230672, 45.573472], + [9.226176, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.577968], + [9.226176, 45.582465], + [9.230672, 45.582465], + [9.230672, 45.577968], + [9.226176, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.582465], + [9.226176, 45.586962], + [9.230672, 45.586962], + [9.230672, 45.582465], + [9.226176, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.586962], + [9.226176, 45.591458], + [9.230672, 45.591458], + [9.230672, 45.586962], + [9.226176, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.591458], + [9.226176, 45.595955], + [9.230672, 45.595955], + [9.230672, 45.591458], + [9.226176, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.595955], + [9.226176, 45.600451], + [9.230672, 45.600451], + [9.230672, 45.595955], + [9.226176, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.600451], + [9.226176, 45.604948], + [9.230672, 45.604948], + [9.230672, 45.600451], + [9.226176, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.604948], + [9.226176, 45.609445], + [9.230672, 45.609445], + [9.230672, 45.604948], + [9.226176, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.609445], + [9.226176, 45.613941], + [9.230672, 45.613941], + [9.230672, 45.609445], + [9.226176, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.613941], + [9.226176, 45.618438], + [9.230672, 45.618438], + [9.230672, 45.613941], + [9.226176, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.618438], + [9.226176, 45.622934], + [9.230672, 45.622934], + [9.230672, 45.618438], + [9.226176, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.622934], + [9.226176, 45.627431], + [9.230672, 45.627431], + [9.230672, 45.622934], + [9.226176, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.627431], + [9.226176, 45.631928], + [9.230672, 45.631928], + [9.230672, 45.627431], + [9.226176, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.631928], + [9.226176, 45.636424], + [9.230672, 45.636424], + [9.230672, 45.631928], + [9.226176, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.339648], + [9.230672, 45.344145], + [9.235169, 45.344145], + [9.235169, 45.339648], + [9.230672, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.344145], + [9.230672, 45.348642], + [9.235169, 45.348642], + [9.235169, 45.344145], + [9.230672, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.348642], + [9.230672, 45.353138], + [9.235169, 45.353138], + [9.235169, 45.348642], + [9.230672, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.353138], + [9.230672, 45.357635], + [9.235169, 45.357635], + [9.235169, 45.353138], + [9.230672, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.357635], + [9.230672, 45.362131], + [9.235169, 45.362131], + [9.235169, 45.357635], + [9.230672, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.362131], + [9.230672, 45.366628], + [9.235169, 45.366628], + [9.235169, 45.362131], + [9.230672, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.366628], + [9.230672, 45.371125], + [9.235169, 45.371125], + [9.235169, 45.366628], + [9.230672, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.371125], + [9.230672, 45.375621], + [9.235169, 45.375621], + [9.235169, 45.371125], + [9.230672, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.375621], + [9.230672, 45.380118], + [9.235169, 45.380118], + [9.235169, 45.375621], + [9.230672, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.380118], + [9.230672, 45.384614], + [9.235169, 45.384614], + [9.235169, 45.380118], + [9.230672, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.384614], + [9.230672, 45.389111], + [9.235169, 45.389111], + [9.235169, 45.384614], + [9.230672, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.389111], + [9.230672, 45.393608], + [9.235169, 45.393608], + [9.235169, 45.389111], + [9.230672, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.393608], + [9.230672, 45.398104], + [9.235169, 45.398104], + [9.235169, 45.393608], + [9.230672, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.398104], + [9.230672, 45.402601], + [9.235169, 45.402601], + [9.235169, 45.398104], + [9.230672, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.402601], + [9.230672, 45.407097], + [9.235169, 45.407097], + [9.235169, 45.402601], + [9.230672, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.407097], + [9.230672, 45.411594], + [9.235169, 45.411594], + [9.235169, 45.407097], + [9.230672, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.411594], + [9.230672, 45.416091], + [9.235169, 45.416091], + [9.235169, 45.411594], + [9.230672, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.416091], + [9.230672, 45.420587], + [9.235169, 45.420587], + [9.235169, 45.416091], + [9.230672, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.420587], + [9.230672, 45.425084], + [9.235169, 45.425084], + [9.235169, 45.420587], + [9.230672, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.425084], + [9.230672, 45.42958], + [9.235169, 45.42958], + [9.235169, 45.425084], + [9.230672, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.42958], + [9.230672, 45.434077], + [9.235169, 45.434077], + [9.235169, 45.42958], + [9.230672, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.434077], + [9.230672, 45.438574], + [9.235169, 45.438574], + [9.235169, 45.434077], + [9.230672, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.438574], + [9.230672, 45.44307], + [9.235169, 45.44307], + [9.235169, 45.438574], + [9.230672, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.44307], + [9.230672, 45.447567], + [9.235169, 45.447567], + [9.235169, 45.44307], + [9.230672, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.447567], + [9.230672, 45.452063], + [9.235169, 45.452063], + [9.235169, 45.447567], + [9.230672, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.452063], + [9.230672, 45.45656], + [9.235169, 45.45656], + [9.235169, 45.452063], + [9.230672, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.45656], + [9.230672, 45.461057], + [9.235169, 45.461057], + [9.235169, 45.45656], + [9.230672, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.461057], + [9.230672, 45.465553], + [9.235169, 45.465553], + [9.235169, 45.461057], + [9.230672, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.465553], + [9.230672, 45.47005], + [9.235169, 45.47005], + [9.235169, 45.465553], + [9.230672, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.47005], + [9.230672, 45.474547], + [9.235169, 45.474547], + [9.235169, 45.47005], + [9.230672, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.474547], + [9.230672, 45.479043], + [9.235169, 45.479043], + [9.235169, 45.474547], + [9.230672, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.479043], + [9.230672, 45.48354], + [9.235169, 45.48354], + [9.235169, 45.479043], + [9.230672, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.48354], + [9.230672, 45.488036], + [9.235169, 45.488036], + [9.235169, 45.48354], + [9.230672, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#cce7ff", + "fill": "#cce7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.488036], + [9.230672, 45.492533], + [9.235169, 45.492533], + [9.235169, 45.488036], + [9.230672, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.492533], + [9.230672, 45.49703], + [9.235169, 45.49703], + [9.235169, 45.492533], + [9.230672, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.49703], + [9.230672, 45.501526], + [9.235169, 45.501526], + [9.235169, 45.49703], + [9.230672, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.501526], + [9.230672, 45.506023], + [9.235169, 45.506023], + [9.235169, 45.501526], + [9.230672, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.506023], + [9.230672, 45.510519], + [9.235169, 45.510519], + [9.235169, 45.506023], + [9.230672, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.510519], + [9.230672, 45.515016], + [9.235169, 45.515016], + [9.235169, 45.510519], + [9.230672, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.515016], + [9.230672, 45.519513], + [9.235169, 45.519513], + [9.235169, 45.515016], + [9.230672, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.519513], + [9.230672, 45.524009], + [9.235169, 45.524009], + [9.235169, 45.519513], + [9.230672, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.524009], + [9.230672, 45.528506], + [9.235169, 45.528506], + [9.235169, 45.524009], + [9.230672, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.528506], + [9.230672, 45.533002], + [9.235169, 45.533002], + [9.235169, 45.528506], + [9.230672, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.533002], + [9.230672, 45.537499], + [9.235169, 45.537499], + [9.235169, 45.533002], + [9.230672, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.537499], + [9.230672, 45.541996], + [9.235169, 45.541996], + [9.235169, 45.537499], + [9.230672, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.541996], + [9.230672, 45.546492], + [9.235169, 45.546492], + [9.235169, 45.541996], + [9.230672, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.546492], + [9.230672, 45.550989], + [9.235169, 45.550989], + [9.235169, 45.546492], + [9.230672, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.550989], + [9.230672, 45.555485], + [9.235169, 45.555485], + [9.235169, 45.550989], + [9.230672, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.555485], + [9.230672, 45.559982], + [9.235169, 45.559982], + [9.235169, 45.555485], + [9.230672, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.559982], + [9.230672, 45.564479], + [9.235169, 45.564479], + [9.235169, 45.559982], + [9.230672, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.564479], + [9.230672, 45.568975], + [9.235169, 45.568975], + [9.235169, 45.564479], + [9.230672, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.568975], + [9.230672, 45.573472], + [9.235169, 45.573472], + [9.235169, 45.568975], + [9.230672, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.573472], + [9.230672, 45.577968], + [9.235169, 45.577968], + [9.235169, 45.573472], + [9.230672, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.577968], + [9.230672, 45.582465], + [9.235169, 45.582465], + [9.235169, 45.577968], + [9.230672, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.582465], + [9.230672, 45.586962], + [9.235169, 45.586962], + [9.235169, 45.582465], + [9.230672, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.586962], + [9.230672, 45.591458], + [9.235169, 45.591458], + [9.235169, 45.586962], + [9.230672, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.591458], + [9.230672, 45.595955], + [9.235169, 45.595955], + [9.235169, 45.591458], + [9.230672, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.595955], + [9.230672, 45.600451], + [9.235169, 45.600451], + [9.235169, 45.595955], + [9.230672, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.600451], + [9.230672, 45.604948], + [9.235169, 45.604948], + [9.235169, 45.600451], + [9.230672, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.604948], + [9.230672, 45.609445], + [9.235169, 45.609445], + [9.235169, 45.604948], + [9.230672, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.609445], + [9.230672, 45.613941], + [9.235169, 45.613941], + [9.235169, 45.609445], + [9.230672, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.613941], + [9.230672, 45.618438], + [9.235169, 45.618438], + [9.235169, 45.613941], + [9.230672, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.618438], + [9.230672, 45.622934], + [9.235169, 45.622934], + [9.235169, 45.618438], + [9.230672, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.622934], + [9.230672, 45.627431], + [9.235169, 45.627431], + [9.235169, 45.622934], + [9.230672, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.627431], + [9.230672, 45.631928], + [9.235169, 45.631928], + [9.235169, 45.627431], + [9.230672, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.631928], + [9.230672, 45.636424], + [9.235169, 45.636424], + [9.235169, 45.631928], + [9.230672, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.339648], + [9.235169, 45.344145], + [9.239665, 45.344145], + [9.239665, 45.339648], + [9.235169, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.344145], + [9.235169, 45.348642], + [9.239665, 45.348642], + [9.239665, 45.344145], + [9.235169, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.348642], + [9.235169, 45.353138], + [9.239665, 45.353138], + [9.239665, 45.348642], + [9.235169, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.353138], + [9.235169, 45.357635], + [9.239665, 45.357635], + [9.239665, 45.353138], + [9.235169, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.357635], + [9.235169, 45.362131], + [9.239665, 45.362131], + [9.239665, 45.357635], + [9.235169, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.362131], + [9.235169, 45.366628], + [9.239665, 45.366628], + [9.239665, 45.362131], + [9.235169, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.366628], + [9.235169, 45.371125], + [9.239665, 45.371125], + [9.239665, 45.366628], + [9.235169, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.371125], + [9.235169, 45.375621], + [9.239665, 45.375621], + [9.239665, 45.371125], + [9.235169, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.375621], + [9.235169, 45.380118], + [9.239665, 45.380118], + [9.239665, 45.375621], + [9.235169, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.380118], + [9.235169, 45.384614], + [9.239665, 45.384614], + [9.239665, 45.380118], + [9.235169, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.384614], + [9.235169, 45.389111], + [9.239665, 45.389111], + [9.239665, 45.384614], + [9.235169, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.389111], + [9.235169, 45.393608], + [9.239665, 45.393608], + [9.239665, 45.389111], + [9.235169, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.393608], + [9.235169, 45.398104], + [9.239665, 45.398104], + [9.239665, 45.393608], + [9.235169, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.398104], + [9.235169, 45.402601], + [9.239665, 45.402601], + [9.239665, 45.398104], + [9.235169, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.402601], + [9.235169, 45.407097], + [9.239665, 45.407097], + [9.239665, 45.402601], + [9.235169, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.407097], + [9.235169, 45.411594], + [9.239665, 45.411594], + [9.239665, 45.407097], + [9.235169, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.411594], + [9.235169, 45.416091], + [9.239665, 45.416091], + [9.239665, 45.411594], + [9.235169, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.416091], + [9.235169, 45.420587], + [9.239665, 45.420587], + [9.239665, 45.416091], + [9.235169, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.420587], + [9.235169, 45.425084], + [9.239665, 45.425084], + [9.239665, 45.420587], + [9.235169, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.425084], + [9.235169, 45.42958], + [9.239665, 45.42958], + [9.239665, 45.425084], + [9.235169, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.42958], + [9.235169, 45.434077], + [9.239665, 45.434077], + [9.239665, 45.42958], + [9.235169, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.434077], + [9.235169, 45.438574], + [9.239665, 45.438574], + [9.239665, 45.434077], + [9.235169, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.438574], + [9.235169, 45.44307], + [9.239665, 45.44307], + [9.239665, 45.438574], + [9.235169, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.44307], + [9.235169, 45.447567], + [9.239665, 45.447567], + [9.239665, 45.44307], + [9.235169, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.447567], + [9.235169, 45.452063], + [9.239665, 45.452063], + [9.239665, 45.447567], + [9.235169, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.452063], + [9.235169, 45.45656], + [9.239665, 45.45656], + [9.239665, 45.452063], + [9.235169, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.45656], + [9.235169, 45.461057], + [9.239665, 45.461057], + [9.239665, 45.45656], + [9.235169, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.461057], + [9.235169, 45.465553], + [9.239665, 45.465553], + [9.239665, 45.461057], + [9.235169, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.465553], + [9.235169, 45.47005], + [9.239665, 45.47005], + [9.239665, 45.465553], + [9.235169, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.47005], + [9.235169, 45.474547], + [9.239665, 45.474547], + [9.239665, 45.47005], + [9.235169, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.474547], + [9.235169, 45.479043], + [9.239665, 45.479043], + [9.239665, 45.474547], + [9.235169, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.479043], + [9.235169, 45.48354], + [9.239665, 45.48354], + [9.239665, 45.479043], + [9.235169, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.48354], + [9.235169, 45.488036], + [9.239665, 45.488036], + [9.239665, 45.48354], + [9.235169, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.488036], + [9.235169, 45.492533], + [9.239665, 45.492533], + [9.239665, 45.488036], + [9.235169, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.492533], + [9.235169, 45.49703], + [9.239665, 45.49703], + [9.239665, 45.492533], + [9.235169, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.49703], + [9.235169, 45.501526], + [9.239665, 45.501526], + [9.239665, 45.49703], + [9.235169, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.501526], + [9.235169, 45.506023], + [9.239665, 45.506023], + [9.239665, 45.501526], + [9.235169, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.506023], + [9.235169, 45.510519], + [9.239665, 45.510519], + [9.239665, 45.506023], + [9.235169, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.510519], + [9.235169, 45.515016], + [9.239665, 45.515016], + [9.239665, 45.510519], + [9.235169, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.515016], + [9.235169, 45.519513], + [9.239665, 45.519513], + [9.239665, 45.515016], + [9.235169, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.519513], + [9.235169, 45.524009], + [9.239665, 45.524009], + [9.239665, 45.519513], + [9.235169, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.524009], + [9.235169, 45.528506], + [9.239665, 45.528506], + [9.239665, 45.524009], + [9.235169, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.528506], + [9.235169, 45.533002], + [9.239665, 45.533002], + [9.239665, 45.528506], + [9.235169, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.533002], + [9.235169, 45.537499], + [9.239665, 45.537499], + [9.239665, 45.533002], + [9.235169, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.537499], + [9.235169, 45.541996], + [9.239665, 45.541996], + [9.239665, 45.537499], + [9.235169, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.541996], + [9.235169, 45.546492], + [9.239665, 45.546492], + [9.239665, 45.541996], + [9.235169, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.546492], + [9.235169, 45.550989], + [9.239665, 45.550989], + [9.239665, 45.546492], + [9.235169, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.550989], + [9.235169, 45.555485], + [9.239665, 45.555485], + [9.239665, 45.550989], + [9.235169, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.555485], + [9.235169, 45.559982], + [9.239665, 45.559982], + [9.239665, 45.555485], + [9.235169, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.559982], + [9.235169, 45.564479], + [9.239665, 45.564479], + [9.239665, 45.559982], + [9.235169, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.564479], + [9.235169, 45.568975], + [9.239665, 45.568975], + [9.239665, 45.564479], + [9.235169, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.568975], + [9.235169, 45.573472], + [9.239665, 45.573472], + [9.239665, 45.568975], + [9.235169, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.573472], + [9.235169, 45.577968], + [9.239665, 45.577968], + [9.239665, 45.573472], + [9.235169, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.577968], + [9.235169, 45.582465], + [9.239665, 45.582465], + [9.239665, 45.577968], + [9.235169, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.582465], + [9.235169, 45.586962], + [9.239665, 45.586962], + [9.239665, 45.582465], + [9.235169, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.586962], + [9.235169, 45.591458], + [9.239665, 45.591458], + [9.239665, 45.586962], + [9.235169, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.591458], + [9.235169, 45.595955], + [9.239665, 45.595955], + [9.239665, 45.591458], + [9.235169, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.595955], + [9.235169, 45.600451], + [9.239665, 45.600451], + [9.239665, 45.595955], + [9.235169, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.600451], + [9.235169, 45.604948], + [9.239665, 45.604948], + [9.239665, 45.600451], + [9.235169, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.604948], + [9.235169, 45.609445], + [9.239665, 45.609445], + [9.239665, 45.604948], + [9.235169, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.609445], + [9.235169, 45.613941], + [9.239665, 45.613941], + [9.239665, 45.609445], + [9.235169, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.613941], + [9.235169, 45.618438], + [9.239665, 45.618438], + [9.239665, 45.613941], + [9.235169, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.618438], + [9.235169, 45.622934], + [9.239665, 45.622934], + [9.239665, 45.618438], + [9.235169, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.622934], + [9.235169, 45.627431], + [9.239665, 45.627431], + [9.239665, 45.622934], + [9.235169, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.627431], + [9.235169, 45.631928], + [9.239665, 45.631928], + [9.239665, 45.627431], + [9.235169, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.631928], + [9.235169, 45.636424], + [9.239665, 45.636424], + [9.239665, 45.631928], + [9.235169, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.339648], + [9.239665, 45.344145], + [9.244162, 45.344145], + [9.244162, 45.339648], + [9.239665, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.344145], + [9.239665, 45.348642], + [9.244162, 45.348642], + [9.244162, 45.344145], + [9.239665, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.348642], + [9.239665, 45.353138], + [9.244162, 45.353138], + [9.244162, 45.348642], + [9.239665, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.353138], + [9.239665, 45.357635], + [9.244162, 45.357635], + [9.244162, 45.353138], + [9.239665, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.357635], + [9.239665, 45.362131], + [9.244162, 45.362131], + [9.244162, 45.357635], + [9.239665, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.362131], + [9.239665, 45.366628], + [9.244162, 45.366628], + [9.244162, 45.362131], + [9.239665, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.366628], + [9.239665, 45.371125], + [9.244162, 45.371125], + [9.244162, 45.366628], + [9.239665, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.371125], + [9.239665, 45.375621], + [9.244162, 45.375621], + [9.244162, 45.371125], + [9.239665, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.375621], + [9.239665, 45.380118], + [9.244162, 45.380118], + [9.244162, 45.375621], + [9.239665, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.380118], + [9.239665, 45.384614], + [9.244162, 45.384614], + [9.244162, 45.380118], + [9.239665, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.384614], + [9.239665, 45.389111], + [9.244162, 45.389111], + [9.244162, 45.384614], + [9.239665, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.389111], + [9.239665, 45.393608], + [9.244162, 45.393608], + [9.244162, 45.389111], + [9.239665, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.393608], + [9.239665, 45.398104], + [9.244162, 45.398104], + [9.244162, 45.393608], + [9.239665, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.398104], + [9.239665, 45.402601], + [9.244162, 45.402601], + [9.244162, 45.398104], + [9.239665, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.402601], + [9.239665, 45.407097], + [9.244162, 45.407097], + [9.244162, 45.402601], + [9.239665, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.407097], + [9.239665, 45.411594], + [9.244162, 45.411594], + [9.244162, 45.407097], + [9.239665, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.411594], + [9.239665, 45.416091], + [9.244162, 45.416091], + [9.244162, 45.411594], + [9.239665, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.416091], + [9.239665, 45.420587], + [9.244162, 45.420587], + [9.244162, 45.416091], + [9.239665, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.420587], + [9.239665, 45.425084], + [9.244162, 45.425084], + [9.244162, 45.420587], + [9.239665, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.425084], + [9.239665, 45.42958], + [9.244162, 45.42958], + [9.244162, 45.425084], + [9.239665, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.42958], + [9.239665, 45.434077], + [9.244162, 45.434077], + [9.244162, 45.42958], + [9.239665, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.434077], + [9.239665, 45.438574], + [9.244162, 45.438574], + [9.244162, 45.434077], + [9.239665, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.438574], + [9.239665, 45.44307], + [9.244162, 45.44307], + [9.244162, 45.438574], + [9.239665, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.44307], + [9.239665, 45.447567], + [9.244162, 45.447567], + [9.244162, 45.44307], + [9.239665, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.447567], + [9.239665, 45.452063], + [9.244162, 45.452063], + [9.244162, 45.447567], + [9.239665, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.452063], + [9.239665, 45.45656], + [9.244162, 45.45656], + [9.244162, 45.452063], + [9.239665, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.45656], + [9.239665, 45.461057], + [9.244162, 45.461057], + [9.244162, 45.45656], + [9.239665, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.461057], + [9.239665, 45.465553], + [9.244162, 45.465553], + [9.244162, 45.461057], + [9.239665, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.465553], + [9.239665, 45.47005], + [9.244162, 45.47005], + [9.244162, 45.465553], + [9.239665, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.47005], + [9.239665, 45.474547], + [9.244162, 45.474547], + [9.244162, 45.47005], + [9.239665, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.474547], + [9.239665, 45.479043], + [9.244162, 45.479043], + [9.244162, 45.474547], + [9.239665, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.479043], + [9.239665, 45.48354], + [9.244162, 45.48354], + [9.244162, 45.479043], + [9.239665, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.48354], + [9.239665, 45.488036], + [9.244162, 45.488036], + [9.244162, 45.48354], + [9.239665, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.488036], + [9.239665, 45.492533], + [9.244162, 45.492533], + [9.244162, 45.488036], + [9.239665, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.492533], + [9.239665, 45.49703], + [9.244162, 45.49703], + [9.244162, 45.492533], + [9.239665, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.49703], + [9.239665, 45.501526], + [9.244162, 45.501526], + [9.244162, 45.49703], + [9.239665, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.501526], + [9.239665, 45.506023], + [9.244162, 45.506023], + [9.244162, 45.501526], + [9.239665, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.506023], + [9.239665, 45.510519], + [9.244162, 45.510519], + [9.244162, 45.506023], + [9.239665, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.510519], + [9.239665, 45.515016], + [9.244162, 45.515016], + [9.244162, 45.510519], + [9.239665, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.515016], + [9.239665, 45.519513], + [9.244162, 45.519513], + [9.244162, 45.515016], + [9.239665, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.519513], + [9.239665, 45.524009], + [9.244162, 45.524009], + [9.244162, 45.519513], + [9.239665, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.524009], + [9.239665, 45.528506], + [9.244162, 45.528506], + [9.244162, 45.524009], + [9.239665, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.528506], + [9.239665, 45.533002], + [9.244162, 45.533002], + [9.244162, 45.528506], + [9.239665, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.533002], + [9.239665, 45.537499], + [9.244162, 45.537499], + [9.244162, 45.533002], + [9.239665, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.537499], + [9.239665, 45.541996], + [9.244162, 45.541996], + [9.244162, 45.537499], + [9.239665, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.541996], + [9.239665, 45.546492], + [9.244162, 45.546492], + [9.244162, 45.541996], + [9.239665, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.546492], + [9.239665, 45.550989], + [9.244162, 45.550989], + [9.244162, 45.546492], + [9.239665, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.550989], + [9.239665, 45.555485], + [9.244162, 45.555485], + [9.244162, 45.550989], + [9.239665, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.555485], + [9.239665, 45.559982], + [9.244162, 45.559982], + [9.244162, 45.555485], + [9.239665, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.559982], + [9.239665, 45.564479], + [9.244162, 45.564479], + [9.244162, 45.559982], + [9.239665, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.564479], + [9.239665, 45.568975], + [9.244162, 45.568975], + [9.244162, 45.564479], + [9.239665, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.568975], + [9.239665, 45.573472], + [9.244162, 45.573472], + [9.244162, 45.568975], + [9.239665, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.573472], + [9.239665, 45.577968], + [9.244162, 45.577968], + [9.244162, 45.573472], + [9.239665, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.577968], + [9.239665, 45.582465], + [9.244162, 45.582465], + [9.244162, 45.577968], + [9.239665, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.582465], + [9.239665, 45.586962], + [9.244162, 45.586962], + [9.244162, 45.582465], + [9.239665, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.586962], + [9.239665, 45.591458], + [9.244162, 45.591458], + [9.244162, 45.586962], + [9.239665, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.591458], + [9.239665, 45.595955], + [9.244162, 45.595955], + [9.244162, 45.591458], + [9.239665, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.595955], + [9.239665, 45.600451], + [9.244162, 45.600451], + [9.244162, 45.595955], + [9.239665, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.600451], + [9.239665, 45.604948], + [9.244162, 45.604948], + [9.244162, 45.600451], + [9.239665, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.604948], + [9.239665, 45.609445], + [9.244162, 45.609445], + [9.244162, 45.604948], + [9.239665, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.609445], + [9.239665, 45.613941], + [9.244162, 45.613941], + [9.244162, 45.609445], + [9.239665, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.613941], + [9.239665, 45.618438], + [9.244162, 45.618438], + [9.244162, 45.613941], + [9.239665, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.618438], + [9.239665, 45.622934], + [9.244162, 45.622934], + [9.244162, 45.618438], + [9.239665, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.622934], + [9.239665, 45.627431], + [9.244162, 45.627431], + [9.244162, 45.622934], + [9.239665, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.627431], + [9.239665, 45.631928], + [9.244162, 45.631928], + [9.244162, 45.627431], + [9.239665, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.631928], + [9.239665, 45.636424], + [9.244162, 45.636424], + [9.244162, 45.631928], + [9.239665, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.339648], + [9.244162, 45.344145], + [9.248659, 45.344145], + [9.248659, 45.339648], + [9.244162, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.344145], + [9.244162, 45.348642], + [9.248659, 45.348642], + [9.248659, 45.344145], + [9.244162, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.348642], + [9.244162, 45.353138], + [9.248659, 45.353138], + [9.248659, 45.348642], + [9.244162, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.353138], + [9.244162, 45.357635], + [9.248659, 45.357635], + [9.248659, 45.353138], + [9.244162, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.357635], + [9.244162, 45.362131], + [9.248659, 45.362131], + [9.248659, 45.357635], + [9.244162, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.362131], + [9.244162, 45.366628], + [9.248659, 45.366628], + [9.248659, 45.362131], + [9.244162, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.366628], + [9.244162, 45.371125], + [9.248659, 45.371125], + [9.248659, 45.366628], + [9.244162, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.371125], + [9.244162, 45.375621], + [9.248659, 45.375621], + [9.248659, 45.371125], + [9.244162, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.375621], + [9.244162, 45.380118], + [9.248659, 45.380118], + [9.248659, 45.375621], + [9.244162, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.380118], + [9.244162, 45.384614], + [9.248659, 45.384614], + [9.248659, 45.380118], + [9.244162, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.384614], + [9.244162, 45.389111], + [9.248659, 45.389111], + [9.248659, 45.384614], + [9.244162, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.389111], + [9.244162, 45.393608], + [9.248659, 45.393608], + [9.248659, 45.389111], + [9.244162, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.393608], + [9.244162, 45.398104], + [9.248659, 45.398104], + [9.248659, 45.393608], + [9.244162, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.398104], + [9.244162, 45.402601], + [9.248659, 45.402601], + [9.248659, 45.398104], + [9.244162, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.402601], + [9.244162, 45.407097], + [9.248659, 45.407097], + [9.248659, 45.402601], + [9.244162, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.407097], + [9.244162, 45.411594], + [9.248659, 45.411594], + [9.248659, 45.407097], + [9.244162, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.411594], + [9.244162, 45.416091], + [9.248659, 45.416091], + [9.248659, 45.411594], + [9.244162, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.416091], + [9.244162, 45.420587], + [9.248659, 45.420587], + [9.248659, 45.416091], + [9.244162, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.420587], + [9.244162, 45.425084], + [9.248659, 45.425084], + [9.248659, 45.420587], + [9.244162, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.425084], + [9.244162, 45.42958], + [9.248659, 45.42958], + [9.248659, 45.425084], + [9.244162, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.42958], + [9.244162, 45.434077], + [9.248659, 45.434077], + [9.248659, 45.42958], + [9.244162, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.434077], + [9.244162, 45.438574], + [9.248659, 45.438574], + [9.248659, 45.434077], + [9.244162, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.438574], + [9.244162, 45.44307], + [9.248659, 45.44307], + [9.248659, 45.438574], + [9.244162, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.44307], + [9.244162, 45.447567], + [9.248659, 45.447567], + [9.248659, 45.44307], + [9.244162, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.447567], + [9.244162, 45.452063], + [9.248659, 45.452063], + [9.248659, 45.447567], + [9.244162, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.452063], + [9.244162, 45.45656], + [9.248659, 45.45656], + [9.248659, 45.452063], + [9.244162, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.45656], + [9.244162, 45.461057], + [9.248659, 45.461057], + [9.248659, 45.45656], + [9.244162, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.461057], + [9.244162, 45.465553], + [9.248659, 45.465553], + [9.248659, 45.461057], + [9.244162, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.465553], + [9.244162, 45.47005], + [9.248659, 45.47005], + [9.248659, 45.465553], + [9.244162, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.47005], + [9.244162, 45.474547], + [9.248659, 45.474547], + [9.248659, 45.47005], + [9.244162, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.474547], + [9.244162, 45.479043], + [9.248659, 45.479043], + [9.248659, 45.474547], + [9.244162, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.479043], + [9.244162, 45.48354], + [9.248659, 45.48354], + [9.248659, 45.479043], + [9.244162, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.48354], + [9.244162, 45.488036], + [9.248659, 45.488036], + [9.248659, 45.48354], + [9.244162, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.488036], + [9.244162, 45.492533], + [9.248659, 45.492533], + [9.248659, 45.488036], + [9.244162, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.492533], + [9.244162, 45.49703], + [9.248659, 45.49703], + [9.248659, 45.492533], + [9.244162, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.49703], + [9.244162, 45.501526], + [9.248659, 45.501526], + [9.248659, 45.49703], + [9.244162, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.501526], + [9.244162, 45.506023], + [9.248659, 45.506023], + [9.248659, 45.501526], + [9.244162, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.506023], + [9.244162, 45.510519], + [9.248659, 45.510519], + [9.248659, 45.506023], + [9.244162, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.510519], + [9.244162, 45.515016], + [9.248659, 45.515016], + [9.248659, 45.510519], + [9.244162, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.515016], + [9.244162, 45.519513], + [9.248659, 45.519513], + [9.248659, 45.515016], + [9.244162, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.519513], + [9.244162, 45.524009], + [9.248659, 45.524009], + [9.248659, 45.519513], + [9.244162, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.524009], + [9.244162, 45.528506], + [9.248659, 45.528506], + [9.248659, 45.524009], + [9.244162, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.528506], + [9.244162, 45.533002], + [9.248659, 45.533002], + [9.248659, 45.528506], + [9.244162, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.533002], + [9.244162, 45.537499], + [9.248659, 45.537499], + [9.248659, 45.533002], + [9.244162, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.537499], + [9.244162, 45.541996], + [9.248659, 45.541996], + [9.248659, 45.537499], + [9.244162, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.541996], + [9.244162, 45.546492], + [9.248659, 45.546492], + [9.248659, 45.541996], + [9.244162, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.546492], + [9.244162, 45.550989], + [9.248659, 45.550989], + [9.248659, 45.546492], + [9.244162, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.550989], + [9.244162, 45.555485], + [9.248659, 45.555485], + [9.248659, 45.550989], + [9.244162, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.555485], + [9.244162, 45.559982], + [9.248659, 45.559982], + [9.248659, 45.555485], + [9.244162, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.559982], + [9.244162, 45.564479], + [9.248659, 45.564479], + [9.248659, 45.559982], + [9.244162, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.564479], + [9.244162, 45.568975], + [9.248659, 45.568975], + [9.248659, 45.564479], + [9.244162, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.568975], + [9.244162, 45.573472], + [9.248659, 45.573472], + [9.248659, 45.568975], + [9.244162, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.573472], + [9.244162, 45.577968], + [9.248659, 45.577968], + [9.248659, 45.573472], + [9.244162, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.577968], + [9.244162, 45.582465], + [9.248659, 45.582465], + [9.248659, 45.577968], + [9.244162, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.582465], + [9.244162, 45.586962], + [9.248659, 45.586962], + [9.248659, 45.582465], + [9.244162, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.586962], + [9.244162, 45.591458], + [9.248659, 45.591458], + [9.248659, 45.586962], + [9.244162, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.591458], + [9.244162, 45.595955], + [9.248659, 45.595955], + [9.248659, 45.591458], + [9.244162, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.595955], + [9.244162, 45.600451], + [9.248659, 45.600451], + [9.248659, 45.595955], + [9.244162, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.600451], + [9.244162, 45.604948], + [9.248659, 45.604948], + [9.248659, 45.600451], + [9.244162, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.604948], + [9.244162, 45.609445], + [9.248659, 45.609445], + [9.248659, 45.604948], + [9.244162, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.609445], + [9.244162, 45.613941], + [9.248659, 45.613941], + [9.248659, 45.609445], + [9.244162, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.613941], + [9.244162, 45.618438], + [9.248659, 45.618438], + [9.248659, 45.613941], + [9.244162, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.618438], + [9.244162, 45.622934], + [9.248659, 45.622934], + [9.248659, 45.618438], + [9.244162, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.622934], + [9.244162, 45.627431], + [9.248659, 45.627431], + [9.248659, 45.622934], + [9.244162, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.627431], + [9.244162, 45.631928], + [9.248659, 45.631928], + [9.248659, 45.627431], + [9.244162, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.631928], + [9.244162, 45.636424], + [9.248659, 45.636424], + [9.248659, 45.631928], + [9.244162, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.339648], + [9.248659, 45.344145], + [9.253155, 45.344145], + [9.253155, 45.339648], + [9.248659, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.344145], + [9.248659, 45.348642], + [9.253155, 45.348642], + [9.253155, 45.344145], + [9.248659, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.348642], + [9.248659, 45.353138], + [9.253155, 45.353138], + [9.253155, 45.348642], + [9.248659, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.353138], + [9.248659, 45.357635], + [9.253155, 45.357635], + [9.253155, 45.353138], + [9.248659, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.357635], + [9.248659, 45.362131], + [9.253155, 45.362131], + [9.253155, 45.357635], + [9.248659, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.362131], + [9.248659, 45.366628], + [9.253155, 45.366628], + [9.253155, 45.362131], + [9.248659, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.366628], + [9.248659, 45.371125], + [9.253155, 45.371125], + [9.253155, 45.366628], + [9.248659, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.371125], + [9.248659, 45.375621], + [9.253155, 45.375621], + [9.253155, 45.371125], + [9.248659, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.375621], + [9.248659, 45.380118], + [9.253155, 45.380118], + [9.253155, 45.375621], + [9.248659, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.380118], + [9.248659, 45.384614], + [9.253155, 45.384614], + [9.253155, 45.380118], + [9.248659, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.384614], + [9.248659, 45.389111], + [9.253155, 45.389111], + [9.253155, 45.384614], + [9.248659, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.389111], + [9.248659, 45.393608], + [9.253155, 45.393608], + [9.253155, 45.389111], + [9.248659, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.393608], + [9.248659, 45.398104], + [9.253155, 45.398104], + [9.253155, 45.393608], + [9.248659, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.398104], + [9.248659, 45.402601], + [9.253155, 45.402601], + [9.253155, 45.398104], + [9.248659, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.402601], + [9.248659, 45.407097], + [9.253155, 45.407097], + [9.253155, 45.402601], + [9.248659, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.407097], + [9.248659, 45.411594], + [9.253155, 45.411594], + [9.253155, 45.407097], + [9.248659, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.411594], + [9.248659, 45.416091], + [9.253155, 45.416091], + [9.253155, 45.411594], + [9.248659, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.416091], + [9.248659, 45.420587], + [9.253155, 45.420587], + [9.253155, 45.416091], + [9.248659, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.420587], + [9.248659, 45.425084], + [9.253155, 45.425084], + [9.253155, 45.420587], + [9.248659, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.425084], + [9.248659, 45.42958], + [9.253155, 45.42958], + [9.253155, 45.425084], + [9.248659, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.42958], + [9.248659, 45.434077], + [9.253155, 45.434077], + [9.253155, 45.42958], + [9.248659, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.434077], + [9.248659, 45.438574], + [9.253155, 45.438574], + [9.253155, 45.434077], + [9.248659, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.438574], + [9.248659, 45.44307], + [9.253155, 45.44307], + [9.253155, 45.438574], + [9.248659, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.44307], + [9.248659, 45.447567], + [9.253155, 45.447567], + [9.253155, 45.44307], + [9.248659, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.447567], + [9.248659, 45.452063], + [9.253155, 45.452063], + [9.253155, 45.447567], + [9.248659, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.452063], + [9.248659, 45.45656], + [9.253155, 45.45656], + [9.253155, 45.452063], + [9.248659, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.45656], + [9.248659, 45.461057], + [9.253155, 45.461057], + [9.253155, 45.45656], + [9.248659, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.461057], + [9.248659, 45.465553], + [9.253155, 45.465553], + [9.253155, 45.461057], + [9.248659, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.465553], + [9.248659, 45.47005], + [9.253155, 45.47005], + [9.253155, 45.465553], + [9.248659, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.47005], + [9.248659, 45.474547], + [9.253155, 45.474547], + [9.253155, 45.47005], + [9.248659, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.474547], + [9.248659, 45.479043], + [9.253155, 45.479043], + [9.253155, 45.474547], + [9.248659, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.479043], + [9.248659, 45.48354], + [9.253155, 45.48354], + [9.253155, 45.479043], + [9.248659, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.48354], + [9.248659, 45.488036], + [9.253155, 45.488036], + [9.253155, 45.48354], + [9.248659, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.488036], + [9.248659, 45.492533], + [9.253155, 45.492533], + [9.253155, 45.488036], + [9.248659, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.492533], + [9.248659, 45.49703], + [9.253155, 45.49703], + [9.253155, 45.492533], + [9.248659, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.49703], + [9.248659, 45.501526], + [9.253155, 45.501526], + [9.253155, 45.49703], + [9.248659, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.501526], + [9.248659, 45.506023], + [9.253155, 45.506023], + [9.253155, 45.501526], + [9.248659, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.506023], + [9.248659, 45.510519], + [9.253155, 45.510519], + [9.253155, 45.506023], + [9.248659, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.510519], + [9.248659, 45.515016], + [9.253155, 45.515016], + [9.253155, 45.510519], + [9.248659, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.515016], + [9.248659, 45.519513], + [9.253155, 45.519513], + [9.253155, 45.515016], + [9.248659, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.519513], + [9.248659, 45.524009], + [9.253155, 45.524009], + [9.253155, 45.519513], + [9.248659, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.524009], + [9.248659, 45.528506], + [9.253155, 45.528506], + [9.253155, 45.524009], + [9.248659, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.528506], + [9.248659, 45.533002], + [9.253155, 45.533002], + [9.253155, 45.528506], + [9.248659, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.533002], + [9.248659, 45.537499], + [9.253155, 45.537499], + [9.253155, 45.533002], + [9.248659, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.537499], + [9.248659, 45.541996], + [9.253155, 45.541996], + [9.253155, 45.537499], + [9.248659, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.541996], + [9.248659, 45.546492], + [9.253155, 45.546492], + [9.253155, 45.541996], + [9.248659, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.546492], + [9.248659, 45.550989], + [9.253155, 45.550989], + [9.253155, 45.546492], + [9.248659, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.550989], + [9.248659, 45.555485], + [9.253155, 45.555485], + [9.253155, 45.550989], + [9.248659, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.555485], + [9.248659, 45.559982], + [9.253155, 45.559982], + [9.253155, 45.555485], + [9.248659, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.559982], + [9.248659, 45.564479], + [9.253155, 45.564479], + [9.253155, 45.559982], + [9.248659, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.564479], + [9.248659, 45.568975], + [9.253155, 45.568975], + [9.253155, 45.564479], + [9.248659, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.568975], + [9.248659, 45.573472], + [9.253155, 45.573472], + [9.253155, 45.568975], + [9.248659, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.573472], + [9.248659, 45.577968], + [9.253155, 45.577968], + [9.253155, 45.573472], + [9.248659, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.577968], + [9.248659, 45.582465], + [9.253155, 45.582465], + [9.253155, 45.577968], + [9.248659, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.582465], + [9.248659, 45.586962], + [9.253155, 45.586962], + [9.253155, 45.582465], + [9.248659, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.586962], + [9.248659, 45.591458], + [9.253155, 45.591458], + [9.253155, 45.586962], + [9.248659, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.591458], + [9.248659, 45.595955], + [9.253155, 45.595955], + [9.253155, 45.591458], + [9.248659, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.595955], + [9.248659, 45.600451], + [9.253155, 45.600451], + [9.253155, 45.595955], + [9.248659, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.600451], + [9.248659, 45.604948], + [9.253155, 45.604948], + [9.253155, 45.600451], + [9.248659, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.604948], + [9.248659, 45.609445], + [9.253155, 45.609445], + [9.253155, 45.604948], + [9.248659, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.609445], + [9.248659, 45.613941], + [9.253155, 45.613941], + [9.253155, 45.609445], + [9.248659, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.613941], + [9.248659, 45.618438], + [9.253155, 45.618438], + [9.253155, 45.613941], + [9.248659, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.618438], + [9.248659, 45.622934], + [9.253155, 45.622934], + [9.253155, 45.618438], + [9.248659, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.622934], + [9.248659, 45.627431], + [9.253155, 45.627431], + [9.253155, 45.622934], + [9.248659, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.627431], + [9.248659, 45.631928], + [9.253155, 45.631928], + [9.253155, 45.627431], + [9.248659, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.631928], + [9.248659, 45.636424], + [9.253155, 45.636424], + [9.253155, 45.631928], + [9.248659, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.339648], + [9.253155, 45.344145], + [9.257652, 45.344145], + [9.257652, 45.339648], + [9.253155, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.344145], + [9.253155, 45.348642], + [9.257652, 45.348642], + [9.257652, 45.344145], + [9.253155, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.348642], + [9.253155, 45.353138], + [9.257652, 45.353138], + [9.257652, 45.348642], + [9.253155, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.353138], + [9.253155, 45.357635], + [9.257652, 45.357635], + [9.257652, 45.353138], + [9.253155, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.357635], + [9.253155, 45.362131], + [9.257652, 45.362131], + [9.257652, 45.357635], + [9.253155, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.362131], + [9.253155, 45.366628], + [9.257652, 45.366628], + [9.257652, 45.362131], + [9.253155, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.366628], + [9.253155, 45.371125], + [9.257652, 45.371125], + [9.257652, 45.366628], + [9.253155, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.371125], + [9.253155, 45.375621], + [9.257652, 45.375621], + [9.257652, 45.371125], + [9.253155, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.375621], + [9.253155, 45.380118], + [9.257652, 45.380118], + [9.257652, 45.375621], + [9.253155, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.380118], + [9.253155, 45.384614], + [9.257652, 45.384614], + [9.257652, 45.380118], + [9.253155, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.384614], + [9.253155, 45.389111], + [9.257652, 45.389111], + [9.257652, 45.384614], + [9.253155, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.389111], + [9.253155, 45.393608], + [9.257652, 45.393608], + [9.257652, 45.389111], + [9.253155, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.393608], + [9.253155, 45.398104], + [9.257652, 45.398104], + [9.257652, 45.393608], + [9.253155, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.398104], + [9.253155, 45.402601], + [9.257652, 45.402601], + [9.257652, 45.398104], + [9.253155, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.402601], + [9.253155, 45.407097], + [9.257652, 45.407097], + [9.257652, 45.402601], + [9.253155, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.407097], + [9.253155, 45.411594], + [9.257652, 45.411594], + [9.257652, 45.407097], + [9.253155, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.411594], + [9.253155, 45.416091], + [9.257652, 45.416091], + [9.257652, 45.411594], + [9.253155, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.416091], + [9.253155, 45.420587], + [9.257652, 45.420587], + [9.257652, 45.416091], + [9.253155, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.420587], + [9.253155, 45.425084], + [9.257652, 45.425084], + [9.257652, 45.420587], + [9.253155, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.425084], + [9.253155, 45.42958], + [9.257652, 45.42958], + [9.257652, 45.425084], + [9.253155, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.42958], + [9.253155, 45.434077], + [9.257652, 45.434077], + [9.257652, 45.42958], + [9.253155, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.434077], + [9.253155, 45.438574], + [9.257652, 45.438574], + [9.257652, 45.434077], + [9.253155, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.438574], + [9.253155, 45.44307], + [9.257652, 45.44307], + [9.257652, 45.438574], + [9.253155, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.44307], + [9.253155, 45.447567], + [9.257652, 45.447567], + [9.257652, 45.44307], + [9.253155, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.447567], + [9.253155, 45.452063], + [9.257652, 45.452063], + [9.257652, 45.447567], + [9.253155, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.452063], + [9.253155, 45.45656], + [9.257652, 45.45656], + [9.257652, 45.452063], + [9.253155, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.45656], + [9.253155, 45.461057], + [9.257652, 45.461057], + [9.257652, 45.45656], + [9.253155, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.461057], + [9.253155, 45.465553], + [9.257652, 45.465553], + [9.257652, 45.461057], + [9.253155, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.465553], + [9.253155, 45.47005], + [9.257652, 45.47005], + [9.257652, 45.465553], + [9.253155, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.47005], + [9.253155, 45.474547], + [9.257652, 45.474547], + [9.257652, 45.47005], + [9.253155, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.474547], + [9.253155, 45.479043], + [9.257652, 45.479043], + [9.257652, 45.474547], + [9.253155, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.479043], + [9.253155, 45.48354], + [9.257652, 45.48354], + [9.257652, 45.479043], + [9.253155, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.48354], + [9.253155, 45.488036], + [9.257652, 45.488036], + [9.257652, 45.48354], + [9.253155, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.488036], + [9.253155, 45.492533], + [9.257652, 45.492533], + [9.257652, 45.488036], + [9.253155, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.492533], + [9.253155, 45.49703], + [9.257652, 45.49703], + [9.257652, 45.492533], + [9.253155, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.49703], + [9.253155, 45.501526], + [9.257652, 45.501526], + [9.257652, 45.49703], + [9.253155, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.501526], + [9.253155, 45.506023], + [9.257652, 45.506023], + [9.257652, 45.501526], + [9.253155, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.506023], + [9.253155, 45.510519], + [9.257652, 45.510519], + [9.257652, 45.506023], + [9.253155, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.510519], + [9.253155, 45.515016], + [9.257652, 45.515016], + [9.257652, 45.510519], + [9.253155, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.515016], + [9.253155, 45.519513], + [9.257652, 45.519513], + [9.257652, 45.515016], + [9.253155, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.519513], + [9.253155, 45.524009], + [9.257652, 45.524009], + [9.257652, 45.519513], + [9.253155, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.524009], + [9.253155, 45.528506], + [9.257652, 45.528506], + [9.257652, 45.524009], + [9.253155, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.528506], + [9.253155, 45.533002], + [9.257652, 45.533002], + [9.257652, 45.528506], + [9.253155, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.533002], + [9.253155, 45.537499], + [9.257652, 45.537499], + [9.257652, 45.533002], + [9.253155, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.537499], + [9.253155, 45.541996], + [9.257652, 45.541996], + [9.257652, 45.537499], + [9.253155, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.541996], + [9.253155, 45.546492], + [9.257652, 45.546492], + [9.257652, 45.541996], + [9.253155, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.546492], + [9.253155, 45.550989], + [9.257652, 45.550989], + [9.257652, 45.546492], + [9.253155, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.550989], + [9.253155, 45.555485], + [9.257652, 45.555485], + [9.257652, 45.550989], + [9.253155, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.555485], + [9.253155, 45.559982], + [9.257652, 45.559982], + [9.257652, 45.555485], + [9.253155, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.559982], + [9.253155, 45.564479], + [9.257652, 45.564479], + [9.257652, 45.559982], + [9.253155, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.564479], + [9.253155, 45.568975], + [9.257652, 45.568975], + [9.257652, 45.564479], + [9.253155, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.568975], + [9.253155, 45.573472], + [9.257652, 45.573472], + [9.257652, 45.568975], + [9.253155, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.573472], + [9.253155, 45.577968], + [9.257652, 45.577968], + [9.257652, 45.573472], + [9.253155, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.577968], + [9.253155, 45.582465], + [9.257652, 45.582465], + [9.257652, 45.577968], + [9.253155, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.582465], + [9.253155, 45.586962], + [9.257652, 45.586962], + [9.257652, 45.582465], + [9.253155, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.586962], + [9.253155, 45.591458], + [9.257652, 45.591458], + [9.257652, 45.586962], + [9.253155, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.591458], + [9.253155, 45.595955], + [9.257652, 45.595955], + [9.257652, 45.591458], + [9.253155, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.595955], + [9.253155, 45.600451], + [9.257652, 45.600451], + [9.257652, 45.595955], + [9.253155, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.600451], + [9.253155, 45.604948], + [9.257652, 45.604948], + [9.257652, 45.600451], + [9.253155, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.604948], + [9.253155, 45.609445], + [9.257652, 45.609445], + [9.257652, 45.604948], + [9.253155, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.609445], + [9.253155, 45.613941], + [9.257652, 45.613941], + [9.257652, 45.609445], + [9.253155, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.613941], + [9.253155, 45.618438], + [9.257652, 45.618438], + [9.257652, 45.613941], + [9.253155, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.618438], + [9.253155, 45.622934], + [9.257652, 45.622934], + [9.257652, 45.618438], + [9.253155, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.622934], + [9.253155, 45.627431], + [9.257652, 45.627431], + [9.257652, 45.622934], + [9.253155, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.627431], + [9.253155, 45.631928], + [9.257652, 45.631928], + [9.257652, 45.627431], + [9.253155, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.631928], + [9.253155, 45.636424], + [9.257652, 45.636424], + [9.257652, 45.631928], + [9.253155, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.339648], + [9.257652, 45.344145], + [9.262148, 45.344145], + [9.262148, 45.339648], + [9.257652, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.344145], + [9.257652, 45.348642], + [9.262148, 45.348642], + [9.262148, 45.344145], + [9.257652, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.348642], + [9.257652, 45.353138], + [9.262148, 45.353138], + [9.262148, 45.348642], + [9.257652, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.353138], + [9.257652, 45.357635], + [9.262148, 45.357635], + [9.262148, 45.353138], + [9.257652, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.357635], + [9.257652, 45.362131], + [9.262148, 45.362131], + [9.262148, 45.357635], + [9.257652, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.362131], + [9.257652, 45.366628], + [9.262148, 45.366628], + [9.262148, 45.362131], + [9.257652, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.366628], + [9.257652, 45.371125], + [9.262148, 45.371125], + [9.262148, 45.366628], + [9.257652, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.371125], + [9.257652, 45.375621], + [9.262148, 45.375621], + [9.262148, 45.371125], + [9.257652, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.375621], + [9.257652, 45.380118], + [9.262148, 45.380118], + [9.262148, 45.375621], + [9.257652, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.380118], + [9.257652, 45.384614], + [9.262148, 45.384614], + [9.262148, 45.380118], + [9.257652, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.384614], + [9.257652, 45.389111], + [9.262148, 45.389111], + [9.262148, 45.384614], + [9.257652, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.389111], + [9.257652, 45.393608], + [9.262148, 45.393608], + [9.262148, 45.389111], + [9.257652, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.393608], + [9.257652, 45.398104], + [9.262148, 45.398104], + [9.262148, 45.393608], + [9.257652, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.398104], + [9.257652, 45.402601], + [9.262148, 45.402601], + [9.262148, 45.398104], + [9.257652, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.402601], + [9.257652, 45.407097], + [9.262148, 45.407097], + [9.262148, 45.402601], + [9.257652, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.407097], + [9.257652, 45.411594], + [9.262148, 45.411594], + [9.262148, 45.407097], + [9.257652, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.411594], + [9.257652, 45.416091], + [9.262148, 45.416091], + [9.262148, 45.411594], + [9.257652, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.416091], + [9.257652, 45.420587], + [9.262148, 45.420587], + [9.262148, 45.416091], + [9.257652, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.420587], + [9.257652, 45.425084], + [9.262148, 45.425084], + [9.262148, 45.420587], + [9.257652, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.425084], + [9.257652, 45.42958], + [9.262148, 45.42958], + [9.262148, 45.425084], + [9.257652, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.42958], + [9.257652, 45.434077], + [9.262148, 45.434077], + [9.262148, 45.42958], + [9.257652, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.434077], + [9.257652, 45.438574], + [9.262148, 45.438574], + [9.262148, 45.434077], + [9.257652, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.438574], + [9.257652, 45.44307], + [9.262148, 45.44307], + [9.262148, 45.438574], + [9.257652, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.44307], + [9.257652, 45.447567], + [9.262148, 45.447567], + [9.262148, 45.44307], + [9.257652, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.447567], + [9.257652, 45.452063], + [9.262148, 45.452063], + [9.262148, 45.447567], + [9.257652, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.452063], + [9.257652, 45.45656], + [9.262148, 45.45656], + [9.262148, 45.452063], + [9.257652, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.45656], + [9.257652, 45.461057], + [9.262148, 45.461057], + [9.262148, 45.45656], + [9.257652, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.461057], + [9.257652, 45.465553], + [9.262148, 45.465553], + [9.262148, 45.461057], + [9.257652, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.465553], + [9.257652, 45.47005], + [9.262148, 45.47005], + [9.262148, 45.465553], + [9.257652, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.47005], + [9.257652, 45.474547], + [9.262148, 45.474547], + [9.262148, 45.47005], + [9.257652, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.474547], + [9.257652, 45.479043], + [9.262148, 45.479043], + [9.262148, 45.474547], + [9.257652, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.479043], + [9.257652, 45.48354], + [9.262148, 45.48354], + [9.262148, 45.479043], + [9.257652, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.48354], + [9.257652, 45.488036], + [9.262148, 45.488036], + [9.262148, 45.48354], + [9.257652, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.488036], + [9.257652, 45.492533], + [9.262148, 45.492533], + [9.262148, 45.488036], + [9.257652, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.492533], + [9.257652, 45.49703], + [9.262148, 45.49703], + [9.262148, 45.492533], + [9.257652, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.49703], + [9.257652, 45.501526], + [9.262148, 45.501526], + [9.262148, 45.49703], + [9.257652, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.501526], + [9.257652, 45.506023], + [9.262148, 45.506023], + [9.262148, 45.501526], + [9.257652, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.506023], + [9.257652, 45.510519], + [9.262148, 45.510519], + [9.262148, 45.506023], + [9.257652, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.510519], + [9.257652, 45.515016], + [9.262148, 45.515016], + [9.262148, 45.510519], + [9.257652, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.515016], + [9.257652, 45.519513], + [9.262148, 45.519513], + [9.262148, 45.515016], + [9.257652, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.519513], + [9.257652, 45.524009], + [9.262148, 45.524009], + [9.262148, 45.519513], + [9.257652, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.524009], + [9.257652, 45.528506], + [9.262148, 45.528506], + [9.262148, 45.524009], + [9.257652, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.528506], + [9.257652, 45.533002], + [9.262148, 45.533002], + [9.262148, 45.528506], + [9.257652, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.533002], + [9.257652, 45.537499], + [9.262148, 45.537499], + [9.262148, 45.533002], + [9.257652, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.537499], + [9.257652, 45.541996], + [9.262148, 45.541996], + [9.262148, 45.537499], + [9.257652, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.541996], + [9.257652, 45.546492], + [9.262148, 45.546492], + [9.262148, 45.541996], + [9.257652, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.546492], + [9.257652, 45.550989], + [9.262148, 45.550989], + [9.262148, 45.546492], + [9.257652, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.550989], + [9.257652, 45.555485], + [9.262148, 45.555485], + [9.262148, 45.550989], + [9.257652, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.555485], + [9.257652, 45.559982], + [9.262148, 45.559982], + [9.262148, 45.555485], + [9.257652, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.559982], + [9.257652, 45.564479], + [9.262148, 45.564479], + [9.262148, 45.559982], + [9.257652, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.564479], + [9.257652, 45.568975], + [9.262148, 45.568975], + [9.262148, 45.564479], + [9.257652, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.568975], + [9.257652, 45.573472], + [9.262148, 45.573472], + [9.262148, 45.568975], + [9.257652, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.573472], + [9.257652, 45.577968], + [9.262148, 45.577968], + [9.262148, 45.573472], + [9.257652, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.577968], + [9.257652, 45.582465], + [9.262148, 45.582465], + [9.262148, 45.577968], + [9.257652, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.582465], + [9.257652, 45.586962], + [9.262148, 45.586962], + [9.262148, 45.582465], + [9.257652, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.586962], + [9.257652, 45.591458], + [9.262148, 45.591458], + [9.262148, 45.586962], + [9.257652, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.591458], + [9.257652, 45.595955], + [9.262148, 45.595955], + [9.262148, 45.591458], + [9.257652, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.595955], + [9.257652, 45.600451], + [9.262148, 45.600451], + [9.262148, 45.595955], + [9.257652, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.600451], + [9.257652, 45.604948], + [9.262148, 45.604948], + [9.262148, 45.600451], + [9.257652, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.604948], + [9.257652, 45.609445], + [9.262148, 45.609445], + [9.262148, 45.604948], + [9.257652, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.609445], + [9.257652, 45.613941], + [9.262148, 45.613941], + [9.262148, 45.609445], + [9.257652, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.613941], + [9.257652, 45.618438], + [9.262148, 45.618438], + [9.262148, 45.613941], + [9.257652, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.618438], + [9.257652, 45.622934], + [9.262148, 45.622934], + [9.262148, 45.618438], + [9.257652, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.622934], + [9.257652, 45.627431], + [9.262148, 45.627431], + [9.262148, 45.622934], + [9.257652, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.627431], + [9.257652, 45.631928], + [9.262148, 45.631928], + [9.262148, 45.627431], + [9.257652, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.631928], + [9.257652, 45.636424], + [9.262148, 45.636424], + [9.262148, 45.631928], + [9.257652, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.339648], + [9.262148, 45.344145], + [9.266645, 45.344145], + [9.266645, 45.339648], + [9.262148, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.344145], + [9.262148, 45.348642], + [9.266645, 45.348642], + [9.266645, 45.344145], + [9.262148, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.348642], + [9.262148, 45.353138], + [9.266645, 45.353138], + [9.266645, 45.348642], + [9.262148, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.353138], + [9.262148, 45.357635], + [9.266645, 45.357635], + [9.266645, 45.353138], + [9.262148, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.357635], + [9.262148, 45.362131], + [9.266645, 45.362131], + [9.266645, 45.357635], + [9.262148, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.362131], + [9.262148, 45.366628], + [9.266645, 45.366628], + [9.266645, 45.362131], + [9.262148, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.366628], + [9.262148, 45.371125], + [9.266645, 45.371125], + [9.266645, 45.366628], + [9.262148, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.371125], + [9.262148, 45.375621], + [9.266645, 45.375621], + [9.266645, 45.371125], + [9.262148, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.375621], + [9.262148, 45.380118], + [9.266645, 45.380118], + [9.266645, 45.375621], + [9.262148, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.380118], + [9.262148, 45.384614], + [9.266645, 45.384614], + [9.266645, 45.380118], + [9.262148, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.384614], + [9.262148, 45.389111], + [9.266645, 45.389111], + [9.266645, 45.384614], + [9.262148, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.389111], + [9.262148, 45.393608], + [9.266645, 45.393608], + [9.266645, 45.389111], + [9.262148, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.393608], + [9.262148, 45.398104], + [9.266645, 45.398104], + [9.266645, 45.393608], + [9.262148, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.398104], + [9.262148, 45.402601], + [9.266645, 45.402601], + [9.266645, 45.398104], + [9.262148, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.402601], + [9.262148, 45.407097], + [9.266645, 45.407097], + [9.266645, 45.402601], + [9.262148, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.407097], + [9.262148, 45.411594], + [9.266645, 45.411594], + [9.266645, 45.407097], + [9.262148, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.411594], + [9.262148, 45.416091], + [9.266645, 45.416091], + [9.266645, 45.411594], + [9.262148, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.416091], + [9.262148, 45.420587], + [9.266645, 45.420587], + [9.266645, 45.416091], + [9.262148, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.420587], + [9.262148, 45.425084], + [9.266645, 45.425084], + [9.266645, 45.420587], + [9.262148, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.425084], + [9.262148, 45.42958], + [9.266645, 45.42958], + [9.266645, 45.425084], + [9.262148, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.42958], + [9.262148, 45.434077], + [9.266645, 45.434077], + [9.266645, 45.42958], + [9.262148, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.434077], + [9.262148, 45.438574], + [9.266645, 45.438574], + [9.266645, 45.434077], + [9.262148, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.438574], + [9.262148, 45.44307], + [9.266645, 45.44307], + [9.266645, 45.438574], + [9.262148, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.44307], + [9.262148, 45.447567], + [9.266645, 45.447567], + [9.266645, 45.44307], + [9.262148, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.447567], + [9.262148, 45.452063], + [9.266645, 45.452063], + [9.266645, 45.447567], + [9.262148, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.452063], + [9.262148, 45.45656], + [9.266645, 45.45656], + [9.266645, 45.452063], + [9.262148, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.45656], + [9.262148, 45.461057], + [9.266645, 45.461057], + [9.266645, 45.45656], + [9.262148, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.461057], + [9.262148, 45.465553], + [9.266645, 45.465553], + [9.266645, 45.461057], + [9.262148, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.465553], + [9.262148, 45.47005], + [9.266645, 45.47005], + [9.266645, 45.465553], + [9.262148, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.47005], + [9.262148, 45.474547], + [9.266645, 45.474547], + [9.266645, 45.47005], + [9.262148, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.474547], + [9.262148, 45.479043], + [9.266645, 45.479043], + [9.266645, 45.474547], + [9.262148, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.479043], + [9.262148, 45.48354], + [9.266645, 45.48354], + [9.266645, 45.479043], + [9.262148, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.48354], + [9.262148, 45.488036], + [9.266645, 45.488036], + [9.266645, 45.48354], + [9.262148, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.488036], + [9.262148, 45.492533], + [9.266645, 45.492533], + [9.266645, 45.488036], + [9.262148, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.492533], + [9.262148, 45.49703], + [9.266645, 45.49703], + [9.266645, 45.492533], + [9.262148, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.49703], + [9.262148, 45.501526], + [9.266645, 45.501526], + [9.266645, 45.49703], + [9.262148, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.501526], + [9.262148, 45.506023], + [9.266645, 45.506023], + [9.266645, 45.501526], + [9.262148, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.506023], + [9.262148, 45.510519], + [9.266645, 45.510519], + [9.266645, 45.506023], + [9.262148, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.510519], + [9.262148, 45.515016], + [9.266645, 45.515016], + [9.266645, 45.510519], + [9.262148, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.515016], + [9.262148, 45.519513], + [9.266645, 45.519513], + [9.266645, 45.515016], + [9.262148, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.519513], + [9.262148, 45.524009], + [9.266645, 45.524009], + [9.266645, 45.519513], + [9.262148, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.524009], + [9.262148, 45.528506], + [9.266645, 45.528506], + [9.266645, 45.524009], + [9.262148, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.528506], + [9.262148, 45.533002], + [9.266645, 45.533002], + [9.266645, 45.528506], + [9.262148, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.533002], + [9.262148, 45.537499], + [9.266645, 45.537499], + [9.266645, 45.533002], + [9.262148, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.537499], + [9.262148, 45.541996], + [9.266645, 45.541996], + [9.266645, 45.537499], + [9.262148, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.541996], + [9.262148, 45.546492], + [9.266645, 45.546492], + [9.266645, 45.541996], + [9.262148, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.546492], + [9.262148, 45.550989], + [9.266645, 45.550989], + [9.266645, 45.546492], + [9.262148, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.550989], + [9.262148, 45.555485], + [9.266645, 45.555485], + [9.266645, 45.550989], + [9.262148, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.555485], + [9.262148, 45.559982], + [9.266645, 45.559982], + [9.266645, 45.555485], + [9.262148, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.559982], + [9.262148, 45.564479], + [9.266645, 45.564479], + [9.266645, 45.559982], + [9.262148, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.564479], + [9.262148, 45.568975], + [9.266645, 45.568975], + [9.266645, 45.564479], + [9.262148, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.568975], + [9.262148, 45.573472], + [9.266645, 45.573472], + [9.266645, 45.568975], + [9.262148, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.573472], + [9.262148, 45.577968], + [9.266645, 45.577968], + [9.266645, 45.573472], + [9.262148, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.577968], + [9.262148, 45.582465], + [9.266645, 45.582465], + [9.266645, 45.577968], + [9.262148, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.582465], + [9.262148, 45.586962], + [9.266645, 45.586962], + [9.266645, 45.582465], + [9.262148, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.586962], + [9.262148, 45.591458], + [9.266645, 45.591458], + [9.266645, 45.586962], + [9.262148, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.591458], + [9.262148, 45.595955], + [9.266645, 45.595955], + [9.266645, 45.591458], + [9.262148, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.595955], + [9.262148, 45.600451], + [9.266645, 45.600451], + [9.266645, 45.595955], + [9.262148, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.600451], + [9.262148, 45.604948], + [9.266645, 45.604948], + [9.266645, 45.600451], + [9.262148, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.604948], + [9.262148, 45.609445], + [9.266645, 45.609445], + [9.266645, 45.604948], + [9.262148, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.609445], + [9.262148, 45.613941], + [9.266645, 45.613941], + [9.266645, 45.609445], + [9.262148, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.613941], + [9.262148, 45.618438], + [9.266645, 45.618438], + [9.266645, 45.613941], + [9.262148, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.618438], + [9.262148, 45.622934], + [9.266645, 45.622934], + [9.266645, 45.618438], + [9.262148, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.622934], + [9.262148, 45.627431], + [9.266645, 45.627431], + [9.266645, 45.622934], + [9.262148, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.627431], + [9.262148, 45.631928], + [9.266645, 45.631928], + [9.266645, 45.627431], + [9.262148, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.631928], + [9.262148, 45.636424], + [9.266645, 45.636424], + [9.266645, 45.631928], + [9.262148, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.339648], + [9.266645, 45.344145], + [9.271142, 45.344145], + [9.271142, 45.339648], + [9.266645, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.344145], + [9.266645, 45.348642], + [9.271142, 45.348642], + [9.271142, 45.344145], + [9.266645, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.348642], + [9.266645, 45.353138], + [9.271142, 45.353138], + [9.271142, 45.348642], + [9.266645, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.353138], + [9.266645, 45.357635], + [9.271142, 45.357635], + [9.271142, 45.353138], + [9.266645, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.357635], + [9.266645, 45.362131], + [9.271142, 45.362131], + [9.271142, 45.357635], + [9.266645, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.362131], + [9.266645, 45.366628], + [9.271142, 45.366628], + [9.271142, 45.362131], + [9.266645, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.366628], + [9.266645, 45.371125], + [9.271142, 45.371125], + [9.271142, 45.366628], + [9.266645, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.371125], + [9.266645, 45.375621], + [9.271142, 45.375621], + [9.271142, 45.371125], + [9.266645, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.375621], + [9.266645, 45.380118], + [9.271142, 45.380118], + [9.271142, 45.375621], + [9.266645, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.380118], + [9.266645, 45.384614], + [9.271142, 45.384614], + [9.271142, 45.380118], + [9.266645, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.384614], + [9.266645, 45.389111], + [9.271142, 45.389111], + [9.271142, 45.384614], + [9.266645, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.389111], + [9.266645, 45.393608], + [9.271142, 45.393608], + [9.271142, 45.389111], + [9.266645, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.393608], + [9.266645, 45.398104], + [9.271142, 45.398104], + [9.271142, 45.393608], + [9.266645, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.398104], + [9.266645, 45.402601], + [9.271142, 45.402601], + [9.271142, 45.398104], + [9.266645, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.402601], + [9.266645, 45.407097], + [9.271142, 45.407097], + [9.271142, 45.402601], + [9.266645, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.407097], + [9.266645, 45.411594], + [9.271142, 45.411594], + [9.271142, 45.407097], + [9.266645, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.411594], + [9.266645, 45.416091], + [9.271142, 45.416091], + [9.271142, 45.411594], + [9.266645, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.416091], + [9.266645, 45.420587], + [9.271142, 45.420587], + [9.271142, 45.416091], + [9.266645, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.420587], + [9.266645, 45.425084], + [9.271142, 45.425084], + [9.271142, 45.420587], + [9.266645, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.425084], + [9.266645, 45.42958], + [9.271142, 45.42958], + [9.271142, 45.425084], + [9.266645, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.42958], + [9.266645, 45.434077], + [9.271142, 45.434077], + [9.271142, 45.42958], + [9.266645, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.434077], + [9.266645, 45.438574], + [9.271142, 45.438574], + [9.271142, 45.434077], + [9.266645, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.438574], + [9.266645, 45.44307], + [9.271142, 45.44307], + [9.271142, 45.438574], + [9.266645, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.44307], + [9.266645, 45.447567], + [9.271142, 45.447567], + [9.271142, 45.44307], + [9.266645, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.447567], + [9.266645, 45.452063], + [9.271142, 45.452063], + [9.271142, 45.447567], + [9.266645, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.452063], + [9.266645, 45.45656], + [9.271142, 45.45656], + [9.271142, 45.452063], + [9.266645, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.45656], + [9.266645, 45.461057], + [9.271142, 45.461057], + [9.271142, 45.45656], + [9.266645, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.461057], + [9.266645, 45.465553], + [9.271142, 45.465553], + [9.271142, 45.461057], + [9.266645, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.465553], + [9.266645, 45.47005], + [9.271142, 45.47005], + [9.271142, 45.465553], + [9.266645, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.47005], + [9.266645, 45.474547], + [9.271142, 45.474547], + [9.271142, 45.47005], + [9.266645, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.474547], + [9.266645, 45.479043], + [9.271142, 45.479043], + [9.271142, 45.474547], + [9.266645, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.479043], + [9.266645, 45.48354], + [9.271142, 45.48354], + [9.271142, 45.479043], + [9.266645, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.48354], + [9.266645, 45.488036], + [9.271142, 45.488036], + [9.271142, 45.48354], + [9.266645, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.488036], + [9.266645, 45.492533], + [9.271142, 45.492533], + [9.271142, 45.488036], + [9.266645, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.492533], + [9.266645, 45.49703], + [9.271142, 45.49703], + [9.271142, 45.492533], + [9.266645, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.49703], + [9.266645, 45.501526], + [9.271142, 45.501526], + [9.271142, 45.49703], + [9.266645, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.501526], + [9.266645, 45.506023], + [9.271142, 45.506023], + [9.271142, 45.501526], + [9.266645, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.506023], + [9.266645, 45.510519], + [9.271142, 45.510519], + [9.271142, 45.506023], + [9.266645, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.510519], + [9.266645, 45.515016], + [9.271142, 45.515016], + [9.271142, 45.510519], + [9.266645, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.515016], + [9.266645, 45.519513], + [9.271142, 45.519513], + [9.271142, 45.515016], + [9.266645, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.519513], + [9.266645, 45.524009], + [9.271142, 45.524009], + [9.271142, 45.519513], + [9.266645, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.524009], + [9.266645, 45.528506], + [9.271142, 45.528506], + [9.271142, 45.524009], + [9.266645, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.528506], + [9.266645, 45.533002], + [9.271142, 45.533002], + [9.271142, 45.528506], + [9.266645, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.533002], + [9.266645, 45.537499], + [9.271142, 45.537499], + [9.271142, 45.533002], + [9.266645, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.537499], + [9.266645, 45.541996], + [9.271142, 45.541996], + [9.271142, 45.537499], + [9.266645, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.541996], + [9.266645, 45.546492], + [9.271142, 45.546492], + [9.271142, 45.541996], + [9.266645, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.546492], + [9.266645, 45.550989], + [9.271142, 45.550989], + [9.271142, 45.546492], + [9.266645, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.550989], + [9.266645, 45.555485], + [9.271142, 45.555485], + [9.271142, 45.550989], + [9.266645, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.555485], + [9.266645, 45.559982], + [9.271142, 45.559982], + [9.271142, 45.555485], + [9.266645, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.559982], + [9.266645, 45.564479], + [9.271142, 45.564479], + [9.271142, 45.559982], + [9.266645, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.564479], + [9.266645, 45.568975], + [9.271142, 45.568975], + [9.271142, 45.564479], + [9.266645, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.568975], + [9.266645, 45.573472], + [9.271142, 45.573472], + [9.271142, 45.568975], + [9.266645, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.573472], + [9.266645, 45.577968], + [9.271142, 45.577968], + [9.271142, 45.573472], + [9.266645, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.577968], + [9.266645, 45.582465], + [9.271142, 45.582465], + [9.271142, 45.577968], + [9.266645, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.582465], + [9.266645, 45.586962], + [9.271142, 45.586962], + [9.271142, 45.582465], + [9.266645, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.586962], + [9.266645, 45.591458], + [9.271142, 45.591458], + [9.271142, 45.586962], + [9.266645, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.591458], + [9.266645, 45.595955], + [9.271142, 45.595955], + [9.271142, 45.591458], + [9.266645, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.595955], + [9.266645, 45.600451], + [9.271142, 45.600451], + [9.271142, 45.595955], + [9.266645, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.600451], + [9.266645, 45.604948], + [9.271142, 45.604948], + [9.271142, 45.600451], + [9.266645, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.604948], + [9.266645, 45.609445], + [9.271142, 45.609445], + [9.271142, 45.604948], + [9.266645, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.609445], + [9.266645, 45.613941], + [9.271142, 45.613941], + [9.271142, 45.609445], + [9.266645, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.613941], + [9.266645, 45.618438], + [9.271142, 45.618438], + [9.271142, 45.613941], + [9.266645, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.618438], + [9.266645, 45.622934], + [9.271142, 45.622934], + [9.271142, 45.618438], + [9.266645, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.622934], + [9.266645, 45.627431], + [9.271142, 45.627431], + [9.271142, 45.622934], + [9.266645, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.627431], + [9.266645, 45.631928], + [9.271142, 45.631928], + [9.271142, 45.627431], + [9.266645, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.631928], + [9.266645, 45.636424], + [9.271142, 45.636424], + [9.271142, 45.631928], + [9.266645, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.339648], + [9.271142, 45.344145], + [9.275638, 45.344145], + [9.275638, 45.339648], + [9.271142, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.344145], + [9.271142, 45.348642], + [9.275638, 45.348642], + [9.275638, 45.344145], + [9.271142, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.348642], + [9.271142, 45.353138], + [9.275638, 45.353138], + [9.275638, 45.348642], + [9.271142, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.353138], + [9.271142, 45.357635], + [9.275638, 45.357635], + [9.275638, 45.353138], + [9.271142, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.357635], + [9.271142, 45.362131], + [9.275638, 45.362131], + [9.275638, 45.357635], + [9.271142, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.362131], + [9.271142, 45.366628], + [9.275638, 45.366628], + [9.275638, 45.362131], + [9.271142, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.366628], + [9.271142, 45.371125], + [9.275638, 45.371125], + [9.275638, 45.366628], + [9.271142, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.371125], + [9.271142, 45.375621], + [9.275638, 45.375621], + [9.275638, 45.371125], + [9.271142, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.375621], + [9.271142, 45.380118], + [9.275638, 45.380118], + [9.275638, 45.375621], + [9.271142, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.380118], + [9.271142, 45.384614], + [9.275638, 45.384614], + [9.275638, 45.380118], + [9.271142, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.384614], + [9.271142, 45.389111], + [9.275638, 45.389111], + [9.275638, 45.384614], + [9.271142, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.389111], + [9.271142, 45.393608], + [9.275638, 45.393608], + [9.275638, 45.389111], + [9.271142, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.393608], + [9.271142, 45.398104], + [9.275638, 45.398104], + [9.275638, 45.393608], + [9.271142, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.398104], + [9.271142, 45.402601], + [9.275638, 45.402601], + [9.275638, 45.398104], + [9.271142, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.402601], + [9.271142, 45.407097], + [9.275638, 45.407097], + [9.275638, 45.402601], + [9.271142, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.407097], + [9.271142, 45.411594], + [9.275638, 45.411594], + [9.275638, 45.407097], + [9.271142, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.411594], + [9.271142, 45.416091], + [9.275638, 45.416091], + [9.275638, 45.411594], + [9.271142, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.416091], + [9.271142, 45.420587], + [9.275638, 45.420587], + [9.275638, 45.416091], + [9.271142, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.420587], + [9.271142, 45.425084], + [9.275638, 45.425084], + [9.275638, 45.420587], + [9.271142, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.425084], + [9.271142, 45.42958], + [9.275638, 45.42958], + [9.275638, 45.425084], + [9.271142, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.42958], + [9.271142, 45.434077], + [9.275638, 45.434077], + [9.275638, 45.42958], + [9.271142, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.434077], + [9.271142, 45.438574], + [9.275638, 45.438574], + [9.275638, 45.434077], + [9.271142, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.438574], + [9.271142, 45.44307], + [9.275638, 45.44307], + [9.275638, 45.438574], + [9.271142, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.44307], + [9.271142, 45.447567], + [9.275638, 45.447567], + [9.275638, 45.44307], + [9.271142, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.447567], + [9.271142, 45.452063], + [9.275638, 45.452063], + [9.275638, 45.447567], + [9.271142, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.452063], + [9.271142, 45.45656], + [9.275638, 45.45656], + [9.275638, 45.452063], + [9.271142, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.45656], + [9.271142, 45.461057], + [9.275638, 45.461057], + [9.275638, 45.45656], + [9.271142, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.461057], + [9.271142, 45.465553], + [9.275638, 45.465553], + [9.275638, 45.461057], + [9.271142, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.465553], + [9.271142, 45.47005], + [9.275638, 45.47005], + [9.275638, 45.465553], + [9.271142, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.47005], + [9.271142, 45.474547], + [9.275638, 45.474547], + [9.275638, 45.47005], + [9.271142, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.474547], + [9.271142, 45.479043], + [9.275638, 45.479043], + [9.275638, 45.474547], + [9.271142, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.479043], + [9.271142, 45.48354], + [9.275638, 45.48354], + [9.275638, 45.479043], + [9.271142, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.48354], + [9.271142, 45.488036], + [9.275638, 45.488036], + [9.275638, 45.48354], + [9.271142, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.488036], + [9.271142, 45.492533], + [9.275638, 45.492533], + [9.275638, 45.488036], + [9.271142, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.492533], + [9.271142, 45.49703], + [9.275638, 45.49703], + [9.275638, 45.492533], + [9.271142, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.49703], + [9.271142, 45.501526], + [9.275638, 45.501526], + [9.275638, 45.49703], + [9.271142, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.501526], + [9.271142, 45.506023], + [9.275638, 45.506023], + [9.275638, 45.501526], + [9.271142, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.506023], + [9.271142, 45.510519], + [9.275638, 45.510519], + [9.275638, 45.506023], + [9.271142, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.510519], + [9.271142, 45.515016], + [9.275638, 45.515016], + [9.275638, 45.510519], + [9.271142, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.515016], + [9.271142, 45.519513], + [9.275638, 45.519513], + [9.275638, 45.515016], + [9.271142, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.519513], + [9.271142, 45.524009], + [9.275638, 45.524009], + [9.275638, 45.519513], + [9.271142, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.524009], + [9.271142, 45.528506], + [9.275638, 45.528506], + [9.275638, 45.524009], + [9.271142, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.528506], + [9.271142, 45.533002], + [9.275638, 45.533002], + [9.275638, 45.528506], + [9.271142, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.533002], + [9.271142, 45.537499], + [9.275638, 45.537499], + [9.275638, 45.533002], + [9.271142, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.537499], + [9.271142, 45.541996], + [9.275638, 45.541996], + [9.275638, 45.537499], + [9.271142, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.541996], + [9.271142, 45.546492], + [9.275638, 45.546492], + [9.275638, 45.541996], + [9.271142, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.546492], + [9.271142, 45.550989], + [9.275638, 45.550989], + [9.275638, 45.546492], + [9.271142, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.550989], + [9.271142, 45.555485], + [9.275638, 45.555485], + [9.275638, 45.550989], + [9.271142, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.555485], + [9.271142, 45.559982], + [9.275638, 45.559982], + [9.275638, 45.555485], + [9.271142, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.559982], + [9.271142, 45.564479], + [9.275638, 45.564479], + [9.275638, 45.559982], + [9.271142, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.564479], + [9.271142, 45.568975], + [9.275638, 45.568975], + [9.275638, 45.564479], + [9.271142, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.568975], + [9.271142, 45.573472], + [9.275638, 45.573472], + [9.275638, 45.568975], + [9.271142, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.573472], + [9.271142, 45.577968], + [9.275638, 45.577968], + [9.275638, 45.573472], + [9.271142, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.577968], + [9.271142, 45.582465], + [9.275638, 45.582465], + [9.275638, 45.577968], + [9.271142, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.582465], + [9.271142, 45.586962], + [9.275638, 45.586962], + [9.275638, 45.582465], + [9.271142, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.586962], + [9.271142, 45.591458], + [9.275638, 45.591458], + [9.275638, 45.586962], + [9.271142, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.591458], + [9.271142, 45.595955], + [9.275638, 45.595955], + [9.275638, 45.591458], + [9.271142, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.595955], + [9.271142, 45.600451], + [9.275638, 45.600451], + [9.275638, 45.595955], + [9.271142, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.600451], + [9.271142, 45.604948], + [9.275638, 45.604948], + [9.275638, 45.600451], + [9.271142, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.604948], + [9.271142, 45.609445], + [9.275638, 45.609445], + [9.275638, 45.604948], + [9.271142, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.609445], + [9.271142, 45.613941], + [9.275638, 45.613941], + [9.275638, 45.609445], + [9.271142, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.613941], + [9.271142, 45.618438], + [9.275638, 45.618438], + [9.275638, 45.613941], + [9.271142, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.618438], + [9.271142, 45.622934], + [9.275638, 45.622934], + [9.275638, 45.618438], + [9.271142, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.622934], + [9.271142, 45.627431], + [9.275638, 45.627431], + [9.275638, 45.622934], + [9.271142, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.627431], + [9.271142, 45.631928], + [9.275638, 45.631928], + [9.275638, 45.627431], + [9.271142, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.631928], + [9.271142, 45.636424], + [9.275638, 45.636424], + [9.275638, 45.631928], + [9.271142, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.339648], + [9.275638, 45.344145], + [9.280135, 45.344145], + [9.280135, 45.339648], + [9.275638, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.344145], + [9.275638, 45.348642], + [9.280135, 45.348642], + [9.280135, 45.344145], + [9.275638, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.348642], + [9.275638, 45.353138], + [9.280135, 45.353138], + [9.280135, 45.348642], + [9.275638, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.353138], + [9.275638, 45.357635], + [9.280135, 45.357635], + [9.280135, 45.353138], + [9.275638, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.357635], + [9.275638, 45.362131], + [9.280135, 45.362131], + [9.280135, 45.357635], + [9.275638, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.362131], + [9.275638, 45.366628], + [9.280135, 45.366628], + [9.280135, 45.362131], + [9.275638, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.366628], + [9.275638, 45.371125], + [9.280135, 45.371125], + [9.280135, 45.366628], + [9.275638, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.371125], + [9.275638, 45.375621], + [9.280135, 45.375621], + [9.280135, 45.371125], + [9.275638, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.375621], + [9.275638, 45.380118], + [9.280135, 45.380118], + [9.280135, 45.375621], + [9.275638, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.380118], + [9.275638, 45.384614], + [9.280135, 45.384614], + [9.280135, 45.380118], + [9.275638, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.384614], + [9.275638, 45.389111], + [9.280135, 45.389111], + [9.280135, 45.384614], + [9.275638, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.389111], + [9.275638, 45.393608], + [9.280135, 45.393608], + [9.280135, 45.389111], + [9.275638, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.393608], + [9.275638, 45.398104], + [9.280135, 45.398104], + [9.280135, 45.393608], + [9.275638, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.398104], + [9.275638, 45.402601], + [9.280135, 45.402601], + [9.280135, 45.398104], + [9.275638, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.402601], + [9.275638, 45.407097], + [9.280135, 45.407097], + [9.280135, 45.402601], + [9.275638, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.407097], + [9.275638, 45.411594], + [9.280135, 45.411594], + [9.280135, 45.407097], + [9.275638, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.411594], + [9.275638, 45.416091], + [9.280135, 45.416091], + [9.280135, 45.411594], + [9.275638, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.416091], + [9.275638, 45.420587], + [9.280135, 45.420587], + [9.280135, 45.416091], + [9.275638, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.420587], + [9.275638, 45.425084], + [9.280135, 45.425084], + [9.280135, 45.420587], + [9.275638, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.425084], + [9.275638, 45.42958], + [9.280135, 45.42958], + [9.280135, 45.425084], + [9.275638, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.42958], + [9.275638, 45.434077], + [9.280135, 45.434077], + [9.280135, 45.42958], + [9.275638, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.434077], + [9.275638, 45.438574], + [9.280135, 45.438574], + [9.280135, 45.434077], + [9.275638, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.438574], + [9.275638, 45.44307], + [9.280135, 45.44307], + [9.280135, 45.438574], + [9.275638, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.44307], + [9.275638, 45.447567], + [9.280135, 45.447567], + [9.280135, 45.44307], + [9.275638, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.447567], + [9.275638, 45.452063], + [9.280135, 45.452063], + [9.280135, 45.447567], + [9.275638, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.452063], + [9.275638, 45.45656], + [9.280135, 45.45656], + [9.280135, 45.452063], + [9.275638, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.45656], + [9.275638, 45.461057], + [9.280135, 45.461057], + [9.280135, 45.45656], + [9.275638, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.461057], + [9.275638, 45.465553], + [9.280135, 45.465553], + [9.280135, 45.461057], + [9.275638, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.465553], + [9.275638, 45.47005], + [9.280135, 45.47005], + [9.280135, 45.465553], + [9.275638, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.47005], + [9.275638, 45.474547], + [9.280135, 45.474547], + [9.280135, 45.47005], + [9.275638, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.474547], + [9.275638, 45.479043], + [9.280135, 45.479043], + [9.280135, 45.474547], + [9.275638, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.479043], + [9.275638, 45.48354], + [9.280135, 45.48354], + [9.280135, 45.479043], + [9.275638, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.48354], + [9.275638, 45.488036], + [9.280135, 45.488036], + [9.280135, 45.48354], + [9.275638, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.488036], + [9.275638, 45.492533], + [9.280135, 45.492533], + [9.280135, 45.488036], + [9.275638, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.492533], + [9.275638, 45.49703], + [9.280135, 45.49703], + [9.280135, 45.492533], + [9.275638, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.49703], + [9.275638, 45.501526], + [9.280135, 45.501526], + [9.280135, 45.49703], + [9.275638, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.501526], + [9.275638, 45.506023], + [9.280135, 45.506023], + [9.280135, 45.501526], + [9.275638, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.506023], + [9.275638, 45.510519], + [9.280135, 45.510519], + [9.280135, 45.506023], + [9.275638, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.510519], + [9.275638, 45.515016], + [9.280135, 45.515016], + [9.280135, 45.510519], + [9.275638, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.515016], + [9.275638, 45.519513], + [9.280135, 45.519513], + [9.280135, 45.515016], + [9.275638, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.519513], + [9.275638, 45.524009], + [9.280135, 45.524009], + [9.280135, 45.519513], + [9.275638, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.524009], + [9.275638, 45.528506], + [9.280135, 45.528506], + [9.280135, 45.524009], + [9.275638, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.528506], + [9.275638, 45.533002], + [9.280135, 45.533002], + [9.280135, 45.528506], + [9.275638, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.533002], + [9.275638, 45.537499], + [9.280135, 45.537499], + [9.280135, 45.533002], + [9.275638, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.537499], + [9.275638, 45.541996], + [9.280135, 45.541996], + [9.280135, 45.537499], + [9.275638, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.541996], + [9.275638, 45.546492], + [9.280135, 45.546492], + [9.280135, 45.541996], + [9.275638, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.546492], + [9.275638, 45.550989], + [9.280135, 45.550989], + [9.280135, 45.546492], + [9.275638, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.550989], + [9.275638, 45.555485], + [9.280135, 45.555485], + [9.280135, 45.550989], + [9.275638, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.555485], + [9.275638, 45.559982], + [9.280135, 45.559982], + [9.280135, 45.555485], + [9.275638, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.559982], + [9.275638, 45.564479], + [9.280135, 45.564479], + [9.280135, 45.559982], + [9.275638, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.564479], + [9.275638, 45.568975], + [9.280135, 45.568975], + [9.280135, 45.564479], + [9.275638, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.568975], + [9.275638, 45.573472], + [9.280135, 45.573472], + [9.280135, 45.568975], + [9.275638, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.573472], + [9.275638, 45.577968], + [9.280135, 45.577968], + [9.280135, 45.573472], + [9.275638, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.577968], + [9.275638, 45.582465], + [9.280135, 45.582465], + [9.280135, 45.577968], + [9.275638, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.582465], + [9.275638, 45.586962], + [9.280135, 45.586962], + [9.280135, 45.582465], + [9.275638, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.586962], + [9.275638, 45.591458], + [9.280135, 45.591458], + [9.280135, 45.586962], + [9.275638, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.591458], + [9.275638, 45.595955], + [9.280135, 45.595955], + [9.280135, 45.591458], + [9.275638, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.595955], + [9.275638, 45.600451], + [9.280135, 45.600451], + [9.280135, 45.595955], + [9.275638, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.600451], + [9.275638, 45.604948], + [9.280135, 45.604948], + [9.280135, 45.600451], + [9.275638, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.604948], + [9.275638, 45.609445], + [9.280135, 45.609445], + [9.280135, 45.604948], + [9.275638, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.609445], + [9.275638, 45.613941], + [9.280135, 45.613941], + [9.280135, 45.609445], + [9.275638, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.613941], + [9.275638, 45.618438], + [9.280135, 45.618438], + [9.280135, 45.613941], + [9.275638, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.618438], + [9.275638, 45.622934], + [9.280135, 45.622934], + [9.280135, 45.618438], + [9.275638, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.622934], + [9.275638, 45.627431], + [9.280135, 45.627431], + [9.280135, 45.622934], + [9.275638, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.627431], + [9.275638, 45.631928], + [9.280135, 45.631928], + [9.280135, 45.627431], + [9.275638, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.631928], + [9.275638, 45.636424], + [9.280135, 45.636424], + [9.280135, 45.631928], + [9.275638, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.339648], + [9.280135, 45.344145], + [9.284631, 45.344145], + [9.284631, 45.339648], + [9.280135, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.344145], + [9.280135, 45.348642], + [9.284631, 45.348642], + [9.284631, 45.344145], + [9.280135, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.348642], + [9.280135, 45.353138], + [9.284631, 45.353138], + [9.284631, 45.348642], + [9.280135, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.353138], + [9.280135, 45.357635], + [9.284631, 45.357635], + [9.284631, 45.353138], + [9.280135, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.357635], + [9.280135, 45.362131], + [9.284631, 45.362131], + [9.284631, 45.357635], + [9.280135, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.362131], + [9.280135, 45.366628], + [9.284631, 45.366628], + [9.284631, 45.362131], + [9.280135, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.366628], + [9.280135, 45.371125], + [9.284631, 45.371125], + [9.284631, 45.366628], + [9.280135, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.371125], + [9.280135, 45.375621], + [9.284631, 45.375621], + [9.284631, 45.371125], + [9.280135, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.375621], + [9.280135, 45.380118], + [9.284631, 45.380118], + [9.284631, 45.375621], + [9.280135, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.380118], + [9.280135, 45.384614], + [9.284631, 45.384614], + [9.284631, 45.380118], + [9.280135, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.384614], + [9.280135, 45.389111], + [9.284631, 45.389111], + [9.284631, 45.384614], + [9.280135, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.389111], + [9.280135, 45.393608], + [9.284631, 45.393608], + [9.284631, 45.389111], + [9.280135, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.393608], + [9.280135, 45.398104], + [9.284631, 45.398104], + [9.284631, 45.393608], + [9.280135, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.398104], + [9.280135, 45.402601], + [9.284631, 45.402601], + [9.284631, 45.398104], + [9.280135, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.402601], + [9.280135, 45.407097], + [9.284631, 45.407097], + [9.284631, 45.402601], + [9.280135, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.407097], + [9.280135, 45.411594], + [9.284631, 45.411594], + [9.284631, 45.407097], + [9.280135, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.411594], + [9.280135, 45.416091], + [9.284631, 45.416091], + [9.284631, 45.411594], + [9.280135, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.416091], + [9.280135, 45.420587], + [9.284631, 45.420587], + [9.284631, 45.416091], + [9.280135, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.420587], + [9.280135, 45.425084], + [9.284631, 45.425084], + [9.284631, 45.420587], + [9.280135, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.425084], + [9.280135, 45.42958], + [9.284631, 45.42958], + [9.284631, 45.425084], + [9.280135, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.42958], + [9.280135, 45.434077], + [9.284631, 45.434077], + [9.284631, 45.42958], + [9.280135, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.434077], + [9.280135, 45.438574], + [9.284631, 45.438574], + [9.284631, 45.434077], + [9.280135, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.438574], + [9.280135, 45.44307], + [9.284631, 45.44307], + [9.284631, 45.438574], + [9.280135, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.44307], + [9.280135, 45.447567], + [9.284631, 45.447567], + [9.284631, 45.44307], + [9.280135, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.447567], + [9.280135, 45.452063], + [9.284631, 45.452063], + [9.284631, 45.447567], + [9.280135, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.452063], + [9.280135, 45.45656], + [9.284631, 45.45656], + [9.284631, 45.452063], + [9.280135, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.45656], + [9.280135, 45.461057], + [9.284631, 45.461057], + [9.284631, 45.45656], + [9.280135, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.461057], + [9.280135, 45.465553], + [9.284631, 45.465553], + [9.284631, 45.461057], + [9.280135, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.465553], + [9.280135, 45.47005], + [9.284631, 45.47005], + [9.284631, 45.465553], + [9.280135, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.47005], + [9.280135, 45.474547], + [9.284631, 45.474547], + [9.284631, 45.47005], + [9.280135, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.474547], + [9.280135, 45.479043], + [9.284631, 45.479043], + [9.284631, 45.474547], + [9.280135, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.479043], + [9.280135, 45.48354], + [9.284631, 45.48354], + [9.284631, 45.479043], + [9.280135, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.48354], + [9.280135, 45.488036], + [9.284631, 45.488036], + [9.284631, 45.48354], + [9.280135, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.488036], + [9.280135, 45.492533], + [9.284631, 45.492533], + [9.284631, 45.488036], + [9.280135, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.492533], + [9.280135, 45.49703], + [9.284631, 45.49703], + [9.284631, 45.492533], + [9.280135, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.49703], + [9.280135, 45.501526], + [9.284631, 45.501526], + [9.284631, 45.49703], + [9.280135, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.501526], + [9.280135, 45.506023], + [9.284631, 45.506023], + [9.284631, 45.501526], + [9.280135, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.506023], + [9.280135, 45.510519], + [9.284631, 45.510519], + [9.284631, 45.506023], + [9.280135, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.510519], + [9.280135, 45.515016], + [9.284631, 45.515016], + [9.284631, 45.510519], + [9.280135, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.515016], + [9.280135, 45.519513], + [9.284631, 45.519513], + [9.284631, 45.515016], + [9.280135, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.519513], + [9.280135, 45.524009], + [9.284631, 45.524009], + [9.284631, 45.519513], + [9.280135, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.524009], + [9.280135, 45.528506], + [9.284631, 45.528506], + [9.284631, 45.524009], + [9.280135, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.528506], + [9.280135, 45.533002], + [9.284631, 45.533002], + [9.284631, 45.528506], + [9.280135, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.533002], + [9.280135, 45.537499], + [9.284631, 45.537499], + [9.284631, 45.533002], + [9.280135, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.537499], + [9.280135, 45.541996], + [9.284631, 45.541996], + [9.284631, 45.537499], + [9.280135, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.541996], + [9.280135, 45.546492], + [9.284631, 45.546492], + [9.284631, 45.541996], + [9.280135, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.546492], + [9.280135, 45.550989], + [9.284631, 45.550989], + [9.284631, 45.546492], + [9.280135, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.550989], + [9.280135, 45.555485], + [9.284631, 45.555485], + [9.284631, 45.550989], + [9.280135, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.555485], + [9.280135, 45.559982], + [9.284631, 45.559982], + [9.284631, 45.555485], + [9.280135, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.559982], + [9.280135, 45.564479], + [9.284631, 45.564479], + [9.284631, 45.559982], + [9.280135, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.564479], + [9.280135, 45.568975], + [9.284631, 45.568975], + [9.284631, 45.564479], + [9.280135, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.568975], + [9.280135, 45.573472], + [9.284631, 45.573472], + [9.284631, 45.568975], + [9.280135, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.573472], + [9.280135, 45.577968], + [9.284631, 45.577968], + [9.284631, 45.573472], + [9.280135, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.577968], + [9.280135, 45.582465], + [9.284631, 45.582465], + [9.284631, 45.577968], + [9.280135, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.582465], + [9.280135, 45.586962], + [9.284631, 45.586962], + [9.284631, 45.582465], + [9.280135, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.586962], + [9.280135, 45.591458], + [9.284631, 45.591458], + [9.284631, 45.586962], + [9.280135, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.591458], + [9.280135, 45.595955], + [9.284631, 45.595955], + [9.284631, 45.591458], + [9.280135, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.595955], + [9.280135, 45.600451], + [9.284631, 45.600451], + [9.284631, 45.595955], + [9.280135, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.600451], + [9.280135, 45.604948], + [9.284631, 45.604948], + [9.284631, 45.600451], + [9.280135, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.604948], + [9.280135, 45.609445], + [9.284631, 45.609445], + [9.284631, 45.604948], + [9.280135, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.609445], + [9.280135, 45.613941], + [9.284631, 45.613941], + [9.284631, 45.609445], + [9.280135, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.613941], + [9.280135, 45.618438], + [9.284631, 45.618438], + [9.284631, 45.613941], + [9.280135, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.618438], + [9.280135, 45.622934], + [9.284631, 45.622934], + [9.284631, 45.618438], + [9.280135, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.622934], + [9.280135, 45.627431], + [9.284631, 45.627431], + [9.284631, 45.622934], + [9.280135, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.627431], + [9.280135, 45.631928], + [9.284631, 45.631928], + [9.284631, 45.627431], + [9.280135, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.631928], + [9.280135, 45.636424], + [9.284631, 45.636424], + [9.284631, 45.631928], + [9.280135, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.339648], + [9.284631, 45.344145], + [9.289128, 45.344145], + [9.289128, 45.339648], + [9.284631, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.344145], + [9.284631, 45.348642], + [9.289128, 45.348642], + [9.289128, 45.344145], + [9.284631, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.348642], + [9.284631, 45.353138], + [9.289128, 45.353138], + [9.289128, 45.348642], + [9.284631, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.353138], + [9.284631, 45.357635], + [9.289128, 45.357635], + [9.289128, 45.353138], + [9.284631, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.357635], + [9.284631, 45.362131], + [9.289128, 45.362131], + [9.289128, 45.357635], + [9.284631, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.362131], + [9.284631, 45.366628], + [9.289128, 45.366628], + [9.289128, 45.362131], + [9.284631, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.366628], + [9.284631, 45.371125], + [9.289128, 45.371125], + [9.289128, 45.366628], + [9.284631, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.371125], + [9.284631, 45.375621], + [9.289128, 45.375621], + [9.289128, 45.371125], + [9.284631, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.375621], + [9.284631, 45.380118], + [9.289128, 45.380118], + [9.289128, 45.375621], + [9.284631, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.380118], + [9.284631, 45.384614], + [9.289128, 45.384614], + [9.289128, 45.380118], + [9.284631, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.384614], + [9.284631, 45.389111], + [9.289128, 45.389111], + [9.289128, 45.384614], + [9.284631, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.389111], + [9.284631, 45.393608], + [9.289128, 45.393608], + [9.289128, 45.389111], + [9.284631, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.393608], + [9.284631, 45.398104], + [9.289128, 45.398104], + [9.289128, 45.393608], + [9.284631, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.398104], + [9.284631, 45.402601], + [9.289128, 45.402601], + [9.289128, 45.398104], + [9.284631, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.402601], + [9.284631, 45.407097], + [9.289128, 45.407097], + [9.289128, 45.402601], + [9.284631, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.407097], + [9.284631, 45.411594], + [9.289128, 45.411594], + [9.289128, 45.407097], + [9.284631, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.411594], + [9.284631, 45.416091], + [9.289128, 45.416091], + [9.289128, 45.411594], + [9.284631, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.416091], + [9.284631, 45.420587], + [9.289128, 45.420587], + [9.289128, 45.416091], + [9.284631, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.420587], + [9.284631, 45.425084], + [9.289128, 45.425084], + [9.289128, 45.420587], + [9.284631, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.425084], + [9.284631, 45.42958], + [9.289128, 45.42958], + [9.289128, 45.425084], + [9.284631, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.42958], + [9.284631, 45.434077], + [9.289128, 45.434077], + [9.289128, 45.42958], + [9.284631, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.434077], + [9.284631, 45.438574], + [9.289128, 45.438574], + [9.289128, 45.434077], + [9.284631, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.438574], + [9.284631, 45.44307], + [9.289128, 45.44307], + [9.289128, 45.438574], + [9.284631, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.44307], + [9.284631, 45.447567], + [9.289128, 45.447567], + [9.289128, 45.44307], + [9.284631, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.447567], + [9.284631, 45.452063], + [9.289128, 45.452063], + [9.289128, 45.447567], + [9.284631, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.452063], + [9.284631, 45.45656], + [9.289128, 45.45656], + [9.289128, 45.452063], + [9.284631, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.45656], + [9.284631, 45.461057], + [9.289128, 45.461057], + [9.289128, 45.45656], + [9.284631, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.461057], + [9.284631, 45.465553], + [9.289128, 45.465553], + [9.289128, 45.461057], + [9.284631, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.465553], + [9.284631, 45.47005], + [9.289128, 45.47005], + [9.289128, 45.465553], + [9.284631, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.47005], + [9.284631, 45.474547], + [9.289128, 45.474547], + [9.289128, 45.47005], + [9.284631, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.474547], + [9.284631, 45.479043], + [9.289128, 45.479043], + [9.289128, 45.474547], + [9.284631, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.479043], + [9.284631, 45.48354], + [9.289128, 45.48354], + [9.289128, 45.479043], + [9.284631, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.48354], + [9.284631, 45.488036], + [9.289128, 45.488036], + [9.289128, 45.48354], + [9.284631, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.488036], + [9.284631, 45.492533], + [9.289128, 45.492533], + [9.289128, 45.488036], + [9.284631, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.492533], + [9.284631, 45.49703], + [9.289128, 45.49703], + [9.289128, 45.492533], + [9.284631, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.49703], + [9.284631, 45.501526], + [9.289128, 45.501526], + [9.289128, 45.49703], + [9.284631, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.501526], + [9.284631, 45.506023], + [9.289128, 45.506023], + [9.289128, 45.501526], + [9.284631, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.506023], + [9.284631, 45.510519], + [9.289128, 45.510519], + [9.289128, 45.506023], + [9.284631, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.510519], + [9.284631, 45.515016], + [9.289128, 45.515016], + [9.289128, 45.510519], + [9.284631, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.515016], + [9.284631, 45.519513], + [9.289128, 45.519513], + [9.289128, 45.515016], + [9.284631, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.519513], + [9.284631, 45.524009], + [9.289128, 45.524009], + [9.289128, 45.519513], + [9.284631, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.524009], + [9.284631, 45.528506], + [9.289128, 45.528506], + [9.289128, 45.524009], + [9.284631, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.528506], + [9.284631, 45.533002], + [9.289128, 45.533002], + [9.289128, 45.528506], + [9.284631, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.533002], + [9.284631, 45.537499], + [9.289128, 45.537499], + [9.289128, 45.533002], + [9.284631, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.537499], + [9.284631, 45.541996], + [9.289128, 45.541996], + [9.289128, 45.537499], + [9.284631, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.541996], + [9.284631, 45.546492], + [9.289128, 45.546492], + [9.289128, 45.541996], + [9.284631, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.546492], + [9.284631, 45.550989], + [9.289128, 45.550989], + [9.289128, 45.546492], + [9.284631, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.550989], + [9.284631, 45.555485], + [9.289128, 45.555485], + [9.289128, 45.550989], + [9.284631, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.555485], + [9.284631, 45.559982], + [9.289128, 45.559982], + [9.289128, 45.555485], + [9.284631, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.559982], + [9.284631, 45.564479], + [9.289128, 45.564479], + [9.289128, 45.559982], + [9.284631, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.564479], + [9.284631, 45.568975], + [9.289128, 45.568975], + [9.289128, 45.564479], + [9.284631, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.568975], + [9.284631, 45.573472], + [9.289128, 45.573472], + [9.289128, 45.568975], + [9.284631, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.573472], + [9.284631, 45.577968], + [9.289128, 45.577968], + [9.289128, 45.573472], + [9.284631, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.577968], + [9.284631, 45.582465], + [9.289128, 45.582465], + [9.289128, 45.577968], + [9.284631, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.582465], + [9.284631, 45.586962], + [9.289128, 45.586962], + [9.289128, 45.582465], + [9.284631, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.586962], + [9.284631, 45.591458], + [9.289128, 45.591458], + [9.289128, 45.586962], + [9.284631, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.591458], + [9.284631, 45.595955], + [9.289128, 45.595955], + [9.289128, 45.591458], + [9.284631, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.595955], + [9.284631, 45.600451], + [9.289128, 45.600451], + [9.289128, 45.595955], + [9.284631, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.600451], + [9.284631, 45.604948], + [9.289128, 45.604948], + [9.289128, 45.600451], + [9.284631, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.604948], + [9.284631, 45.609445], + [9.289128, 45.609445], + [9.289128, 45.604948], + [9.284631, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.609445], + [9.284631, 45.613941], + [9.289128, 45.613941], + [9.289128, 45.609445], + [9.284631, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.613941], + [9.284631, 45.618438], + [9.289128, 45.618438], + [9.289128, 45.613941], + [9.284631, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.618438], + [9.284631, 45.622934], + [9.289128, 45.622934], + [9.289128, 45.618438], + [9.284631, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.622934], + [9.284631, 45.627431], + [9.289128, 45.627431], + [9.289128, 45.622934], + [9.284631, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.627431], + [9.284631, 45.631928], + [9.289128, 45.631928], + [9.289128, 45.627431], + [9.284631, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.631928], + [9.284631, 45.636424], + [9.289128, 45.636424], + [9.289128, 45.631928], + [9.284631, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.339648], + [9.289128, 45.344145], + [9.293625, 45.344145], + [9.293625, 45.339648], + [9.289128, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.344145], + [9.289128, 45.348642], + [9.293625, 45.348642], + [9.293625, 45.344145], + [9.289128, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.348642], + [9.289128, 45.353138], + [9.293625, 45.353138], + [9.293625, 45.348642], + [9.289128, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.353138], + [9.289128, 45.357635], + [9.293625, 45.357635], + [9.293625, 45.353138], + [9.289128, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.357635], + [9.289128, 45.362131], + [9.293625, 45.362131], + [9.293625, 45.357635], + [9.289128, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.362131], + [9.289128, 45.366628], + [9.293625, 45.366628], + [9.293625, 45.362131], + [9.289128, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.366628], + [9.289128, 45.371125], + [9.293625, 45.371125], + [9.293625, 45.366628], + [9.289128, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.371125], + [9.289128, 45.375621], + [9.293625, 45.375621], + [9.293625, 45.371125], + [9.289128, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.375621], + [9.289128, 45.380118], + [9.293625, 45.380118], + [9.293625, 45.375621], + [9.289128, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.380118], + [9.289128, 45.384614], + [9.293625, 45.384614], + [9.293625, 45.380118], + [9.289128, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.384614], + [9.289128, 45.389111], + [9.293625, 45.389111], + [9.293625, 45.384614], + [9.289128, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.389111], + [9.289128, 45.393608], + [9.293625, 45.393608], + [9.293625, 45.389111], + [9.289128, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.393608], + [9.289128, 45.398104], + [9.293625, 45.398104], + [9.293625, 45.393608], + [9.289128, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.398104], + [9.289128, 45.402601], + [9.293625, 45.402601], + [9.293625, 45.398104], + [9.289128, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.402601], + [9.289128, 45.407097], + [9.293625, 45.407097], + [9.293625, 45.402601], + [9.289128, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.407097], + [9.289128, 45.411594], + [9.293625, 45.411594], + [9.293625, 45.407097], + [9.289128, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.411594], + [9.289128, 45.416091], + [9.293625, 45.416091], + [9.293625, 45.411594], + [9.289128, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.416091], + [9.289128, 45.420587], + [9.293625, 45.420587], + [9.293625, 45.416091], + [9.289128, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.420587], + [9.289128, 45.425084], + [9.293625, 45.425084], + [9.293625, 45.420587], + [9.289128, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.425084], + [9.289128, 45.42958], + [9.293625, 45.42958], + [9.293625, 45.425084], + [9.289128, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.42958], + [9.289128, 45.434077], + [9.293625, 45.434077], + [9.293625, 45.42958], + [9.289128, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.434077], + [9.289128, 45.438574], + [9.293625, 45.438574], + [9.293625, 45.434077], + [9.289128, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.438574], + [9.289128, 45.44307], + [9.293625, 45.44307], + [9.293625, 45.438574], + [9.289128, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.44307], + [9.289128, 45.447567], + [9.293625, 45.447567], + [9.293625, 45.44307], + [9.289128, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.447567], + [9.289128, 45.452063], + [9.293625, 45.452063], + [9.293625, 45.447567], + [9.289128, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.452063], + [9.289128, 45.45656], + [9.293625, 45.45656], + [9.293625, 45.452063], + [9.289128, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.45656], + [9.289128, 45.461057], + [9.293625, 45.461057], + [9.293625, 45.45656], + [9.289128, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.461057], + [9.289128, 45.465553], + [9.293625, 45.465553], + [9.293625, 45.461057], + [9.289128, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.465553], + [9.289128, 45.47005], + [9.293625, 45.47005], + [9.293625, 45.465553], + [9.289128, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.47005], + [9.289128, 45.474547], + [9.293625, 45.474547], + [9.293625, 45.47005], + [9.289128, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.474547], + [9.289128, 45.479043], + [9.293625, 45.479043], + [9.293625, 45.474547], + [9.289128, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.479043], + [9.289128, 45.48354], + [9.293625, 45.48354], + [9.293625, 45.479043], + [9.289128, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.48354], + [9.289128, 45.488036], + [9.293625, 45.488036], + [9.293625, 45.48354], + [9.289128, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.488036], + [9.289128, 45.492533], + [9.293625, 45.492533], + [9.293625, 45.488036], + [9.289128, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.492533], + [9.289128, 45.49703], + [9.293625, 45.49703], + [9.293625, 45.492533], + [9.289128, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.49703], + [9.289128, 45.501526], + [9.293625, 45.501526], + [9.293625, 45.49703], + [9.289128, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.501526], + [9.289128, 45.506023], + [9.293625, 45.506023], + [9.293625, 45.501526], + [9.289128, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.506023], + [9.289128, 45.510519], + [9.293625, 45.510519], + [9.293625, 45.506023], + [9.289128, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.510519], + [9.289128, 45.515016], + [9.293625, 45.515016], + [9.293625, 45.510519], + [9.289128, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.515016], + [9.289128, 45.519513], + [9.293625, 45.519513], + [9.293625, 45.515016], + [9.289128, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.519513], + [9.289128, 45.524009], + [9.293625, 45.524009], + [9.293625, 45.519513], + [9.289128, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.524009], + [9.289128, 45.528506], + [9.293625, 45.528506], + [9.293625, 45.524009], + [9.289128, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.528506], + [9.289128, 45.533002], + [9.293625, 45.533002], + [9.293625, 45.528506], + [9.289128, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.533002], + [9.289128, 45.537499], + [9.293625, 45.537499], + [9.293625, 45.533002], + [9.289128, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.537499], + [9.289128, 45.541996], + [9.293625, 45.541996], + [9.293625, 45.537499], + [9.289128, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.541996], + [9.289128, 45.546492], + [9.293625, 45.546492], + [9.293625, 45.541996], + [9.289128, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.546492], + [9.289128, 45.550989], + [9.293625, 45.550989], + [9.293625, 45.546492], + [9.289128, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.550989], + [9.289128, 45.555485], + [9.293625, 45.555485], + [9.293625, 45.550989], + [9.289128, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.555485], + [9.289128, 45.559982], + [9.293625, 45.559982], + [9.293625, 45.555485], + [9.289128, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.559982], + [9.289128, 45.564479], + [9.293625, 45.564479], + [9.293625, 45.559982], + [9.289128, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.564479], + [9.289128, 45.568975], + [9.293625, 45.568975], + [9.293625, 45.564479], + [9.289128, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.568975], + [9.289128, 45.573472], + [9.293625, 45.573472], + [9.293625, 45.568975], + [9.289128, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.573472], + [9.289128, 45.577968], + [9.293625, 45.577968], + [9.293625, 45.573472], + [9.289128, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.577968], + [9.289128, 45.582465], + [9.293625, 45.582465], + [9.293625, 45.577968], + [9.289128, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.582465], + [9.289128, 45.586962], + [9.293625, 45.586962], + [9.293625, 45.582465], + [9.289128, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.586962], + [9.289128, 45.591458], + [9.293625, 45.591458], + [9.293625, 45.586962], + [9.289128, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.591458], + [9.289128, 45.595955], + [9.293625, 45.595955], + [9.293625, 45.591458], + [9.289128, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.595955], + [9.289128, 45.600451], + [9.293625, 45.600451], + [9.293625, 45.595955], + [9.289128, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.600451], + [9.289128, 45.604948], + [9.293625, 45.604948], + [9.293625, 45.600451], + [9.289128, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.604948], + [9.289128, 45.609445], + [9.293625, 45.609445], + [9.293625, 45.604948], + [9.289128, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.609445], + [9.289128, 45.613941], + [9.293625, 45.613941], + [9.293625, 45.609445], + [9.289128, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.613941], + [9.289128, 45.618438], + [9.293625, 45.618438], + [9.293625, 45.613941], + [9.289128, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.618438], + [9.289128, 45.622934], + [9.293625, 45.622934], + [9.293625, 45.618438], + [9.289128, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.622934], + [9.289128, 45.627431], + [9.293625, 45.627431], + [9.293625, 45.622934], + [9.289128, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.627431], + [9.289128, 45.631928], + [9.293625, 45.631928], + [9.293625, 45.627431], + [9.289128, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.631928], + [9.289128, 45.636424], + [9.293625, 45.636424], + [9.293625, 45.631928], + [9.289128, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.339648], + [9.293625, 45.344145], + [9.298121, 45.344145], + [9.298121, 45.339648], + [9.293625, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.344145], + [9.293625, 45.348642], + [9.298121, 45.348642], + [9.298121, 45.344145], + [9.293625, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.348642], + [9.293625, 45.353138], + [9.298121, 45.353138], + [9.298121, 45.348642], + [9.293625, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.353138], + [9.293625, 45.357635], + [9.298121, 45.357635], + [9.298121, 45.353138], + [9.293625, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.357635], + [9.293625, 45.362131], + [9.298121, 45.362131], + [9.298121, 45.357635], + [9.293625, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.362131], + [9.293625, 45.366628], + [9.298121, 45.366628], + [9.298121, 45.362131], + [9.293625, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.366628], + [9.293625, 45.371125], + [9.298121, 45.371125], + [9.298121, 45.366628], + [9.293625, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.371125], + [9.293625, 45.375621], + [9.298121, 45.375621], + [9.298121, 45.371125], + [9.293625, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.375621], + [9.293625, 45.380118], + [9.298121, 45.380118], + [9.298121, 45.375621], + [9.293625, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.380118], + [9.293625, 45.384614], + [9.298121, 45.384614], + [9.298121, 45.380118], + [9.293625, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.384614], + [9.293625, 45.389111], + [9.298121, 45.389111], + [9.298121, 45.384614], + [9.293625, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.389111], + [9.293625, 45.393608], + [9.298121, 45.393608], + [9.298121, 45.389111], + [9.293625, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.393608], + [9.293625, 45.398104], + [9.298121, 45.398104], + [9.298121, 45.393608], + [9.293625, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.398104], + [9.293625, 45.402601], + [9.298121, 45.402601], + [9.298121, 45.398104], + [9.293625, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.402601], + [9.293625, 45.407097], + [9.298121, 45.407097], + [9.298121, 45.402601], + [9.293625, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.407097], + [9.293625, 45.411594], + [9.298121, 45.411594], + [9.298121, 45.407097], + [9.293625, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.411594], + [9.293625, 45.416091], + [9.298121, 45.416091], + [9.298121, 45.411594], + [9.293625, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.416091], + [9.293625, 45.420587], + [9.298121, 45.420587], + [9.298121, 45.416091], + [9.293625, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.420587], + [9.293625, 45.425084], + [9.298121, 45.425084], + [9.298121, 45.420587], + [9.293625, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.425084], + [9.293625, 45.42958], + [9.298121, 45.42958], + [9.298121, 45.425084], + [9.293625, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.42958], + [9.293625, 45.434077], + [9.298121, 45.434077], + [9.298121, 45.42958], + [9.293625, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.434077], + [9.293625, 45.438574], + [9.298121, 45.438574], + [9.298121, 45.434077], + [9.293625, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.438574], + [9.293625, 45.44307], + [9.298121, 45.44307], + [9.298121, 45.438574], + [9.293625, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.44307], + [9.293625, 45.447567], + [9.298121, 45.447567], + [9.298121, 45.44307], + [9.293625, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.447567], + [9.293625, 45.452063], + [9.298121, 45.452063], + [9.298121, 45.447567], + [9.293625, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.452063], + [9.293625, 45.45656], + [9.298121, 45.45656], + [9.298121, 45.452063], + [9.293625, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.45656], + [9.293625, 45.461057], + [9.298121, 45.461057], + [9.298121, 45.45656], + [9.293625, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.461057], + [9.293625, 45.465553], + [9.298121, 45.465553], + [9.298121, 45.461057], + [9.293625, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.465553], + [9.293625, 45.47005], + [9.298121, 45.47005], + [9.298121, 45.465553], + [9.293625, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.47005], + [9.293625, 45.474547], + [9.298121, 45.474547], + [9.298121, 45.47005], + [9.293625, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.474547], + [9.293625, 45.479043], + [9.298121, 45.479043], + [9.298121, 45.474547], + [9.293625, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.479043], + [9.293625, 45.48354], + [9.298121, 45.48354], + [9.298121, 45.479043], + [9.293625, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.48354], + [9.293625, 45.488036], + [9.298121, 45.488036], + [9.298121, 45.48354], + [9.293625, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.488036], + [9.293625, 45.492533], + [9.298121, 45.492533], + [9.298121, 45.488036], + [9.293625, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.492533], + [9.293625, 45.49703], + [9.298121, 45.49703], + [9.298121, 45.492533], + [9.293625, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.49703], + [9.293625, 45.501526], + [9.298121, 45.501526], + [9.298121, 45.49703], + [9.293625, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.501526], + [9.293625, 45.506023], + [9.298121, 45.506023], + [9.298121, 45.501526], + [9.293625, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.506023], + [9.293625, 45.510519], + [9.298121, 45.510519], + [9.298121, 45.506023], + [9.293625, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.510519], + [9.293625, 45.515016], + [9.298121, 45.515016], + [9.298121, 45.510519], + [9.293625, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.515016], + [9.293625, 45.519513], + [9.298121, 45.519513], + [9.298121, 45.515016], + [9.293625, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.519513], + [9.293625, 45.524009], + [9.298121, 45.524009], + [9.298121, 45.519513], + [9.293625, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.524009], + [9.293625, 45.528506], + [9.298121, 45.528506], + [9.298121, 45.524009], + [9.293625, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.528506], + [9.293625, 45.533002], + [9.298121, 45.533002], + [9.298121, 45.528506], + [9.293625, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.533002], + [9.293625, 45.537499], + [9.298121, 45.537499], + [9.298121, 45.533002], + [9.293625, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.537499], + [9.293625, 45.541996], + [9.298121, 45.541996], + [9.298121, 45.537499], + [9.293625, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.541996], + [9.293625, 45.546492], + [9.298121, 45.546492], + [9.298121, 45.541996], + [9.293625, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.546492], + [9.293625, 45.550989], + [9.298121, 45.550989], + [9.298121, 45.546492], + [9.293625, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.550989], + [9.293625, 45.555485], + [9.298121, 45.555485], + [9.298121, 45.550989], + [9.293625, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.555485], + [9.293625, 45.559982], + [9.298121, 45.559982], + [9.298121, 45.555485], + [9.293625, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.559982], + [9.293625, 45.564479], + [9.298121, 45.564479], + [9.298121, 45.559982], + [9.293625, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.564479], + [9.293625, 45.568975], + [9.298121, 45.568975], + [9.298121, 45.564479], + [9.293625, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.568975], + [9.293625, 45.573472], + [9.298121, 45.573472], + [9.298121, 45.568975], + [9.293625, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.573472], + [9.293625, 45.577968], + [9.298121, 45.577968], + [9.298121, 45.573472], + [9.293625, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.577968], + [9.293625, 45.582465], + [9.298121, 45.582465], + [9.298121, 45.577968], + [9.293625, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.582465], + [9.293625, 45.586962], + [9.298121, 45.586962], + [9.298121, 45.582465], + [9.293625, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.586962], + [9.293625, 45.591458], + [9.298121, 45.591458], + [9.298121, 45.586962], + [9.293625, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.591458], + [9.293625, 45.595955], + [9.298121, 45.595955], + [9.298121, 45.591458], + [9.293625, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.595955], + [9.293625, 45.600451], + [9.298121, 45.600451], + [9.298121, 45.595955], + [9.293625, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.600451], + [9.293625, 45.604948], + [9.298121, 45.604948], + [9.298121, 45.600451], + [9.293625, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.604948], + [9.293625, 45.609445], + [9.298121, 45.609445], + [9.298121, 45.604948], + [9.293625, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.609445], + [9.293625, 45.613941], + [9.298121, 45.613941], + [9.298121, 45.609445], + [9.293625, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.613941], + [9.293625, 45.618438], + [9.298121, 45.618438], + [9.298121, 45.613941], + [9.293625, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.618438], + [9.293625, 45.622934], + [9.298121, 45.622934], + [9.298121, 45.618438], + [9.293625, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.622934], + [9.293625, 45.627431], + [9.298121, 45.627431], + [9.298121, 45.622934], + [9.293625, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.627431], + [9.293625, 45.631928], + [9.298121, 45.631928], + [9.298121, 45.627431], + [9.293625, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.631928], + [9.293625, 45.636424], + [9.298121, 45.636424], + [9.298121, 45.631928], + [9.293625, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.339648], + [9.298121, 45.344145], + [9.302618, 45.344145], + [9.302618, 45.339648], + [9.298121, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.344145], + [9.298121, 45.348642], + [9.302618, 45.348642], + [9.302618, 45.344145], + [9.298121, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.348642], + [9.298121, 45.353138], + [9.302618, 45.353138], + [9.302618, 45.348642], + [9.298121, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.353138], + [9.298121, 45.357635], + [9.302618, 45.357635], + [9.302618, 45.353138], + [9.298121, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.357635], + [9.298121, 45.362131], + [9.302618, 45.362131], + [9.302618, 45.357635], + [9.298121, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.362131], + [9.298121, 45.366628], + [9.302618, 45.366628], + [9.302618, 45.362131], + [9.298121, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.366628], + [9.298121, 45.371125], + [9.302618, 45.371125], + [9.302618, 45.366628], + [9.298121, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.371125], + [9.298121, 45.375621], + [9.302618, 45.375621], + [9.302618, 45.371125], + [9.298121, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.375621], + [9.298121, 45.380118], + [9.302618, 45.380118], + [9.302618, 45.375621], + [9.298121, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.380118], + [9.298121, 45.384614], + [9.302618, 45.384614], + [9.302618, 45.380118], + [9.298121, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.384614], + [9.298121, 45.389111], + [9.302618, 45.389111], + [9.302618, 45.384614], + [9.298121, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.389111], + [9.298121, 45.393608], + [9.302618, 45.393608], + [9.302618, 45.389111], + [9.298121, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.393608], + [9.298121, 45.398104], + [9.302618, 45.398104], + [9.302618, 45.393608], + [9.298121, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.398104], + [9.298121, 45.402601], + [9.302618, 45.402601], + [9.302618, 45.398104], + [9.298121, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.402601], + [9.298121, 45.407097], + [9.302618, 45.407097], + [9.302618, 45.402601], + [9.298121, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.407097], + [9.298121, 45.411594], + [9.302618, 45.411594], + [9.302618, 45.407097], + [9.298121, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.411594], + [9.298121, 45.416091], + [9.302618, 45.416091], + [9.302618, 45.411594], + [9.298121, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.416091], + [9.298121, 45.420587], + [9.302618, 45.420587], + [9.302618, 45.416091], + [9.298121, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.420587], + [9.298121, 45.425084], + [9.302618, 45.425084], + [9.302618, 45.420587], + [9.298121, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.425084], + [9.298121, 45.42958], + [9.302618, 45.42958], + [9.302618, 45.425084], + [9.298121, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.42958], + [9.298121, 45.434077], + [9.302618, 45.434077], + [9.302618, 45.42958], + [9.298121, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.434077], + [9.298121, 45.438574], + [9.302618, 45.438574], + [9.302618, 45.434077], + [9.298121, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.438574], + [9.298121, 45.44307], + [9.302618, 45.44307], + [9.302618, 45.438574], + [9.298121, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.44307], + [9.298121, 45.447567], + [9.302618, 45.447567], + [9.302618, 45.44307], + [9.298121, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.447567], + [9.298121, 45.452063], + [9.302618, 45.452063], + [9.302618, 45.447567], + [9.298121, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.452063], + [9.298121, 45.45656], + [9.302618, 45.45656], + [9.302618, 45.452063], + [9.298121, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.45656], + [9.298121, 45.461057], + [9.302618, 45.461057], + [9.302618, 45.45656], + [9.298121, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.461057], + [9.298121, 45.465553], + [9.302618, 45.465553], + [9.302618, 45.461057], + [9.298121, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.465553], + [9.298121, 45.47005], + [9.302618, 45.47005], + [9.302618, 45.465553], + [9.298121, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.47005], + [9.298121, 45.474547], + [9.302618, 45.474547], + [9.302618, 45.47005], + [9.298121, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.474547], + [9.298121, 45.479043], + [9.302618, 45.479043], + [9.302618, 45.474547], + [9.298121, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.479043], + [9.298121, 45.48354], + [9.302618, 45.48354], + [9.302618, 45.479043], + [9.298121, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.48354], + [9.298121, 45.488036], + [9.302618, 45.488036], + [9.302618, 45.48354], + [9.298121, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.488036], + [9.298121, 45.492533], + [9.302618, 45.492533], + [9.302618, 45.488036], + [9.298121, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.492533], + [9.298121, 45.49703], + [9.302618, 45.49703], + [9.302618, 45.492533], + [9.298121, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.49703], + [9.298121, 45.501526], + [9.302618, 45.501526], + [9.302618, 45.49703], + [9.298121, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.501526], + [9.298121, 45.506023], + [9.302618, 45.506023], + [9.302618, 45.501526], + [9.298121, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.506023], + [9.298121, 45.510519], + [9.302618, 45.510519], + [9.302618, 45.506023], + [9.298121, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.510519], + [9.298121, 45.515016], + [9.302618, 45.515016], + [9.302618, 45.510519], + [9.298121, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.515016], + [9.298121, 45.519513], + [9.302618, 45.519513], + [9.302618, 45.515016], + [9.298121, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.519513], + [9.298121, 45.524009], + [9.302618, 45.524009], + [9.302618, 45.519513], + [9.298121, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.524009], + [9.298121, 45.528506], + [9.302618, 45.528506], + [9.302618, 45.524009], + [9.298121, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.528506], + [9.298121, 45.533002], + [9.302618, 45.533002], + [9.302618, 45.528506], + [9.298121, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.533002], + [9.298121, 45.537499], + [9.302618, 45.537499], + [9.302618, 45.533002], + [9.298121, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.537499], + [9.298121, 45.541996], + [9.302618, 45.541996], + [9.302618, 45.537499], + [9.298121, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.541996], + [9.298121, 45.546492], + [9.302618, 45.546492], + [9.302618, 45.541996], + [9.298121, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.546492], + [9.298121, 45.550989], + [9.302618, 45.550989], + [9.302618, 45.546492], + [9.298121, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.550989], + [9.298121, 45.555485], + [9.302618, 45.555485], + [9.302618, 45.550989], + [9.298121, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.555485], + [9.298121, 45.559982], + [9.302618, 45.559982], + [9.302618, 45.555485], + [9.298121, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.559982], + [9.298121, 45.564479], + [9.302618, 45.564479], + [9.302618, 45.559982], + [9.298121, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.564479], + [9.298121, 45.568975], + [9.302618, 45.568975], + [9.302618, 45.564479], + [9.298121, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.568975], + [9.298121, 45.573472], + [9.302618, 45.573472], + [9.302618, 45.568975], + [9.298121, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.573472], + [9.298121, 45.577968], + [9.302618, 45.577968], + [9.302618, 45.573472], + [9.298121, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.577968], + [9.298121, 45.582465], + [9.302618, 45.582465], + [9.302618, 45.577968], + [9.298121, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.582465], + [9.298121, 45.586962], + [9.302618, 45.586962], + [9.302618, 45.582465], + [9.298121, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.586962], + [9.298121, 45.591458], + [9.302618, 45.591458], + [9.302618, 45.586962], + [9.298121, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.591458], + [9.298121, 45.595955], + [9.302618, 45.595955], + [9.302618, 45.591458], + [9.298121, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.595955], + [9.298121, 45.600451], + [9.302618, 45.600451], + [9.302618, 45.595955], + [9.298121, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.600451], + [9.298121, 45.604948], + [9.302618, 45.604948], + [9.302618, 45.600451], + [9.298121, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.604948], + [9.298121, 45.609445], + [9.302618, 45.609445], + [9.302618, 45.604948], + [9.298121, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.609445], + [9.298121, 45.613941], + [9.302618, 45.613941], + [9.302618, 45.609445], + [9.298121, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.613941], + [9.298121, 45.618438], + [9.302618, 45.618438], + [9.302618, 45.613941], + [9.298121, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.618438], + [9.298121, 45.622934], + [9.302618, 45.622934], + [9.302618, 45.618438], + [9.298121, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.622934], + [9.298121, 45.627431], + [9.302618, 45.627431], + [9.302618, 45.622934], + [9.298121, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.627431], + [9.298121, 45.631928], + [9.302618, 45.631928], + [9.302618, 45.627431], + [9.298121, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.631928], + [9.298121, 45.636424], + [9.302618, 45.636424], + [9.302618, 45.631928], + [9.298121, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.339648], + [9.302618, 45.344145], + [9.307114, 45.344145], + [9.307114, 45.339648], + [9.302618, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.344145], + [9.302618, 45.348642], + [9.307114, 45.348642], + [9.307114, 45.344145], + [9.302618, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.348642], + [9.302618, 45.353138], + [9.307114, 45.353138], + [9.307114, 45.348642], + [9.302618, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.353138], + [9.302618, 45.357635], + [9.307114, 45.357635], + [9.307114, 45.353138], + [9.302618, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.357635], + [9.302618, 45.362131], + [9.307114, 45.362131], + [9.307114, 45.357635], + [9.302618, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.362131], + [9.302618, 45.366628], + [9.307114, 45.366628], + [9.307114, 45.362131], + [9.302618, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.366628], + [9.302618, 45.371125], + [9.307114, 45.371125], + [9.307114, 45.366628], + [9.302618, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.371125], + [9.302618, 45.375621], + [9.307114, 45.375621], + [9.307114, 45.371125], + [9.302618, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.375621], + [9.302618, 45.380118], + [9.307114, 45.380118], + [9.307114, 45.375621], + [9.302618, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.380118], + [9.302618, 45.384614], + [9.307114, 45.384614], + [9.307114, 45.380118], + [9.302618, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.384614], + [9.302618, 45.389111], + [9.307114, 45.389111], + [9.307114, 45.384614], + [9.302618, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.389111], + [9.302618, 45.393608], + [9.307114, 45.393608], + [9.307114, 45.389111], + [9.302618, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.393608], + [9.302618, 45.398104], + [9.307114, 45.398104], + [9.307114, 45.393608], + [9.302618, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.398104], + [9.302618, 45.402601], + [9.307114, 45.402601], + [9.307114, 45.398104], + [9.302618, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.402601], + [9.302618, 45.407097], + [9.307114, 45.407097], + [9.307114, 45.402601], + [9.302618, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.407097], + [9.302618, 45.411594], + [9.307114, 45.411594], + [9.307114, 45.407097], + [9.302618, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.411594], + [9.302618, 45.416091], + [9.307114, 45.416091], + [9.307114, 45.411594], + [9.302618, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.416091], + [9.302618, 45.420587], + [9.307114, 45.420587], + [9.307114, 45.416091], + [9.302618, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.420587], + [9.302618, 45.425084], + [9.307114, 45.425084], + [9.307114, 45.420587], + [9.302618, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.425084], + [9.302618, 45.42958], + [9.307114, 45.42958], + [9.307114, 45.425084], + [9.302618, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.42958], + [9.302618, 45.434077], + [9.307114, 45.434077], + [9.307114, 45.42958], + [9.302618, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.434077], + [9.302618, 45.438574], + [9.307114, 45.438574], + [9.307114, 45.434077], + [9.302618, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.438574], + [9.302618, 45.44307], + [9.307114, 45.44307], + [9.307114, 45.438574], + [9.302618, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.44307], + [9.302618, 45.447567], + [9.307114, 45.447567], + [9.307114, 45.44307], + [9.302618, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.447567], + [9.302618, 45.452063], + [9.307114, 45.452063], + [9.307114, 45.447567], + [9.302618, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.452063], + [9.302618, 45.45656], + [9.307114, 45.45656], + [9.307114, 45.452063], + [9.302618, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.45656], + [9.302618, 45.461057], + [9.307114, 45.461057], + [9.307114, 45.45656], + [9.302618, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.461057], + [9.302618, 45.465553], + [9.307114, 45.465553], + [9.307114, 45.461057], + [9.302618, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.465553], + [9.302618, 45.47005], + [9.307114, 45.47005], + [9.307114, 45.465553], + [9.302618, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.47005], + [9.302618, 45.474547], + [9.307114, 45.474547], + [9.307114, 45.47005], + [9.302618, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.474547], + [9.302618, 45.479043], + [9.307114, 45.479043], + [9.307114, 45.474547], + [9.302618, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.479043], + [9.302618, 45.48354], + [9.307114, 45.48354], + [9.307114, 45.479043], + [9.302618, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.48354], + [9.302618, 45.488036], + [9.307114, 45.488036], + [9.307114, 45.48354], + [9.302618, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.488036], + [9.302618, 45.492533], + [9.307114, 45.492533], + [9.307114, 45.488036], + [9.302618, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.492533], + [9.302618, 45.49703], + [9.307114, 45.49703], + [9.307114, 45.492533], + [9.302618, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.49703], + [9.302618, 45.501526], + [9.307114, 45.501526], + [9.307114, 45.49703], + [9.302618, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.501526], + [9.302618, 45.506023], + [9.307114, 45.506023], + [9.307114, 45.501526], + [9.302618, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.506023], + [9.302618, 45.510519], + [9.307114, 45.510519], + [9.307114, 45.506023], + [9.302618, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.510519], + [9.302618, 45.515016], + [9.307114, 45.515016], + [9.307114, 45.510519], + [9.302618, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.515016], + [9.302618, 45.519513], + [9.307114, 45.519513], + [9.307114, 45.515016], + [9.302618, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.519513], + [9.302618, 45.524009], + [9.307114, 45.524009], + [9.307114, 45.519513], + [9.302618, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.524009], + [9.302618, 45.528506], + [9.307114, 45.528506], + [9.307114, 45.524009], + [9.302618, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.528506], + [9.302618, 45.533002], + [9.307114, 45.533002], + [9.307114, 45.528506], + [9.302618, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.533002], + [9.302618, 45.537499], + [9.307114, 45.537499], + [9.307114, 45.533002], + [9.302618, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.537499], + [9.302618, 45.541996], + [9.307114, 45.541996], + [9.307114, 45.537499], + [9.302618, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.541996], + [9.302618, 45.546492], + [9.307114, 45.546492], + [9.307114, 45.541996], + [9.302618, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.546492], + [9.302618, 45.550989], + [9.307114, 45.550989], + [9.307114, 45.546492], + [9.302618, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.550989], + [9.302618, 45.555485], + [9.307114, 45.555485], + [9.307114, 45.550989], + [9.302618, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.555485], + [9.302618, 45.559982], + [9.307114, 45.559982], + [9.307114, 45.555485], + [9.302618, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.559982], + [9.302618, 45.564479], + [9.307114, 45.564479], + [9.307114, 45.559982], + [9.302618, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.564479], + [9.302618, 45.568975], + [9.307114, 45.568975], + [9.307114, 45.564479], + [9.302618, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.568975], + [9.302618, 45.573472], + [9.307114, 45.573472], + [9.307114, 45.568975], + [9.302618, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.573472], + [9.302618, 45.577968], + [9.307114, 45.577968], + [9.307114, 45.573472], + [9.302618, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.577968], + [9.302618, 45.582465], + [9.307114, 45.582465], + [9.307114, 45.577968], + [9.302618, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.582465], + [9.302618, 45.586962], + [9.307114, 45.586962], + [9.307114, 45.582465], + [9.302618, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.586962], + [9.302618, 45.591458], + [9.307114, 45.591458], + [9.307114, 45.586962], + [9.302618, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.591458], + [9.302618, 45.595955], + [9.307114, 45.595955], + [9.307114, 45.591458], + [9.302618, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.595955], + [9.302618, 45.600451], + [9.307114, 45.600451], + [9.307114, 45.595955], + [9.302618, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.600451], + [9.302618, 45.604948], + [9.307114, 45.604948], + [9.307114, 45.600451], + [9.302618, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.604948], + [9.302618, 45.609445], + [9.307114, 45.609445], + [9.307114, 45.604948], + [9.302618, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.609445], + [9.302618, 45.613941], + [9.307114, 45.613941], + [9.307114, 45.609445], + [9.302618, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.613941], + [9.302618, 45.618438], + [9.307114, 45.618438], + [9.307114, 45.613941], + [9.302618, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.618438], + [9.302618, 45.622934], + [9.307114, 45.622934], + [9.307114, 45.618438], + [9.302618, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.622934], + [9.302618, 45.627431], + [9.307114, 45.627431], + [9.307114, 45.622934], + [9.302618, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.627431], + [9.302618, 45.631928], + [9.307114, 45.631928], + [9.307114, 45.627431], + [9.302618, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.631928], + [9.302618, 45.636424], + [9.307114, 45.636424], + [9.307114, 45.631928], + [9.302618, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.339648], + [9.307114, 45.344145], + [9.311611, 45.344145], + [9.311611, 45.339648], + [9.307114, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.344145], + [9.307114, 45.348642], + [9.311611, 45.348642], + [9.311611, 45.344145], + [9.307114, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.348642], + [9.307114, 45.353138], + [9.311611, 45.353138], + [9.311611, 45.348642], + [9.307114, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.353138], + [9.307114, 45.357635], + [9.311611, 45.357635], + [9.311611, 45.353138], + [9.307114, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.357635], + [9.307114, 45.362131], + [9.311611, 45.362131], + [9.311611, 45.357635], + [9.307114, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.362131], + [9.307114, 45.366628], + [9.311611, 45.366628], + [9.311611, 45.362131], + [9.307114, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.366628], + [9.307114, 45.371125], + [9.311611, 45.371125], + [9.311611, 45.366628], + [9.307114, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.371125], + [9.307114, 45.375621], + [9.311611, 45.375621], + [9.311611, 45.371125], + [9.307114, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.375621], + [9.307114, 45.380118], + [9.311611, 45.380118], + [9.311611, 45.375621], + [9.307114, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.380118], + [9.307114, 45.384614], + [9.311611, 45.384614], + [9.311611, 45.380118], + [9.307114, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.384614], + [9.307114, 45.389111], + [9.311611, 45.389111], + [9.311611, 45.384614], + [9.307114, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.389111], + [9.307114, 45.393608], + [9.311611, 45.393608], + [9.311611, 45.389111], + [9.307114, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.393608], + [9.307114, 45.398104], + [9.311611, 45.398104], + [9.311611, 45.393608], + [9.307114, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.398104], + [9.307114, 45.402601], + [9.311611, 45.402601], + [9.311611, 45.398104], + [9.307114, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.402601], + [9.307114, 45.407097], + [9.311611, 45.407097], + [9.311611, 45.402601], + [9.307114, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.407097], + [9.307114, 45.411594], + [9.311611, 45.411594], + [9.311611, 45.407097], + [9.307114, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.411594], + [9.307114, 45.416091], + [9.311611, 45.416091], + [9.311611, 45.411594], + [9.307114, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.416091], + [9.307114, 45.420587], + [9.311611, 45.420587], + [9.311611, 45.416091], + [9.307114, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.420587], + [9.307114, 45.425084], + [9.311611, 45.425084], + [9.311611, 45.420587], + [9.307114, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.425084], + [9.307114, 45.42958], + [9.311611, 45.42958], + [9.311611, 45.425084], + [9.307114, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.42958], + [9.307114, 45.434077], + [9.311611, 45.434077], + [9.311611, 45.42958], + [9.307114, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.434077], + [9.307114, 45.438574], + [9.311611, 45.438574], + [9.311611, 45.434077], + [9.307114, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.438574], + [9.307114, 45.44307], + [9.311611, 45.44307], + [9.311611, 45.438574], + [9.307114, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.44307], + [9.307114, 45.447567], + [9.311611, 45.447567], + [9.311611, 45.44307], + [9.307114, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.447567], + [9.307114, 45.452063], + [9.311611, 45.452063], + [9.311611, 45.447567], + [9.307114, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.452063], + [9.307114, 45.45656], + [9.311611, 45.45656], + [9.311611, 45.452063], + [9.307114, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.45656], + [9.307114, 45.461057], + [9.311611, 45.461057], + [9.311611, 45.45656], + [9.307114, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.461057], + [9.307114, 45.465553], + [9.311611, 45.465553], + [9.311611, 45.461057], + [9.307114, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.465553], + [9.307114, 45.47005], + [9.311611, 45.47005], + [9.311611, 45.465553], + [9.307114, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.47005], + [9.307114, 45.474547], + [9.311611, 45.474547], + [9.311611, 45.47005], + [9.307114, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.474547], + [9.307114, 45.479043], + [9.311611, 45.479043], + [9.311611, 45.474547], + [9.307114, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.479043], + [9.307114, 45.48354], + [9.311611, 45.48354], + [9.311611, 45.479043], + [9.307114, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.48354], + [9.307114, 45.488036], + [9.311611, 45.488036], + [9.311611, 45.48354], + [9.307114, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.488036], + [9.307114, 45.492533], + [9.311611, 45.492533], + [9.311611, 45.488036], + [9.307114, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.492533], + [9.307114, 45.49703], + [9.311611, 45.49703], + [9.311611, 45.492533], + [9.307114, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.49703], + [9.307114, 45.501526], + [9.311611, 45.501526], + [9.311611, 45.49703], + [9.307114, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.501526], + [9.307114, 45.506023], + [9.311611, 45.506023], + [9.311611, 45.501526], + [9.307114, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.506023], + [9.307114, 45.510519], + [9.311611, 45.510519], + [9.311611, 45.506023], + [9.307114, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.510519], + [9.307114, 45.515016], + [9.311611, 45.515016], + [9.311611, 45.510519], + [9.307114, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.515016], + [9.307114, 45.519513], + [9.311611, 45.519513], + [9.311611, 45.515016], + [9.307114, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.519513], + [9.307114, 45.524009], + [9.311611, 45.524009], + [9.311611, 45.519513], + [9.307114, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.524009], + [9.307114, 45.528506], + [9.311611, 45.528506], + [9.311611, 45.524009], + [9.307114, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.528506], + [9.307114, 45.533002], + [9.311611, 45.533002], + [9.311611, 45.528506], + [9.307114, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.533002], + [9.307114, 45.537499], + [9.311611, 45.537499], + [9.311611, 45.533002], + [9.307114, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.537499], + [9.307114, 45.541996], + [9.311611, 45.541996], + [9.311611, 45.537499], + [9.307114, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.541996], + [9.307114, 45.546492], + [9.311611, 45.546492], + [9.311611, 45.541996], + [9.307114, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.546492], + [9.307114, 45.550989], + [9.311611, 45.550989], + [9.311611, 45.546492], + [9.307114, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.550989], + [9.307114, 45.555485], + [9.311611, 45.555485], + [9.311611, 45.550989], + [9.307114, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.555485], + [9.307114, 45.559982], + [9.311611, 45.559982], + [9.311611, 45.555485], + [9.307114, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.559982], + [9.307114, 45.564479], + [9.311611, 45.564479], + [9.311611, 45.559982], + [9.307114, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.564479], + [9.307114, 45.568975], + [9.311611, 45.568975], + [9.311611, 45.564479], + [9.307114, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.568975], + [9.307114, 45.573472], + [9.311611, 45.573472], + [9.311611, 45.568975], + [9.307114, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.573472], + [9.307114, 45.577968], + [9.311611, 45.577968], + [9.311611, 45.573472], + [9.307114, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.577968], + [9.307114, 45.582465], + [9.311611, 45.582465], + [9.311611, 45.577968], + [9.307114, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.582465], + [9.307114, 45.586962], + [9.311611, 45.586962], + [9.311611, 45.582465], + [9.307114, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.586962], + [9.307114, 45.591458], + [9.311611, 45.591458], + [9.311611, 45.586962], + [9.307114, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.591458], + [9.307114, 45.595955], + [9.311611, 45.595955], + [9.311611, 45.591458], + [9.307114, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.595955], + [9.307114, 45.600451], + [9.311611, 45.600451], + [9.311611, 45.595955], + [9.307114, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.600451], + [9.307114, 45.604948], + [9.311611, 45.604948], + [9.311611, 45.600451], + [9.307114, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.604948], + [9.307114, 45.609445], + [9.311611, 45.609445], + [9.311611, 45.604948], + [9.307114, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.609445], + [9.307114, 45.613941], + [9.311611, 45.613941], + [9.311611, 45.609445], + [9.307114, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.613941], + [9.307114, 45.618438], + [9.311611, 45.618438], + [9.311611, 45.613941], + [9.307114, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.618438], + [9.307114, 45.622934], + [9.311611, 45.622934], + [9.311611, 45.618438], + [9.307114, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.622934], + [9.307114, 45.627431], + [9.311611, 45.627431], + [9.311611, 45.622934], + [9.307114, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.627431], + [9.307114, 45.631928], + [9.311611, 45.631928], + [9.311611, 45.627431], + [9.307114, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.631928], + [9.307114, 45.636424], + [9.311611, 45.636424], + [9.311611, 45.631928], + [9.307114, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.339648], + [9.311611, 45.344145], + [9.316108, 45.344145], + [9.316108, 45.339648], + [9.311611, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.344145], + [9.311611, 45.348642], + [9.316108, 45.348642], + [9.316108, 45.344145], + [9.311611, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.348642], + [9.311611, 45.353138], + [9.316108, 45.353138], + [9.316108, 45.348642], + [9.311611, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.353138], + [9.311611, 45.357635], + [9.316108, 45.357635], + [9.316108, 45.353138], + [9.311611, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.357635], + [9.311611, 45.362131], + [9.316108, 45.362131], + [9.316108, 45.357635], + [9.311611, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.362131], + [9.311611, 45.366628], + [9.316108, 45.366628], + [9.316108, 45.362131], + [9.311611, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.366628], + [9.311611, 45.371125], + [9.316108, 45.371125], + [9.316108, 45.366628], + [9.311611, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.371125], + [9.311611, 45.375621], + [9.316108, 45.375621], + [9.316108, 45.371125], + [9.311611, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.375621], + [9.311611, 45.380118], + [9.316108, 45.380118], + [9.316108, 45.375621], + [9.311611, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.380118], + [9.311611, 45.384614], + [9.316108, 45.384614], + [9.316108, 45.380118], + [9.311611, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.384614], + [9.311611, 45.389111], + [9.316108, 45.389111], + [9.316108, 45.384614], + [9.311611, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.389111], + [9.311611, 45.393608], + [9.316108, 45.393608], + [9.316108, 45.389111], + [9.311611, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.393608], + [9.311611, 45.398104], + [9.316108, 45.398104], + [9.316108, 45.393608], + [9.311611, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.398104], + [9.311611, 45.402601], + [9.316108, 45.402601], + [9.316108, 45.398104], + [9.311611, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.402601], + [9.311611, 45.407097], + [9.316108, 45.407097], + [9.316108, 45.402601], + [9.311611, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.407097], + [9.311611, 45.411594], + [9.316108, 45.411594], + [9.316108, 45.407097], + [9.311611, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.411594], + [9.311611, 45.416091], + [9.316108, 45.416091], + [9.316108, 45.411594], + [9.311611, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.416091], + [9.311611, 45.420587], + [9.316108, 45.420587], + [9.316108, 45.416091], + [9.311611, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.420587], + [9.311611, 45.425084], + [9.316108, 45.425084], + [9.316108, 45.420587], + [9.311611, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.425084], + [9.311611, 45.42958], + [9.316108, 45.42958], + [9.316108, 45.425084], + [9.311611, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.42958], + [9.311611, 45.434077], + [9.316108, 45.434077], + [9.316108, 45.42958], + [9.311611, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.434077], + [9.311611, 45.438574], + [9.316108, 45.438574], + [9.316108, 45.434077], + [9.311611, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.438574], + [9.311611, 45.44307], + [9.316108, 45.44307], + [9.316108, 45.438574], + [9.311611, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.44307], + [9.311611, 45.447567], + [9.316108, 45.447567], + [9.316108, 45.44307], + [9.311611, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.447567], + [9.311611, 45.452063], + [9.316108, 45.452063], + [9.316108, 45.447567], + [9.311611, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.452063], + [9.311611, 45.45656], + [9.316108, 45.45656], + [9.316108, 45.452063], + [9.311611, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.45656], + [9.311611, 45.461057], + [9.316108, 45.461057], + [9.316108, 45.45656], + [9.311611, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.461057], + [9.311611, 45.465553], + [9.316108, 45.465553], + [9.316108, 45.461057], + [9.311611, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.465553], + [9.311611, 45.47005], + [9.316108, 45.47005], + [9.316108, 45.465553], + [9.311611, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.47005], + [9.311611, 45.474547], + [9.316108, 45.474547], + [9.316108, 45.47005], + [9.311611, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.474547], + [9.311611, 45.479043], + [9.316108, 45.479043], + [9.316108, 45.474547], + [9.311611, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.479043], + [9.311611, 45.48354], + [9.316108, 45.48354], + [9.316108, 45.479043], + [9.311611, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.48354], + [9.311611, 45.488036], + [9.316108, 45.488036], + [9.316108, 45.48354], + [9.311611, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.488036], + [9.311611, 45.492533], + [9.316108, 45.492533], + [9.316108, 45.488036], + [9.311611, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.492533], + [9.311611, 45.49703], + [9.316108, 45.49703], + [9.316108, 45.492533], + [9.311611, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.49703], + [9.311611, 45.501526], + [9.316108, 45.501526], + [9.316108, 45.49703], + [9.311611, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.501526], + [9.311611, 45.506023], + [9.316108, 45.506023], + [9.316108, 45.501526], + [9.311611, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.506023], + [9.311611, 45.510519], + [9.316108, 45.510519], + [9.316108, 45.506023], + [9.311611, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.510519], + [9.311611, 45.515016], + [9.316108, 45.515016], + [9.316108, 45.510519], + [9.311611, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.515016], + [9.311611, 45.519513], + [9.316108, 45.519513], + [9.316108, 45.515016], + [9.311611, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.519513], + [9.311611, 45.524009], + [9.316108, 45.524009], + [9.316108, 45.519513], + [9.311611, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.524009], + [9.311611, 45.528506], + [9.316108, 45.528506], + [9.316108, 45.524009], + [9.311611, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.528506], + [9.311611, 45.533002], + [9.316108, 45.533002], + [9.316108, 45.528506], + [9.311611, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.533002], + [9.311611, 45.537499], + [9.316108, 45.537499], + [9.316108, 45.533002], + [9.311611, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.537499], + [9.311611, 45.541996], + [9.316108, 45.541996], + [9.316108, 45.537499], + [9.311611, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.541996], + [9.311611, 45.546492], + [9.316108, 45.546492], + [9.316108, 45.541996], + [9.311611, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.546492], + [9.311611, 45.550989], + [9.316108, 45.550989], + [9.316108, 45.546492], + [9.311611, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.550989], + [9.311611, 45.555485], + [9.316108, 45.555485], + [9.316108, 45.550989], + [9.311611, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.555485], + [9.311611, 45.559982], + [9.316108, 45.559982], + [9.316108, 45.555485], + [9.311611, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.559982], + [9.311611, 45.564479], + [9.316108, 45.564479], + [9.316108, 45.559982], + [9.311611, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.564479], + [9.311611, 45.568975], + [9.316108, 45.568975], + [9.316108, 45.564479], + [9.311611, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.568975], + [9.311611, 45.573472], + [9.316108, 45.573472], + [9.316108, 45.568975], + [9.311611, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.573472], + [9.311611, 45.577968], + [9.316108, 45.577968], + [9.316108, 45.573472], + [9.311611, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.577968], + [9.311611, 45.582465], + [9.316108, 45.582465], + [9.316108, 45.577968], + [9.311611, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.582465], + [9.311611, 45.586962], + [9.316108, 45.586962], + [9.316108, 45.582465], + [9.311611, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.586962], + [9.311611, 45.591458], + [9.316108, 45.591458], + [9.316108, 45.586962], + [9.311611, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.591458], + [9.311611, 45.595955], + [9.316108, 45.595955], + [9.316108, 45.591458], + [9.311611, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.595955], + [9.311611, 45.600451], + [9.316108, 45.600451], + [9.316108, 45.595955], + [9.311611, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.600451], + [9.311611, 45.604948], + [9.316108, 45.604948], + [9.316108, 45.600451], + [9.311611, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.604948], + [9.311611, 45.609445], + [9.316108, 45.609445], + [9.316108, 45.604948], + [9.311611, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.609445], + [9.311611, 45.613941], + [9.316108, 45.613941], + [9.316108, 45.609445], + [9.311611, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.613941], + [9.311611, 45.618438], + [9.316108, 45.618438], + [9.316108, 45.613941], + [9.311611, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.618438], + [9.311611, 45.622934], + [9.316108, 45.622934], + [9.316108, 45.618438], + [9.311611, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.622934], + [9.311611, 45.627431], + [9.316108, 45.627431], + [9.316108, 45.622934], + [9.311611, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.627431], + [9.311611, 45.631928], + [9.316108, 45.631928], + [9.316108, 45.627431], + [9.311611, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.631928], + [9.311611, 45.636424], + [9.316108, 45.636424], + [9.316108, 45.631928], + [9.311611, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.339648], + [9.316108, 45.344145], + [9.320604, 45.344145], + [9.320604, 45.339648], + [9.316108, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.344145], + [9.316108, 45.348642], + [9.320604, 45.348642], + [9.320604, 45.344145], + [9.316108, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.348642], + [9.316108, 45.353138], + [9.320604, 45.353138], + [9.320604, 45.348642], + [9.316108, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.353138], + [9.316108, 45.357635], + [9.320604, 45.357635], + [9.320604, 45.353138], + [9.316108, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.357635], + [9.316108, 45.362131], + [9.320604, 45.362131], + [9.320604, 45.357635], + [9.316108, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.362131], + [9.316108, 45.366628], + [9.320604, 45.366628], + [9.320604, 45.362131], + [9.316108, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.366628], + [9.316108, 45.371125], + [9.320604, 45.371125], + [9.320604, 45.366628], + [9.316108, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.371125], + [9.316108, 45.375621], + [9.320604, 45.375621], + [9.320604, 45.371125], + [9.316108, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.375621], + [9.316108, 45.380118], + [9.320604, 45.380118], + [9.320604, 45.375621], + [9.316108, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.380118], + [9.316108, 45.384614], + [9.320604, 45.384614], + [9.320604, 45.380118], + [9.316108, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.384614], + [9.316108, 45.389111], + [9.320604, 45.389111], + [9.320604, 45.384614], + [9.316108, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.389111], + [9.316108, 45.393608], + [9.320604, 45.393608], + [9.320604, 45.389111], + [9.316108, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.393608], + [9.316108, 45.398104], + [9.320604, 45.398104], + [9.320604, 45.393608], + [9.316108, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.398104], + [9.316108, 45.402601], + [9.320604, 45.402601], + [9.320604, 45.398104], + [9.316108, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.402601], + [9.316108, 45.407097], + [9.320604, 45.407097], + [9.320604, 45.402601], + [9.316108, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.407097], + [9.316108, 45.411594], + [9.320604, 45.411594], + [9.320604, 45.407097], + [9.316108, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.411594], + [9.316108, 45.416091], + [9.320604, 45.416091], + [9.320604, 45.411594], + [9.316108, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.416091], + [9.316108, 45.420587], + [9.320604, 45.420587], + [9.320604, 45.416091], + [9.316108, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.420587], + [9.316108, 45.425084], + [9.320604, 45.425084], + [9.320604, 45.420587], + [9.316108, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.425084], + [9.316108, 45.42958], + [9.320604, 45.42958], + [9.320604, 45.425084], + [9.316108, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.42958], + [9.316108, 45.434077], + [9.320604, 45.434077], + [9.320604, 45.42958], + [9.316108, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.434077], + [9.316108, 45.438574], + [9.320604, 45.438574], + [9.320604, 45.434077], + [9.316108, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.438574], + [9.316108, 45.44307], + [9.320604, 45.44307], + [9.320604, 45.438574], + [9.316108, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.44307], + [9.316108, 45.447567], + [9.320604, 45.447567], + [9.320604, 45.44307], + [9.316108, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.447567], + [9.316108, 45.452063], + [9.320604, 45.452063], + [9.320604, 45.447567], + [9.316108, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.452063], + [9.316108, 45.45656], + [9.320604, 45.45656], + [9.320604, 45.452063], + [9.316108, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.45656], + [9.316108, 45.461057], + [9.320604, 45.461057], + [9.320604, 45.45656], + [9.316108, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.461057], + [9.316108, 45.465553], + [9.320604, 45.465553], + [9.320604, 45.461057], + [9.316108, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.465553], + [9.316108, 45.47005], + [9.320604, 45.47005], + [9.320604, 45.465553], + [9.316108, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.47005], + [9.316108, 45.474547], + [9.320604, 45.474547], + [9.320604, 45.47005], + [9.316108, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.474547], + [9.316108, 45.479043], + [9.320604, 45.479043], + [9.320604, 45.474547], + [9.316108, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.479043], + [9.316108, 45.48354], + [9.320604, 45.48354], + [9.320604, 45.479043], + [9.316108, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.48354], + [9.316108, 45.488036], + [9.320604, 45.488036], + [9.320604, 45.48354], + [9.316108, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.488036], + [9.316108, 45.492533], + [9.320604, 45.492533], + [9.320604, 45.488036], + [9.316108, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.492533], + [9.316108, 45.49703], + [9.320604, 45.49703], + [9.320604, 45.492533], + [9.316108, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.49703], + [9.316108, 45.501526], + [9.320604, 45.501526], + [9.320604, 45.49703], + [9.316108, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.501526], + [9.316108, 45.506023], + [9.320604, 45.506023], + [9.320604, 45.501526], + [9.316108, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.506023], + [9.316108, 45.510519], + [9.320604, 45.510519], + [9.320604, 45.506023], + [9.316108, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.510519], + [9.316108, 45.515016], + [9.320604, 45.515016], + [9.320604, 45.510519], + [9.316108, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.515016], + [9.316108, 45.519513], + [9.320604, 45.519513], + [9.320604, 45.515016], + [9.316108, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.519513], + [9.316108, 45.524009], + [9.320604, 45.524009], + [9.320604, 45.519513], + [9.316108, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.524009], + [9.316108, 45.528506], + [9.320604, 45.528506], + [9.320604, 45.524009], + [9.316108, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.528506], + [9.316108, 45.533002], + [9.320604, 45.533002], + [9.320604, 45.528506], + [9.316108, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.533002], + [9.316108, 45.537499], + [9.320604, 45.537499], + [9.320604, 45.533002], + [9.316108, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.537499], + [9.316108, 45.541996], + [9.320604, 45.541996], + [9.320604, 45.537499], + [9.316108, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.541996], + [9.316108, 45.546492], + [9.320604, 45.546492], + [9.320604, 45.541996], + [9.316108, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.546492], + [9.316108, 45.550989], + [9.320604, 45.550989], + [9.320604, 45.546492], + [9.316108, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.550989], + [9.316108, 45.555485], + [9.320604, 45.555485], + [9.320604, 45.550989], + [9.316108, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.555485], + [9.316108, 45.559982], + [9.320604, 45.559982], + [9.320604, 45.555485], + [9.316108, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.559982], + [9.316108, 45.564479], + [9.320604, 45.564479], + [9.320604, 45.559982], + [9.316108, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.564479], + [9.316108, 45.568975], + [9.320604, 45.568975], + [9.320604, 45.564479], + [9.316108, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.568975], + [9.316108, 45.573472], + [9.320604, 45.573472], + [9.320604, 45.568975], + [9.316108, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.573472], + [9.316108, 45.577968], + [9.320604, 45.577968], + [9.320604, 45.573472], + [9.316108, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.577968], + [9.316108, 45.582465], + [9.320604, 45.582465], + [9.320604, 45.577968], + [9.316108, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.582465], + [9.316108, 45.586962], + [9.320604, 45.586962], + [9.320604, 45.582465], + [9.316108, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.586962], + [9.316108, 45.591458], + [9.320604, 45.591458], + [9.320604, 45.586962], + [9.316108, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.591458], + [9.316108, 45.595955], + [9.320604, 45.595955], + [9.320604, 45.591458], + [9.316108, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.595955], + [9.316108, 45.600451], + [9.320604, 45.600451], + [9.320604, 45.595955], + [9.316108, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.600451], + [9.316108, 45.604948], + [9.320604, 45.604948], + [9.320604, 45.600451], + [9.316108, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.604948], + [9.316108, 45.609445], + [9.320604, 45.609445], + [9.320604, 45.604948], + [9.316108, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.609445], + [9.316108, 45.613941], + [9.320604, 45.613941], + [9.320604, 45.609445], + [9.316108, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.613941], + [9.316108, 45.618438], + [9.320604, 45.618438], + [9.320604, 45.613941], + [9.316108, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.618438], + [9.316108, 45.622934], + [9.320604, 45.622934], + [9.320604, 45.618438], + [9.316108, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.622934], + [9.316108, 45.627431], + [9.320604, 45.627431], + [9.320604, 45.622934], + [9.316108, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.627431], + [9.316108, 45.631928], + [9.320604, 45.631928], + [9.320604, 45.627431], + [9.316108, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.631928], + [9.316108, 45.636424], + [9.320604, 45.636424], + [9.320604, 45.631928], + [9.316108, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.339648], + [9.320604, 45.344145], + [9.325101, 45.344145], + [9.325101, 45.339648], + [9.320604, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.344145], + [9.320604, 45.348642], + [9.325101, 45.348642], + [9.325101, 45.344145], + [9.320604, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.348642], + [9.320604, 45.353138], + [9.325101, 45.353138], + [9.325101, 45.348642], + [9.320604, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.353138], + [9.320604, 45.357635], + [9.325101, 45.357635], + [9.325101, 45.353138], + [9.320604, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.357635], + [9.320604, 45.362131], + [9.325101, 45.362131], + [9.325101, 45.357635], + [9.320604, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.362131], + [9.320604, 45.366628], + [9.325101, 45.366628], + [9.325101, 45.362131], + [9.320604, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.366628], + [9.320604, 45.371125], + [9.325101, 45.371125], + [9.325101, 45.366628], + [9.320604, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.371125], + [9.320604, 45.375621], + [9.325101, 45.375621], + [9.325101, 45.371125], + [9.320604, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.375621], + [9.320604, 45.380118], + [9.325101, 45.380118], + [9.325101, 45.375621], + [9.320604, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.380118], + [9.320604, 45.384614], + [9.325101, 45.384614], + [9.325101, 45.380118], + [9.320604, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.384614], + [9.320604, 45.389111], + [9.325101, 45.389111], + [9.325101, 45.384614], + [9.320604, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.389111], + [9.320604, 45.393608], + [9.325101, 45.393608], + [9.325101, 45.389111], + [9.320604, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.393608], + [9.320604, 45.398104], + [9.325101, 45.398104], + [9.325101, 45.393608], + [9.320604, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.398104], + [9.320604, 45.402601], + [9.325101, 45.402601], + [9.325101, 45.398104], + [9.320604, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.402601], + [9.320604, 45.407097], + [9.325101, 45.407097], + [9.325101, 45.402601], + [9.320604, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.407097], + [9.320604, 45.411594], + [9.325101, 45.411594], + [9.325101, 45.407097], + [9.320604, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.411594], + [9.320604, 45.416091], + [9.325101, 45.416091], + [9.325101, 45.411594], + [9.320604, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.416091], + [9.320604, 45.420587], + [9.325101, 45.420587], + [9.325101, 45.416091], + [9.320604, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.420587], + [9.320604, 45.425084], + [9.325101, 45.425084], + [9.325101, 45.420587], + [9.320604, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.425084], + [9.320604, 45.42958], + [9.325101, 45.42958], + [9.325101, 45.425084], + [9.320604, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.42958], + [9.320604, 45.434077], + [9.325101, 45.434077], + [9.325101, 45.42958], + [9.320604, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.434077], + [9.320604, 45.438574], + [9.325101, 45.438574], + [9.325101, 45.434077], + [9.320604, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.438574], + [9.320604, 45.44307], + [9.325101, 45.44307], + [9.325101, 45.438574], + [9.320604, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.44307], + [9.320604, 45.447567], + [9.325101, 45.447567], + [9.325101, 45.44307], + [9.320604, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.447567], + [9.320604, 45.452063], + [9.325101, 45.452063], + [9.325101, 45.447567], + [9.320604, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.452063], + [9.320604, 45.45656], + [9.325101, 45.45656], + [9.325101, 45.452063], + [9.320604, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.45656], + [9.320604, 45.461057], + [9.325101, 45.461057], + [9.325101, 45.45656], + [9.320604, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.461057], + [9.320604, 45.465553], + [9.325101, 45.465553], + [9.325101, 45.461057], + [9.320604, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.465553], + [9.320604, 45.47005], + [9.325101, 45.47005], + [9.325101, 45.465553], + [9.320604, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.47005], + [9.320604, 45.474547], + [9.325101, 45.474547], + [9.325101, 45.47005], + [9.320604, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.474547], + [9.320604, 45.479043], + [9.325101, 45.479043], + [9.325101, 45.474547], + [9.320604, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.479043], + [9.320604, 45.48354], + [9.325101, 45.48354], + [9.325101, 45.479043], + [9.320604, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.48354], + [9.320604, 45.488036], + [9.325101, 45.488036], + [9.325101, 45.48354], + [9.320604, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.488036], + [9.320604, 45.492533], + [9.325101, 45.492533], + [9.325101, 45.488036], + [9.320604, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.492533], + [9.320604, 45.49703], + [9.325101, 45.49703], + [9.325101, 45.492533], + [9.320604, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.49703], + [9.320604, 45.501526], + [9.325101, 45.501526], + [9.325101, 45.49703], + [9.320604, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.501526], + [9.320604, 45.506023], + [9.325101, 45.506023], + [9.325101, 45.501526], + [9.320604, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.506023], + [9.320604, 45.510519], + [9.325101, 45.510519], + [9.325101, 45.506023], + [9.320604, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.510519], + [9.320604, 45.515016], + [9.325101, 45.515016], + [9.325101, 45.510519], + [9.320604, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.515016], + [9.320604, 45.519513], + [9.325101, 45.519513], + [9.325101, 45.515016], + [9.320604, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.519513], + [9.320604, 45.524009], + [9.325101, 45.524009], + [9.325101, 45.519513], + [9.320604, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.524009], + [9.320604, 45.528506], + [9.325101, 45.528506], + [9.325101, 45.524009], + [9.320604, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.528506], + [9.320604, 45.533002], + [9.325101, 45.533002], + [9.325101, 45.528506], + [9.320604, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.533002], + [9.320604, 45.537499], + [9.325101, 45.537499], + [9.325101, 45.533002], + [9.320604, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.537499], + [9.320604, 45.541996], + [9.325101, 45.541996], + [9.325101, 45.537499], + [9.320604, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.541996], + [9.320604, 45.546492], + [9.325101, 45.546492], + [9.325101, 45.541996], + [9.320604, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.546492], + [9.320604, 45.550989], + [9.325101, 45.550989], + [9.325101, 45.546492], + [9.320604, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.550989], + [9.320604, 45.555485], + [9.325101, 45.555485], + [9.325101, 45.550989], + [9.320604, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.555485], + [9.320604, 45.559982], + [9.325101, 45.559982], + [9.325101, 45.555485], + [9.320604, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.559982], + [9.320604, 45.564479], + [9.325101, 45.564479], + [9.325101, 45.559982], + [9.320604, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.564479], + [9.320604, 45.568975], + [9.325101, 45.568975], + [9.325101, 45.564479], + [9.320604, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.568975], + [9.320604, 45.573472], + [9.325101, 45.573472], + [9.325101, 45.568975], + [9.320604, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.573472], + [9.320604, 45.577968], + [9.325101, 45.577968], + [9.325101, 45.573472], + [9.320604, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.577968], + [9.320604, 45.582465], + [9.325101, 45.582465], + [9.325101, 45.577968], + [9.320604, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.582465], + [9.320604, 45.586962], + [9.325101, 45.586962], + [9.325101, 45.582465], + [9.320604, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.586962], + [9.320604, 45.591458], + [9.325101, 45.591458], + [9.325101, 45.586962], + [9.320604, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.591458], + [9.320604, 45.595955], + [9.325101, 45.595955], + [9.325101, 45.591458], + [9.320604, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.595955], + [9.320604, 45.600451], + [9.325101, 45.600451], + [9.325101, 45.595955], + [9.320604, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.600451], + [9.320604, 45.604948], + [9.325101, 45.604948], + [9.325101, 45.600451], + [9.320604, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.604948], + [9.320604, 45.609445], + [9.325101, 45.609445], + [9.325101, 45.604948], + [9.320604, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.609445], + [9.320604, 45.613941], + [9.325101, 45.613941], + [9.325101, 45.609445], + [9.320604, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.613941], + [9.320604, 45.618438], + [9.325101, 45.618438], + [9.325101, 45.613941], + [9.320604, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.618438], + [9.320604, 45.622934], + [9.325101, 45.622934], + [9.325101, 45.618438], + [9.320604, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.622934], + [9.320604, 45.627431], + [9.325101, 45.627431], + [9.325101, 45.622934], + [9.320604, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.627431], + [9.320604, 45.631928], + [9.325101, 45.631928], + [9.325101, 45.627431], + [9.320604, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.631928], + [9.320604, 45.636424], + [9.325101, 45.636424], + [9.325101, 45.631928], + [9.320604, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.339648], + [9.325101, 45.344145], + [9.329597, 45.344145], + [9.329597, 45.339648], + [9.325101, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.344145], + [9.325101, 45.348642], + [9.329597, 45.348642], + [9.329597, 45.344145], + [9.325101, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.348642], + [9.325101, 45.353138], + [9.329597, 45.353138], + [9.329597, 45.348642], + [9.325101, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.353138], + [9.325101, 45.357635], + [9.329597, 45.357635], + [9.329597, 45.353138], + [9.325101, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.357635], + [9.325101, 45.362131], + [9.329597, 45.362131], + [9.329597, 45.357635], + [9.325101, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.362131], + [9.325101, 45.366628], + [9.329597, 45.366628], + [9.329597, 45.362131], + [9.325101, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.366628], + [9.325101, 45.371125], + [9.329597, 45.371125], + [9.329597, 45.366628], + [9.325101, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.371125], + [9.325101, 45.375621], + [9.329597, 45.375621], + [9.329597, 45.371125], + [9.325101, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.375621], + [9.325101, 45.380118], + [9.329597, 45.380118], + [9.329597, 45.375621], + [9.325101, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.380118], + [9.325101, 45.384614], + [9.329597, 45.384614], + [9.329597, 45.380118], + [9.325101, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.384614], + [9.325101, 45.389111], + [9.329597, 45.389111], + [9.329597, 45.384614], + [9.325101, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.389111], + [9.325101, 45.393608], + [9.329597, 45.393608], + [9.329597, 45.389111], + [9.325101, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.393608], + [9.325101, 45.398104], + [9.329597, 45.398104], + [9.329597, 45.393608], + [9.325101, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.398104], + [9.325101, 45.402601], + [9.329597, 45.402601], + [9.329597, 45.398104], + [9.325101, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.402601], + [9.325101, 45.407097], + [9.329597, 45.407097], + [9.329597, 45.402601], + [9.325101, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.407097], + [9.325101, 45.411594], + [9.329597, 45.411594], + [9.329597, 45.407097], + [9.325101, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.411594], + [9.325101, 45.416091], + [9.329597, 45.416091], + [9.329597, 45.411594], + [9.325101, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.416091], + [9.325101, 45.420587], + [9.329597, 45.420587], + [9.329597, 45.416091], + [9.325101, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.420587], + [9.325101, 45.425084], + [9.329597, 45.425084], + [9.329597, 45.420587], + [9.325101, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.425084], + [9.325101, 45.42958], + [9.329597, 45.42958], + [9.329597, 45.425084], + [9.325101, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.42958], + [9.325101, 45.434077], + [9.329597, 45.434077], + [9.329597, 45.42958], + [9.325101, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.434077], + [9.325101, 45.438574], + [9.329597, 45.438574], + [9.329597, 45.434077], + [9.325101, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.438574], + [9.325101, 45.44307], + [9.329597, 45.44307], + [9.329597, 45.438574], + [9.325101, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.44307], + [9.325101, 45.447567], + [9.329597, 45.447567], + [9.329597, 45.44307], + [9.325101, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.447567], + [9.325101, 45.452063], + [9.329597, 45.452063], + [9.329597, 45.447567], + [9.325101, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.452063], + [9.325101, 45.45656], + [9.329597, 45.45656], + [9.329597, 45.452063], + [9.325101, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.45656], + [9.325101, 45.461057], + [9.329597, 45.461057], + [9.329597, 45.45656], + [9.325101, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.461057], + [9.325101, 45.465553], + [9.329597, 45.465553], + [9.329597, 45.461057], + [9.325101, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.465553], + [9.325101, 45.47005], + [9.329597, 45.47005], + [9.329597, 45.465553], + [9.325101, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.47005], + [9.325101, 45.474547], + [9.329597, 45.474547], + [9.329597, 45.47005], + [9.325101, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.474547], + [9.325101, 45.479043], + [9.329597, 45.479043], + [9.329597, 45.474547], + [9.325101, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.479043], + [9.325101, 45.48354], + [9.329597, 45.48354], + [9.329597, 45.479043], + [9.325101, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.48354], + [9.325101, 45.488036], + [9.329597, 45.488036], + [9.329597, 45.48354], + [9.325101, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.488036], + [9.325101, 45.492533], + [9.329597, 45.492533], + [9.329597, 45.488036], + [9.325101, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.492533], + [9.325101, 45.49703], + [9.329597, 45.49703], + [9.329597, 45.492533], + [9.325101, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.49703], + [9.325101, 45.501526], + [9.329597, 45.501526], + [9.329597, 45.49703], + [9.325101, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.501526], + [9.325101, 45.506023], + [9.329597, 45.506023], + [9.329597, 45.501526], + [9.325101, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.506023], + [9.325101, 45.510519], + [9.329597, 45.510519], + [9.329597, 45.506023], + [9.325101, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.510519], + [9.325101, 45.515016], + [9.329597, 45.515016], + [9.329597, 45.510519], + [9.325101, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.515016], + [9.325101, 45.519513], + [9.329597, 45.519513], + [9.329597, 45.515016], + [9.325101, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.519513], + [9.325101, 45.524009], + [9.329597, 45.524009], + [9.329597, 45.519513], + [9.325101, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.524009], + [9.325101, 45.528506], + [9.329597, 45.528506], + [9.329597, 45.524009], + [9.325101, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.528506], + [9.325101, 45.533002], + [9.329597, 45.533002], + [9.329597, 45.528506], + [9.325101, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.533002], + [9.325101, 45.537499], + [9.329597, 45.537499], + [9.329597, 45.533002], + [9.325101, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.537499], + [9.325101, 45.541996], + [9.329597, 45.541996], + [9.329597, 45.537499], + [9.325101, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.541996], + [9.325101, 45.546492], + [9.329597, 45.546492], + [9.329597, 45.541996], + [9.325101, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.546492], + [9.325101, 45.550989], + [9.329597, 45.550989], + [9.329597, 45.546492], + [9.325101, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.550989], + [9.325101, 45.555485], + [9.329597, 45.555485], + [9.329597, 45.550989], + [9.325101, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.555485], + [9.325101, 45.559982], + [9.329597, 45.559982], + [9.329597, 45.555485], + [9.325101, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.559982], + [9.325101, 45.564479], + [9.329597, 45.564479], + [9.329597, 45.559982], + [9.325101, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.564479], + [9.325101, 45.568975], + [9.329597, 45.568975], + [9.329597, 45.564479], + [9.325101, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.568975], + [9.325101, 45.573472], + [9.329597, 45.573472], + [9.329597, 45.568975], + [9.325101, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.573472], + [9.325101, 45.577968], + [9.329597, 45.577968], + [9.329597, 45.573472], + [9.325101, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.577968], + [9.325101, 45.582465], + [9.329597, 45.582465], + [9.329597, 45.577968], + [9.325101, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.582465], + [9.325101, 45.586962], + [9.329597, 45.586962], + [9.329597, 45.582465], + [9.325101, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.586962], + [9.325101, 45.591458], + [9.329597, 45.591458], + [9.329597, 45.586962], + [9.325101, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.591458], + [9.325101, 45.595955], + [9.329597, 45.595955], + [9.329597, 45.591458], + [9.325101, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.595955], + [9.325101, 45.600451], + [9.329597, 45.600451], + [9.329597, 45.595955], + [9.325101, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.600451], + [9.325101, 45.604948], + [9.329597, 45.604948], + [9.329597, 45.600451], + [9.325101, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.604948], + [9.325101, 45.609445], + [9.329597, 45.609445], + [9.329597, 45.604948], + [9.325101, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.609445], + [9.325101, 45.613941], + [9.329597, 45.613941], + [9.329597, 45.609445], + [9.325101, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.613941], + [9.325101, 45.618438], + [9.329597, 45.618438], + [9.329597, 45.613941], + [9.325101, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.618438], + [9.325101, 45.622934], + [9.329597, 45.622934], + [9.329597, 45.618438], + [9.325101, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.622934], + [9.325101, 45.627431], + [9.329597, 45.627431], + [9.329597, 45.622934], + [9.325101, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.627431], + [9.325101, 45.631928], + [9.329597, 45.631928], + [9.329597, 45.627431], + [9.325101, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.631928], + [9.325101, 45.636424], + [9.329597, 45.636424], + [9.329597, 45.631928], + [9.325101, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.339648], + [9.329597, 45.344145], + [9.334094, 45.344145], + [9.334094, 45.339648], + [9.329597, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.344145], + [9.329597, 45.348642], + [9.334094, 45.348642], + [9.334094, 45.344145], + [9.329597, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.348642], + [9.329597, 45.353138], + [9.334094, 45.353138], + [9.334094, 45.348642], + [9.329597, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.353138], + [9.329597, 45.357635], + [9.334094, 45.357635], + [9.334094, 45.353138], + [9.329597, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.357635], + [9.329597, 45.362131], + [9.334094, 45.362131], + [9.334094, 45.357635], + [9.329597, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.362131], + [9.329597, 45.366628], + [9.334094, 45.366628], + [9.334094, 45.362131], + [9.329597, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.366628], + [9.329597, 45.371125], + [9.334094, 45.371125], + [9.334094, 45.366628], + [9.329597, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.371125], + [9.329597, 45.375621], + [9.334094, 45.375621], + [9.334094, 45.371125], + [9.329597, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.375621], + [9.329597, 45.380118], + [9.334094, 45.380118], + [9.334094, 45.375621], + [9.329597, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.380118], + [9.329597, 45.384614], + [9.334094, 45.384614], + [9.334094, 45.380118], + [9.329597, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.384614], + [9.329597, 45.389111], + [9.334094, 45.389111], + [9.334094, 45.384614], + [9.329597, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.389111], + [9.329597, 45.393608], + [9.334094, 45.393608], + [9.334094, 45.389111], + [9.329597, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.393608], + [9.329597, 45.398104], + [9.334094, 45.398104], + [9.334094, 45.393608], + [9.329597, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.398104], + [9.329597, 45.402601], + [9.334094, 45.402601], + [9.334094, 45.398104], + [9.329597, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.402601], + [9.329597, 45.407097], + [9.334094, 45.407097], + [9.334094, 45.402601], + [9.329597, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.407097], + [9.329597, 45.411594], + [9.334094, 45.411594], + [9.334094, 45.407097], + [9.329597, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.411594], + [9.329597, 45.416091], + [9.334094, 45.416091], + [9.334094, 45.411594], + [9.329597, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.416091], + [9.329597, 45.420587], + [9.334094, 45.420587], + [9.334094, 45.416091], + [9.329597, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.420587], + [9.329597, 45.425084], + [9.334094, 45.425084], + [9.334094, 45.420587], + [9.329597, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.425084], + [9.329597, 45.42958], + [9.334094, 45.42958], + [9.334094, 45.425084], + [9.329597, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.42958], + [9.329597, 45.434077], + [9.334094, 45.434077], + [9.334094, 45.42958], + [9.329597, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.434077], + [9.329597, 45.438574], + [9.334094, 45.438574], + [9.334094, 45.434077], + [9.329597, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.438574], + [9.329597, 45.44307], + [9.334094, 45.44307], + [9.334094, 45.438574], + [9.329597, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.44307], + [9.329597, 45.447567], + [9.334094, 45.447567], + [9.334094, 45.44307], + [9.329597, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.447567], + [9.329597, 45.452063], + [9.334094, 45.452063], + [9.334094, 45.447567], + [9.329597, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.452063], + [9.329597, 45.45656], + [9.334094, 45.45656], + [9.334094, 45.452063], + [9.329597, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.45656], + [9.329597, 45.461057], + [9.334094, 45.461057], + [9.334094, 45.45656], + [9.329597, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.461057], + [9.329597, 45.465553], + [9.334094, 45.465553], + [9.334094, 45.461057], + [9.329597, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.465553], + [9.329597, 45.47005], + [9.334094, 45.47005], + [9.334094, 45.465553], + [9.329597, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.47005], + [9.329597, 45.474547], + [9.334094, 45.474547], + [9.334094, 45.47005], + [9.329597, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.474547], + [9.329597, 45.479043], + [9.334094, 45.479043], + [9.334094, 45.474547], + [9.329597, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.479043], + [9.329597, 45.48354], + [9.334094, 45.48354], + [9.334094, 45.479043], + [9.329597, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.48354], + [9.329597, 45.488036], + [9.334094, 45.488036], + [9.334094, 45.48354], + [9.329597, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.488036], + [9.329597, 45.492533], + [9.334094, 45.492533], + [9.334094, 45.488036], + [9.329597, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.492533], + [9.329597, 45.49703], + [9.334094, 45.49703], + [9.334094, 45.492533], + [9.329597, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.49703], + [9.329597, 45.501526], + [9.334094, 45.501526], + [9.334094, 45.49703], + [9.329597, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.501526], + [9.329597, 45.506023], + [9.334094, 45.506023], + [9.334094, 45.501526], + [9.329597, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.506023], + [9.329597, 45.510519], + [9.334094, 45.510519], + [9.334094, 45.506023], + [9.329597, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.510519], + [9.329597, 45.515016], + [9.334094, 45.515016], + [9.334094, 45.510519], + [9.329597, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.515016], + [9.329597, 45.519513], + [9.334094, 45.519513], + [9.334094, 45.515016], + [9.329597, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.519513], + [9.329597, 45.524009], + [9.334094, 45.524009], + [9.334094, 45.519513], + [9.329597, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.524009], + [9.329597, 45.528506], + [9.334094, 45.528506], + [9.334094, 45.524009], + [9.329597, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.528506], + [9.329597, 45.533002], + [9.334094, 45.533002], + [9.334094, 45.528506], + [9.329597, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.533002], + [9.329597, 45.537499], + [9.334094, 45.537499], + [9.334094, 45.533002], + [9.329597, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.537499], + [9.329597, 45.541996], + [9.334094, 45.541996], + [9.334094, 45.537499], + [9.329597, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.541996], + [9.329597, 45.546492], + [9.334094, 45.546492], + [9.334094, 45.541996], + [9.329597, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.546492], + [9.329597, 45.550989], + [9.334094, 45.550989], + [9.334094, 45.546492], + [9.329597, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.550989], + [9.329597, 45.555485], + [9.334094, 45.555485], + [9.334094, 45.550989], + [9.329597, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.555485], + [9.329597, 45.559982], + [9.334094, 45.559982], + [9.334094, 45.555485], + [9.329597, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.559982], + [9.329597, 45.564479], + [9.334094, 45.564479], + [9.334094, 45.559982], + [9.329597, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.564479], + [9.329597, 45.568975], + [9.334094, 45.568975], + [9.334094, 45.564479], + [9.329597, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.568975], + [9.329597, 45.573472], + [9.334094, 45.573472], + [9.334094, 45.568975], + [9.329597, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.573472], + [9.329597, 45.577968], + [9.334094, 45.577968], + [9.334094, 45.573472], + [9.329597, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.577968], + [9.329597, 45.582465], + [9.334094, 45.582465], + [9.334094, 45.577968], + [9.329597, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.582465], + [9.329597, 45.586962], + [9.334094, 45.586962], + [9.334094, 45.582465], + [9.329597, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.586962], + [9.329597, 45.591458], + [9.334094, 45.591458], + [9.334094, 45.586962], + [9.329597, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.591458], + [9.329597, 45.595955], + [9.334094, 45.595955], + [9.334094, 45.591458], + [9.329597, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.595955], + [9.329597, 45.600451], + [9.334094, 45.600451], + [9.334094, 45.595955], + [9.329597, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.600451], + [9.329597, 45.604948], + [9.334094, 45.604948], + [9.334094, 45.600451], + [9.329597, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.604948], + [9.329597, 45.609445], + [9.334094, 45.609445], + [9.334094, 45.604948], + [9.329597, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.609445], + [9.329597, 45.613941], + [9.334094, 45.613941], + [9.334094, 45.609445], + [9.329597, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.613941], + [9.329597, 45.618438], + [9.334094, 45.618438], + [9.334094, 45.613941], + [9.329597, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.618438], + [9.329597, 45.622934], + [9.334094, 45.622934], + [9.334094, 45.618438], + [9.329597, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.622934], + [9.329597, 45.627431], + [9.334094, 45.627431], + [9.334094, 45.622934], + [9.329597, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.627431], + [9.329597, 45.631928], + [9.334094, 45.631928], + [9.334094, 45.627431], + [9.329597, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.631928], + [9.329597, 45.636424], + [9.334094, 45.636424], + [9.334094, 45.631928], + [9.329597, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.339648], + [9.334094, 45.344145], + [9.338591, 45.344145], + [9.338591, 45.339648], + [9.334094, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.344145], + [9.334094, 45.348642], + [9.338591, 45.348642], + [9.338591, 45.344145], + [9.334094, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.348642], + [9.334094, 45.353138], + [9.338591, 45.353138], + [9.338591, 45.348642], + [9.334094, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.353138], + [9.334094, 45.357635], + [9.338591, 45.357635], + [9.338591, 45.353138], + [9.334094, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.357635], + [9.334094, 45.362131], + [9.338591, 45.362131], + [9.338591, 45.357635], + [9.334094, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.362131], + [9.334094, 45.366628], + [9.338591, 45.366628], + [9.338591, 45.362131], + [9.334094, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.366628], + [9.334094, 45.371125], + [9.338591, 45.371125], + [9.338591, 45.366628], + [9.334094, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.371125], + [9.334094, 45.375621], + [9.338591, 45.375621], + [9.338591, 45.371125], + [9.334094, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.375621], + [9.334094, 45.380118], + [9.338591, 45.380118], + [9.338591, 45.375621], + [9.334094, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.380118], + [9.334094, 45.384614], + [9.338591, 45.384614], + [9.338591, 45.380118], + [9.334094, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.384614], + [9.334094, 45.389111], + [9.338591, 45.389111], + [9.338591, 45.384614], + [9.334094, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.389111], + [9.334094, 45.393608], + [9.338591, 45.393608], + [9.338591, 45.389111], + [9.334094, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.393608], + [9.334094, 45.398104], + [9.338591, 45.398104], + [9.338591, 45.393608], + [9.334094, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.398104], + [9.334094, 45.402601], + [9.338591, 45.402601], + [9.338591, 45.398104], + [9.334094, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.402601], + [9.334094, 45.407097], + [9.338591, 45.407097], + [9.338591, 45.402601], + [9.334094, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.407097], + [9.334094, 45.411594], + [9.338591, 45.411594], + [9.338591, 45.407097], + [9.334094, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.411594], + [9.334094, 45.416091], + [9.338591, 45.416091], + [9.338591, 45.411594], + [9.334094, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.416091], + [9.334094, 45.420587], + [9.338591, 45.420587], + [9.338591, 45.416091], + [9.334094, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.420587], + [9.334094, 45.425084], + [9.338591, 45.425084], + [9.338591, 45.420587], + [9.334094, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.425084], + [9.334094, 45.42958], + [9.338591, 45.42958], + [9.338591, 45.425084], + [9.334094, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.42958], + [9.334094, 45.434077], + [9.338591, 45.434077], + [9.338591, 45.42958], + [9.334094, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.434077], + [9.334094, 45.438574], + [9.338591, 45.438574], + [9.338591, 45.434077], + [9.334094, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.438574], + [9.334094, 45.44307], + [9.338591, 45.44307], + [9.338591, 45.438574], + [9.334094, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.44307], + [9.334094, 45.447567], + [9.338591, 45.447567], + [9.338591, 45.44307], + [9.334094, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.447567], + [9.334094, 45.452063], + [9.338591, 45.452063], + [9.338591, 45.447567], + [9.334094, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.452063], + [9.334094, 45.45656], + [9.338591, 45.45656], + [9.338591, 45.452063], + [9.334094, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.45656], + [9.334094, 45.461057], + [9.338591, 45.461057], + [9.338591, 45.45656], + [9.334094, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.461057], + [9.334094, 45.465553], + [9.338591, 45.465553], + [9.338591, 45.461057], + [9.334094, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.465553], + [9.334094, 45.47005], + [9.338591, 45.47005], + [9.338591, 45.465553], + [9.334094, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.47005], + [9.334094, 45.474547], + [9.338591, 45.474547], + [9.338591, 45.47005], + [9.334094, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.474547], + [9.334094, 45.479043], + [9.338591, 45.479043], + [9.338591, 45.474547], + [9.334094, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.479043], + [9.334094, 45.48354], + [9.338591, 45.48354], + [9.338591, 45.479043], + [9.334094, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.48354], + [9.334094, 45.488036], + [9.338591, 45.488036], + [9.338591, 45.48354], + [9.334094, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.488036], + [9.334094, 45.492533], + [9.338591, 45.492533], + [9.338591, 45.488036], + [9.334094, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.492533], + [9.334094, 45.49703], + [9.338591, 45.49703], + [9.338591, 45.492533], + [9.334094, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.49703], + [9.334094, 45.501526], + [9.338591, 45.501526], + [9.338591, 45.49703], + [9.334094, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.501526], + [9.334094, 45.506023], + [9.338591, 45.506023], + [9.338591, 45.501526], + [9.334094, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.506023], + [9.334094, 45.510519], + [9.338591, 45.510519], + [9.338591, 45.506023], + [9.334094, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.510519], + [9.334094, 45.515016], + [9.338591, 45.515016], + [9.338591, 45.510519], + [9.334094, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.515016], + [9.334094, 45.519513], + [9.338591, 45.519513], + [9.338591, 45.515016], + [9.334094, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.519513], + [9.334094, 45.524009], + [9.338591, 45.524009], + [9.338591, 45.519513], + [9.334094, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.524009], + [9.334094, 45.528506], + [9.338591, 45.528506], + [9.338591, 45.524009], + [9.334094, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.528506], + [9.334094, 45.533002], + [9.338591, 45.533002], + [9.338591, 45.528506], + [9.334094, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.533002], + [9.334094, 45.537499], + [9.338591, 45.537499], + [9.338591, 45.533002], + [9.334094, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.537499], + [9.334094, 45.541996], + [9.338591, 45.541996], + [9.338591, 45.537499], + [9.334094, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.541996], + [9.334094, 45.546492], + [9.338591, 45.546492], + [9.338591, 45.541996], + [9.334094, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.546492], + [9.334094, 45.550989], + [9.338591, 45.550989], + [9.338591, 45.546492], + [9.334094, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.550989], + [9.334094, 45.555485], + [9.338591, 45.555485], + [9.338591, 45.550989], + [9.334094, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.555485], + [9.334094, 45.559982], + [9.338591, 45.559982], + [9.338591, 45.555485], + [9.334094, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.559982], + [9.334094, 45.564479], + [9.338591, 45.564479], + [9.338591, 45.559982], + [9.334094, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.564479], + [9.334094, 45.568975], + [9.338591, 45.568975], + [9.338591, 45.564479], + [9.334094, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.568975], + [9.334094, 45.573472], + [9.338591, 45.573472], + [9.338591, 45.568975], + [9.334094, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.573472], + [9.334094, 45.577968], + [9.338591, 45.577968], + [9.338591, 45.573472], + [9.334094, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.577968], + [9.334094, 45.582465], + [9.338591, 45.582465], + [9.338591, 45.577968], + [9.334094, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.582465], + [9.334094, 45.586962], + [9.338591, 45.586962], + [9.338591, 45.582465], + [9.334094, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.586962], + [9.334094, 45.591458], + [9.338591, 45.591458], + [9.338591, 45.586962], + [9.334094, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.591458], + [9.334094, 45.595955], + [9.338591, 45.595955], + [9.338591, 45.591458], + [9.334094, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.595955], + [9.334094, 45.600451], + [9.338591, 45.600451], + [9.338591, 45.595955], + [9.334094, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.600451], + [9.334094, 45.604948], + [9.338591, 45.604948], + [9.338591, 45.600451], + [9.334094, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.604948], + [9.334094, 45.609445], + [9.338591, 45.609445], + [9.338591, 45.604948], + [9.334094, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.609445], + [9.334094, 45.613941], + [9.338591, 45.613941], + [9.338591, 45.609445], + [9.334094, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.613941], + [9.334094, 45.618438], + [9.338591, 45.618438], + [9.338591, 45.613941], + [9.334094, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.618438], + [9.334094, 45.622934], + [9.338591, 45.622934], + [9.338591, 45.618438], + [9.334094, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.622934], + [9.334094, 45.627431], + [9.338591, 45.627431], + [9.338591, 45.622934], + [9.334094, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.627431], + [9.334094, 45.631928], + [9.338591, 45.631928], + [9.338591, 45.627431], + [9.334094, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.631928], + [9.334094, 45.636424], + [9.338591, 45.636424], + [9.338591, 45.631928], + [9.334094, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.339648], + [9.338591, 45.344145], + [9.343087, 45.344145], + [9.343087, 45.339648], + [9.338591, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.344145], + [9.338591, 45.348642], + [9.343087, 45.348642], + [9.343087, 45.344145], + [9.338591, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.348642], + [9.338591, 45.353138], + [9.343087, 45.353138], + [9.343087, 45.348642], + [9.338591, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.353138], + [9.338591, 45.357635], + [9.343087, 45.357635], + [9.343087, 45.353138], + [9.338591, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.357635], + [9.338591, 45.362131], + [9.343087, 45.362131], + [9.343087, 45.357635], + [9.338591, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.362131], + [9.338591, 45.366628], + [9.343087, 45.366628], + [9.343087, 45.362131], + [9.338591, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.366628], + [9.338591, 45.371125], + [9.343087, 45.371125], + [9.343087, 45.366628], + [9.338591, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.371125], + [9.338591, 45.375621], + [9.343087, 45.375621], + [9.343087, 45.371125], + [9.338591, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.375621], + [9.338591, 45.380118], + [9.343087, 45.380118], + [9.343087, 45.375621], + [9.338591, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.380118], + [9.338591, 45.384614], + [9.343087, 45.384614], + [9.343087, 45.380118], + [9.338591, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.384614], + [9.338591, 45.389111], + [9.343087, 45.389111], + [9.343087, 45.384614], + [9.338591, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.389111], + [9.338591, 45.393608], + [9.343087, 45.393608], + [9.343087, 45.389111], + [9.338591, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.393608], + [9.338591, 45.398104], + [9.343087, 45.398104], + [9.343087, 45.393608], + [9.338591, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.398104], + [9.338591, 45.402601], + [9.343087, 45.402601], + [9.343087, 45.398104], + [9.338591, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.402601], + [9.338591, 45.407097], + [9.343087, 45.407097], + [9.343087, 45.402601], + [9.338591, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.407097], + [9.338591, 45.411594], + [9.343087, 45.411594], + [9.343087, 45.407097], + [9.338591, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.411594], + [9.338591, 45.416091], + [9.343087, 45.416091], + [9.343087, 45.411594], + [9.338591, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.416091], + [9.338591, 45.420587], + [9.343087, 45.420587], + [9.343087, 45.416091], + [9.338591, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.420587], + [9.338591, 45.425084], + [9.343087, 45.425084], + [9.343087, 45.420587], + [9.338591, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.425084], + [9.338591, 45.42958], + [9.343087, 45.42958], + [9.343087, 45.425084], + [9.338591, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.42958], + [9.338591, 45.434077], + [9.343087, 45.434077], + [9.343087, 45.42958], + [9.338591, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.434077], + [9.338591, 45.438574], + [9.343087, 45.438574], + [9.343087, 45.434077], + [9.338591, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.438574], + [9.338591, 45.44307], + [9.343087, 45.44307], + [9.343087, 45.438574], + [9.338591, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.44307], + [9.338591, 45.447567], + [9.343087, 45.447567], + [9.343087, 45.44307], + [9.338591, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.447567], + [9.338591, 45.452063], + [9.343087, 45.452063], + [9.343087, 45.447567], + [9.338591, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.452063], + [9.338591, 45.45656], + [9.343087, 45.45656], + [9.343087, 45.452063], + [9.338591, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.45656], + [9.338591, 45.461057], + [9.343087, 45.461057], + [9.343087, 45.45656], + [9.338591, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.461057], + [9.338591, 45.465553], + [9.343087, 45.465553], + [9.343087, 45.461057], + [9.338591, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.465553], + [9.338591, 45.47005], + [9.343087, 45.47005], + [9.343087, 45.465553], + [9.338591, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.47005], + [9.338591, 45.474547], + [9.343087, 45.474547], + [9.343087, 45.47005], + [9.338591, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.474547], + [9.338591, 45.479043], + [9.343087, 45.479043], + [9.343087, 45.474547], + [9.338591, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.479043], + [9.338591, 45.48354], + [9.343087, 45.48354], + [9.343087, 45.479043], + [9.338591, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.48354], + [9.338591, 45.488036], + [9.343087, 45.488036], + [9.343087, 45.48354], + [9.338591, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.488036], + [9.338591, 45.492533], + [9.343087, 45.492533], + [9.343087, 45.488036], + [9.338591, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.492533], + [9.338591, 45.49703], + [9.343087, 45.49703], + [9.343087, 45.492533], + [9.338591, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.49703], + [9.338591, 45.501526], + [9.343087, 45.501526], + [9.343087, 45.49703], + [9.338591, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.501526], + [9.338591, 45.506023], + [9.343087, 45.506023], + [9.343087, 45.501526], + [9.338591, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.506023], + [9.338591, 45.510519], + [9.343087, 45.510519], + [9.343087, 45.506023], + [9.338591, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.510519], + [9.338591, 45.515016], + [9.343087, 45.515016], + [9.343087, 45.510519], + [9.338591, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.515016], + [9.338591, 45.519513], + [9.343087, 45.519513], + [9.343087, 45.515016], + [9.338591, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.519513], + [9.338591, 45.524009], + [9.343087, 45.524009], + [9.343087, 45.519513], + [9.338591, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.524009], + [9.338591, 45.528506], + [9.343087, 45.528506], + [9.343087, 45.524009], + [9.338591, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.528506], + [9.338591, 45.533002], + [9.343087, 45.533002], + [9.343087, 45.528506], + [9.338591, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.533002], + [9.338591, 45.537499], + [9.343087, 45.537499], + [9.343087, 45.533002], + [9.338591, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.537499], + [9.338591, 45.541996], + [9.343087, 45.541996], + [9.343087, 45.537499], + [9.338591, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.541996], + [9.338591, 45.546492], + [9.343087, 45.546492], + [9.343087, 45.541996], + [9.338591, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.546492], + [9.338591, 45.550989], + [9.343087, 45.550989], + [9.343087, 45.546492], + [9.338591, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.550989], + [9.338591, 45.555485], + [9.343087, 45.555485], + [9.343087, 45.550989], + [9.338591, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.555485], + [9.338591, 45.559982], + [9.343087, 45.559982], + [9.343087, 45.555485], + [9.338591, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.559982], + [9.338591, 45.564479], + [9.343087, 45.564479], + [9.343087, 45.559982], + [9.338591, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.564479], + [9.338591, 45.568975], + [9.343087, 45.568975], + [9.343087, 45.564479], + [9.338591, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.568975], + [9.338591, 45.573472], + [9.343087, 45.573472], + [9.343087, 45.568975], + [9.338591, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.573472], + [9.338591, 45.577968], + [9.343087, 45.577968], + [9.343087, 45.573472], + [9.338591, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.577968], + [9.338591, 45.582465], + [9.343087, 45.582465], + [9.343087, 45.577968], + [9.338591, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.582465], + [9.338591, 45.586962], + [9.343087, 45.586962], + [9.343087, 45.582465], + [9.338591, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.586962], + [9.338591, 45.591458], + [9.343087, 45.591458], + [9.343087, 45.586962], + [9.338591, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.591458], + [9.338591, 45.595955], + [9.343087, 45.595955], + [9.343087, 45.591458], + [9.338591, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.595955], + [9.338591, 45.600451], + [9.343087, 45.600451], + [9.343087, 45.595955], + [9.338591, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.600451], + [9.338591, 45.604948], + [9.343087, 45.604948], + [9.343087, 45.600451], + [9.338591, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.604948], + [9.338591, 45.609445], + [9.343087, 45.609445], + [9.343087, 45.604948], + [9.338591, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.609445], + [9.338591, 45.613941], + [9.343087, 45.613941], + [9.343087, 45.609445], + [9.338591, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.613941], + [9.338591, 45.618438], + [9.343087, 45.618438], + [9.343087, 45.613941], + [9.338591, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.618438], + [9.338591, 45.622934], + [9.343087, 45.622934], + [9.343087, 45.618438], + [9.338591, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.622934], + [9.338591, 45.627431], + [9.343087, 45.627431], + [9.343087, 45.622934], + [9.338591, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.627431], + [9.338591, 45.631928], + [9.343087, 45.631928], + [9.343087, 45.627431], + [9.338591, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.631928], + [9.338591, 45.636424], + [9.343087, 45.636424], + [9.343087, 45.631928], + [9.338591, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.339648], + [9.343087, 45.344145], + [9.347584, 45.344145], + [9.347584, 45.339648], + [9.343087, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.344145], + [9.343087, 45.348642], + [9.347584, 45.348642], + [9.347584, 45.344145], + [9.343087, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.348642], + [9.343087, 45.353138], + [9.347584, 45.353138], + [9.347584, 45.348642], + [9.343087, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.353138], + [9.343087, 45.357635], + [9.347584, 45.357635], + [9.347584, 45.353138], + [9.343087, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.357635], + [9.343087, 45.362131], + [9.347584, 45.362131], + [9.347584, 45.357635], + [9.343087, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.362131], + [9.343087, 45.366628], + [9.347584, 45.366628], + [9.347584, 45.362131], + [9.343087, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.366628], + [9.343087, 45.371125], + [9.347584, 45.371125], + [9.347584, 45.366628], + [9.343087, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.371125], + [9.343087, 45.375621], + [9.347584, 45.375621], + [9.347584, 45.371125], + [9.343087, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.375621], + [9.343087, 45.380118], + [9.347584, 45.380118], + [9.347584, 45.375621], + [9.343087, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.380118], + [9.343087, 45.384614], + [9.347584, 45.384614], + [9.347584, 45.380118], + [9.343087, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.384614], + [9.343087, 45.389111], + [9.347584, 45.389111], + [9.347584, 45.384614], + [9.343087, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.389111], + [9.343087, 45.393608], + [9.347584, 45.393608], + [9.347584, 45.389111], + [9.343087, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.393608], + [9.343087, 45.398104], + [9.347584, 45.398104], + [9.347584, 45.393608], + [9.343087, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.398104], + [9.343087, 45.402601], + [9.347584, 45.402601], + [9.347584, 45.398104], + [9.343087, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.402601], + [9.343087, 45.407097], + [9.347584, 45.407097], + [9.347584, 45.402601], + [9.343087, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.407097], + [9.343087, 45.411594], + [9.347584, 45.411594], + [9.347584, 45.407097], + [9.343087, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.411594], + [9.343087, 45.416091], + [9.347584, 45.416091], + [9.347584, 45.411594], + [9.343087, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.416091], + [9.343087, 45.420587], + [9.347584, 45.420587], + [9.347584, 45.416091], + [9.343087, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.420587], + [9.343087, 45.425084], + [9.347584, 45.425084], + [9.347584, 45.420587], + [9.343087, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.425084], + [9.343087, 45.42958], + [9.347584, 45.42958], + [9.347584, 45.425084], + [9.343087, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.42958], + [9.343087, 45.434077], + [9.347584, 45.434077], + [9.347584, 45.42958], + [9.343087, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.434077], + [9.343087, 45.438574], + [9.347584, 45.438574], + [9.347584, 45.434077], + [9.343087, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.438574], + [9.343087, 45.44307], + [9.347584, 45.44307], + [9.347584, 45.438574], + [9.343087, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.44307], + [9.343087, 45.447567], + [9.347584, 45.447567], + [9.347584, 45.44307], + [9.343087, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.447567], + [9.343087, 45.452063], + [9.347584, 45.452063], + [9.347584, 45.447567], + [9.343087, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.452063], + [9.343087, 45.45656], + [9.347584, 45.45656], + [9.347584, 45.452063], + [9.343087, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.45656], + [9.343087, 45.461057], + [9.347584, 45.461057], + [9.347584, 45.45656], + [9.343087, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.461057], + [9.343087, 45.465553], + [9.347584, 45.465553], + [9.347584, 45.461057], + [9.343087, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.465553], + [9.343087, 45.47005], + [9.347584, 45.47005], + [9.347584, 45.465553], + [9.343087, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.47005], + [9.343087, 45.474547], + [9.347584, 45.474547], + [9.347584, 45.47005], + [9.343087, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.474547], + [9.343087, 45.479043], + [9.347584, 45.479043], + [9.347584, 45.474547], + [9.343087, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.479043], + [9.343087, 45.48354], + [9.347584, 45.48354], + [9.347584, 45.479043], + [9.343087, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.48354], + [9.343087, 45.488036], + [9.347584, 45.488036], + [9.347584, 45.48354], + [9.343087, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.488036], + [9.343087, 45.492533], + [9.347584, 45.492533], + [9.347584, 45.488036], + [9.343087, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.492533], + [9.343087, 45.49703], + [9.347584, 45.49703], + [9.347584, 45.492533], + [9.343087, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.49703], + [9.343087, 45.501526], + [9.347584, 45.501526], + [9.347584, 45.49703], + [9.343087, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.501526], + [9.343087, 45.506023], + [9.347584, 45.506023], + [9.347584, 45.501526], + [9.343087, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.506023], + [9.343087, 45.510519], + [9.347584, 45.510519], + [9.347584, 45.506023], + [9.343087, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.510519], + [9.343087, 45.515016], + [9.347584, 45.515016], + [9.347584, 45.510519], + [9.343087, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.515016], + [9.343087, 45.519513], + [9.347584, 45.519513], + [9.347584, 45.515016], + [9.343087, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.519513], + [9.343087, 45.524009], + [9.347584, 45.524009], + [9.347584, 45.519513], + [9.343087, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.524009], + [9.343087, 45.528506], + [9.347584, 45.528506], + [9.347584, 45.524009], + [9.343087, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.528506], + [9.343087, 45.533002], + [9.347584, 45.533002], + [9.347584, 45.528506], + [9.343087, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.533002], + [9.343087, 45.537499], + [9.347584, 45.537499], + [9.347584, 45.533002], + [9.343087, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.537499], + [9.343087, 45.541996], + [9.347584, 45.541996], + [9.347584, 45.537499], + [9.343087, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.541996], + [9.343087, 45.546492], + [9.347584, 45.546492], + [9.347584, 45.541996], + [9.343087, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.546492], + [9.343087, 45.550989], + [9.347584, 45.550989], + [9.347584, 45.546492], + [9.343087, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.550989], + [9.343087, 45.555485], + [9.347584, 45.555485], + [9.347584, 45.550989], + [9.343087, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.555485], + [9.343087, 45.559982], + [9.347584, 45.559982], + [9.347584, 45.555485], + [9.343087, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.559982], + [9.343087, 45.564479], + [9.347584, 45.564479], + [9.347584, 45.559982], + [9.343087, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.564479], + [9.343087, 45.568975], + [9.347584, 45.568975], + [9.347584, 45.564479], + [9.343087, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.568975], + [9.343087, 45.573472], + [9.347584, 45.573472], + [9.347584, 45.568975], + [9.343087, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.573472], + [9.343087, 45.577968], + [9.347584, 45.577968], + [9.347584, 45.573472], + [9.343087, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.577968], + [9.343087, 45.582465], + [9.347584, 45.582465], + [9.347584, 45.577968], + [9.343087, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.582465], + [9.343087, 45.586962], + [9.347584, 45.586962], + [9.347584, 45.582465], + [9.343087, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.586962], + [9.343087, 45.591458], + [9.347584, 45.591458], + [9.347584, 45.586962], + [9.343087, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.591458], + [9.343087, 45.595955], + [9.347584, 45.595955], + [9.347584, 45.591458], + [9.343087, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.595955], + [9.343087, 45.600451], + [9.347584, 45.600451], + [9.347584, 45.595955], + [9.343087, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.600451], + [9.343087, 45.604948], + [9.347584, 45.604948], + [9.347584, 45.600451], + [9.343087, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.604948], + [9.343087, 45.609445], + [9.347584, 45.609445], + [9.347584, 45.604948], + [9.343087, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.609445], + [9.343087, 45.613941], + [9.347584, 45.613941], + [9.347584, 45.609445], + [9.343087, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.613941], + [9.343087, 45.618438], + [9.347584, 45.618438], + [9.347584, 45.613941], + [9.343087, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.618438], + [9.343087, 45.622934], + [9.347584, 45.622934], + [9.347584, 45.618438], + [9.343087, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.622934], + [9.343087, 45.627431], + [9.347584, 45.627431], + [9.347584, 45.622934], + [9.343087, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.627431], + [9.343087, 45.631928], + [9.347584, 45.631928], + [9.347584, 45.627431], + [9.343087, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.631928], + [9.343087, 45.636424], + [9.347584, 45.636424], + [9.347584, 45.631928], + [9.343087, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.339648], + [9.347584, 45.344145], + [9.35208, 45.344145], + [9.35208, 45.339648], + [9.347584, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.344145], + [9.347584, 45.348642], + [9.35208, 45.348642], + [9.35208, 45.344145], + [9.347584, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.348642], + [9.347584, 45.353138], + [9.35208, 45.353138], + [9.35208, 45.348642], + [9.347584, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.353138], + [9.347584, 45.357635], + [9.35208, 45.357635], + [9.35208, 45.353138], + [9.347584, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.357635], + [9.347584, 45.362131], + [9.35208, 45.362131], + [9.35208, 45.357635], + [9.347584, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.362131], + [9.347584, 45.366628], + [9.35208, 45.366628], + [9.35208, 45.362131], + [9.347584, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.366628], + [9.347584, 45.371125], + [9.35208, 45.371125], + [9.35208, 45.366628], + [9.347584, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.371125], + [9.347584, 45.375621], + [9.35208, 45.375621], + [9.35208, 45.371125], + [9.347584, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.375621], + [9.347584, 45.380118], + [9.35208, 45.380118], + [9.35208, 45.375621], + [9.347584, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.380118], + [9.347584, 45.384614], + [9.35208, 45.384614], + [9.35208, 45.380118], + [9.347584, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.384614], + [9.347584, 45.389111], + [9.35208, 45.389111], + [9.35208, 45.384614], + [9.347584, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.389111], + [9.347584, 45.393608], + [9.35208, 45.393608], + [9.35208, 45.389111], + [9.347584, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.393608], + [9.347584, 45.398104], + [9.35208, 45.398104], + [9.35208, 45.393608], + [9.347584, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.398104], + [9.347584, 45.402601], + [9.35208, 45.402601], + [9.35208, 45.398104], + [9.347584, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.402601], + [9.347584, 45.407097], + [9.35208, 45.407097], + [9.35208, 45.402601], + [9.347584, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.407097], + [9.347584, 45.411594], + [9.35208, 45.411594], + [9.35208, 45.407097], + [9.347584, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.411594], + [9.347584, 45.416091], + [9.35208, 45.416091], + [9.35208, 45.411594], + [9.347584, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.416091], + [9.347584, 45.420587], + [9.35208, 45.420587], + [9.35208, 45.416091], + [9.347584, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.420587], + [9.347584, 45.425084], + [9.35208, 45.425084], + [9.35208, 45.420587], + [9.347584, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.425084], + [9.347584, 45.42958], + [9.35208, 45.42958], + [9.35208, 45.425084], + [9.347584, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.42958], + [9.347584, 45.434077], + [9.35208, 45.434077], + [9.35208, 45.42958], + [9.347584, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.434077], + [9.347584, 45.438574], + [9.35208, 45.438574], + [9.35208, 45.434077], + [9.347584, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.438574], + [9.347584, 45.44307], + [9.35208, 45.44307], + [9.35208, 45.438574], + [9.347584, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.44307], + [9.347584, 45.447567], + [9.35208, 45.447567], + [9.35208, 45.44307], + [9.347584, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.447567], + [9.347584, 45.452063], + [9.35208, 45.452063], + [9.35208, 45.447567], + [9.347584, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.452063], + [9.347584, 45.45656], + [9.35208, 45.45656], + [9.35208, 45.452063], + [9.347584, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.45656], + [9.347584, 45.461057], + [9.35208, 45.461057], + [9.35208, 45.45656], + [9.347584, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.461057], + [9.347584, 45.465553], + [9.35208, 45.465553], + [9.35208, 45.461057], + [9.347584, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.465553], + [9.347584, 45.47005], + [9.35208, 45.47005], + [9.35208, 45.465553], + [9.347584, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.47005], + [9.347584, 45.474547], + [9.35208, 45.474547], + [9.35208, 45.47005], + [9.347584, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.474547], + [9.347584, 45.479043], + [9.35208, 45.479043], + [9.35208, 45.474547], + [9.347584, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.479043], + [9.347584, 45.48354], + [9.35208, 45.48354], + [9.35208, 45.479043], + [9.347584, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.48354], + [9.347584, 45.488036], + [9.35208, 45.488036], + [9.35208, 45.48354], + [9.347584, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.488036], + [9.347584, 45.492533], + [9.35208, 45.492533], + [9.35208, 45.488036], + [9.347584, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.492533], + [9.347584, 45.49703], + [9.35208, 45.49703], + [9.35208, 45.492533], + [9.347584, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.49703], + [9.347584, 45.501526], + [9.35208, 45.501526], + [9.35208, 45.49703], + [9.347584, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.501526], + [9.347584, 45.506023], + [9.35208, 45.506023], + [9.35208, 45.501526], + [9.347584, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.506023], + [9.347584, 45.510519], + [9.35208, 45.510519], + [9.35208, 45.506023], + [9.347584, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.510519], + [9.347584, 45.515016], + [9.35208, 45.515016], + [9.35208, 45.510519], + [9.347584, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.515016], + [9.347584, 45.519513], + [9.35208, 45.519513], + [9.35208, 45.515016], + [9.347584, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.519513], + [9.347584, 45.524009], + [9.35208, 45.524009], + [9.35208, 45.519513], + [9.347584, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.524009], + [9.347584, 45.528506], + [9.35208, 45.528506], + [9.35208, 45.524009], + [9.347584, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.528506], + [9.347584, 45.533002], + [9.35208, 45.533002], + [9.35208, 45.528506], + [9.347584, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.533002], + [9.347584, 45.537499], + [9.35208, 45.537499], + [9.35208, 45.533002], + [9.347584, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.537499], + [9.347584, 45.541996], + [9.35208, 45.541996], + [9.35208, 45.537499], + [9.347584, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.541996], + [9.347584, 45.546492], + [9.35208, 45.546492], + [9.35208, 45.541996], + [9.347584, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.546492], + [9.347584, 45.550989], + [9.35208, 45.550989], + [9.35208, 45.546492], + [9.347584, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.550989], + [9.347584, 45.555485], + [9.35208, 45.555485], + [9.35208, 45.550989], + [9.347584, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.555485], + [9.347584, 45.559982], + [9.35208, 45.559982], + [9.35208, 45.555485], + [9.347584, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.559982], + [9.347584, 45.564479], + [9.35208, 45.564479], + [9.35208, 45.559982], + [9.347584, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.564479], + [9.347584, 45.568975], + [9.35208, 45.568975], + [9.35208, 45.564479], + [9.347584, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.568975], + [9.347584, 45.573472], + [9.35208, 45.573472], + [9.35208, 45.568975], + [9.347584, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.573472], + [9.347584, 45.577968], + [9.35208, 45.577968], + [9.35208, 45.573472], + [9.347584, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.577968], + [9.347584, 45.582465], + [9.35208, 45.582465], + [9.35208, 45.577968], + [9.347584, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.582465], + [9.347584, 45.586962], + [9.35208, 45.586962], + [9.35208, 45.582465], + [9.347584, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.586962], + [9.347584, 45.591458], + [9.35208, 45.591458], + [9.35208, 45.586962], + [9.347584, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.591458], + [9.347584, 45.595955], + [9.35208, 45.595955], + [9.35208, 45.591458], + [9.347584, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.595955], + [9.347584, 45.600451], + [9.35208, 45.600451], + [9.35208, 45.595955], + [9.347584, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.600451], + [9.347584, 45.604948], + [9.35208, 45.604948], + [9.35208, 45.600451], + [9.347584, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.604948], + [9.347584, 45.609445], + [9.35208, 45.609445], + [9.35208, 45.604948], + [9.347584, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.609445], + [9.347584, 45.613941], + [9.35208, 45.613941], + [9.35208, 45.609445], + [9.347584, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.613941], + [9.347584, 45.618438], + [9.35208, 45.618438], + [9.35208, 45.613941], + [9.347584, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.618438], + [9.347584, 45.622934], + [9.35208, 45.622934], + [9.35208, 45.618438], + [9.347584, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.622934], + [9.347584, 45.627431], + [9.35208, 45.627431], + [9.35208, 45.622934], + [9.347584, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.627431], + [9.347584, 45.631928], + [9.35208, 45.631928], + [9.35208, 45.627431], + [9.347584, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.631928], + [9.347584, 45.636424], + [9.35208, 45.636424], + [9.35208, 45.631928], + [9.347584, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.339648], + [9.35208, 45.344145], + [9.356577, 45.344145], + [9.356577, 45.339648], + [9.35208, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.344145], + [9.35208, 45.348642], + [9.356577, 45.348642], + [9.356577, 45.344145], + [9.35208, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.348642], + [9.35208, 45.353138], + [9.356577, 45.353138], + [9.356577, 45.348642], + [9.35208, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.353138], + [9.35208, 45.357635], + [9.356577, 45.357635], + [9.356577, 45.353138], + [9.35208, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.357635], + [9.35208, 45.362131], + [9.356577, 45.362131], + [9.356577, 45.357635], + [9.35208, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.362131], + [9.35208, 45.366628], + [9.356577, 45.366628], + [9.356577, 45.362131], + [9.35208, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.366628], + [9.35208, 45.371125], + [9.356577, 45.371125], + [9.356577, 45.366628], + [9.35208, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.371125], + [9.35208, 45.375621], + [9.356577, 45.375621], + [9.356577, 45.371125], + [9.35208, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.375621], + [9.35208, 45.380118], + [9.356577, 45.380118], + [9.356577, 45.375621], + [9.35208, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.380118], + [9.35208, 45.384614], + [9.356577, 45.384614], + [9.356577, 45.380118], + [9.35208, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.384614], + [9.35208, 45.389111], + [9.356577, 45.389111], + [9.356577, 45.384614], + [9.35208, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.389111], + [9.35208, 45.393608], + [9.356577, 45.393608], + [9.356577, 45.389111], + [9.35208, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.393608], + [9.35208, 45.398104], + [9.356577, 45.398104], + [9.356577, 45.393608], + [9.35208, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.398104], + [9.35208, 45.402601], + [9.356577, 45.402601], + [9.356577, 45.398104], + [9.35208, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.402601], + [9.35208, 45.407097], + [9.356577, 45.407097], + [9.356577, 45.402601], + [9.35208, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.407097], + [9.35208, 45.411594], + [9.356577, 45.411594], + [9.356577, 45.407097], + [9.35208, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.411594], + [9.35208, 45.416091], + [9.356577, 45.416091], + [9.356577, 45.411594], + [9.35208, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.416091], + [9.35208, 45.420587], + [9.356577, 45.420587], + [9.356577, 45.416091], + [9.35208, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.420587], + [9.35208, 45.425084], + [9.356577, 45.425084], + [9.356577, 45.420587], + [9.35208, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.425084], + [9.35208, 45.42958], + [9.356577, 45.42958], + [9.356577, 45.425084], + [9.35208, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.42958], + [9.35208, 45.434077], + [9.356577, 45.434077], + [9.356577, 45.42958], + [9.35208, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.434077], + [9.35208, 45.438574], + [9.356577, 45.438574], + [9.356577, 45.434077], + [9.35208, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.438574], + [9.35208, 45.44307], + [9.356577, 45.44307], + [9.356577, 45.438574], + [9.35208, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.44307], + [9.35208, 45.447567], + [9.356577, 45.447567], + [9.356577, 45.44307], + [9.35208, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.447567], + [9.35208, 45.452063], + [9.356577, 45.452063], + [9.356577, 45.447567], + [9.35208, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.452063], + [9.35208, 45.45656], + [9.356577, 45.45656], + [9.356577, 45.452063], + [9.35208, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.45656], + [9.35208, 45.461057], + [9.356577, 45.461057], + [9.356577, 45.45656], + [9.35208, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.461057], + [9.35208, 45.465553], + [9.356577, 45.465553], + [9.356577, 45.461057], + [9.35208, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.465553], + [9.35208, 45.47005], + [9.356577, 45.47005], + [9.356577, 45.465553], + [9.35208, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.47005], + [9.35208, 45.474547], + [9.356577, 45.474547], + [9.356577, 45.47005], + [9.35208, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.474547], + [9.35208, 45.479043], + [9.356577, 45.479043], + [9.356577, 45.474547], + [9.35208, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.479043], + [9.35208, 45.48354], + [9.356577, 45.48354], + [9.356577, 45.479043], + [9.35208, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.48354], + [9.35208, 45.488036], + [9.356577, 45.488036], + [9.356577, 45.48354], + [9.35208, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.488036], + [9.35208, 45.492533], + [9.356577, 45.492533], + [9.356577, 45.488036], + [9.35208, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.492533], + [9.35208, 45.49703], + [9.356577, 45.49703], + [9.356577, 45.492533], + [9.35208, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.49703], + [9.35208, 45.501526], + [9.356577, 45.501526], + [9.356577, 45.49703], + [9.35208, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.501526], + [9.35208, 45.506023], + [9.356577, 45.506023], + [9.356577, 45.501526], + [9.35208, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.506023], + [9.35208, 45.510519], + [9.356577, 45.510519], + [9.356577, 45.506023], + [9.35208, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.510519], + [9.35208, 45.515016], + [9.356577, 45.515016], + [9.356577, 45.510519], + [9.35208, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.515016], + [9.35208, 45.519513], + [9.356577, 45.519513], + [9.356577, 45.515016], + [9.35208, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.519513], + [9.35208, 45.524009], + [9.356577, 45.524009], + [9.356577, 45.519513], + [9.35208, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.524009], + [9.35208, 45.528506], + [9.356577, 45.528506], + [9.356577, 45.524009], + [9.35208, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.528506], + [9.35208, 45.533002], + [9.356577, 45.533002], + [9.356577, 45.528506], + [9.35208, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.533002], + [9.35208, 45.537499], + [9.356577, 45.537499], + [9.356577, 45.533002], + [9.35208, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.537499], + [9.35208, 45.541996], + [9.356577, 45.541996], + [9.356577, 45.537499], + [9.35208, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.541996], + [9.35208, 45.546492], + [9.356577, 45.546492], + [9.356577, 45.541996], + [9.35208, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.546492], + [9.35208, 45.550989], + [9.356577, 45.550989], + [9.356577, 45.546492], + [9.35208, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.550989], + [9.35208, 45.555485], + [9.356577, 45.555485], + [9.356577, 45.550989], + [9.35208, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.555485], + [9.35208, 45.559982], + [9.356577, 45.559982], + [9.356577, 45.555485], + [9.35208, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.559982], + [9.35208, 45.564479], + [9.356577, 45.564479], + [9.356577, 45.559982], + [9.35208, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.564479], + [9.35208, 45.568975], + [9.356577, 45.568975], + [9.356577, 45.564479], + [9.35208, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.568975], + [9.35208, 45.573472], + [9.356577, 45.573472], + [9.356577, 45.568975], + [9.35208, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.573472], + [9.35208, 45.577968], + [9.356577, 45.577968], + [9.356577, 45.573472], + [9.35208, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.577968], + [9.35208, 45.582465], + [9.356577, 45.582465], + [9.356577, 45.577968], + [9.35208, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.582465], + [9.35208, 45.586962], + [9.356577, 45.586962], + [9.356577, 45.582465], + [9.35208, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.586962], + [9.35208, 45.591458], + [9.356577, 45.591458], + [9.356577, 45.586962], + [9.35208, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.591458], + [9.35208, 45.595955], + [9.356577, 45.595955], + [9.356577, 45.591458], + [9.35208, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.595955], + [9.35208, 45.600451], + [9.356577, 45.600451], + [9.356577, 45.595955], + [9.35208, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.600451], + [9.35208, 45.604948], + [9.356577, 45.604948], + [9.356577, 45.600451], + [9.35208, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.604948], + [9.35208, 45.609445], + [9.356577, 45.609445], + [9.356577, 45.604948], + [9.35208, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.609445], + [9.35208, 45.613941], + [9.356577, 45.613941], + [9.356577, 45.609445], + [9.35208, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.613941], + [9.35208, 45.618438], + [9.356577, 45.618438], + [9.356577, 45.613941], + [9.35208, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.618438], + [9.35208, 45.622934], + [9.356577, 45.622934], + [9.356577, 45.618438], + [9.35208, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.622934], + [9.35208, 45.627431], + [9.356577, 45.627431], + [9.356577, 45.622934], + [9.35208, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.627431], + [9.35208, 45.631928], + [9.356577, 45.631928], + [9.356577, 45.627431], + [9.35208, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.631928], + [9.35208, 45.636424], + [9.356577, 45.636424], + [9.356577, 45.631928], + [9.35208, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.339648], + [9.356577, 45.344145], + [9.361074, 45.344145], + [9.361074, 45.339648], + [9.356577, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.344145], + [9.356577, 45.348642], + [9.361074, 45.348642], + [9.361074, 45.344145], + [9.356577, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.348642], + [9.356577, 45.353138], + [9.361074, 45.353138], + [9.361074, 45.348642], + [9.356577, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.353138], + [9.356577, 45.357635], + [9.361074, 45.357635], + [9.361074, 45.353138], + [9.356577, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.357635], + [9.356577, 45.362131], + [9.361074, 45.362131], + [9.361074, 45.357635], + [9.356577, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.362131], + [9.356577, 45.366628], + [9.361074, 45.366628], + [9.361074, 45.362131], + [9.356577, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.366628], + [9.356577, 45.371125], + [9.361074, 45.371125], + [9.361074, 45.366628], + [9.356577, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.371125], + [9.356577, 45.375621], + [9.361074, 45.375621], + [9.361074, 45.371125], + [9.356577, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.375621], + [9.356577, 45.380118], + [9.361074, 45.380118], + [9.361074, 45.375621], + [9.356577, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.380118], + [9.356577, 45.384614], + [9.361074, 45.384614], + [9.361074, 45.380118], + [9.356577, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.384614], + [9.356577, 45.389111], + [9.361074, 45.389111], + [9.361074, 45.384614], + [9.356577, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.389111], + [9.356577, 45.393608], + [9.361074, 45.393608], + [9.361074, 45.389111], + [9.356577, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.393608], + [9.356577, 45.398104], + [9.361074, 45.398104], + [9.361074, 45.393608], + [9.356577, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.398104], + [9.356577, 45.402601], + [9.361074, 45.402601], + [9.361074, 45.398104], + [9.356577, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.402601], + [9.356577, 45.407097], + [9.361074, 45.407097], + [9.361074, 45.402601], + [9.356577, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.407097], + [9.356577, 45.411594], + [9.361074, 45.411594], + [9.361074, 45.407097], + [9.356577, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.411594], + [9.356577, 45.416091], + [9.361074, 45.416091], + [9.361074, 45.411594], + [9.356577, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.416091], + [9.356577, 45.420587], + [9.361074, 45.420587], + [9.361074, 45.416091], + [9.356577, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.420587], + [9.356577, 45.425084], + [9.361074, 45.425084], + [9.361074, 45.420587], + [9.356577, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.425084], + [9.356577, 45.42958], + [9.361074, 45.42958], + [9.361074, 45.425084], + [9.356577, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.42958], + [9.356577, 45.434077], + [9.361074, 45.434077], + [9.361074, 45.42958], + [9.356577, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.434077], + [9.356577, 45.438574], + [9.361074, 45.438574], + [9.361074, 45.434077], + [9.356577, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.438574], + [9.356577, 45.44307], + [9.361074, 45.44307], + [9.361074, 45.438574], + [9.356577, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.44307], + [9.356577, 45.447567], + [9.361074, 45.447567], + [9.361074, 45.44307], + [9.356577, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.447567], + [9.356577, 45.452063], + [9.361074, 45.452063], + [9.361074, 45.447567], + [9.356577, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.452063], + [9.356577, 45.45656], + [9.361074, 45.45656], + [9.361074, 45.452063], + [9.356577, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.45656], + [9.356577, 45.461057], + [9.361074, 45.461057], + [9.361074, 45.45656], + [9.356577, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.461057], + [9.356577, 45.465553], + [9.361074, 45.465553], + [9.361074, 45.461057], + [9.356577, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.465553], + [9.356577, 45.47005], + [9.361074, 45.47005], + [9.361074, 45.465553], + [9.356577, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.47005], + [9.356577, 45.474547], + [9.361074, 45.474547], + [9.361074, 45.47005], + [9.356577, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.474547], + [9.356577, 45.479043], + [9.361074, 45.479043], + [9.361074, 45.474547], + [9.356577, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.479043], + [9.356577, 45.48354], + [9.361074, 45.48354], + [9.361074, 45.479043], + [9.356577, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.48354], + [9.356577, 45.488036], + [9.361074, 45.488036], + [9.361074, 45.48354], + [9.356577, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.488036], + [9.356577, 45.492533], + [9.361074, 45.492533], + [9.361074, 45.488036], + [9.356577, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.492533], + [9.356577, 45.49703], + [9.361074, 45.49703], + [9.361074, 45.492533], + [9.356577, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.49703], + [9.356577, 45.501526], + [9.361074, 45.501526], + [9.361074, 45.49703], + [9.356577, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.501526], + [9.356577, 45.506023], + [9.361074, 45.506023], + [9.361074, 45.501526], + [9.356577, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.506023], + [9.356577, 45.510519], + [9.361074, 45.510519], + [9.361074, 45.506023], + [9.356577, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.510519], + [9.356577, 45.515016], + [9.361074, 45.515016], + [9.361074, 45.510519], + [9.356577, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.515016], + [9.356577, 45.519513], + [9.361074, 45.519513], + [9.361074, 45.515016], + [9.356577, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.519513], + [9.356577, 45.524009], + [9.361074, 45.524009], + [9.361074, 45.519513], + [9.356577, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.524009], + [9.356577, 45.528506], + [9.361074, 45.528506], + [9.361074, 45.524009], + [9.356577, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.528506], + [9.356577, 45.533002], + [9.361074, 45.533002], + [9.361074, 45.528506], + [9.356577, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.533002], + [9.356577, 45.537499], + [9.361074, 45.537499], + [9.361074, 45.533002], + [9.356577, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.537499], + [9.356577, 45.541996], + [9.361074, 45.541996], + [9.361074, 45.537499], + [9.356577, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.541996], + [9.356577, 45.546492], + [9.361074, 45.546492], + [9.361074, 45.541996], + [9.356577, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.546492], + [9.356577, 45.550989], + [9.361074, 45.550989], + [9.361074, 45.546492], + [9.356577, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.550989], + [9.356577, 45.555485], + [9.361074, 45.555485], + [9.361074, 45.550989], + [9.356577, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.555485], + [9.356577, 45.559982], + [9.361074, 45.559982], + [9.361074, 45.555485], + [9.356577, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.559982], + [9.356577, 45.564479], + [9.361074, 45.564479], + [9.361074, 45.559982], + [9.356577, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.564479], + [9.356577, 45.568975], + [9.361074, 45.568975], + [9.361074, 45.564479], + [9.356577, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.568975], + [9.356577, 45.573472], + [9.361074, 45.573472], + [9.361074, 45.568975], + [9.356577, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.573472], + [9.356577, 45.577968], + [9.361074, 45.577968], + [9.361074, 45.573472], + [9.356577, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.577968], + [9.356577, 45.582465], + [9.361074, 45.582465], + [9.361074, 45.577968], + [9.356577, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.582465], + [9.356577, 45.586962], + [9.361074, 45.586962], + [9.361074, 45.582465], + [9.356577, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.586962], + [9.356577, 45.591458], + [9.361074, 45.591458], + [9.361074, 45.586962], + [9.356577, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.591458], + [9.356577, 45.595955], + [9.361074, 45.595955], + [9.361074, 45.591458], + [9.356577, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.595955], + [9.356577, 45.600451], + [9.361074, 45.600451], + [9.361074, 45.595955], + [9.356577, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.600451], + [9.356577, 45.604948], + [9.361074, 45.604948], + [9.361074, 45.600451], + [9.356577, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.604948], + [9.356577, 45.609445], + [9.361074, 45.609445], + [9.361074, 45.604948], + [9.356577, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.609445], + [9.356577, 45.613941], + [9.361074, 45.613941], + [9.361074, 45.609445], + [9.356577, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.613941], + [9.356577, 45.618438], + [9.361074, 45.618438], + [9.361074, 45.613941], + [9.356577, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.618438], + [9.356577, 45.622934], + [9.361074, 45.622934], + [9.361074, 45.618438], + [9.356577, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.622934], + [9.356577, 45.627431], + [9.361074, 45.627431], + [9.361074, 45.622934], + [9.356577, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.627431], + [9.356577, 45.631928], + [9.361074, 45.631928], + [9.361074, 45.627431], + [9.356577, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.631928], + [9.356577, 45.636424], + [9.361074, 45.636424], + [9.361074, 45.631928], + [9.356577, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.339648], + [9.361074, 45.344145], + [9.36557, 45.344145], + [9.36557, 45.339648], + [9.361074, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.344145], + [9.361074, 45.348642], + [9.36557, 45.348642], + [9.36557, 45.344145], + [9.361074, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.348642], + [9.361074, 45.353138], + [9.36557, 45.353138], + [9.36557, 45.348642], + [9.361074, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.353138], + [9.361074, 45.357635], + [9.36557, 45.357635], + [9.36557, 45.353138], + [9.361074, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.357635], + [9.361074, 45.362131], + [9.36557, 45.362131], + [9.36557, 45.357635], + [9.361074, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.362131], + [9.361074, 45.366628], + [9.36557, 45.366628], + [9.36557, 45.362131], + [9.361074, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.366628], + [9.361074, 45.371125], + [9.36557, 45.371125], + [9.36557, 45.366628], + [9.361074, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.371125], + [9.361074, 45.375621], + [9.36557, 45.375621], + [9.36557, 45.371125], + [9.361074, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.375621], + [9.361074, 45.380118], + [9.36557, 45.380118], + [9.36557, 45.375621], + [9.361074, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.380118], + [9.361074, 45.384614], + [9.36557, 45.384614], + [9.36557, 45.380118], + [9.361074, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.384614], + [9.361074, 45.389111], + [9.36557, 45.389111], + [9.36557, 45.384614], + [9.361074, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.389111], + [9.361074, 45.393608], + [9.36557, 45.393608], + [9.36557, 45.389111], + [9.361074, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.393608], + [9.361074, 45.398104], + [9.36557, 45.398104], + [9.36557, 45.393608], + [9.361074, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.398104], + [9.361074, 45.402601], + [9.36557, 45.402601], + [9.36557, 45.398104], + [9.361074, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.402601], + [9.361074, 45.407097], + [9.36557, 45.407097], + [9.36557, 45.402601], + [9.361074, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.407097], + [9.361074, 45.411594], + [9.36557, 45.411594], + [9.36557, 45.407097], + [9.361074, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.411594], + [9.361074, 45.416091], + [9.36557, 45.416091], + [9.36557, 45.411594], + [9.361074, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.416091], + [9.361074, 45.420587], + [9.36557, 45.420587], + [9.36557, 45.416091], + [9.361074, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.420587], + [9.361074, 45.425084], + [9.36557, 45.425084], + [9.36557, 45.420587], + [9.361074, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.425084], + [9.361074, 45.42958], + [9.36557, 45.42958], + [9.36557, 45.425084], + [9.361074, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.42958], + [9.361074, 45.434077], + [9.36557, 45.434077], + [9.36557, 45.42958], + [9.361074, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.434077], + [9.361074, 45.438574], + [9.36557, 45.438574], + [9.36557, 45.434077], + [9.361074, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.438574], + [9.361074, 45.44307], + [9.36557, 45.44307], + [9.36557, 45.438574], + [9.361074, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.44307], + [9.361074, 45.447567], + [9.36557, 45.447567], + [9.36557, 45.44307], + [9.361074, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.447567], + [9.361074, 45.452063], + [9.36557, 45.452063], + [9.36557, 45.447567], + [9.361074, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.452063], + [9.361074, 45.45656], + [9.36557, 45.45656], + [9.36557, 45.452063], + [9.361074, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.45656], + [9.361074, 45.461057], + [9.36557, 45.461057], + [9.36557, 45.45656], + [9.361074, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.461057], + [9.361074, 45.465553], + [9.36557, 45.465553], + [9.36557, 45.461057], + [9.361074, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.465553], + [9.361074, 45.47005], + [9.36557, 45.47005], + [9.36557, 45.465553], + [9.361074, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.47005], + [9.361074, 45.474547], + [9.36557, 45.474547], + [9.36557, 45.47005], + [9.361074, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.474547], + [9.361074, 45.479043], + [9.36557, 45.479043], + [9.36557, 45.474547], + [9.361074, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.479043], + [9.361074, 45.48354], + [9.36557, 45.48354], + [9.36557, 45.479043], + [9.361074, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.48354], + [9.361074, 45.488036], + [9.36557, 45.488036], + [9.36557, 45.48354], + [9.361074, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.488036], + [9.361074, 45.492533], + [9.36557, 45.492533], + [9.36557, 45.488036], + [9.361074, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.492533], + [9.361074, 45.49703], + [9.36557, 45.49703], + [9.36557, 45.492533], + [9.361074, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.49703], + [9.361074, 45.501526], + [9.36557, 45.501526], + [9.36557, 45.49703], + [9.361074, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.501526], + [9.361074, 45.506023], + [9.36557, 45.506023], + [9.36557, 45.501526], + [9.361074, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.506023], + [9.361074, 45.510519], + [9.36557, 45.510519], + [9.36557, 45.506023], + [9.361074, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.510519], + [9.361074, 45.515016], + [9.36557, 45.515016], + [9.36557, 45.510519], + [9.361074, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.515016], + [9.361074, 45.519513], + [9.36557, 45.519513], + [9.36557, 45.515016], + [9.361074, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.519513], + [9.361074, 45.524009], + [9.36557, 45.524009], + [9.36557, 45.519513], + [9.361074, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.524009], + [9.361074, 45.528506], + [9.36557, 45.528506], + [9.36557, 45.524009], + [9.361074, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.528506], + [9.361074, 45.533002], + [9.36557, 45.533002], + [9.36557, 45.528506], + [9.361074, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.533002], + [9.361074, 45.537499], + [9.36557, 45.537499], + [9.36557, 45.533002], + [9.361074, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.537499], + [9.361074, 45.541996], + [9.36557, 45.541996], + [9.36557, 45.537499], + [9.361074, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.541996], + [9.361074, 45.546492], + [9.36557, 45.546492], + [9.36557, 45.541996], + [9.361074, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.546492], + [9.361074, 45.550989], + [9.36557, 45.550989], + [9.36557, 45.546492], + [9.361074, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.550989], + [9.361074, 45.555485], + [9.36557, 45.555485], + [9.36557, 45.550989], + [9.361074, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.555485], + [9.361074, 45.559982], + [9.36557, 45.559982], + [9.36557, 45.555485], + [9.361074, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.559982], + [9.361074, 45.564479], + [9.36557, 45.564479], + [9.36557, 45.559982], + [9.361074, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.564479], + [9.361074, 45.568975], + [9.36557, 45.568975], + [9.36557, 45.564479], + [9.361074, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.568975], + [9.361074, 45.573472], + [9.36557, 45.573472], + [9.36557, 45.568975], + [9.361074, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.573472], + [9.361074, 45.577968], + [9.36557, 45.577968], + [9.36557, 45.573472], + [9.361074, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.577968], + [9.361074, 45.582465], + [9.36557, 45.582465], + [9.36557, 45.577968], + [9.361074, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.582465], + [9.361074, 45.586962], + [9.36557, 45.586962], + [9.36557, 45.582465], + [9.361074, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.586962], + [9.361074, 45.591458], + [9.36557, 45.591458], + [9.36557, 45.586962], + [9.361074, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.591458], + [9.361074, 45.595955], + [9.36557, 45.595955], + [9.36557, 45.591458], + [9.361074, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.595955], + [9.361074, 45.600451], + [9.36557, 45.600451], + [9.36557, 45.595955], + [9.361074, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.600451], + [9.361074, 45.604948], + [9.36557, 45.604948], + [9.36557, 45.600451], + [9.361074, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.604948], + [9.361074, 45.609445], + [9.36557, 45.609445], + [9.36557, 45.604948], + [9.361074, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.609445], + [9.361074, 45.613941], + [9.36557, 45.613941], + [9.36557, 45.609445], + [9.361074, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.613941], + [9.361074, 45.618438], + [9.36557, 45.618438], + [9.36557, 45.613941], + [9.361074, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.618438], + [9.361074, 45.622934], + [9.36557, 45.622934], + [9.36557, 45.618438], + [9.361074, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.622934], + [9.361074, 45.627431], + [9.36557, 45.627431], + [9.36557, 45.622934], + [9.361074, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.627431], + [9.361074, 45.631928], + [9.36557, 45.631928], + [9.36557, 45.627431], + [9.361074, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.631928], + [9.361074, 45.636424], + [9.36557, 45.636424], + [9.36557, 45.631928], + [9.361074, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.339648], + [9.36557, 45.344145], + [9.370067, 45.344145], + [9.370067, 45.339648], + [9.36557, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.344145], + [9.36557, 45.348642], + [9.370067, 45.348642], + [9.370067, 45.344145], + [9.36557, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.348642], + [9.36557, 45.353138], + [9.370067, 45.353138], + [9.370067, 45.348642], + [9.36557, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.353138], + [9.36557, 45.357635], + [9.370067, 45.357635], + [9.370067, 45.353138], + [9.36557, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.357635], + [9.36557, 45.362131], + [9.370067, 45.362131], + [9.370067, 45.357635], + [9.36557, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.362131], + [9.36557, 45.366628], + [9.370067, 45.366628], + [9.370067, 45.362131], + [9.36557, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.366628], + [9.36557, 45.371125], + [9.370067, 45.371125], + [9.370067, 45.366628], + [9.36557, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.371125], + [9.36557, 45.375621], + [9.370067, 45.375621], + [9.370067, 45.371125], + [9.36557, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.375621], + [9.36557, 45.380118], + [9.370067, 45.380118], + [9.370067, 45.375621], + [9.36557, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.380118], + [9.36557, 45.384614], + [9.370067, 45.384614], + [9.370067, 45.380118], + [9.36557, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.384614], + [9.36557, 45.389111], + [9.370067, 45.389111], + [9.370067, 45.384614], + [9.36557, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.389111], + [9.36557, 45.393608], + [9.370067, 45.393608], + [9.370067, 45.389111], + [9.36557, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.393608], + [9.36557, 45.398104], + [9.370067, 45.398104], + [9.370067, 45.393608], + [9.36557, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.398104], + [9.36557, 45.402601], + [9.370067, 45.402601], + [9.370067, 45.398104], + [9.36557, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.402601], + [9.36557, 45.407097], + [9.370067, 45.407097], + [9.370067, 45.402601], + [9.36557, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.407097], + [9.36557, 45.411594], + [9.370067, 45.411594], + [9.370067, 45.407097], + [9.36557, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.411594], + [9.36557, 45.416091], + [9.370067, 45.416091], + [9.370067, 45.411594], + [9.36557, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.416091], + [9.36557, 45.420587], + [9.370067, 45.420587], + [9.370067, 45.416091], + [9.36557, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.420587], + [9.36557, 45.425084], + [9.370067, 45.425084], + [9.370067, 45.420587], + [9.36557, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.425084], + [9.36557, 45.42958], + [9.370067, 45.42958], + [9.370067, 45.425084], + [9.36557, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.42958], + [9.36557, 45.434077], + [9.370067, 45.434077], + [9.370067, 45.42958], + [9.36557, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.434077], + [9.36557, 45.438574], + [9.370067, 45.438574], + [9.370067, 45.434077], + [9.36557, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.438574], + [9.36557, 45.44307], + [9.370067, 45.44307], + [9.370067, 45.438574], + [9.36557, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.44307], + [9.36557, 45.447567], + [9.370067, 45.447567], + [9.370067, 45.44307], + [9.36557, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.447567], + [9.36557, 45.452063], + [9.370067, 45.452063], + [9.370067, 45.447567], + [9.36557, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.452063], + [9.36557, 45.45656], + [9.370067, 45.45656], + [9.370067, 45.452063], + [9.36557, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.45656], + [9.36557, 45.461057], + [9.370067, 45.461057], + [9.370067, 45.45656], + [9.36557, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.461057], + [9.36557, 45.465553], + [9.370067, 45.465553], + [9.370067, 45.461057], + [9.36557, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.465553], + [9.36557, 45.47005], + [9.370067, 45.47005], + [9.370067, 45.465553], + [9.36557, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.47005], + [9.36557, 45.474547], + [9.370067, 45.474547], + [9.370067, 45.47005], + [9.36557, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.474547], + [9.36557, 45.479043], + [9.370067, 45.479043], + [9.370067, 45.474547], + [9.36557, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.479043], + [9.36557, 45.48354], + [9.370067, 45.48354], + [9.370067, 45.479043], + [9.36557, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.48354], + [9.36557, 45.488036], + [9.370067, 45.488036], + [9.370067, 45.48354], + [9.36557, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.488036], + [9.36557, 45.492533], + [9.370067, 45.492533], + [9.370067, 45.488036], + [9.36557, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.492533], + [9.36557, 45.49703], + [9.370067, 45.49703], + [9.370067, 45.492533], + [9.36557, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.49703], + [9.36557, 45.501526], + [9.370067, 45.501526], + [9.370067, 45.49703], + [9.36557, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.501526], + [9.36557, 45.506023], + [9.370067, 45.506023], + [9.370067, 45.501526], + [9.36557, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.506023], + [9.36557, 45.510519], + [9.370067, 45.510519], + [9.370067, 45.506023], + [9.36557, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.510519], + [9.36557, 45.515016], + [9.370067, 45.515016], + [9.370067, 45.510519], + [9.36557, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.515016], + [9.36557, 45.519513], + [9.370067, 45.519513], + [9.370067, 45.515016], + [9.36557, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.519513], + [9.36557, 45.524009], + [9.370067, 45.524009], + [9.370067, 45.519513], + [9.36557, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.524009], + [9.36557, 45.528506], + [9.370067, 45.528506], + [9.370067, 45.524009], + [9.36557, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.528506], + [9.36557, 45.533002], + [9.370067, 45.533002], + [9.370067, 45.528506], + [9.36557, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.533002], + [9.36557, 45.537499], + [9.370067, 45.537499], + [9.370067, 45.533002], + [9.36557, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.537499], + [9.36557, 45.541996], + [9.370067, 45.541996], + [9.370067, 45.537499], + [9.36557, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.541996], + [9.36557, 45.546492], + [9.370067, 45.546492], + [9.370067, 45.541996], + [9.36557, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.546492], + [9.36557, 45.550989], + [9.370067, 45.550989], + [9.370067, 45.546492], + [9.36557, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.550989], + [9.36557, 45.555485], + [9.370067, 45.555485], + [9.370067, 45.550989], + [9.36557, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.555485], + [9.36557, 45.559982], + [9.370067, 45.559982], + [9.370067, 45.555485], + [9.36557, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.559982], + [9.36557, 45.564479], + [9.370067, 45.564479], + [9.370067, 45.559982], + [9.36557, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.564479], + [9.36557, 45.568975], + [9.370067, 45.568975], + [9.370067, 45.564479], + [9.36557, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.568975], + [9.36557, 45.573472], + [9.370067, 45.573472], + [9.370067, 45.568975], + [9.36557, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.573472], + [9.36557, 45.577968], + [9.370067, 45.577968], + [9.370067, 45.573472], + [9.36557, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.577968], + [9.36557, 45.582465], + [9.370067, 45.582465], + [9.370067, 45.577968], + [9.36557, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.582465], + [9.36557, 45.586962], + [9.370067, 45.586962], + [9.370067, 45.582465], + [9.36557, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.586962], + [9.36557, 45.591458], + [9.370067, 45.591458], + [9.370067, 45.586962], + [9.36557, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.591458], + [9.36557, 45.595955], + [9.370067, 45.595955], + [9.370067, 45.591458], + [9.36557, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.595955], + [9.36557, 45.600451], + [9.370067, 45.600451], + [9.370067, 45.595955], + [9.36557, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.600451], + [9.36557, 45.604948], + [9.370067, 45.604948], + [9.370067, 45.600451], + [9.36557, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.604948], + [9.36557, 45.609445], + [9.370067, 45.609445], + [9.370067, 45.604948], + [9.36557, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.609445], + [9.36557, 45.613941], + [9.370067, 45.613941], + [9.370067, 45.609445], + [9.36557, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.613941], + [9.36557, 45.618438], + [9.370067, 45.618438], + [9.370067, 45.613941], + [9.36557, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.618438], + [9.36557, 45.622934], + [9.370067, 45.622934], + [9.370067, 45.618438], + [9.36557, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.622934], + [9.36557, 45.627431], + [9.370067, 45.627431], + [9.370067, 45.622934], + [9.36557, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.627431], + [9.36557, 45.631928], + [9.370067, 45.631928], + [9.370067, 45.627431], + [9.36557, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.631928], + [9.36557, 45.636424], + [9.370067, 45.636424], + [9.370067, 45.631928], + [9.36557, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.339648], + [9.370067, 45.344145], + [9.374563, 45.344145], + [9.374563, 45.339648], + [9.370067, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.344145], + [9.370067, 45.348642], + [9.374563, 45.348642], + [9.374563, 45.344145], + [9.370067, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.348642], + [9.370067, 45.353138], + [9.374563, 45.353138], + [9.374563, 45.348642], + [9.370067, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.353138], + [9.370067, 45.357635], + [9.374563, 45.357635], + [9.374563, 45.353138], + [9.370067, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.357635], + [9.370067, 45.362131], + [9.374563, 45.362131], + [9.374563, 45.357635], + [9.370067, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.362131], + [9.370067, 45.366628], + [9.374563, 45.366628], + [9.374563, 45.362131], + [9.370067, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.366628], + [9.370067, 45.371125], + [9.374563, 45.371125], + [9.374563, 45.366628], + [9.370067, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.371125], + [9.370067, 45.375621], + [9.374563, 45.375621], + [9.374563, 45.371125], + [9.370067, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.375621], + [9.370067, 45.380118], + [9.374563, 45.380118], + [9.374563, 45.375621], + [9.370067, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.380118], + [9.370067, 45.384614], + [9.374563, 45.384614], + [9.374563, 45.380118], + [9.370067, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.384614], + [9.370067, 45.389111], + [9.374563, 45.389111], + [9.374563, 45.384614], + [9.370067, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.389111], + [9.370067, 45.393608], + [9.374563, 45.393608], + [9.374563, 45.389111], + [9.370067, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.393608], + [9.370067, 45.398104], + [9.374563, 45.398104], + [9.374563, 45.393608], + [9.370067, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.398104], + [9.370067, 45.402601], + [9.374563, 45.402601], + [9.374563, 45.398104], + [9.370067, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.402601], + [9.370067, 45.407097], + [9.374563, 45.407097], + [9.374563, 45.402601], + [9.370067, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.407097], + [9.370067, 45.411594], + [9.374563, 45.411594], + [9.374563, 45.407097], + [9.370067, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.411594], + [9.370067, 45.416091], + [9.374563, 45.416091], + [9.374563, 45.411594], + [9.370067, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.416091], + [9.370067, 45.420587], + [9.374563, 45.420587], + [9.374563, 45.416091], + [9.370067, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.420587], + [9.370067, 45.425084], + [9.374563, 45.425084], + [9.374563, 45.420587], + [9.370067, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.425084], + [9.370067, 45.42958], + [9.374563, 45.42958], + [9.374563, 45.425084], + [9.370067, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.42958], + [9.370067, 45.434077], + [9.374563, 45.434077], + [9.374563, 45.42958], + [9.370067, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.434077], + [9.370067, 45.438574], + [9.374563, 45.438574], + [9.374563, 45.434077], + [9.370067, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.438574], + [9.370067, 45.44307], + [9.374563, 45.44307], + [9.374563, 45.438574], + [9.370067, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.44307], + [9.370067, 45.447567], + [9.374563, 45.447567], + [9.374563, 45.44307], + [9.370067, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.447567], + [9.370067, 45.452063], + [9.374563, 45.452063], + [9.374563, 45.447567], + [9.370067, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.452063], + [9.370067, 45.45656], + [9.374563, 45.45656], + [9.374563, 45.452063], + [9.370067, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.45656], + [9.370067, 45.461057], + [9.374563, 45.461057], + [9.374563, 45.45656], + [9.370067, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.461057], + [9.370067, 45.465553], + [9.374563, 45.465553], + [9.374563, 45.461057], + [9.370067, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.465553], + [9.370067, 45.47005], + [9.374563, 45.47005], + [9.374563, 45.465553], + [9.370067, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.47005], + [9.370067, 45.474547], + [9.374563, 45.474547], + [9.374563, 45.47005], + [9.370067, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.474547], + [9.370067, 45.479043], + [9.374563, 45.479043], + [9.374563, 45.474547], + [9.370067, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.479043], + [9.370067, 45.48354], + [9.374563, 45.48354], + [9.374563, 45.479043], + [9.370067, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.48354], + [9.370067, 45.488036], + [9.374563, 45.488036], + [9.374563, 45.48354], + [9.370067, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.488036], + [9.370067, 45.492533], + [9.374563, 45.492533], + [9.374563, 45.488036], + [9.370067, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.492533], + [9.370067, 45.49703], + [9.374563, 45.49703], + [9.374563, 45.492533], + [9.370067, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.49703], + [9.370067, 45.501526], + [9.374563, 45.501526], + [9.374563, 45.49703], + [9.370067, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.501526], + [9.370067, 45.506023], + [9.374563, 45.506023], + [9.374563, 45.501526], + [9.370067, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.506023], + [9.370067, 45.510519], + [9.374563, 45.510519], + [9.374563, 45.506023], + [9.370067, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.510519], + [9.370067, 45.515016], + [9.374563, 45.515016], + [9.374563, 45.510519], + [9.370067, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.515016], + [9.370067, 45.519513], + [9.374563, 45.519513], + [9.374563, 45.515016], + [9.370067, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.519513], + [9.370067, 45.524009], + [9.374563, 45.524009], + [9.374563, 45.519513], + [9.370067, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.524009], + [9.370067, 45.528506], + [9.374563, 45.528506], + [9.374563, 45.524009], + [9.370067, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.528506], + [9.370067, 45.533002], + [9.374563, 45.533002], + [9.374563, 45.528506], + [9.370067, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.533002], + [9.370067, 45.537499], + [9.374563, 45.537499], + [9.374563, 45.533002], + [9.370067, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.537499], + [9.370067, 45.541996], + [9.374563, 45.541996], + [9.374563, 45.537499], + [9.370067, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.541996], + [9.370067, 45.546492], + [9.374563, 45.546492], + [9.374563, 45.541996], + [9.370067, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.546492], + [9.370067, 45.550989], + [9.374563, 45.550989], + [9.374563, 45.546492], + [9.370067, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.550989], + [9.370067, 45.555485], + [9.374563, 45.555485], + [9.374563, 45.550989], + [9.370067, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.555485], + [9.370067, 45.559982], + [9.374563, 45.559982], + [9.374563, 45.555485], + [9.370067, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.559982], + [9.370067, 45.564479], + [9.374563, 45.564479], + [9.374563, 45.559982], + [9.370067, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.564479], + [9.370067, 45.568975], + [9.374563, 45.568975], + [9.374563, 45.564479], + [9.370067, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.568975], + [9.370067, 45.573472], + [9.374563, 45.573472], + [9.374563, 45.568975], + [9.370067, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.573472], + [9.370067, 45.577968], + [9.374563, 45.577968], + [9.374563, 45.573472], + [9.370067, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.577968], + [9.370067, 45.582465], + [9.374563, 45.582465], + [9.374563, 45.577968], + [9.370067, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.582465], + [9.370067, 45.586962], + [9.374563, 45.586962], + [9.374563, 45.582465], + [9.370067, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.586962], + [9.370067, 45.591458], + [9.374563, 45.591458], + [9.374563, 45.586962], + [9.370067, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.591458], + [9.370067, 45.595955], + [9.374563, 45.595955], + [9.374563, 45.591458], + [9.370067, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.595955], + [9.370067, 45.600451], + [9.374563, 45.600451], + [9.374563, 45.595955], + [9.370067, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.600451], + [9.370067, 45.604948], + [9.374563, 45.604948], + [9.374563, 45.600451], + [9.370067, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.604948], + [9.370067, 45.609445], + [9.374563, 45.609445], + [9.374563, 45.604948], + [9.370067, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.609445], + [9.370067, 45.613941], + [9.374563, 45.613941], + [9.374563, 45.609445], + [9.370067, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.613941], + [9.370067, 45.618438], + [9.374563, 45.618438], + [9.374563, 45.613941], + [9.370067, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.618438], + [9.370067, 45.622934], + [9.374563, 45.622934], + [9.374563, 45.618438], + [9.370067, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.622934], + [9.370067, 45.627431], + [9.374563, 45.627431], + [9.374563, 45.622934], + [9.370067, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.627431], + [9.370067, 45.631928], + [9.374563, 45.631928], + [9.374563, 45.627431], + [9.370067, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.631928], + [9.370067, 45.636424], + [9.374563, 45.636424], + [9.374563, 45.631928], + [9.370067, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.339648], + [9.374563, 45.344145], + [9.37906, 45.344145], + [9.37906, 45.339648], + [9.374563, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.344145], + [9.374563, 45.348642], + [9.37906, 45.348642], + [9.37906, 45.344145], + [9.374563, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.348642], + [9.374563, 45.353138], + [9.37906, 45.353138], + [9.37906, 45.348642], + [9.374563, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.353138], + [9.374563, 45.357635], + [9.37906, 45.357635], + [9.37906, 45.353138], + [9.374563, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.357635], + [9.374563, 45.362131], + [9.37906, 45.362131], + [9.37906, 45.357635], + [9.374563, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.362131], + [9.374563, 45.366628], + [9.37906, 45.366628], + [9.37906, 45.362131], + [9.374563, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.366628], + [9.374563, 45.371125], + [9.37906, 45.371125], + [9.37906, 45.366628], + [9.374563, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.371125], + [9.374563, 45.375621], + [9.37906, 45.375621], + [9.37906, 45.371125], + [9.374563, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.375621], + [9.374563, 45.380118], + [9.37906, 45.380118], + [9.37906, 45.375621], + [9.374563, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.380118], + [9.374563, 45.384614], + [9.37906, 45.384614], + [9.37906, 45.380118], + [9.374563, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.384614], + [9.374563, 45.389111], + [9.37906, 45.389111], + [9.37906, 45.384614], + [9.374563, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.389111], + [9.374563, 45.393608], + [9.37906, 45.393608], + [9.37906, 45.389111], + [9.374563, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.393608], + [9.374563, 45.398104], + [9.37906, 45.398104], + [9.37906, 45.393608], + [9.374563, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.398104], + [9.374563, 45.402601], + [9.37906, 45.402601], + [9.37906, 45.398104], + [9.374563, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.402601], + [9.374563, 45.407097], + [9.37906, 45.407097], + [9.37906, 45.402601], + [9.374563, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.407097], + [9.374563, 45.411594], + [9.37906, 45.411594], + [9.37906, 45.407097], + [9.374563, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.411594], + [9.374563, 45.416091], + [9.37906, 45.416091], + [9.37906, 45.411594], + [9.374563, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.416091], + [9.374563, 45.420587], + [9.37906, 45.420587], + [9.37906, 45.416091], + [9.374563, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.420587], + [9.374563, 45.425084], + [9.37906, 45.425084], + [9.37906, 45.420587], + [9.374563, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.425084], + [9.374563, 45.42958], + [9.37906, 45.42958], + [9.37906, 45.425084], + [9.374563, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.42958], + [9.374563, 45.434077], + [9.37906, 45.434077], + [9.37906, 45.42958], + [9.374563, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.434077], + [9.374563, 45.438574], + [9.37906, 45.438574], + [9.37906, 45.434077], + [9.374563, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.438574], + [9.374563, 45.44307], + [9.37906, 45.44307], + [9.37906, 45.438574], + [9.374563, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.44307], + [9.374563, 45.447567], + [9.37906, 45.447567], + [9.37906, 45.44307], + [9.374563, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.447567], + [9.374563, 45.452063], + [9.37906, 45.452063], + [9.37906, 45.447567], + [9.374563, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.452063], + [9.374563, 45.45656], + [9.37906, 45.45656], + [9.37906, 45.452063], + [9.374563, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.45656], + [9.374563, 45.461057], + [9.37906, 45.461057], + [9.37906, 45.45656], + [9.374563, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.461057], + [9.374563, 45.465553], + [9.37906, 45.465553], + [9.37906, 45.461057], + [9.374563, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.465553], + [9.374563, 45.47005], + [9.37906, 45.47005], + [9.37906, 45.465553], + [9.374563, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.47005], + [9.374563, 45.474547], + [9.37906, 45.474547], + [9.37906, 45.47005], + [9.374563, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.474547], + [9.374563, 45.479043], + [9.37906, 45.479043], + [9.37906, 45.474547], + [9.374563, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.479043], + [9.374563, 45.48354], + [9.37906, 45.48354], + [9.37906, 45.479043], + [9.374563, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.48354], + [9.374563, 45.488036], + [9.37906, 45.488036], + [9.37906, 45.48354], + [9.374563, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.488036], + [9.374563, 45.492533], + [9.37906, 45.492533], + [9.37906, 45.488036], + [9.374563, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.492533], + [9.374563, 45.49703], + [9.37906, 45.49703], + [9.37906, 45.492533], + [9.374563, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.49703], + [9.374563, 45.501526], + [9.37906, 45.501526], + [9.37906, 45.49703], + [9.374563, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.501526], + [9.374563, 45.506023], + [9.37906, 45.506023], + [9.37906, 45.501526], + [9.374563, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.506023], + [9.374563, 45.510519], + [9.37906, 45.510519], + [9.37906, 45.506023], + [9.374563, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.510519], + [9.374563, 45.515016], + [9.37906, 45.515016], + [9.37906, 45.510519], + [9.374563, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.515016], + [9.374563, 45.519513], + [9.37906, 45.519513], + [9.37906, 45.515016], + [9.374563, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.519513], + [9.374563, 45.524009], + [9.37906, 45.524009], + [9.37906, 45.519513], + [9.374563, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.524009], + [9.374563, 45.528506], + [9.37906, 45.528506], + [9.37906, 45.524009], + [9.374563, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.528506], + [9.374563, 45.533002], + [9.37906, 45.533002], + [9.37906, 45.528506], + [9.374563, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.533002], + [9.374563, 45.537499], + [9.37906, 45.537499], + [9.37906, 45.533002], + [9.374563, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.537499], + [9.374563, 45.541996], + [9.37906, 45.541996], + [9.37906, 45.537499], + [9.374563, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.541996], + [9.374563, 45.546492], + [9.37906, 45.546492], + [9.37906, 45.541996], + [9.374563, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.546492], + [9.374563, 45.550989], + [9.37906, 45.550989], + [9.37906, 45.546492], + [9.374563, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.550989], + [9.374563, 45.555485], + [9.37906, 45.555485], + [9.37906, 45.550989], + [9.374563, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.555485], + [9.374563, 45.559982], + [9.37906, 45.559982], + [9.37906, 45.555485], + [9.374563, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.559982], + [9.374563, 45.564479], + [9.37906, 45.564479], + [9.37906, 45.559982], + [9.374563, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.564479], + [9.374563, 45.568975], + [9.37906, 45.568975], + [9.37906, 45.564479], + [9.374563, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.568975], + [9.374563, 45.573472], + [9.37906, 45.573472], + [9.37906, 45.568975], + [9.374563, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.573472], + [9.374563, 45.577968], + [9.37906, 45.577968], + [9.37906, 45.573472], + [9.374563, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.577968], + [9.374563, 45.582465], + [9.37906, 45.582465], + [9.37906, 45.577968], + [9.374563, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.582465], + [9.374563, 45.586962], + [9.37906, 45.586962], + [9.37906, 45.582465], + [9.374563, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.586962], + [9.374563, 45.591458], + [9.37906, 45.591458], + [9.37906, 45.586962], + [9.374563, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.591458], + [9.374563, 45.595955], + [9.37906, 45.595955], + [9.37906, 45.591458], + [9.374563, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.595955], + [9.374563, 45.600451], + [9.37906, 45.600451], + [9.37906, 45.595955], + [9.374563, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.600451], + [9.374563, 45.604948], + [9.37906, 45.604948], + [9.37906, 45.600451], + [9.374563, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.604948], + [9.374563, 45.609445], + [9.37906, 45.609445], + [9.37906, 45.604948], + [9.374563, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.609445], + [9.374563, 45.613941], + [9.37906, 45.613941], + [9.37906, 45.609445], + [9.374563, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.613941], + [9.374563, 45.618438], + [9.37906, 45.618438], + [9.37906, 45.613941], + [9.374563, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.618438], + [9.374563, 45.622934], + [9.37906, 45.622934], + [9.37906, 45.618438], + [9.374563, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.622934], + [9.374563, 45.627431], + [9.37906, 45.627431], + [9.37906, 45.622934], + [9.374563, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.627431], + [9.374563, 45.631928], + [9.37906, 45.631928], + [9.37906, 45.627431], + [9.374563, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.631928], + [9.374563, 45.636424], + [9.37906, 45.636424], + [9.37906, 45.631928], + [9.374563, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.339648], + [9.37906, 45.344145], + [9.383557, 45.344145], + [9.383557, 45.339648], + [9.37906, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.344145], + [9.37906, 45.348642], + [9.383557, 45.348642], + [9.383557, 45.344145], + [9.37906, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.348642], + [9.37906, 45.353138], + [9.383557, 45.353138], + [9.383557, 45.348642], + [9.37906, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.353138], + [9.37906, 45.357635], + [9.383557, 45.357635], + [9.383557, 45.353138], + [9.37906, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.357635], + [9.37906, 45.362131], + [9.383557, 45.362131], + [9.383557, 45.357635], + [9.37906, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.362131], + [9.37906, 45.366628], + [9.383557, 45.366628], + [9.383557, 45.362131], + [9.37906, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.366628], + [9.37906, 45.371125], + [9.383557, 45.371125], + [9.383557, 45.366628], + [9.37906, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.371125], + [9.37906, 45.375621], + [9.383557, 45.375621], + [9.383557, 45.371125], + [9.37906, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.375621], + [9.37906, 45.380118], + [9.383557, 45.380118], + [9.383557, 45.375621], + [9.37906, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.380118], + [9.37906, 45.384614], + [9.383557, 45.384614], + [9.383557, 45.380118], + [9.37906, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.384614], + [9.37906, 45.389111], + [9.383557, 45.389111], + [9.383557, 45.384614], + [9.37906, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.389111], + [9.37906, 45.393608], + [9.383557, 45.393608], + [9.383557, 45.389111], + [9.37906, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.393608], + [9.37906, 45.398104], + [9.383557, 45.398104], + [9.383557, 45.393608], + [9.37906, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.398104], + [9.37906, 45.402601], + [9.383557, 45.402601], + [9.383557, 45.398104], + [9.37906, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.402601], + [9.37906, 45.407097], + [9.383557, 45.407097], + [9.383557, 45.402601], + [9.37906, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.407097], + [9.37906, 45.411594], + [9.383557, 45.411594], + [9.383557, 45.407097], + [9.37906, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.411594], + [9.37906, 45.416091], + [9.383557, 45.416091], + [9.383557, 45.411594], + [9.37906, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.416091], + [9.37906, 45.420587], + [9.383557, 45.420587], + [9.383557, 45.416091], + [9.37906, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.420587], + [9.37906, 45.425084], + [9.383557, 45.425084], + [9.383557, 45.420587], + [9.37906, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.425084], + [9.37906, 45.42958], + [9.383557, 45.42958], + [9.383557, 45.425084], + [9.37906, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.42958], + [9.37906, 45.434077], + [9.383557, 45.434077], + [9.383557, 45.42958], + [9.37906, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.434077], + [9.37906, 45.438574], + [9.383557, 45.438574], + [9.383557, 45.434077], + [9.37906, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.438574], + [9.37906, 45.44307], + [9.383557, 45.44307], + [9.383557, 45.438574], + [9.37906, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.44307], + [9.37906, 45.447567], + [9.383557, 45.447567], + [9.383557, 45.44307], + [9.37906, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.447567], + [9.37906, 45.452063], + [9.383557, 45.452063], + [9.383557, 45.447567], + [9.37906, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.452063], + [9.37906, 45.45656], + [9.383557, 45.45656], + [9.383557, 45.452063], + [9.37906, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.45656], + [9.37906, 45.461057], + [9.383557, 45.461057], + [9.383557, 45.45656], + [9.37906, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.461057], + [9.37906, 45.465553], + [9.383557, 45.465553], + [9.383557, 45.461057], + [9.37906, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.465553], + [9.37906, 45.47005], + [9.383557, 45.47005], + [9.383557, 45.465553], + [9.37906, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.47005], + [9.37906, 45.474547], + [9.383557, 45.474547], + [9.383557, 45.47005], + [9.37906, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.474547], + [9.37906, 45.479043], + [9.383557, 45.479043], + [9.383557, 45.474547], + [9.37906, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.479043], + [9.37906, 45.48354], + [9.383557, 45.48354], + [9.383557, 45.479043], + [9.37906, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.48354], + [9.37906, 45.488036], + [9.383557, 45.488036], + [9.383557, 45.48354], + [9.37906, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.488036], + [9.37906, 45.492533], + [9.383557, 45.492533], + [9.383557, 45.488036], + [9.37906, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.492533], + [9.37906, 45.49703], + [9.383557, 45.49703], + [9.383557, 45.492533], + [9.37906, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.49703], + [9.37906, 45.501526], + [9.383557, 45.501526], + [9.383557, 45.49703], + [9.37906, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.501526], + [9.37906, 45.506023], + [9.383557, 45.506023], + [9.383557, 45.501526], + [9.37906, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.506023], + [9.37906, 45.510519], + [9.383557, 45.510519], + [9.383557, 45.506023], + [9.37906, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.510519], + [9.37906, 45.515016], + [9.383557, 45.515016], + [9.383557, 45.510519], + [9.37906, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.515016], + [9.37906, 45.519513], + [9.383557, 45.519513], + [9.383557, 45.515016], + [9.37906, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.519513], + [9.37906, 45.524009], + [9.383557, 45.524009], + [9.383557, 45.519513], + [9.37906, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.524009], + [9.37906, 45.528506], + [9.383557, 45.528506], + [9.383557, 45.524009], + [9.37906, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.528506], + [9.37906, 45.533002], + [9.383557, 45.533002], + [9.383557, 45.528506], + [9.37906, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.533002], + [9.37906, 45.537499], + [9.383557, 45.537499], + [9.383557, 45.533002], + [9.37906, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.537499], + [9.37906, 45.541996], + [9.383557, 45.541996], + [9.383557, 45.537499], + [9.37906, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.541996], + [9.37906, 45.546492], + [9.383557, 45.546492], + [9.383557, 45.541996], + [9.37906, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.546492], + [9.37906, 45.550989], + [9.383557, 45.550989], + [9.383557, 45.546492], + [9.37906, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.550989], + [9.37906, 45.555485], + [9.383557, 45.555485], + [9.383557, 45.550989], + [9.37906, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.555485], + [9.37906, 45.559982], + [9.383557, 45.559982], + [9.383557, 45.555485], + [9.37906, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.559982], + [9.37906, 45.564479], + [9.383557, 45.564479], + [9.383557, 45.559982], + [9.37906, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.564479], + [9.37906, 45.568975], + [9.383557, 45.568975], + [9.383557, 45.564479], + [9.37906, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.568975], + [9.37906, 45.573472], + [9.383557, 45.573472], + [9.383557, 45.568975], + [9.37906, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.573472], + [9.37906, 45.577968], + [9.383557, 45.577968], + [9.383557, 45.573472], + [9.37906, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.577968], + [9.37906, 45.582465], + [9.383557, 45.582465], + [9.383557, 45.577968], + [9.37906, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.582465], + [9.37906, 45.586962], + [9.383557, 45.586962], + [9.383557, 45.582465], + [9.37906, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.586962], + [9.37906, 45.591458], + [9.383557, 45.591458], + [9.383557, 45.586962], + [9.37906, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.591458], + [9.37906, 45.595955], + [9.383557, 45.595955], + [9.383557, 45.591458], + [9.37906, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.595955], + [9.37906, 45.600451], + [9.383557, 45.600451], + [9.383557, 45.595955], + [9.37906, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.600451], + [9.37906, 45.604948], + [9.383557, 45.604948], + [9.383557, 45.600451], + [9.37906, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.604948], + [9.37906, 45.609445], + [9.383557, 45.609445], + [9.383557, 45.604948], + [9.37906, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.609445], + [9.37906, 45.613941], + [9.383557, 45.613941], + [9.383557, 45.609445], + [9.37906, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.613941], + [9.37906, 45.618438], + [9.383557, 45.618438], + [9.383557, 45.613941], + [9.37906, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.618438], + [9.37906, 45.622934], + [9.383557, 45.622934], + [9.383557, 45.618438], + [9.37906, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.622934], + [9.37906, 45.627431], + [9.383557, 45.627431], + [9.383557, 45.622934], + [9.37906, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.627431], + [9.37906, 45.631928], + [9.383557, 45.631928], + [9.383557, 45.627431], + [9.37906, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.631928], + [9.37906, 45.636424], + [9.383557, 45.636424], + [9.383557, 45.631928], + [9.37906, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.339648], + [9.383557, 45.344145], + [9.388053, 45.344145], + [9.388053, 45.339648], + [9.383557, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.344145], + [9.383557, 45.348642], + [9.388053, 45.348642], + [9.388053, 45.344145], + [9.383557, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.348642], + [9.383557, 45.353138], + [9.388053, 45.353138], + [9.388053, 45.348642], + [9.383557, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.353138], + [9.383557, 45.357635], + [9.388053, 45.357635], + [9.388053, 45.353138], + [9.383557, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.357635], + [9.383557, 45.362131], + [9.388053, 45.362131], + [9.388053, 45.357635], + [9.383557, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.362131], + [9.383557, 45.366628], + [9.388053, 45.366628], + [9.388053, 45.362131], + [9.383557, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.366628], + [9.383557, 45.371125], + [9.388053, 45.371125], + [9.388053, 45.366628], + [9.383557, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.371125], + [9.383557, 45.375621], + [9.388053, 45.375621], + [9.388053, 45.371125], + [9.383557, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.375621], + [9.383557, 45.380118], + [9.388053, 45.380118], + [9.388053, 45.375621], + [9.383557, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.380118], + [9.383557, 45.384614], + [9.388053, 45.384614], + [9.388053, 45.380118], + [9.383557, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.384614], + [9.383557, 45.389111], + [9.388053, 45.389111], + [9.388053, 45.384614], + [9.383557, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.389111], + [9.383557, 45.393608], + [9.388053, 45.393608], + [9.388053, 45.389111], + [9.383557, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.393608], + [9.383557, 45.398104], + [9.388053, 45.398104], + [9.388053, 45.393608], + [9.383557, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.398104], + [9.383557, 45.402601], + [9.388053, 45.402601], + [9.388053, 45.398104], + [9.383557, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.402601], + [9.383557, 45.407097], + [9.388053, 45.407097], + [9.388053, 45.402601], + [9.383557, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.407097], + [9.383557, 45.411594], + [9.388053, 45.411594], + [9.388053, 45.407097], + [9.383557, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.411594], + [9.383557, 45.416091], + [9.388053, 45.416091], + [9.388053, 45.411594], + [9.383557, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.416091], + [9.383557, 45.420587], + [9.388053, 45.420587], + [9.388053, 45.416091], + [9.383557, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.420587], + [9.383557, 45.425084], + [9.388053, 45.425084], + [9.388053, 45.420587], + [9.383557, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.425084], + [9.383557, 45.42958], + [9.388053, 45.42958], + [9.388053, 45.425084], + [9.383557, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.42958], + [9.383557, 45.434077], + [9.388053, 45.434077], + [9.388053, 45.42958], + [9.383557, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.434077], + [9.383557, 45.438574], + [9.388053, 45.438574], + [9.388053, 45.434077], + [9.383557, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.438574], + [9.383557, 45.44307], + [9.388053, 45.44307], + [9.388053, 45.438574], + [9.383557, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.44307], + [9.383557, 45.447567], + [9.388053, 45.447567], + [9.388053, 45.44307], + [9.383557, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.447567], + [9.383557, 45.452063], + [9.388053, 45.452063], + [9.388053, 45.447567], + [9.383557, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.452063], + [9.383557, 45.45656], + [9.388053, 45.45656], + [9.388053, 45.452063], + [9.383557, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.45656], + [9.383557, 45.461057], + [9.388053, 45.461057], + [9.388053, 45.45656], + [9.383557, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.461057], + [9.383557, 45.465553], + [9.388053, 45.465553], + [9.388053, 45.461057], + [9.383557, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.465553], + [9.383557, 45.47005], + [9.388053, 45.47005], + [9.388053, 45.465553], + [9.383557, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.47005], + [9.383557, 45.474547], + [9.388053, 45.474547], + [9.388053, 45.47005], + [9.383557, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.474547], + [9.383557, 45.479043], + [9.388053, 45.479043], + [9.388053, 45.474547], + [9.383557, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.479043], + [9.383557, 45.48354], + [9.388053, 45.48354], + [9.388053, 45.479043], + [9.383557, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.48354], + [9.383557, 45.488036], + [9.388053, 45.488036], + [9.388053, 45.48354], + [9.383557, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.488036], + [9.383557, 45.492533], + [9.388053, 45.492533], + [9.388053, 45.488036], + [9.383557, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.492533], + [9.383557, 45.49703], + [9.388053, 45.49703], + [9.388053, 45.492533], + [9.383557, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.49703], + [9.383557, 45.501526], + [9.388053, 45.501526], + [9.388053, 45.49703], + [9.383557, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.501526], + [9.383557, 45.506023], + [9.388053, 45.506023], + [9.388053, 45.501526], + [9.383557, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.506023], + [9.383557, 45.510519], + [9.388053, 45.510519], + [9.388053, 45.506023], + [9.383557, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.510519], + [9.383557, 45.515016], + [9.388053, 45.515016], + [9.388053, 45.510519], + [9.383557, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.515016], + [9.383557, 45.519513], + [9.388053, 45.519513], + [9.388053, 45.515016], + [9.383557, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.519513], + [9.383557, 45.524009], + [9.388053, 45.524009], + [9.388053, 45.519513], + [9.383557, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.524009], + [9.383557, 45.528506], + [9.388053, 45.528506], + [9.388053, 45.524009], + [9.383557, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.528506], + [9.383557, 45.533002], + [9.388053, 45.533002], + [9.388053, 45.528506], + [9.383557, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.533002], + [9.383557, 45.537499], + [9.388053, 45.537499], + [9.388053, 45.533002], + [9.383557, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.537499], + [9.383557, 45.541996], + [9.388053, 45.541996], + [9.388053, 45.537499], + [9.383557, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.541996], + [9.383557, 45.546492], + [9.388053, 45.546492], + [9.388053, 45.541996], + [9.383557, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.546492], + [9.383557, 45.550989], + [9.388053, 45.550989], + [9.388053, 45.546492], + [9.383557, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.550989], + [9.383557, 45.555485], + [9.388053, 45.555485], + [9.388053, 45.550989], + [9.383557, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.555485], + [9.383557, 45.559982], + [9.388053, 45.559982], + [9.388053, 45.555485], + [9.383557, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.559982], + [9.383557, 45.564479], + [9.388053, 45.564479], + [9.388053, 45.559982], + [9.383557, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.564479], + [9.383557, 45.568975], + [9.388053, 45.568975], + [9.388053, 45.564479], + [9.383557, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.568975], + [9.383557, 45.573472], + [9.388053, 45.573472], + [9.388053, 45.568975], + [9.383557, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.573472], + [9.383557, 45.577968], + [9.388053, 45.577968], + [9.388053, 45.573472], + [9.383557, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.577968], + [9.383557, 45.582465], + [9.388053, 45.582465], + [9.388053, 45.577968], + [9.383557, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.582465], + [9.383557, 45.586962], + [9.388053, 45.586962], + [9.388053, 45.582465], + [9.383557, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.586962], + [9.383557, 45.591458], + [9.388053, 45.591458], + [9.388053, 45.586962], + [9.383557, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.591458], + [9.383557, 45.595955], + [9.388053, 45.595955], + [9.388053, 45.591458], + [9.383557, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.595955], + [9.383557, 45.600451], + [9.388053, 45.600451], + [9.388053, 45.595955], + [9.383557, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.600451], + [9.383557, 45.604948], + [9.388053, 45.604948], + [9.388053, 45.600451], + [9.383557, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.604948], + [9.383557, 45.609445], + [9.388053, 45.609445], + [9.388053, 45.604948], + [9.383557, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.609445], + [9.383557, 45.613941], + [9.388053, 45.613941], + [9.388053, 45.609445], + [9.383557, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.613941], + [9.383557, 45.618438], + [9.388053, 45.618438], + [9.388053, 45.613941], + [9.383557, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.618438], + [9.383557, 45.622934], + [9.388053, 45.622934], + [9.388053, 45.618438], + [9.383557, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.622934], + [9.383557, 45.627431], + [9.388053, 45.627431], + [9.388053, 45.622934], + [9.383557, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.627431], + [9.383557, 45.631928], + [9.388053, 45.631928], + [9.388053, 45.627431], + [9.383557, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.631928], + [9.383557, 45.636424], + [9.388053, 45.636424], + [9.388053, 45.631928], + [9.383557, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.339648], + [9.388053, 45.344145], + [9.39255, 45.344145], + [9.39255, 45.339648], + [9.388053, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.344145], + [9.388053, 45.348642], + [9.39255, 45.348642], + [9.39255, 45.344145], + [9.388053, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.348642], + [9.388053, 45.353138], + [9.39255, 45.353138], + [9.39255, 45.348642], + [9.388053, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.353138], + [9.388053, 45.357635], + [9.39255, 45.357635], + [9.39255, 45.353138], + [9.388053, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.357635], + [9.388053, 45.362131], + [9.39255, 45.362131], + [9.39255, 45.357635], + [9.388053, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.362131], + [9.388053, 45.366628], + [9.39255, 45.366628], + [9.39255, 45.362131], + [9.388053, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.366628], + [9.388053, 45.371125], + [9.39255, 45.371125], + [9.39255, 45.366628], + [9.388053, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.371125], + [9.388053, 45.375621], + [9.39255, 45.375621], + [9.39255, 45.371125], + [9.388053, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.375621], + [9.388053, 45.380118], + [9.39255, 45.380118], + [9.39255, 45.375621], + [9.388053, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.380118], + [9.388053, 45.384614], + [9.39255, 45.384614], + [9.39255, 45.380118], + [9.388053, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.384614], + [9.388053, 45.389111], + [9.39255, 45.389111], + [9.39255, 45.384614], + [9.388053, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.389111], + [9.388053, 45.393608], + [9.39255, 45.393608], + [9.39255, 45.389111], + [9.388053, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.393608], + [9.388053, 45.398104], + [9.39255, 45.398104], + [9.39255, 45.393608], + [9.388053, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.398104], + [9.388053, 45.402601], + [9.39255, 45.402601], + [9.39255, 45.398104], + [9.388053, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.402601], + [9.388053, 45.407097], + [9.39255, 45.407097], + [9.39255, 45.402601], + [9.388053, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.407097], + [9.388053, 45.411594], + [9.39255, 45.411594], + [9.39255, 45.407097], + [9.388053, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.411594], + [9.388053, 45.416091], + [9.39255, 45.416091], + [9.39255, 45.411594], + [9.388053, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.416091], + [9.388053, 45.420587], + [9.39255, 45.420587], + [9.39255, 45.416091], + [9.388053, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.420587], + [9.388053, 45.425084], + [9.39255, 45.425084], + [9.39255, 45.420587], + [9.388053, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.425084], + [9.388053, 45.42958], + [9.39255, 45.42958], + [9.39255, 45.425084], + [9.388053, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.42958], + [9.388053, 45.434077], + [9.39255, 45.434077], + [9.39255, 45.42958], + [9.388053, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.434077], + [9.388053, 45.438574], + [9.39255, 45.438574], + [9.39255, 45.434077], + [9.388053, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.438574], + [9.388053, 45.44307], + [9.39255, 45.44307], + [9.39255, 45.438574], + [9.388053, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.44307], + [9.388053, 45.447567], + [9.39255, 45.447567], + [9.39255, 45.44307], + [9.388053, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.447567], + [9.388053, 45.452063], + [9.39255, 45.452063], + [9.39255, 45.447567], + [9.388053, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.452063], + [9.388053, 45.45656], + [9.39255, 45.45656], + [9.39255, 45.452063], + [9.388053, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.45656], + [9.388053, 45.461057], + [9.39255, 45.461057], + [9.39255, 45.45656], + [9.388053, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.461057], + [9.388053, 45.465553], + [9.39255, 45.465553], + [9.39255, 45.461057], + [9.388053, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.465553], + [9.388053, 45.47005], + [9.39255, 45.47005], + [9.39255, 45.465553], + [9.388053, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.47005], + [9.388053, 45.474547], + [9.39255, 45.474547], + [9.39255, 45.47005], + [9.388053, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.474547], + [9.388053, 45.479043], + [9.39255, 45.479043], + [9.39255, 45.474547], + [9.388053, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.479043], + [9.388053, 45.48354], + [9.39255, 45.48354], + [9.39255, 45.479043], + [9.388053, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.48354], + [9.388053, 45.488036], + [9.39255, 45.488036], + [9.39255, 45.48354], + [9.388053, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.488036], + [9.388053, 45.492533], + [9.39255, 45.492533], + [9.39255, 45.488036], + [9.388053, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.492533], + [9.388053, 45.49703], + [9.39255, 45.49703], + [9.39255, 45.492533], + [9.388053, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.49703], + [9.388053, 45.501526], + [9.39255, 45.501526], + [9.39255, 45.49703], + [9.388053, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.501526], + [9.388053, 45.506023], + [9.39255, 45.506023], + [9.39255, 45.501526], + [9.388053, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.506023], + [9.388053, 45.510519], + [9.39255, 45.510519], + [9.39255, 45.506023], + [9.388053, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.510519], + [9.388053, 45.515016], + [9.39255, 45.515016], + [9.39255, 45.510519], + [9.388053, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.515016], + [9.388053, 45.519513], + [9.39255, 45.519513], + [9.39255, 45.515016], + [9.388053, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.519513], + [9.388053, 45.524009], + [9.39255, 45.524009], + [9.39255, 45.519513], + [9.388053, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.524009], + [9.388053, 45.528506], + [9.39255, 45.528506], + [9.39255, 45.524009], + [9.388053, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.528506], + [9.388053, 45.533002], + [9.39255, 45.533002], + [9.39255, 45.528506], + [9.388053, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.533002], + [9.388053, 45.537499], + [9.39255, 45.537499], + [9.39255, 45.533002], + [9.388053, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.537499], + [9.388053, 45.541996], + [9.39255, 45.541996], + [9.39255, 45.537499], + [9.388053, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.541996], + [9.388053, 45.546492], + [9.39255, 45.546492], + [9.39255, 45.541996], + [9.388053, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.546492], + [9.388053, 45.550989], + [9.39255, 45.550989], + [9.39255, 45.546492], + [9.388053, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.550989], + [9.388053, 45.555485], + [9.39255, 45.555485], + [9.39255, 45.550989], + [9.388053, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.555485], + [9.388053, 45.559982], + [9.39255, 45.559982], + [9.39255, 45.555485], + [9.388053, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.559982], + [9.388053, 45.564479], + [9.39255, 45.564479], + [9.39255, 45.559982], + [9.388053, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.564479], + [9.388053, 45.568975], + [9.39255, 45.568975], + [9.39255, 45.564479], + [9.388053, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.568975], + [9.388053, 45.573472], + [9.39255, 45.573472], + [9.39255, 45.568975], + [9.388053, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.573472], + [9.388053, 45.577968], + [9.39255, 45.577968], + [9.39255, 45.573472], + [9.388053, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.577968], + [9.388053, 45.582465], + [9.39255, 45.582465], + [9.39255, 45.577968], + [9.388053, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.582465], + [9.388053, 45.586962], + [9.39255, 45.586962], + [9.39255, 45.582465], + [9.388053, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.586962], + [9.388053, 45.591458], + [9.39255, 45.591458], + [9.39255, 45.586962], + [9.388053, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.591458], + [9.388053, 45.595955], + [9.39255, 45.595955], + [9.39255, 45.591458], + [9.388053, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.595955], + [9.388053, 45.600451], + [9.39255, 45.600451], + [9.39255, 45.595955], + [9.388053, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.600451], + [9.388053, 45.604948], + [9.39255, 45.604948], + [9.39255, 45.600451], + [9.388053, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.604948], + [9.388053, 45.609445], + [9.39255, 45.609445], + [9.39255, 45.604948], + [9.388053, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.609445], + [9.388053, 45.613941], + [9.39255, 45.613941], + [9.39255, 45.609445], + [9.388053, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.613941], + [9.388053, 45.618438], + [9.39255, 45.618438], + [9.39255, 45.613941], + [9.388053, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.618438], + [9.388053, 45.622934], + [9.39255, 45.622934], + [9.39255, 45.618438], + [9.388053, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.622934], + [9.388053, 45.627431], + [9.39255, 45.627431], + [9.39255, 45.622934], + [9.388053, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.627431], + [9.388053, 45.631928], + [9.39255, 45.631928], + [9.39255, 45.627431], + [9.388053, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.631928], + [9.388053, 45.636424], + [9.39255, 45.636424], + [9.39255, 45.631928], + [9.388053, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.339648], + [9.39255, 45.344145], + [9.397046, 45.344145], + [9.397046, 45.339648], + [9.39255, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.344145], + [9.39255, 45.348642], + [9.397046, 45.348642], + [9.397046, 45.344145], + [9.39255, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.348642], + [9.39255, 45.353138], + [9.397046, 45.353138], + [9.397046, 45.348642], + [9.39255, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.353138], + [9.39255, 45.357635], + [9.397046, 45.357635], + [9.397046, 45.353138], + [9.39255, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.357635], + [9.39255, 45.362131], + [9.397046, 45.362131], + [9.397046, 45.357635], + [9.39255, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.362131], + [9.39255, 45.366628], + [9.397046, 45.366628], + [9.397046, 45.362131], + [9.39255, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.366628], + [9.39255, 45.371125], + [9.397046, 45.371125], + [9.397046, 45.366628], + [9.39255, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.371125], + [9.39255, 45.375621], + [9.397046, 45.375621], + [9.397046, 45.371125], + [9.39255, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.375621], + [9.39255, 45.380118], + [9.397046, 45.380118], + [9.397046, 45.375621], + [9.39255, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.380118], + [9.39255, 45.384614], + [9.397046, 45.384614], + [9.397046, 45.380118], + [9.39255, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.384614], + [9.39255, 45.389111], + [9.397046, 45.389111], + [9.397046, 45.384614], + [9.39255, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.389111], + [9.39255, 45.393608], + [9.397046, 45.393608], + [9.397046, 45.389111], + [9.39255, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.393608], + [9.39255, 45.398104], + [9.397046, 45.398104], + [9.397046, 45.393608], + [9.39255, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.398104], + [9.39255, 45.402601], + [9.397046, 45.402601], + [9.397046, 45.398104], + [9.39255, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.402601], + [9.39255, 45.407097], + [9.397046, 45.407097], + [9.397046, 45.402601], + [9.39255, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.407097], + [9.39255, 45.411594], + [9.397046, 45.411594], + [9.397046, 45.407097], + [9.39255, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.411594], + [9.39255, 45.416091], + [9.397046, 45.416091], + [9.397046, 45.411594], + [9.39255, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.416091], + [9.39255, 45.420587], + [9.397046, 45.420587], + [9.397046, 45.416091], + [9.39255, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.420587], + [9.39255, 45.425084], + [9.397046, 45.425084], + [9.397046, 45.420587], + [9.39255, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.425084], + [9.39255, 45.42958], + [9.397046, 45.42958], + [9.397046, 45.425084], + [9.39255, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.42958], + [9.39255, 45.434077], + [9.397046, 45.434077], + [9.397046, 45.42958], + [9.39255, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.434077], + [9.39255, 45.438574], + [9.397046, 45.438574], + [9.397046, 45.434077], + [9.39255, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.438574], + [9.39255, 45.44307], + [9.397046, 45.44307], + [9.397046, 45.438574], + [9.39255, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.44307], + [9.39255, 45.447567], + [9.397046, 45.447567], + [9.397046, 45.44307], + [9.39255, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.447567], + [9.39255, 45.452063], + [9.397046, 45.452063], + [9.397046, 45.447567], + [9.39255, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.452063], + [9.39255, 45.45656], + [9.397046, 45.45656], + [9.397046, 45.452063], + [9.39255, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.45656], + [9.39255, 45.461057], + [9.397046, 45.461057], + [9.397046, 45.45656], + [9.39255, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.461057], + [9.39255, 45.465553], + [9.397046, 45.465553], + [9.397046, 45.461057], + [9.39255, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.465553], + [9.39255, 45.47005], + [9.397046, 45.47005], + [9.397046, 45.465553], + [9.39255, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.47005], + [9.39255, 45.474547], + [9.397046, 45.474547], + [9.397046, 45.47005], + [9.39255, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.474547], + [9.39255, 45.479043], + [9.397046, 45.479043], + [9.397046, 45.474547], + [9.39255, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.479043], + [9.39255, 45.48354], + [9.397046, 45.48354], + [9.397046, 45.479043], + [9.39255, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.48354], + [9.39255, 45.488036], + [9.397046, 45.488036], + [9.397046, 45.48354], + [9.39255, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.488036], + [9.39255, 45.492533], + [9.397046, 45.492533], + [9.397046, 45.488036], + [9.39255, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.492533], + [9.39255, 45.49703], + [9.397046, 45.49703], + [9.397046, 45.492533], + [9.39255, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.49703], + [9.39255, 45.501526], + [9.397046, 45.501526], + [9.397046, 45.49703], + [9.39255, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.501526], + [9.39255, 45.506023], + [9.397046, 45.506023], + [9.397046, 45.501526], + [9.39255, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.506023], + [9.39255, 45.510519], + [9.397046, 45.510519], + [9.397046, 45.506023], + [9.39255, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.510519], + [9.39255, 45.515016], + [9.397046, 45.515016], + [9.397046, 45.510519], + [9.39255, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.515016], + [9.39255, 45.519513], + [9.397046, 45.519513], + [9.397046, 45.515016], + [9.39255, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.519513], + [9.39255, 45.524009], + [9.397046, 45.524009], + [9.397046, 45.519513], + [9.39255, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.524009], + [9.39255, 45.528506], + [9.397046, 45.528506], + [9.397046, 45.524009], + [9.39255, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.528506], + [9.39255, 45.533002], + [9.397046, 45.533002], + [9.397046, 45.528506], + [9.39255, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.533002], + [9.39255, 45.537499], + [9.397046, 45.537499], + [9.397046, 45.533002], + [9.39255, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.537499], + [9.39255, 45.541996], + [9.397046, 45.541996], + [9.397046, 45.537499], + [9.39255, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.541996], + [9.39255, 45.546492], + [9.397046, 45.546492], + [9.397046, 45.541996], + [9.39255, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.546492], + [9.39255, 45.550989], + [9.397046, 45.550989], + [9.397046, 45.546492], + [9.39255, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.550989], + [9.39255, 45.555485], + [9.397046, 45.555485], + [9.397046, 45.550989], + [9.39255, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.555485], + [9.39255, 45.559982], + [9.397046, 45.559982], + [9.397046, 45.555485], + [9.39255, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.559982], + [9.39255, 45.564479], + [9.397046, 45.564479], + [9.397046, 45.559982], + [9.39255, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.564479], + [9.39255, 45.568975], + [9.397046, 45.568975], + [9.397046, 45.564479], + [9.39255, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.568975], + [9.39255, 45.573472], + [9.397046, 45.573472], + [9.397046, 45.568975], + [9.39255, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.573472], + [9.39255, 45.577968], + [9.397046, 45.577968], + [9.397046, 45.573472], + [9.39255, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.577968], + [9.39255, 45.582465], + [9.397046, 45.582465], + [9.397046, 45.577968], + [9.39255, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.582465], + [9.39255, 45.586962], + [9.397046, 45.586962], + [9.397046, 45.582465], + [9.39255, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.586962], + [9.39255, 45.591458], + [9.397046, 45.591458], + [9.397046, 45.586962], + [9.39255, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.591458], + [9.39255, 45.595955], + [9.397046, 45.595955], + [9.397046, 45.591458], + [9.39255, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.595955], + [9.39255, 45.600451], + [9.397046, 45.600451], + [9.397046, 45.595955], + [9.39255, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.600451], + [9.39255, 45.604948], + [9.397046, 45.604948], + [9.397046, 45.600451], + [9.39255, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.604948], + [9.39255, 45.609445], + [9.397046, 45.609445], + [9.397046, 45.604948], + [9.39255, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.609445], + [9.39255, 45.613941], + [9.397046, 45.613941], + [9.397046, 45.609445], + [9.39255, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.613941], + [9.39255, 45.618438], + [9.397046, 45.618438], + [9.397046, 45.613941], + [9.39255, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.618438], + [9.39255, 45.622934], + [9.397046, 45.622934], + [9.397046, 45.618438], + [9.39255, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.622934], + [9.39255, 45.627431], + [9.397046, 45.627431], + [9.397046, 45.622934], + [9.39255, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.627431], + [9.39255, 45.631928], + [9.397046, 45.631928], + [9.397046, 45.627431], + [9.39255, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.631928], + [9.39255, 45.636424], + [9.397046, 45.636424], + [9.397046, 45.631928], + [9.39255, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.339648], + [9.397046, 45.344145], + [9.401543, 45.344145], + [9.401543, 45.339648], + [9.397046, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.344145], + [9.397046, 45.348642], + [9.401543, 45.348642], + [9.401543, 45.344145], + [9.397046, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.348642], + [9.397046, 45.353138], + [9.401543, 45.353138], + [9.401543, 45.348642], + [9.397046, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.353138], + [9.397046, 45.357635], + [9.401543, 45.357635], + [9.401543, 45.353138], + [9.397046, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.357635], + [9.397046, 45.362131], + [9.401543, 45.362131], + [9.401543, 45.357635], + [9.397046, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.362131], + [9.397046, 45.366628], + [9.401543, 45.366628], + [9.401543, 45.362131], + [9.397046, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.366628], + [9.397046, 45.371125], + [9.401543, 45.371125], + [9.401543, 45.366628], + [9.397046, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.371125], + [9.397046, 45.375621], + [9.401543, 45.375621], + [9.401543, 45.371125], + [9.397046, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.375621], + [9.397046, 45.380118], + [9.401543, 45.380118], + [9.401543, 45.375621], + [9.397046, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.380118], + [9.397046, 45.384614], + [9.401543, 45.384614], + [9.401543, 45.380118], + [9.397046, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.384614], + [9.397046, 45.389111], + [9.401543, 45.389111], + [9.401543, 45.384614], + [9.397046, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.389111], + [9.397046, 45.393608], + [9.401543, 45.393608], + [9.401543, 45.389111], + [9.397046, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.393608], + [9.397046, 45.398104], + [9.401543, 45.398104], + [9.401543, 45.393608], + [9.397046, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.398104], + [9.397046, 45.402601], + [9.401543, 45.402601], + [9.401543, 45.398104], + [9.397046, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.402601], + [9.397046, 45.407097], + [9.401543, 45.407097], + [9.401543, 45.402601], + [9.397046, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.407097], + [9.397046, 45.411594], + [9.401543, 45.411594], + [9.401543, 45.407097], + [9.397046, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.411594], + [9.397046, 45.416091], + [9.401543, 45.416091], + [9.401543, 45.411594], + [9.397046, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.416091], + [9.397046, 45.420587], + [9.401543, 45.420587], + [9.401543, 45.416091], + [9.397046, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.420587], + [9.397046, 45.425084], + [9.401543, 45.425084], + [9.401543, 45.420587], + [9.397046, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.425084], + [9.397046, 45.42958], + [9.401543, 45.42958], + [9.401543, 45.425084], + [9.397046, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.42958], + [9.397046, 45.434077], + [9.401543, 45.434077], + [9.401543, 45.42958], + [9.397046, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.434077], + [9.397046, 45.438574], + [9.401543, 45.438574], + [9.401543, 45.434077], + [9.397046, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.438574], + [9.397046, 45.44307], + [9.401543, 45.44307], + [9.401543, 45.438574], + [9.397046, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.44307], + [9.397046, 45.447567], + [9.401543, 45.447567], + [9.401543, 45.44307], + [9.397046, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.447567], + [9.397046, 45.452063], + [9.401543, 45.452063], + [9.401543, 45.447567], + [9.397046, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.452063], + [9.397046, 45.45656], + [9.401543, 45.45656], + [9.401543, 45.452063], + [9.397046, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.45656], + [9.397046, 45.461057], + [9.401543, 45.461057], + [9.401543, 45.45656], + [9.397046, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.461057], + [9.397046, 45.465553], + [9.401543, 45.465553], + [9.401543, 45.461057], + [9.397046, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.465553], + [9.397046, 45.47005], + [9.401543, 45.47005], + [9.401543, 45.465553], + [9.397046, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.47005], + [9.397046, 45.474547], + [9.401543, 45.474547], + [9.401543, 45.47005], + [9.397046, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.474547], + [9.397046, 45.479043], + [9.401543, 45.479043], + [9.401543, 45.474547], + [9.397046, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.479043], + [9.397046, 45.48354], + [9.401543, 45.48354], + [9.401543, 45.479043], + [9.397046, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.48354], + [9.397046, 45.488036], + [9.401543, 45.488036], + [9.401543, 45.48354], + [9.397046, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.488036], + [9.397046, 45.492533], + [9.401543, 45.492533], + [9.401543, 45.488036], + [9.397046, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.492533], + [9.397046, 45.49703], + [9.401543, 45.49703], + [9.401543, 45.492533], + [9.397046, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.49703], + [9.397046, 45.501526], + [9.401543, 45.501526], + [9.401543, 45.49703], + [9.397046, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.501526], + [9.397046, 45.506023], + [9.401543, 45.506023], + [9.401543, 45.501526], + [9.397046, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.506023], + [9.397046, 45.510519], + [9.401543, 45.510519], + [9.401543, 45.506023], + [9.397046, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.510519], + [9.397046, 45.515016], + [9.401543, 45.515016], + [9.401543, 45.510519], + [9.397046, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.515016], + [9.397046, 45.519513], + [9.401543, 45.519513], + [9.401543, 45.515016], + [9.397046, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.519513], + [9.397046, 45.524009], + [9.401543, 45.524009], + [9.401543, 45.519513], + [9.397046, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.524009], + [9.397046, 45.528506], + [9.401543, 45.528506], + [9.401543, 45.524009], + [9.397046, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.528506], + [9.397046, 45.533002], + [9.401543, 45.533002], + [9.401543, 45.528506], + [9.397046, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.533002], + [9.397046, 45.537499], + [9.401543, 45.537499], + [9.401543, 45.533002], + [9.397046, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.537499], + [9.397046, 45.541996], + [9.401543, 45.541996], + [9.401543, 45.537499], + [9.397046, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.541996], + [9.397046, 45.546492], + [9.401543, 45.546492], + [9.401543, 45.541996], + [9.397046, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.546492], + [9.397046, 45.550989], + [9.401543, 45.550989], + [9.401543, 45.546492], + [9.397046, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.550989], + [9.397046, 45.555485], + [9.401543, 45.555485], + [9.401543, 45.550989], + [9.397046, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.555485], + [9.397046, 45.559982], + [9.401543, 45.559982], + [9.401543, 45.555485], + [9.397046, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.559982], + [9.397046, 45.564479], + [9.401543, 45.564479], + [9.401543, 45.559982], + [9.397046, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.564479], + [9.397046, 45.568975], + [9.401543, 45.568975], + [9.401543, 45.564479], + [9.397046, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.568975], + [9.397046, 45.573472], + [9.401543, 45.573472], + [9.401543, 45.568975], + [9.397046, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.573472], + [9.397046, 45.577968], + [9.401543, 45.577968], + [9.401543, 45.573472], + [9.397046, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.577968], + [9.397046, 45.582465], + [9.401543, 45.582465], + [9.401543, 45.577968], + [9.397046, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.582465], + [9.397046, 45.586962], + [9.401543, 45.586962], + [9.401543, 45.582465], + [9.397046, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.586962], + [9.397046, 45.591458], + [9.401543, 45.591458], + [9.401543, 45.586962], + [9.397046, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.591458], + [9.397046, 45.595955], + [9.401543, 45.595955], + [9.401543, 45.591458], + [9.397046, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.595955], + [9.397046, 45.600451], + [9.401543, 45.600451], + [9.401543, 45.595955], + [9.397046, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.600451], + [9.397046, 45.604948], + [9.401543, 45.604948], + [9.401543, 45.600451], + [9.397046, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.604948], + [9.397046, 45.609445], + [9.401543, 45.609445], + [9.401543, 45.604948], + [9.397046, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.609445], + [9.397046, 45.613941], + [9.401543, 45.613941], + [9.401543, 45.609445], + [9.397046, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.613941], + [9.397046, 45.618438], + [9.401543, 45.618438], + [9.401543, 45.613941], + [9.397046, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.618438], + [9.397046, 45.622934], + [9.401543, 45.622934], + [9.401543, 45.618438], + [9.397046, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.622934], + [9.397046, 45.627431], + [9.401543, 45.627431], + [9.401543, 45.622934], + [9.397046, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.627431], + [9.397046, 45.631928], + [9.401543, 45.631928], + [9.401543, 45.627431], + [9.397046, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.631928], + [9.397046, 45.636424], + [9.401543, 45.636424], + [9.401543, 45.631928], + [9.397046, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.339648], + [9.401543, 45.344145], + [9.40604, 45.344145], + [9.40604, 45.339648], + [9.401543, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.344145], + [9.401543, 45.348642], + [9.40604, 45.348642], + [9.40604, 45.344145], + [9.401543, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.348642], + [9.401543, 45.353138], + [9.40604, 45.353138], + [9.40604, 45.348642], + [9.401543, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.353138], + [9.401543, 45.357635], + [9.40604, 45.357635], + [9.40604, 45.353138], + [9.401543, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.357635], + [9.401543, 45.362131], + [9.40604, 45.362131], + [9.40604, 45.357635], + [9.401543, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.362131], + [9.401543, 45.366628], + [9.40604, 45.366628], + [9.40604, 45.362131], + [9.401543, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.366628], + [9.401543, 45.371125], + [9.40604, 45.371125], + [9.40604, 45.366628], + [9.401543, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.371125], + [9.401543, 45.375621], + [9.40604, 45.375621], + [9.40604, 45.371125], + [9.401543, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.375621], + [9.401543, 45.380118], + [9.40604, 45.380118], + [9.40604, 45.375621], + [9.401543, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.380118], + [9.401543, 45.384614], + [9.40604, 45.384614], + [9.40604, 45.380118], + [9.401543, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.384614], + [9.401543, 45.389111], + [9.40604, 45.389111], + [9.40604, 45.384614], + [9.401543, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.389111], + [9.401543, 45.393608], + [9.40604, 45.393608], + [9.40604, 45.389111], + [9.401543, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.393608], + [9.401543, 45.398104], + [9.40604, 45.398104], + [9.40604, 45.393608], + [9.401543, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.398104], + [9.401543, 45.402601], + [9.40604, 45.402601], + [9.40604, 45.398104], + [9.401543, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.402601], + [9.401543, 45.407097], + [9.40604, 45.407097], + [9.40604, 45.402601], + [9.401543, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.407097], + [9.401543, 45.411594], + [9.40604, 45.411594], + [9.40604, 45.407097], + [9.401543, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.411594], + [9.401543, 45.416091], + [9.40604, 45.416091], + [9.40604, 45.411594], + [9.401543, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.416091], + [9.401543, 45.420587], + [9.40604, 45.420587], + [9.40604, 45.416091], + [9.401543, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.420587], + [9.401543, 45.425084], + [9.40604, 45.425084], + [9.40604, 45.420587], + [9.401543, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.425084], + [9.401543, 45.42958], + [9.40604, 45.42958], + [9.40604, 45.425084], + [9.401543, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.42958], + [9.401543, 45.434077], + [9.40604, 45.434077], + [9.40604, 45.42958], + [9.401543, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.434077], + [9.401543, 45.438574], + [9.40604, 45.438574], + [9.40604, 45.434077], + [9.401543, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.438574], + [9.401543, 45.44307], + [9.40604, 45.44307], + [9.40604, 45.438574], + [9.401543, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.44307], + [9.401543, 45.447567], + [9.40604, 45.447567], + [9.40604, 45.44307], + [9.401543, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.447567], + [9.401543, 45.452063], + [9.40604, 45.452063], + [9.40604, 45.447567], + [9.401543, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.452063], + [9.401543, 45.45656], + [9.40604, 45.45656], + [9.40604, 45.452063], + [9.401543, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.45656], + [9.401543, 45.461057], + [9.40604, 45.461057], + [9.40604, 45.45656], + [9.401543, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.461057], + [9.401543, 45.465553], + [9.40604, 45.465553], + [9.40604, 45.461057], + [9.401543, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.465553], + [9.401543, 45.47005], + [9.40604, 45.47005], + [9.40604, 45.465553], + [9.401543, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.47005], + [9.401543, 45.474547], + [9.40604, 45.474547], + [9.40604, 45.47005], + [9.401543, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.474547], + [9.401543, 45.479043], + [9.40604, 45.479043], + [9.40604, 45.474547], + [9.401543, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.479043], + [9.401543, 45.48354], + [9.40604, 45.48354], + [9.40604, 45.479043], + [9.401543, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.48354], + [9.401543, 45.488036], + [9.40604, 45.488036], + [9.40604, 45.48354], + [9.401543, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.488036], + [9.401543, 45.492533], + [9.40604, 45.492533], + [9.40604, 45.488036], + [9.401543, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.492533], + [9.401543, 45.49703], + [9.40604, 45.49703], + [9.40604, 45.492533], + [9.401543, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.49703], + [9.401543, 45.501526], + [9.40604, 45.501526], + [9.40604, 45.49703], + [9.401543, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.501526], + [9.401543, 45.506023], + [9.40604, 45.506023], + [9.40604, 45.501526], + [9.401543, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.506023], + [9.401543, 45.510519], + [9.40604, 45.510519], + [9.40604, 45.506023], + [9.401543, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.510519], + [9.401543, 45.515016], + [9.40604, 45.515016], + [9.40604, 45.510519], + [9.401543, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.515016], + [9.401543, 45.519513], + [9.40604, 45.519513], + [9.40604, 45.515016], + [9.401543, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.519513], + [9.401543, 45.524009], + [9.40604, 45.524009], + [9.40604, 45.519513], + [9.401543, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.524009], + [9.401543, 45.528506], + [9.40604, 45.528506], + [9.40604, 45.524009], + [9.401543, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.528506], + [9.401543, 45.533002], + [9.40604, 45.533002], + [9.40604, 45.528506], + [9.401543, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.533002], + [9.401543, 45.537499], + [9.40604, 45.537499], + [9.40604, 45.533002], + [9.401543, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.537499], + [9.401543, 45.541996], + [9.40604, 45.541996], + [9.40604, 45.537499], + [9.401543, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.541996], + [9.401543, 45.546492], + [9.40604, 45.546492], + [9.40604, 45.541996], + [9.401543, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.546492], + [9.401543, 45.550989], + [9.40604, 45.550989], + [9.40604, 45.546492], + [9.401543, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.550989], + [9.401543, 45.555485], + [9.40604, 45.555485], + [9.40604, 45.550989], + [9.401543, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.555485], + [9.401543, 45.559982], + [9.40604, 45.559982], + [9.40604, 45.555485], + [9.401543, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.559982], + [9.401543, 45.564479], + [9.40604, 45.564479], + [9.40604, 45.559982], + [9.401543, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.564479], + [9.401543, 45.568975], + [9.40604, 45.568975], + [9.40604, 45.564479], + [9.401543, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.568975], + [9.401543, 45.573472], + [9.40604, 45.573472], + [9.40604, 45.568975], + [9.401543, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.573472], + [9.401543, 45.577968], + [9.40604, 45.577968], + [9.40604, 45.573472], + [9.401543, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.577968], + [9.401543, 45.582465], + [9.40604, 45.582465], + [9.40604, 45.577968], + [9.401543, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.582465], + [9.401543, 45.586962], + [9.40604, 45.586962], + [9.40604, 45.582465], + [9.401543, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.586962], + [9.401543, 45.591458], + [9.40604, 45.591458], + [9.40604, 45.586962], + [9.401543, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.591458], + [9.401543, 45.595955], + [9.40604, 45.595955], + [9.40604, 45.591458], + [9.401543, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.595955], + [9.401543, 45.600451], + [9.40604, 45.600451], + [9.40604, 45.595955], + [9.401543, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.600451], + [9.401543, 45.604948], + [9.40604, 45.604948], + [9.40604, 45.600451], + [9.401543, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.604948], + [9.401543, 45.609445], + [9.40604, 45.609445], + [9.40604, 45.604948], + [9.401543, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.609445], + [9.401543, 45.613941], + [9.40604, 45.613941], + [9.40604, 45.609445], + [9.401543, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.613941], + [9.401543, 45.618438], + [9.40604, 45.618438], + [9.40604, 45.613941], + [9.401543, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.618438], + [9.401543, 45.622934], + [9.40604, 45.622934], + [9.40604, 45.618438], + [9.401543, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.622934], + [9.401543, 45.627431], + [9.40604, 45.627431], + [9.40604, 45.622934], + [9.401543, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.627431], + [9.401543, 45.631928], + [9.40604, 45.631928], + [9.40604, 45.627431], + [9.401543, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.631928], + [9.401543, 45.636424], + [9.40604, 45.636424], + [9.40604, 45.631928], + [9.401543, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.339648], + [9.40604, 45.344145], + [9.410536, 45.344145], + [9.410536, 45.339648], + [9.40604, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.344145], + [9.40604, 45.348642], + [9.410536, 45.348642], + [9.410536, 45.344145], + [9.40604, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.348642], + [9.40604, 45.353138], + [9.410536, 45.353138], + [9.410536, 45.348642], + [9.40604, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.353138], + [9.40604, 45.357635], + [9.410536, 45.357635], + [9.410536, 45.353138], + [9.40604, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.357635], + [9.40604, 45.362131], + [9.410536, 45.362131], + [9.410536, 45.357635], + [9.40604, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.362131], + [9.40604, 45.366628], + [9.410536, 45.366628], + [9.410536, 45.362131], + [9.40604, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.366628], + [9.40604, 45.371125], + [9.410536, 45.371125], + [9.410536, 45.366628], + [9.40604, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.371125], + [9.40604, 45.375621], + [9.410536, 45.375621], + [9.410536, 45.371125], + [9.40604, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.375621], + [9.40604, 45.380118], + [9.410536, 45.380118], + [9.410536, 45.375621], + [9.40604, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.380118], + [9.40604, 45.384614], + [9.410536, 45.384614], + [9.410536, 45.380118], + [9.40604, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.384614], + [9.40604, 45.389111], + [9.410536, 45.389111], + [9.410536, 45.384614], + [9.40604, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.389111], + [9.40604, 45.393608], + [9.410536, 45.393608], + [9.410536, 45.389111], + [9.40604, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.393608], + [9.40604, 45.398104], + [9.410536, 45.398104], + [9.410536, 45.393608], + [9.40604, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.398104], + [9.40604, 45.402601], + [9.410536, 45.402601], + [9.410536, 45.398104], + [9.40604, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.402601], + [9.40604, 45.407097], + [9.410536, 45.407097], + [9.410536, 45.402601], + [9.40604, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.407097], + [9.40604, 45.411594], + [9.410536, 45.411594], + [9.410536, 45.407097], + [9.40604, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.411594], + [9.40604, 45.416091], + [9.410536, 45.416091], + [9.410536, 45.411594], + [9.40604, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.416091], + [9.40604, 45.420587], + [9.410536, 45.420587], + [9.410536, 45.416091], + [9.40604, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.420587], + [9.40604, 45.425084], + [9.410536, 45.425084], + [9.410536, 45.420587], + [9.40604, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.425084], + [9.40604, 45.42958], + [9.410536, 45.42958], + [9.410536, 45.425084], + [9.40604, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.42958], + [9.40604, 45.434077], + [9.410536, 45.434077], + [9.410536, 45.42958], + [9.40604, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.434077], + [9.40604, 45.438574], + [9.410536, 45.438574], + [9.410536, 45.434077], + [9.40604, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.438574], + [9.40604, 45.44307], + [9.410536, 45.44307], + [9.410536, 45.438574], + [9.40604, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.44307], + [9.40604, 45.447567], + [9.410536, 45.447567], + [9.410536, 45.44307], + [9.40604, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.447567], + [9.40604, 45.452063], + [9.410536, 45.452063], + [9.410536, 45.447567], + [9.40604, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.452063], + [9.40604, 45.45656], + [9.410536, 45.45656], + [9.410536, 45.452063], + [9.40604, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.45656], + [9.40604, 45.461057], + [9.410536, 45.461057], + [9.410536, 45.45656], + [9.40604, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.461057], + [9.40604, 45.465553], + [9.410536, 45.465553], + [9.410536, 45.461057], + [9.40604, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.465553], + [9.40604, 45.47005], + [9.410536, 45.47005], + [9.410536, 45.465553], + [9.40604, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.47005], + [9.40604, 45.474547], + [9.410536, 45.474547], + [9.410536, 45.47005], + [9.40604, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.474547], + [9.40604, 45.479043], + [9.410536, 45.479043], + [9.410536, 45.474547], + [9.40604, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.479043], + [9.40604, 45.48354], + [9.410536, 45.48354], + [9.410536, 45.479043], + [9.40604, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.48354], + [9.40604, 45.488036], + [9.410536, 45.488036], + [9.410536, 45.48354], + [9.40604, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.488036], + [9.40604, 45.492533], + [9.410536, 45.492533], + [9.410536, 45.488036], + [9.40604, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.492533], + [9.40604, 45.49703], + [9.410536, 45.49703], + [9.410536, 45.492533], + [9.40604, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.49703], + [9.40604, 45.501526], + [9.410536, 45.501526], + [9.410536, 45.49703], + [9.40604, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.501526], + [9.40604, 45.506023], + [9.410536, 45.506023], + [9.410536, 45.501526], + [9.40604, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.506023], + [9.40604, 45.510519], + [9.410536, 45.510519], + [9.410536, 45.506023], + [9.40604, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.510519], + [9.40604, 45.515016], + [9.410536, 45.515016], + [9.410536, 45.510519], + [9.40604, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.515016], + [9.40604, 45.519513], + [9.410536, 45.519513], + [9.410536, 45.515016], + [9.40604, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.519513], + [9.40604, 45.524009], + [9.410536, 45.524009], + [9.410536, 45.519513], + [9.40604, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.524009], + [9.40604, 45.528506], + [9.410536, 45.528506], + [9.410536, 45.524009], + [9.40604, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.528506], + [9.40604, 45.533002], + [9.410536, 45.533002], + [9.410536, 45.528506], + [9.40604, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.533002], + [9.40604, 45.537499], + [9.410536, 45.537499], + [9.410536, 45.533002], + [9.40604, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.537499], + [9.40604, 45.541996], + [9.410536, 45.541996], + [9.410536, 45.537499], + [9.40604, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.541996], + [9.40604, 45.546492], + [9.410536, 45.546492], + [9.410536, 45.541996], + [9.40604, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.546492], + [9.40604, 45.550989], + [9.410536, 45.550989], + [9.410536, 45.546492], + [9.40604, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.550989], + [9.40604, 45.555485], + [9.410536, 45.555485], + [9.410536, 45.550989], + [9.40604, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.555485], + [9.40604, 45.559982], + [9.410536, 45.559982], + [9.410536, 45.555485], + [9.40604, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.559982], + [9.40604, 45.564479], + [9.410536, 45.564479], + [9.410536, 45.559982], + [9.40604, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.564479], + [9.40604, 45.568975], + [9.410536, 45.568975], + [9.410536, 45.564479], + [9.40604, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.568975], + [9.40604, 45.573472], + [9.410536, 45.573472], + [9.410536, 45.568975], + [9.40604, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.573472], + [9.40604, 45.577968], + [9.410536, 45.577968], + [9.410536, 45.573472], + [9.40604, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.577968], + [9.40604, 45.582465], + [9.410536, 45.582465], + [9.410536, 45.577968], + [9.40604, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.582465], + [9.40604, 45.586962], + [9.410536, 45.586962], + [9.410536, 45.582465], + [9.40604, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.586962], + [9.40604, 45.591458], + [9.410536, 45.591458], + [9.410536, 45.586962], + [9.40604, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.591458], + [9.40604, 45.595955], + [9.410536, 45.595955], + [9.410536, 45.591458], + [9.40604, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.595955], + [9.40604, 45.600451], + [9.410536, 45.600451], + [9.410536, 45.595955], + [9.40604, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.600451], + [9.40604, 45.604948], + [9.410536, 45.604948], + [9.410536, 45.600451], + [9.40604, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.604948], + [9.40604, 45.609445], + [9.410536, 45.609445], + [9.410536, 45.604948], + [9.40604, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.609445], + [9.40604, 45.613941], + [9.410536, 45.613941], + [9.410536, 45.609445], + [9.40604, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.613941], + [9.40604, 45.618438], + [9.410536, 45.618438], + [9.410536, 45.613941], + [9.40604, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.618438], + [9.40604, 45.622934], + [9.410536, 45.622934], + [9.410536, 45.618438], + [9.40604, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.622934], + [9.40604, 45.627431], + [9.410536, 45.627431], + [9.410536, 45.622934], + [9.40604, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.627431], + [9.40604, 45.631928], + [9.410536, 45.631928], + [9.410536, 45.627431], + [9.40604, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.631928], + [9.40604, 45.636424], + [9.410536, 45.636424], + [9.410536, 45.631928], + [9.40604, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.339648], + [9.410536, 45.344145], + [9.415033, 45.344145], + [9.415033, 45.339648], + [9.410536, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.344145], + [9.410536, 45.348642], + [9.415033, 45.348642], + [9.415033, 45.344145], + [9.410536, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.348642], + [9.410536, 45.353138], + [9.415033, 45.353138], + [9.415033, 45.348642], + [9.410536, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.353138], + [9.410536, 45.357635], + [9.415033, 45.357635], + [9.415033, 45.353138], + [9.410536, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.357635], + [9.410536, 45.362131], + [9.415033, 45.362131], + [9.415033, 45.357635], + [9.410536, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.362131], + [9.410536, 45.366628], + [9.415033, 45.366628], + [9.415033, 45.362131], + [9.410536, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.366628], + [9.410536, 45.371125], + [9.415033, 45.371125], + [9.415033, 45.366628], + [9.410536, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.371125], + [9.410536, 45.375621], + [9.415033, 45.375621], + [9.415033, 45.371125], + [9.410536, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.375621], + [9.410536, 45.380118], + [9.415033, 45.380118], + [9.415033, 45.375621], + [9.410536, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.380118], + [9.410536, 45.384614], + [9.415033, 45.384614], + [9.415033, 45.380118], + [9.410536, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.384614], + [9.410536, 45.389111], + [9.415033, 45.389111], + [9.415033, 45.384614], + [9.410536, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.389111], + [9.410536, 45.393608], + [9.415033, 45.393608], + [9.415033, 45.389111], + [9.410536, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.393608], + [9.410536, 45.398104], + [9.415033, 45.398104], + [9.415033, 45.393608], + [9.410536, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.398104], + [9.410536, 45.402601], + [9.415033, 45.402601], + [9.415033, 45.398104], + [9.410536, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.402601], + [9.410536, 45.407097], + [9.415033, 45.407097], + [9.415033, 45.402601], + [9.410536, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.407097], + [9.410536, 45.411594], + [9.415033, 45.411594], + [9.415033, 45.407097], + [9.410536, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.411594], + [9.410536, 45.416091], + [9.415033, 45.416091], + [9.415033, 45.411594], + [9.410536, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.416091], + [9.410536, 45.420587], + [9.415033, 45.420587], + [9.415033, 45.416091], + [9.410536, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.420587], + [9.410536, 45.425084], + [9.415033, 45.425084], + [9.415033, 45.420587], + [9.410536, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.425084], + [9.410536, 45.42958], + [9.415033, 45.42958], + [9.415033, 45.425084], + [9.410536, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.42958], + [9.410536, 45.434077], + [9.415033, 45.434077], + [9.415033, 45.42958], + [9.410536, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.434077], + [9.410536, 45.438574], + [9.415033, 45.438574], + [9.415033, 45.434077], + [9.410536, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.438574], + [9.410536, 45.44307], + [9.415033, 45.44307], + [9.415033, 45.438574], + [9.410536, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.44307], + [9.410536, 45.447567], + [9.415033, 45.447567], + [9.415033, 45.44307], + [9.410536, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.447567], + [9.410536, 45.452063], + [9.415033, 45.452063], + [9.415033, 45.447567], + [9.410536, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.452063], + [9.410536, 45.45656], + [9.415033, 45.45656], + [9.415033, 45.452063], + [9.410536, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.45656], + [9.410536, 45.461057], + [9.415033, 45.461057], + [9.415033, 45.45656], + [9.410536, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.461057], + [9.410536, 45.465553], + [9.415033, 45.465553], + [9.415033, 45.461057], + [9.410536, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.465553], + [9.410536, 45.47005], + [9.415033, 45.47005], + [9.415033, 45.465553], + [9.410536, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.47005], + [9.410536, 45.474547], + [9.415033, 45.474547], + [9.415033, 45.47005], + [9.410536, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.474547], + [9.410536, 45.479043], + [9.415033, 45.479043], + [9.415033, 45.474547], + [9.410536, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.479043], + [9.410536, 45.48354], + [9.415033, 45.48354], + [9.415033, 45.479043], + [9.410536, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.48354], + [9.410536, 45.488036], + [9.415033, 45.488036], + [9.415033, 45.48354], + [9.410536, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.488036], + [9.410536, 45.492533], + [9.415033, 45.492533], + [9.415033, 45.488036], + [9.410536, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.492533], + [9.410536, 45.49703], + [9.415033, 45.49703], + [9.415033, 45.492533], + [9.410536, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.49703], + [9.410536, 45.501526], + [9.415033, 45.501526], + [9.415033, 45.49703], + [9.410536, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.501526], + [9.410536, 45.506023], + [9.415033, 45.506023], + [9.415033, 45.501526], + [9.410536, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.506023], + [9.410536, 45.510519], + [9.415033, 45.510519], + [9.415033, 45.506023], + [9.410536, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.510519], + [9.410536, 45.515016], + [9.415033, 45.515016], + [9.415033, 45.510519], + [9.410536, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.515016], + [9.410536, 45.519513], + [9.415033, 45.519513], + [9.415033, 45.515016], + [9.410536, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.519513], + [9.410536, 45.524009], + [9.415033, 45.524009], + [9.415033, 45.519513], + [9.410536, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.524009], + [9.410536, 45.528506], + [9.415033, 45.528506], + [9.415033, 45.524009], + [9.410536, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.528506], + [9.410536, 45.533002], + [9.415033, 45.533002], + [9.415033, 45.528506], + [9.410536, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.533002], + [9.410536, 45.537499], + [9.415033, 45.537499], + [9.415033, 45.533002], + [9.410536, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.537499], + [9.410536, 45.541996], + [9.415033, 45.541996], + [9.415033, 45.537499], + [9.410536, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.541996], + [9.410536, 45.546492], + [9.415033, 45.546492], + [9.415033, 45.541996], + [9.410536, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.546492], + [9.410536, 45.550989], + [9.415033, 45.550989], + [9.415033, 45.546492], + [9.410536, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.550989], + [9.410536, 45.555485], + [9.415033, 45.555485], + [9.415033, 45.550989], + [9.410536, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.555485], + [9.410536, 45.559982], + [9.415033, 45.559982], + [9.415033, 45.555485], + [9.410536, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.559982], + [9.410536, 45.564479], + [9.415033, 45.564479], + [9.415033, 45.559982], + [9.410536, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.564479], + [9.410536, 45.568975], + [9.415033, 45.568975], + [9.415033, 45.564479], + [9.410536, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.568975], + [9.410536, 45.573472], + [9.415033, 45.573472], + [9.415033, 45.568975], + [9.410536, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.573472], + [9.410536, 45.577968], + [9.415033, 45.577968], + [9.415033, 45.573472], + [9.410536, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.577968], + [9.410536, 45.582465], + [9.415033, 45.582465], + [9.415033, 45.577968], + [9.410536, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.582465], + [9.410536, 45.586962], + [9.415033, 45.586962], + [9.415033, 45.582465], + [9.410536, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.586962], + [9.410536, 45.591458], + [9.415033, 45.591458], + [9.415033, 45.586962], + [9.410536, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.591458], + [9.410536, 45.595955], + [9.415033, 45.595955], + [9.415033, 45.591458], + [9.410536, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.595955], + [9.410536, 45.600451], + [9.415033, 45.600451], + [9.415033, 45.595955], + [9.410536, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.600451], + [9.410536, 45.604948], + [9.415033, 45.604948], + [9.415033, 45.600451], + [9.410536, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.604948], + [9.410536, 45.609445], + [9.415033, 45.609445], + [9.415033, 45.604948], + [9.410536, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.609445], + [9.410536, 45.613941], + [9.415033, 45.613941], + [9.415033, 45.609445], + [9.410536, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.613941], + [9.410536, 45.618438], + [9.415033, 45.618438], + [9.415033, 45.613941], + [9.410536, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.618438], + [9.410536, 45.622934], + [9.415033, 45.622934], + [9.415033, 45.618438], + [9.410536, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.622934], + [9.410536, 45.627431], + [9.415033, 45.627431], + [9.415033, 45.622934], + [9.410536, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.627431], + [9.410536, 45.631928], + [9.415033, 45.631928], + [9.415033, 45.627431], + [9.410536, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.631928], + [9.410536, 45.636424], + [9.415033, 45.636424], + [9.415033, 45.631928], + [9.410536, 45.631928] + ] + ] + } + } + ] +} diff --git a/packages/turf-interpolate/test/out/hex-zValue-bbox.geojson b/packages/turf-interpolate/test/out/hex-zValue-bbox.geojson new file mode 100644 index 000000000..3a45ec78b --- /dev/null +++ b/packages/turf-interpolate/test/out/hex-zValue-bbox.geojson @@ -0,0 +1,1040 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "elevation": 4, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.332553, 53.373153], + [-6.338615, 53.366886], + [-6.350739, 53.366886], + [-6.3568, 53.373153], + [-6.350739, 53.37942], + [-6.338615, 53.37942], + [-6.332553, 53.373153] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 3, + "stroke": "#d1e9ff", + "fill": "#d1e9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.332553, 53.360619], + [-6.338615, 53.354352], + [-6.350739, 53.354352], + [-6.3568, 53.360619], + [-6.350739, 53.366886], + [-6.338615, 53.366886], + [-6.332553, 53.360619] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 3, + "stroke": "#d1e9ff", + "fill": "#d1e9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.332553, 53.348085], + [-6.338615, 53.341818], + [-6.350739, 53.341818], + [-6.3568, 53.348085], + [-6.350739, 53.354352], + [-6.338615, 53.354352], + [-6.332553, 53.348085] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 5, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.332553, 53.335551], + [-6.338615, 53.329284], + [-6.350739, 53.329284], + [-6.3568, 53.335551], + [-6.350739, 53.341818], + [-6.338615, 53.341818], + [-6.332553, 53.335551] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 6, + "stroke": "#47a7ff", + "fill": "#47a7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.332553, 53.323016], + [-6.338615, 53.316749], + [-6.350739, 53.316749], + [-6.3568, 53.323016], + [-6.350739, 53.329284], + [-6.338615, 53.329284], + [-6.332553, 53.323016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 5, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.314368, 53.37942], + [-6.32043, 53.373153], + [-6.332553, 53.373153], + [-6.338615, 53.37942], + [-6.332553, 53.385687], + [-6.32043, 53.385687], + [-6.314368, 53.37942] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 3, + "stroke": "#d1e9ff", + "fill": "#d1e9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.314368, 53.366886], + [-6.32043, 53.360619], + [-6.332553, 53.360619], + [-6.338615, 53.366886], + [-6.332553, 53.373153], + [-6.32043, 53.373153], + [-6.314368, 53.366886] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 2, + "stroke": "#ffffff", + "fill": "#ffffff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.314368, 53.354352], + [-6.32043, 53.348085], + [-6.332553, 53.348085], + [-6.338615, 53.354352], + [-6.332553, 53.360619], + [-6.32043, 53.360619], + [-6.314368, 53.354352] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 4, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.314368, 53.341818], + [-6.32043, 53.335551], + [-6.332553, 53.335551], + [-6.338615, 53.341818], + [-6.332553, 53.348085], + [-6.32043, 53.348085], + [-6.314368, 53.341818] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 6, + "stroke": "#47a7ff", + "fill": "#47a7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.314368, 53.329284], + [-6.32043, 53.323016], + [-6.332553, 53.323016], + [-6.338615, 53.329284], + [-6.332553, 53.335551], + [-6.32043, 53.335551], + [-6.314368, 53.329284] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 6, + "stroke": "#47a7ff", + "fill": "#47a7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.296183, 53.373153], + [-6.302245, 53.366886], + [-6.314368, 53.366886], + [-6.32043, 53.373153], + [-6.314368, 53.37942], + [-6.302245, 53.37942], + [-6.296183, 53.373153] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 5, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.296183, 53.360619], + [-6.302245, 53.354352], + [-6.314368, 53.354352], + [-6.32043, 53.360619], + [-6.314368, 53.366886], + [-6.302245, 53.366886], + [-6.296183, 53.360619] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 5, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.296183, 53.348085], + [-6.302245, 53.341818], + [-6.314368, 53.341818], + [-6.32043, 53.348085], + [-6.314368, 53.354352], + [-6.302245, 53.354352], + [-6.296183, 53.348085] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 7, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.296183, 53.335551], + [-6.302245, 53.329284], + [-6.314368, 53.329284], + [-6.32043, 53.335551], + [-6.314368, 53.341818], + [-6.302245, 53.341818], + [-6.296183, 53.335551] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 8, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.296183, 53.323016], + [-6.302245, 53.316749], + [-6.314368, 53.316749], + [-6.32043, 53.323016], + [-6.314368, 53.329284], + [-6.302245, 53.329284], + [-6.296183, 53.323016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 7, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.277998, 53.37942], + [-6.28406, 53.373153], + [-6.296183, 53.373153], + [-6.302245, 53.37942], + [-6.296183, 53.385687], + [-6.28406, 53.385687], + [-6.277998, 53.37942] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 7, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.277998, 53.366886], + [-6.28406, 53.360619], + [-6.296183, 53.360619], + [-6.302245, 53.366886], + [-6.296183, 53.373153], + [-6.28406, 53.373153], + [-6.277998, 53.366886] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 8, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.277998, 53.354352], + [-6.28406, 53.348085], + [-6.296183, 53.348085], + [-6.302245, 53.354352], + [-6.296183, 53.360619], + [-6.28406, 53.360619], + [-6.277998, 53.354352] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 8, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.277998, 53.341818], + [-6.28406, 53.335551], + [-6.296183, 53.335551], + [-6.302245, 53.341818], + [-6.296183, 53.348085], + [-6.28406, 53.348085], + [-6.277998, 53.341818] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 9, + "stroke": "#0060b8", + "fill": "#0060b8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.277998, 53.329284], + [-6.28406, 53.323016], + [-6.296183, 53.323016], + [-6.302245, 53.329284], + [-6.296183, 53.335551], + [-6.28406, 53.335551], + [-6.277998, 53.329284] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 7, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.259813, 53.373153], + [-6.265874, 53.366886], + [-6.277998, 53.366886], + [-6.28406, 53.373153], + [-6.277998, 53.37942], + [-6.265874, 53.37942], + [-6.259813, 53.373153] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 9, + "stroke": "#0060b8", + "fill": "#0060b8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.259813, 53.360619], + [-6.265874, 53.354352], + [-6.277998, 53.354352], + [-6.28406, 53.360619], + [-6.277998, 53.366886], + [-6.265874, 53.366886], + [-6.259813, 53.360619] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 9, + "stroke": "#0060b8", + "fill": "#0060b8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.259813, 53.348085], + [-6.265874, 53.341818], + [-6.277998, 53.341818], + [-6.28406, 53.348085], + [-6.277998, 53.354352], + [-6.265874, 53.354352], + [-6.259813, 53.348085] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.259813, 53.335551], + [-6.265874, 53.329284], + [-6.277998, 53.329284], + [-6.28406, 53.335551], + [-6.277998, 53.341818], + [-6.265874, 53.341818], + [-6.259813, 53.335551] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 12, + "stroke": "#00182e", + "fill": "#00182e", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.259813, 53.323016], + [-6.265874, 53.316749], + [-6.277998, 53.316749], + [-6.28406, 53.323016], + [-6.277998, 53.329284], + [-6.265874, 53.329284], + [-6.259813, 53.323016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 6, + "stroke": "#47a7ff", + "fill": "#47a7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.241628, 53.37942], + [-6.247689, 53.373153], + [-6.259813, 53.373153], + [-6.265874, 53.37942], + [-6.259813, 53.385687], + [-6.247689, 53.385687], + [-6.241628, 53.37942] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 11, + "stroke": "#00305c", + "fill": "#00305c", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.241628, 53.366886], + [-6.247689, 53.360619], + [-6.259813, 53.360619], + [-6.265874, 53.366886], + [-6.259813, 53.373153], + [-6.247689, 53.373153], + [-6.241628, 53.366886] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.241628, 53.354352], + [-6.247689, 53.348085], + [-6.259813, 53.348085], + [-6.265874, 53.354352], + [-6.259813, 53.360619], + [-6.247689, 53.360619], + [-6.241628, 53.354352] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.241628, 53.341818], + [-6.247689, 53.335551], + [-6.259813, 53.335551], + [-6.265874, 53.341818], + [-6.259813, 53.348085], + [-6.247689, 53.348085], + [-6.241628, 53.341818] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 13, + "stroke": "#000000", + "fill": "#000000", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.241628, 53.329284], + [-6.247689, 53.323016], + [-6.259813, 53.323016], + [-6.265874, 53.329284], + [-6.259813, 53.335551], + [-6.247689, 53.335551], + [-6.241628, 53.329284] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 9, + "stroke": "#0060b8", + "fill": "#0060b8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.223442, 53.373153], + [-6.229504, 53.366886], + [-6.241628, 53.366886], + [-6.247689, 53.373153], + [-6.241628, 53.37942], + [-6.229504, 53.37942], + [-6.223442, 53.373153] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.223442, 53.360619], + [-6.229504, 53.354352], + [-6.241628, 53.354352], + [-6.247689, 53.360619], + [-6.241628, 53.366886], + [-6.229504, 53.366886], + [-6.223442, 53.360619] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.223442, 53.348085], + [-6.229504, 53.341818], + [-6.241628, 53.341818], + [-6.247689, 53.348085], + [-6.241628, 53.354352], + [-6.229504, 53.354352], + [-6.223442, 53.348085] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 11, + "stroke": "#00305c", + "fill": "#00305c", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.223442, 53.335551], + [-6.229504, 53.329284], + [-6.241628, 53.329284], + [-6.247689, 53.335551], + [-6.241628, 53.341818], + [-6.229504, 53.341818], + [-6.223442, 53.335551] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 13, + "stroke": "#000000", + "fill": "#000000", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.223442, 53.323016], + [-6.229504, 53.316749], + [-6.241628, 53.316749], + [-6.247689, 53.323016], + [-6.241628, 53.329284], + [-6.229504, 53.329284], + [-6.223442, 53.323016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 8, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.205257, 53.37942], + [-6.211319, 53.373153], + [-6.223442, 53.373153], + [-6.229504, 53.37942], + [-6.223442, 53.385687], + [-6.211319, 53.385687], + [-6.205257, 53.37942] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 9, + "stroke": "#0060b8", + "fill": "#0060b8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.205257, 53.366886], + [-6.211319, 53.360619], + [-6.223442, 53.360619], + [-6.229504, 53.366886], + [-6.223442, 53.373153], + [-6.211319, 53.373153], + [-6.205257, 53.366886] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.205257, 53.354352], + [-6.211319, 53.348085], + [-6.223442, 53.348085], + [-6.229504, 53.354352], + [-6.223442, 53.360619], + [-6.211319, 53.360619], + [-6.205257, 53.354352] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.205257, 53.341818], + [-6.211319, 53.335551], + [-6.223442, 53.335551], + [-6.229504, 53.341818], + [-6.223442, 53.348085], + [-6.211319, 53.348085], + [-6.205257, 53.341818] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 11, + "stroke": "#00305c", + "fill": "#00305c", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.205257, 53.329284], + [-6.211319, 53.323016], + [-6.223442, 53.323016], + [-6.229504, 53.329284], + [-6.223442, 53.335551], + [-6.211319, 53.335551], + [-6.205257, 53.329284] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 9, + "stroke": "#0060b8", + "fill": "#0060b8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.187072, 53.373153], + [-6.193134, 53.366886], + [-6.205257, 53.366886], + [-6.211319, 53.373153], + [-6.205257, 53.37942], + [-6.193134, 53.37942], + [-6.187072, 53.373153] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 9, + "stroke": "#0060b8", + "fill": "#0060b8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.187072, 53.360619], + [-6.193134, 53.354352], + [-6.205257, 53.354352], + [-6.211319, 53.360619], + [-6.205257, 53.366886], + [-6.193134, 53.366886], + [-6.187072, 53.360619] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.187072, 53.348085], + [-6.193134, 53.341818], + [-6.205257, 53.341818], + [-6.211319, 53.348085], + [-6.205257, 53.354352], + [-6.193134, 53.354352], + [-6.187072, 53.348085] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.187072, 53.335551], + [-6.193134, 53.329284], + [-6.205257, 53.329284], + [-6.211319, 53.335551], + [-6.205257, 53.341818], + [-6.193134, 53.341818], + [-6.187072, 53.335551] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 11, + "stroke": "#00305c", + "fill": "#00305c", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.187072, 53.323016], + [-6.193134, 53.316749], + [-6.205257, 53.316749], + [-6.211319, 53.323016], + [-6.205257, 53.329284], + [-6.193134, 53.329284], + [-6.187072, 53.323016] + ] + ] + } + } + ] +} diff --git a/packages/turf-intersect/index.ts b/packages/turf-intersect/index.ts index f8f3e8050..55a2d74cd 100644 --- a/packages/turf-intersect/index.ts +++ b/packages/turf-intersect/index.ts @@ -7,13 +7,13 @@ import { } from "geojson"; import { multiPolygon, polygon } from "@turf/helpers"; import { geomEach } from "@turf/meta"; -import polygonClipping from "polygon-clipping"; +import * as polyclip from "polyclip-ts"; /** * Takes {@link Polygon|polygon} or {@link MultiPolygon|multi-polygon} geometries and * finds their polygonal intersection. If they don't intersect, returns null. * - * @name intersect + * @function * @param {FeatureCollection} features the features to intersect * @param {Object} [options={}] Optional Parameters * @param {Object} [options.properties={}] Translate GeoJSON Properties to Feature @@ -50,19 +50,16 @@ function intersect

( properties?: P; } = {} ): Feature | null { - const geoms: polygonClipping.Geom[] = []; + const geoms: polyclip.Geom[] = []; geomEach(features, (geom) => { - geoms.push(geom.coordinates as polygonClipping.Geom); + geoms.push(geom.coordinates as polyclip.Geom); }); if (geoms.length < 2) { throw new Error("Must specify at least 2 geometries"); } - const intersection = polygonClipping.intersection( - geoms[0], - ...geoms.slice(1) - ); + const intersection = polyclip.intersection(geoms[0], ...geoms.slice(1)); if (intersection.length === 0) return null; if (intersection.length === 1) return polygon(intersection[0], options.properties); diff --git a/packages/turf-intersect/package.json b/packages/turf-intersect/package.json index 94af6e516..8f4aedcd0 100644 --- a/packages/turf-intersect/package.json +++ b/packages/turf-intersect/package.json @@ -1,7 +1,7 @@ { "name": "@turf/intersect", - "version": "7.0.0", - "description": "turf intersect module", + "version": "7.2.0", + "description": "Finds the shared area between two polygons.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -52,22 +52,22 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", - "glob": "^10.3.10", + "glob": "^11.0.2", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "polygon-clipping": "^0.15.3", - "tslib": "^2.6.2" + "polyclip-ts": "^0.16.8", + "tslib": "^2.8.1" } } diff --git a/packages/turf-intersect/test.ts b/packages/turf-intersect/test.ts index e1c16e84a..a90665e4f 100644 --- a/packages/turf-intersect/test.ts +++ b/packages/turf-intersect/test.ts @@ -1,11 +1,13 @@ +import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { glob } from "glob"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; -import { featureCollection } from "@turf/helpers"; +import { featureCollection, polygon } from "@turf/helpers"; import { intersect } from "./index.js"; +import { FeatureCollection, MultiPolygon, Polygon } from "geojson"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); @@ -14,34 +16,129 @@ const directories = { out: path.join(__dirname, "test", "out") + path.sep, }; -test("turf-intersect", (t) => { - glob.sync(directories.in + "*.geojson").forEach((filepath) => { - const { name, base } = path.parse(filepath); - const [polygon1, polygon2] = loadJsonFileSync(filepath).features; +const fixtures = fs.readdirSync(directories.in).map((filename) => { + return { + filename, + name: path.parse(filename).name, + geojson: loadJsonFileSync(directories.in + filename) as FeatureCollection< + Polygon | MultiPolygon + >, + }; +}); - if (name.includes("skip")) return t.skip(name); - - // Red Polygon1 - polygon1.properties = Object.assign(polygon1.properties || {}, { - "fill-opacity": 0.5, - fill: "#F00", - }); - // Blue Polygon2 - polygon2.properties = Object.assign(polygon2.properties || {}, { - "fill-opacity": 0.5, - fill: "#00F", - }); - - const results = featureCollection([polygon1, polygon2]); - const result = intersect(results); - if (result) { - // Green Polygon - result.properties = { "fill-opacity": 1, fill: "#0F0" }; - results.features.push(result); +test("intersect", (t) => { + for (const { name, geojson, filename } of fixtures) { + if (name.includes("skip")) { + t.skip(name); + continue; } - if (process.env.REGEN) writeJsonFileSync(directories.out + base, results); - t.deepEqual(results, loadJsonFileSync(directories.out + base), name); - }); + // Only test the input fixture this way if there is a corresponding output + // fixture to compare. + if (fs.existsSync(path.join(directories.out, filename))) { + const [polygon1, polygon2] = geojson.features; + + // Red Polygon1 + polygon1.properties = Object.assign(polygon1.properties || {}, { + "fill-opacity": 0.5, + fill: "#F00", + }); + // Blue Polygon2 + polygon2.properties = Object.assign(polygon2.properties || {}, { + "fill-opacity": 0.5, + fill: "#00F", + }); + + const fc = featureCollection([polygon1, polygon2]); + const result = intersect(fc); + if (result) { + // Green Polygon + result.properties = { "fill-opacity": 1, fill: "#0F0" }; + fc.features.push(result); + } + + if (process.env.REGEN) + writeJsonFileSync(directories.out + filename, result); + t.deepEqual(fc, loadJsonFileSync(directories.out + filename), name); + } + } + + t.end(); +}); + +test("intersect - unable to complete output ring - issue 2048", (t) => { + // Test examples copied from https://github.com/Turfjs/turf/issues/2048 + let polys: FeatureCollection; + + polys = loadJsonFileSync( + directories.in + "unable-to-complete-output-ring-2048-1.geojson" + ) as FeatureCollection; + + // This used to fail with "Unable to complete output ring ..." + t.doesNotThrow(() => intersect(polys), "does not throw ex 1"); + + polys = loadJsonFileSync( + directories.in + "unable-to-complete-output-ring-2048-2.geojson" + ) as FeatureCollection; + + // This used to fail with "Unable to complete output ring ..." + t.doesNotThrow(() => intersect(polys), "does not throw ex 2"); + + t.end(); +}); + +test("intersect - infinite loop - issue 2705", (t) => { + // Test examples copied from https://github.com/Turfjs/turf/issues/2705 + let polys: FeatureCollection; + + polys = loadJsonFileSync( + directories.in + "infinite-loop-2705.geojson" + ) as FeatureCollection; + + // This used to get stuck in an infinite loop + intersect(polys); + + t.ok(true, "should not get stuck in an infinite loop"); + + t.end(); +}); + +test.skip("intersect - infinite loop - issue 2601", (t) => { + // Not actually going to commit the fixture file for this test as it's 76MB! + // Tested locally though and it produces an identical result with no + // workarounds: https://github.com/Turfjs/turf/issues/2601#issuecomment-2558307811 + + // Test examples copied from https://github.com/Turfjs/turf/issues/2601 + let polys: FeatureCollection; + + polys = loadJsonFileSync( + directories.in + "infinite-loop-2601.geojson" + ) as FeatureCollection; + + // This used to get stuck in an infinite loop + intersect(polys); + + t.ok(true, "should not get stuck in an infinite loop"); + + t.end(); +}); + +test.skip("intersect - missing islands - issue 2084", (t) => { + // Unfortunately still broken, even with upgrade to polyclip-ts. Committing + // now so we can enable when a fix is available. + + // Test example copied from https://github.com/Turfjs/turf/issues/2084 + let polys: FeatureCollection; + + polys = loadJsonFileSync( + directories.in + "missing-islands-2084.geojson" + ) as FeatureCollection; + + // "Islands" in the multipolygon aren't being included in the result. + // TODO establish geojson file of expected output. For now clearly visually + // not the same as https://github.com/Turfjs/turf/issues/2084#issuecomment-849975182 + const result = intersect(polys); + t.ok(true, "islands included in intersection result"); + t.end(); }); diff --git a/packages/turf-intersect/test/in/infinite-loop-2705.geojson b/packages/turf-intersect/test/in/infinite-loop-2705.geojson new file mode 100644 index 000000000..640533d2d --- /dev/null +++ b/packages/turf-intersect/test/in/infinite-loop-2705.geojson @@ -0,0 +1,934 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "source": "https://github.com/Turfjs/turf/issues/2705#issue-2491630158" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [126.55856392608325, 34.46272192666609], + [126.55889007353417, 34.46273185169668], + [126.55893420916493, 34.46182149433875], + [126.55860547472139, 34.46181162317049], + [126.55856392608325, 34.46272192666609], + [126.55856392608325, 34.46272192666609] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + [126.558597, 34.461803], + [126.558614, 34.46182], + [126.558657, 34.461791], + [126.55864, 34.461774], + [126.558597, 34.461803] + ] + ], + [ + [ + [126.558599, 34.461789], + [126.558602, 34.461822], + [126.558657, 34.461819], + [126.558654, 34.461786], + [126.558599, 34.461789] + ] + ], + + [ + [ + [126.558584, 34.461796], + [126.558607, 34.461816], + [126.558647, 34.461784], + [126.558624, 34.461764], + [126.558584, 34.461796] + ] + ], + [ + [ + [126.558599, 34.461811], + [126.558626, 34.461818], + [126.558642, 34.461775], + [126.558615, 34.461768], + [126.558599, 34.461811] + ] + ], + [ + [ + [126.558597, 34.461808], + [126.558621, 34.461819], + [126.55865, 34.46178], + [126.558626, 34.461769], + [126.558597, 34.461808] + ] + ], + [ + [ + [126.558595, 34.461801], + [126.558612, 34.461818], + [126.558655, 34.461789], + [126.558638, 34.461772], + [126.558595, 34.461801] + ] + ], + [ + [ + [126.558596, 34.461802], + [126.558613, 34.461819], + [126.558656, 34.46179], + [126.558639, 34.461773], + [126.558596, 34.461802] + ] + ], + [ + [ + [126.558601, 34.4618], + [126.558601, 34.461843], + [126.558656, 34.461843], + [126.558656, 34.4618], + [126.558601, 34.4618] + ] + ], + [ + [ + [126.558601, 34.461821], + [126.558599, 34.461866], + [126.558655, 34.461868], + [126.558657, 34.461823], + [126.558601, 34.461821] + ] + ], + [ + [ + [126.558601, 34.461845], + [126.558597, 34.46189], + [126.558652, 34.461893], + [126.558656, 34.461848], + [126.558601, 34.461845] + ] + ], + [ + [ + [126.558598, 34.461871], + [126.558596, 34.46192], + [126.558652, 34.461921], + [126.558654, 34.461872], + [126.558598, 34.461871] + ] + ], + [ + [ + [126.558597, 34.461899], + [126.558594, 34.461951], + [126.55865, 34.461953], + [126.558653, 34.461901], + [126.558597, 34.461899] + ] + ], + [ + [ + [126.558595, 34.46193], + [126.558592, 34.461982], + [126.558648, 34.461984], + [126.558651, 34.461932], + [126.558595, 34.46193] + ] + ], + [ + [ + [126.558593, 34.461961], + [126.55859, 34.46201], + [126.558646, 34.462013], + [126.558649, 34.461964], + [126.558593, 34.461961] + ] + ], + [ + [ + [126.558591, 34.46199], + [126.558588, 34.462037], + [126.558644, 34.46204], + [126.558647, 34.461993], + [126.558591, 34.46199] + ] + ], + [ + [ + [126.558589, 34.462017], + [126.558586, 34.462065], + [126.558642, 34.462068], + [126.558645, 34.46202], + [126.558589, 34.462017] + ] + ], + [ + [ + [126.558587, 34.462045], + [126.558584, 34.462093], + [126.55864, 34.462096], + [126.558643, 34.462048], + [126.558587, 34.462045] + ] + ], + [ + [ + [126.558585, 34.462074], + [126.558583, 34.462123], + [126.558639, 34.462124], + [126.558641, 34.462075], + [126.558585, 34.462074] + ] + ], + [ + [ + [126.558584, 34.462103], + [126.558582, 34.462156], + [126.558638, 34.462157], + [126.55864, 34.462104], + [126.558584, 34.462103] + ] + ], + [ + [ + [126.558583, 34.462135], + [126.55858, 34.462188], + [126.558636, 34.46219], + [126.558639, 34.462137], + [126.558583, 34.462135] + ] + ], + [ + [ + [126.558581, 34.462168], + [126.558579, 34.462221], + [126.558635, 34.462222], + [126.558637, 34.462169], + [126.558581, 34.462168] + ] + ], + [ + [ + [126.55858, 34.4622], + [126.558577, 34.462252], + [126.558633, 34.462254], + [126.558636, 34.462202], + [126.55858, 34.4622] + ] + ], + [ + [ + [126.558578, 34.462231], + [126.558575, 34.462283], + [126.558631, 34.462285], + [126.558634, 34.462233], + [126.558578, 34.462231] + ] + ], + [ + [ + [126.558576, 34.462262], + [126.558573, 34.462315], + [126.558629, 34.462317], + [126.558632, 34.462264], + [126.558576, 34.462262] + ] + ], + [ + [ + [126.558574, 34.462295], + [126.558572, 34.46235], + [126.558628, 34.462351], + [126.55863, 34.462296], + [126.558574, 34.462295] + ] + ], + [ + [ + [126.558573, 34.46233], + [126.558573, 34.462387], + [126.558628, 34.462387], + [126.558628, 34.46233], + [126.558573, 34.46233] + ] + ], + [ + [ + [126.558573, 34.462366], + [126.558571, 34.462418], + [126.558627, 34.462419], + [126.558629, 34.462367], + [126.558573, 34.462366] + ] + ], + [ + [ + [126.558572, 34.462398], + [126.55857, 34.462448], + [126.558626, 34.462449], + [126.558628, 34.462399], + [126.558572, 34.462398] + ] + ], + [ + [ + [126.558571, 34.462427], + [126.558568, 34.462479], + [126.558624, 34.462481], + [126.558627, 34.462429], + [126.558571, 34.462427] + ] + ], + [ + [ + [126.558569, 34.462458], + [126.558566, 34.462511], + [126.558622, 34.462513], + [126.558625, 34.46246], + [126.558569, 34.462458] + ] + ], + [ + [ + [126.558567, 34.46249], + [126.558564, 34.462542], + [126.55862, 34.462544], + [126.558623, 34.462492], + [126.558567, 34.46249] + ] + ], + [ + [ + [126.558565, 34.462521], + [126.558562, 34.462573], + [126.558618, 34.462575], + [126.558621, 34.462523], + [126.558565, 34.462521] + ] + ], + [ + [ + [126.558563, 34.462552], + [126.55856, 34.462604], + [126.558616, 34.462606], + [126.558619, 34.462554], + [126.558563, 34.462552] + ] + ], + [ + [ + [126.558561, 34.462584], + [126.558559, 34.462633], + [126.558615, 34.462634], + [126.558617, 34.462585], + [126.558561, 34.462584] + ] + ], + [ + [ + [126.55856, 34.462612], + [126.558557, 34.462659], + [126.558613, 34.462662], + [126.558616, 34.462615], + [126.55856, 34.462612] + ] + ], + [ + [ + [126.558558, 34.46264], + [126.558556, 34.462687], + [126.558612, 34.462688], + [126.558614, 34.462641], + [126.558558, 34.46264] + ] + ], + [ + [ + [126.558557, 34.462666], + [126.558555, 34.462709], + [126.558611, 34.462711], + [126.558613, 34.462668], + [126.558557, 34.462666] + ] + ], + [ + [ + [126.558557, 34.462687], + [126.558554, 34.462718], + [126.558609, 34.462722], + [126.558612, 34.462691], + [126.558557, 34.462687] + ] + ], + [ + [ + [126.558556, 34.462697], + [126.558552, 34.462724], + [126.558608, 34.462729], + [126.558612, 34.462702], + [126.558556, 34.462697] + ] + ], + [ + [ + [126.558554, 34.462706], + [126.558554, 34.462732], + [126.558609, 34.462732], + [126.558609, 34.462706], + [126.558554, 34.462706] + ] + ], + [ + [ + [126.558594, 34.462699], + [126.558568, 34.462699], + [126.558568, 34.462744], + [126.558594, 34.462744], + [126.558594, 34.462699] + ] + ], + [ + [ + [126.558608, 34.462732], + [126.558608, 34.462709], + [126.558553, 34.462709], + [126.558553, 34.462732], + [126.558608, 34.462732] + ] + ], + [ + [ + [126.558608, 34.46273], + [126.558608, 34.462708], + [126.558553, 34.462708], + [126.558553, 34.46273], + [126.558608, 34.46273] + ] + ], + [ + [ + [126.558553, 34.462708], + [126.558553, 34.462729], + [126.558608, 34.462729], + [126.558608, 34.462708], + [126.558553, 34.462708] + ] + ], + [ + [ + [126.558553, 34.462708], + [126.558553, 34.462729], + [126.558608, 34.462729], + [126.558608, 34.462708], + [126.558553, 34.462708] + ] + ], + [ + [ + [126.558608, 34.462729], + [126.558608, 34.462707], + [126.558553, 34.462707], + [126.558553, 34.462729], + [126.558608, 34.462729] + ] + ], + [ + [ + [126.558553, 34.462707], + [126.558553, 34.462728], + [126.558608, 34.462728], + [126.558608, 34.462707], + [126.558553, 34.462707] + ] + ], + [ + [ + [126.558553, 34.462707], + [126.558553, 34.462728], + [126.558608, 34.462728], + [126.558608, 34.462707], + [126.558553, 34.462707] + ] + ], + [ + [ + [126.558568, 34.46274], + [126.558594, 34.46274], + [126.558594, 34.462695], + [126.558568, 34.462695], + [126.558568, 34.46274] + ] + ], + [ + [ + [126.558554, 34.462707], + [126.558554, 34.462728], + [126.558609, 34.462728], + [126.558609, 34.462707], + [126.558554, 34.462707] + ] + ], + [ + [ + [126.558554, 34.462707], + [126.558554, 34.462728], + [126.558609, 34.462728], + [126.558609, 34.462707], + [126.558554, 34.462707] + ] + ], + [ + [ + [126.558554, 34.462707], + [126.558554, 34.462728], + [126.558609, 34.462728], + [126.558609, 34.462707], + [126.558554, 34.462707] + ] + ], + [ + [ + [126.558594, 34.462695], + [126.558568, 34.462695], + [126.558568, 34.46274], + [126.558594, 34.46274], + [126.558594, 34.462695] + ] + ], + [ + [ + [126.558553, 34.462707], + [126.558553, 34.462729], + [126.558608, 34.462729], + [126.558608, 34.462707], + [126.558553, 34.462707] + ] + ], + [ + [ + [126.558553, 34.462708], + [126.558553, 34.462729], + [126.558608, 34.462729], + [126.558608, 34.462708], + [126.558553, 34.462708] + ] + ], + [ + [ + [126.558593, 34.462696], + [126.558567, 34.462696], + [126.558567, 34.462741], + [126.558593, 34.462741], + [126.558593, 34.462696] + ] + ], + [ + [ + [126.558567, 34.462741], + [126.558596, 34.462741], + [126.558596, 34.462696], + [126.558567, 34.462696], + [126.558567, 34.462741] + ] + ], + [ + [ + [126.558573, 34.462742], + [126.558613, 34.46274], + [126.558609, 34.462694], + [126.558569, 34.462696], + [126.558573, 34.462742] + ] + ], + [ + [ + [126.558586, 34.46274], + [126.558628, 34.46274], + [126.558628, 34.462695], + [126.558586, 34.462695], + [126.558586, 34.46274] + ] + ], + [ + [ + [126.558634, 34.462738], + [126.558652, 34.462711], + [126.558603, 34.462688], + [126.558585, 34.462715], + [126.558634, 34.462738] + ] + ], + [ + [ + [126.558651, 34.462716], + [126.558645, 34.462675], + [126.558589, 34.46268], + [126.558595, 34.462721], + [126.558651, 34.462716] + ] + ], + [ + [ + [126.558646, 34.462698], + [126.558648, 34.462645], + [126.558592, 34.462644], + [126.55859, 34.462697], + [126.558646, 34.462698] + ] + ], + [ + [ + [126.558647, 34.462666], + [126.55865, 34.462611], + [126.558594, 34.462609], + [126.558591, 34.462664], + [126.558647, 34.462666] + ] + ], + [ + [ + [126.558649, 34.462632], + [126.558652, 34.462579], + [126.558596, 34.462577], + [126.558593, 34.46263], + [126.558649, 34.462632] + ] + ], + [ + [ + [126.558651, 34.462599], + [126.558653, 34.462549], + [126.558597, 34.462548], + [126.558595, 34.462598], + [126.558651, 34.462599] + ] + ], + [ + [ + [126.558652, 34.46257], + [126.558655, 34.462517], + [126.558599, 34.462515], + [126.558596, 34.462568], + [126.558652, 34.46257] + ] + ], + [ + [ + [126.558654, 34.462538], + [126.558657, 34.462485], + [126.558601, 34.462483], + [126.558598, 34.462536], + [126.558654, 34.462538] + ] + ], + [ + [ + [126.558656, 34.462505], + [126.558658, 34.462453], + [126.558602, 34.462452], + [126.5586, 34.462504], + [126.558656, 34.462505] + ] + ], + [ + [ + [126.558657, 34.462474], + [126.55866, 34.46242], + [126.558604, 34.462418], + [126.558601, 34.462472], + [126.558657, 34.462474] + ] + ], + [ + [ + [126.558659, 34.462441], + [126.558662, 34.462388], + [126.558606, 34.462386], + [126.558603, 34.462439], + [126.558659, 34.462441] + ] + ], + [ + [ + [126.558661, 34.462408], + [126.558663, 34.462355], + [126.558607, 34.462354], + [126.558605, 34.462407], + [126.558661, 34.462408] + ] + ], + [ + [ + [126.558662, 34.462376], + [126.558665, 34.462323], + [126.558609, 34.462321], + [126.558606, 34.462374], + [126.558662, 34.462376] + ] + ], + [ + [ + [126.558664, 34.462343], + [126.558666, 34.462291], + [126.55861, 34.46229], + [126.558608, 34.462342], + [126.558664, 34.462343] + ] + ], + [ + [ + [126.558665, 34.462312], + [126.558668, 34.462259], + [126.558612, 34.462257], + [126.558609, 34.46231], + [126.558665, 34.462312] + ] + ], + [ + [ + [126.558667, 34.462279], + [126.558669, 34.462226], + [126.558613, 34.462225], + [126.558611, 34.462278], + [126.558667, 34.462279] + ] + ], + [ + [ + [126.558668, 34.462247], + [126.558671, 34.462193], + [126.558615, 34.462191], + [126.558612, 34.462245], + [126.558668, 34.462247] + ] + ], + [ + [ + [126.55867, 34.462213], + [126.558672, 34.462161], + [126.558616, 34.46216], + [126.558614, 34.462212], + [126.55867, 34.462213] + ] + ], + [ + [ + [126.558671, 34.462182], + [126.558674, 34.462129], + [126.558618, 34.462127], + [126.558615, 34.46218], + [126.558671, 34.462182] + ] + ], + [ + [ + [126.558673, 34.46215], + [126.558676, 34.462096], + [126.55862, 34.462094], + [126.558617, 34.462148], + [126.558673, 34.46215] + ] + ], + [ + [ + [126.558675, 34.462116], + [126.558677, 34.462064], + [126.558621, 34.462063], + [126.558619, 34.462115], + [126.558675, 34.462116] + ] + ], + [ + [ + [126.558676, 34.462085], + [126.558679, 34.462032], + [126.558623, 34.46203], + [126.55862, 34.462083], + [126.558676, 34.462085] + ] + ], + [ + [ + [126.558678, 34.462052], + [126.55868, 34.462], + [126.558624, 34.461999], + [126.558622, 34.462051], + [126.558678, 34.462052] + ] + ], + [ + [ + [126.558679, 34.46202], + [126.558681, 34.461967], + [126.558625, 34.461966], + [126.558623, 34.462019], + [126.558679, 34.46202] + ] + ], + [ + [ + [126.55868, 34.461988], + [126.558683, 34.461935], + [126.558627, 34.461933], + [126.558624, 34.461986], + [126.55868, 34.461988] + ] + ], + [ + [ + [126.558682, 34.461955], + [126.558684, 34.461902], + [126.558628, 34.461901], + [126.558626, 34.461954], + [126.558682, 34.461955] + ] + ], + [ + [ + [126.558683, 34.461923], + [126.558686, 34.46187], + [126.55863, 34.461868], + [126.558627, 34.461921], + [126.558683, 34.461923] + ] + ], + [ + [ + [126.558685, 34.461891], + [126.558688, 34.461837], + [126.558632, 34.461835], + [126.558629, 34.461889], + [126.558685, 34.461891] + ] + ], + [ + [ + [126.558687, 34.461857], + [126.558689, 34.461808], + [126.558633, 34.461807], + [126.558631, 34.461856], + [126.558687, 34.461857] + ] + ], + [ + [ + [126.558688, 34.461829], + [126.55869, 34.461792], + [126.558634, 34.46179], + [126.558632, 34.461827], + [126.558688, 34.461829] + ] + ], + [ + [ + [126.558667, 34.461826], + [126.558695, 34.461811], + [126.558663, 34.461773], + [126.558635, 34.461788], + [126.558667, 34.461826] + ] + ], + [ + [ + [126.558653, 34.461819], + [126.558698, 34.461824], + [126.558704, 34.461778], + [126.558659, 34.461773], + [126.558653, 34.461819] + ] + ], + [ + [ + [126.558666, 34.461816], + [126.558703, 34.46183], + [126.558725, 34.461788], + [126.558688, 34.461774], + [126.558666, 34.461816] + ] + ], + [ + [ + [126.558677, 34.461791], + [126.55867, 34.461826], + [126.558725, 34.461833], + [126.558732, 34.461798], + [126.558677, 34.461791] + ] + ], + [ + [ + [126.558673, 34.461807], + [126.558668, 34.461854], + [126.558723, 34.461858], + [126.558728, 34.461811], + [126.558673, 34.461807] + ] + ], + [ + [ + [126.558669, 34.461834], + [126.558666, 34.461889], + [126.558722, 34.461891], + [126.558725, 34.461836], + [126.558669, 34.461834] + ] + ], + [ + [ + [126.558667, 34.461869], + [126.558665, 34.461922], + [126.558721, 34.461923], + [126.558723, 34.46187], + [126.558667, 34.461869] + ] + ], + [ + [ + [126.558666, 34.461902], + [126.558666, 34.461954], + [126.558721, 34.461954], + [126.558721, 34.461902], + [126.558666, 34.461902] + ] + ], + [ + [ + [126.558666, 34.461932], + [126.558663, 34.461984], + [126.558719, 34.461986], + [126.558722, 34.461934], + [126.558666, 34.461932] + ] + ], + [ + [ + [126.558664, 34.461963], + [126.558661, 34.462016], + [126.558717, 34.462018], + [126.55872, 34.461965], + [126.558664, 34.461963] + ] + ], + [ + [ + [126.558662, 34.461996], + [126.55866, 34.462048], + [126.558716, 34.462049], + [126.558718, 34.461997], + [126.558662, 34.461996] + ] + ] + ] + } + } + ] +} diff --git a/packages/turf-intersect/test/in/missing-islands-2084.geojson b/packages/turf-intersect/test/in/missing-islands-2084.geojson new file mode 100644 index 000000000..3b1b8d2e8 --- /dev/null +++ b/packages/turf-intersect/test/in/missing-islands-2084.geojson @@ -0,0 +1,4872 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "source": "https://github.com/Turfjs/turf/issues/2084#issue-902802697" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-113.34221616566167, 42.72749839683379], + [-113.34422051782082, 42.73763022099034], + [-113.34602091263709, 42.74776204514689], + [-113.34757744700497, 42.757893869303444], + [-113.3488503613965, 42.76802569346], + [-113.34980157164547, 42.77815751761655], + [-113.35039554793526, 42.7882893417731], + [-113.35059966094683, 42.79842116592965], + [-113.35038417274245, 42.808552990086206], + [-113.34972205522699, 42.81868481424276], + [-113.34858878297648, 42.82881663839931], + [-113.34696218983753, 42.83894846255586], + [-113.34482242003024, 42.849080286712415], + [-113.34215195882072, 42.85921211086897], + [-113.34044031184473, 42.86465881869336], + [-113.33898416124809, 42.86934393502552], + [-113.33531965368003, 42.87947575918207], + [-113.33108617159658, 42.88960758333862], + [-113.32673518382107, 42.898789248162814], + [-113.3262829516782, 42.899739407495176], + [-113.32098672364542, 42.90987123165173], + [-113.3150884351566, 42.92000305580828], + [-113.31303005579741, 42.92327111364501], + [-113.30863574143333, 42.93013487996483], + [-113.30158921186182, 42.940266704121385], + [-113.29932492777375, 42.94331966864196], + [-113.2939470361242, 42.95039852827794], + [-113.28568446305374, 42.96053035243449], + [-113.2856197997501, 42.96060615112174], + [-113.27678134164277, 42.97066217659104], + [-113.27191467172644, 42.975901947203184], + [-113.26721213122191, 42.98079400074759], + [-113.25820954370278, 42.98973136711528], + [-113.25695955601647, 42.990925824904146], + [-113.2459708068134, 43.0010576490607], + [-113.24450441567912, 43.00236543461658], + [-113.23420136880357, 43.01118947321725], + [-113.23079928765546, 43.01401499667304], + [-113.22161634733155, 43.0213212973738], + [-113.2170941596318, 43.024827831713246], + [-113.20815748364195, 43.031453121530355], + [-113.20338903160814, 43.03491311968221], + [-113.19375623656546, 43.04158494568691], + [-113.18968390358448, 43.04435566353103], + [-113.1783342782194, 43.05171676984346], + [-113.17597877556082, 43.053222183583124], + [-113.16227364753716, 43.061567567742706], + [-113.16178958326367, 43.06184859400001], + [-113.1485685195135, 43.06944604592946], + [-113.14392413254552, 43.07198041815656], + [-113.13486339148984, 43.076884407340415], + [-113.12468416975315, 43.082112242313116], + [-113.12115826346619, 43.08391142248678], + [-113.10745313544253, 43.09056277462457], + [-113.10380603742766, 43.09224406646967], + [-113.09374800741887, 43.09686281149846], + [-113.08105914975012, 43.10237589062622], + [-113.08004287939521, 43.10281622348303], + [-113.06633775137155, 43.10846572553491], + [-113.05595768410025, 43.11250771478277], + [-113.05263262334789, 43.113801082737744], + [-113.03892749532423, 43.118855422709984], + [-113.02804848052969, 43.122639538939325], + [-113.02522236730057, 43.12362274332118], + [-113.01151723927691, 43.12813254323416], + [-112.99781211125325, 43.13237082919632], + [-112.99643810996427, 43.13277136309588], + [-112.9841069832296, 43.13637133029275], + [-112.97040185520594, 43.14011929880119], + [-112.95951272776081, 43.14290318725243], + [-112.95669672718228, 43.143624800019055], + [-112.94299159915862, 43.14690580593801], + [-112.92928647113496, 43.14994912088687], + [-112.9155813431113, 43.15275933061889], + [-112.91412135627137, 43.15303501140898], + [-112.90187621508764, 43.155355936337436], + [-112.88817108706398, 43.15772600974665], + [-112.87446595904032, 43.159869752055975], + [-112.86076083101666, 43.16178851984129], + [-112.84961701899758, 43.163166835565534], + [-112.847055702993, 43.16348555383334], + [-112.83335057496934, 43.16496812718983], + [-112.81964544694569, 43.16622502310549], + [-112.80594031892203, 43.16725534374592], + [-112.79223519089837, 43.16805768197573], + [-112.77853006287471, 43.16863013432147], + [-112.76482493485105, 43.168970295209846], + [-112.75111980682739, 43.16907523431523], + [-112.73741467880373, 43.16894146058576], + [-112.72370955078007, 43.168564877890496], + [-112.71000442275641, 43.16794073807304], + [-112.69629929473275, 43.16706359742245], + [-112.6825941667091, 43.16592728218677], + [-112.66888903868544, 43.16452486784609], + [-112.6577671349259, 43.163166835565534], + [-112.65518391066178, 43.16285208349927], + [-112.64147878263812, 43.1609141978228], + [-112.62777365461446, 43.15868678748944], + [-112.6140685265908, 43.156159354568175], + [-112.60036339856714, 43.15332070171928], + [-112.59910834242524, 43.15303501140898], + [-112.58665827054348, 43.15018402604024], + [-112.57295314251982, 43.1467132676845], + [-112.55928779379896, 43.14290318725243], + [-112.55924801449616, 43.14289197878029], + [-112.5455428864725, 43.1387315884445], + [-112.53183775844884, 43.13418665328615], + [-112.53183775844884, 43.14290318725243], + [-112.53183775844884, 43.15303501140898], + [-112.53183775844884, 43.163166835565534], + [-112.53183775844884, 43.173298659722086], + [-112.53183775844884, 43.18343048387864], + [-112.53183775844884, 43.19356230803519], + [-112.53183775844884, 43.20369413219174], + [-112.53183775844884, 43.213825956348295], + [-112.53183775844884, 43.22395778050485], + [-112.53183775844884, 43.2340896046614], + [-112.53183775844884, 43.24422142881795], + [-112.53183775844884, 43.254353252974504], + [-112.53183775844884, 43.264485077131056], + [-112.53183775844884, 43.27461690128761], + [-112.53183775844884, 43.28474872544416], + [-112.53183775844884, 43.29488054960071], + [-112.53183775844884, 43.305012373757265], + [-112.53183775844884, 43.31514419791382], + [-112.53183775844884, 43.32527602207037], + [-112.53183775844884, 43.33540784622692], + [-112.53183775844884, 43.345539670383474], + [-112.53183775844884, 43.355671494540026], + [-112.53183775844884, 43.36580331869658], + [-112.53183775844884, 43.37593514285313], + [-112.53183775844884, 43.38606696700968], + [-112.53183775844884, 43.396198791166235], + [-112.53183775844884, 43.40633061532279], + [-112.53183775844884, 43.41646243947934], + [-112.53183775844884, 43.42659426363589], + [-112.53183775844884, 43.436726087792444], + [-112.53183775844884, 43.446857911948996], + [-112.53183775844884, 43.45698973610555], + [-112.53183775844884, 43.4671215602621], + [-112.53183775844884, 43.47725338441865], + [-112.53183775844884, 43.487385208575205], + [-112.53183775844884, 43.49751703273176], + [-112.53183775844884, 43.50764885688831], + [-112.53183775844884, 43.51778068104486], + [-112.53183775844884, 43.527912505201414], + [-112.53183775844884, 43.538044329357966], + [-112.53183775844884, 43.54817615351452], + [-112.53183775844884, 43.55830797767107], + [-112.53183775844884, 43.56843980182762], + [-112.53183775844884, 43.578571625984175], + [-112.53183775844884, 43.58870345014073], + [-112.53183775844884, 43.59883527429728], + [-112.53183775844884, 43.60896709845383], + [-112.53183775844884, 43.619098922610384], + [-112.53183775844884, 43.629230746766936], + [-112.53183775844884, 43.63936257092349], + [-112.53183775844884, 43.64949439508004], + [-112.53183775844884, 43.65962621923659], + [-112.53183775844884, 43.669758043393145], + [-112.53183775844884, 43.6798898675497], + [-112.53183775844884, 43.69002169170625], + [-112.53183775844884, 43.7001535158628], + [-112.53183775844884, 43.710285340019354], + [-112.53183775844884, 43.720417164175906], + [-112.53183775844884, 43.73054898833246], + [-112.53183775844884, 43.74068081248901], + [-112.53183775844884, 43.75081263664556], + [-112.53183775844884, 43.760944460802115], + [-112.53183775844884, 43.77107628495867], + [-112.53183775844884, 43.78120810911522], + [-112.53183775844884, 43.79133993327177], + [-112.53183775844884, 43.801471757428324], + [-112.53183775844884, 43.811603581584876], + [-112.53183775844884, 43.82173540574143], + [-112.53183775844884, 43.83186722989798], + [-112.53183775844884, 43.84199905405453], + [-112.53183775844884, 43.852130878211085], + [-112.53183775844884, 43.86226270236764], + [-112.53183775844884, 43.87239452652419], + [-112.53183775844884, 43.88252635068074], + [-112.53183775844884, 43.892658174837294], + [-112.53183775844884, 43.902789998993846], + [-112.53183775844884, 43.9129218231504], + [-112.53183775844884, 43.92305364730695], + [-112.53183775844884, 43.9331854714635], + [-112.53183775844884, 43.943317295620055], + [-112.53183775844884, 43.95344911977661], + [-112.53183775844884, 43.96358094393316], + [-112.53183775844884, 43.97371276808971], + [-112.53183775844884, 43.983844592246264], + [-112.53183775844884, 43.993976416402816], + [-112.53183775844884, 44.00410824055937], + [-112.53183775844884, 44.01424006471592], + [-112.53183775844884, 44.02437188887247], + [-112.53183775844884, 44.034503713029025], + [-112.53183775844884, 44.04463553718558], + [-112.53183775844884, 44.05476736134213], + [-112.53183775844884, 44.06489918549868], + [-112.53183775844884, 44.075031009655234], + [-112.53183775844884, 44.085162833811786], + [-112.53183775844884, 44.09529465796834], + [-112.53183775844884, 44.10542648212489], + [-112.53183775844884, 44.11555830628144], + [-112.53183775844884, 44.125690130437995], + [-112.53183775844884, 44.13582195459455], + [-112.53183775844884, 44.1459537787511], + [-112.53183775844884, 44.15608560290765], + [-112.53183775844884, 44.166217427064204], + [-112.53183775844884, 44.176349251220756], + [-112.53183775844884, 44.18648107537731], + [-112.53183775844884, 44.19661289953386], + [-112.53183775844884, 44.20674472369041], + [-112.53183775844884, 44.216876547846965], + [-112.53183775844884, 44.22700837200352], + [-112.53183775844884, 44.23714019616007], + [-112.53183775844884, 44.24727202031662], + [-112.53183775844884, 44.257403844473174], + [-112.53183775844884, 44.267535668629726], + [-112.53183775844884, 44.27766749278628], + [-112.53183775844884, 44.28779931694283], + [-112.53183775844884, 44.29793114109938], + [-112.53183775844884, 44.308062965255935], + [-112.53183775844884, 44.31819478941249], + [-112.53183775844884, 44.32832661356904], + [-112.53183775844884, 44.33845843772559], + [-112.53183775844884, 44.348590261882144], + [-112.53183775844884, 44.358722086038696], + [-112.53183775844884, 44.36885391019525], + [-112.53183775844884, 44.3789857343518], + [-112.53183775844884, 44.38911755850835], + [-112.53183775844884, 44.399249382664905], + [-112.53183775844884, 44.40938120682146], + [-112.53183775844884, 44.41951303097801], + [-112.53183775844884, 44.42964485513456], + [-112.53183775844884, 44.439776679291114], + [-112.53183775844884, 44.449908503447666], + [-112.53183775844884, 44.46004032760422], + [-112.53183775844884, 44.47017215176077], + [-112.53183775844884, 44.48030397591732], + [-112.53183775844884, 44.490435800073875], + [-112.53183775844884, 44.50056762423043], + [-112.53183775844884, 44.51069944838698], + [-112.53183775844884, 44.52083127254353], + [-112.53183775844884, 44.530963096700084], + [-112.53183775844884, 44.54109492085664], + [-112.53183775844884, 44.55122674501319], + [-112.53183775844884, 44.56135856916974], + [-112.53183775844884, 44.57149039332629], + [-112.53183775844884, 44.581622217482845], + [-112.53183775844884, 44.5917540416394], + [-112.53183775844884, 44.60188586579595], + [-112.53183775844884, 44.6120176899525], + [-112.53183775844884, 44.622149514109054], + [-112.53183775844884, 44.63228133826561], + [-112.53183775844884, 44.64241316242216], + [-112.53183775844884, 44.65254498657871], + [-112.53183775844884, 44.66267681073526], + [-112.53183775844884, 44.672808634891815], + [-112.53183775844884, 44.68294045904837], + [-112.53183775844884, 44.69307228320492], + [-112.53183775844884, 44.70320410736147], + [-112.53183775844884, 44.713335931518024], + [-112.53183775844884, 44.72346775567458], + [-112.53183775844884, 44.73359957983113], + [-112.53183775844884, 44.74373140398768], + [-112.53183775844884, 44.75386322814423], + [-112.53183775844884, 44.763995052300785], + [-112.53183775844884, 44.77412687645734], + [-112.53183775844884, 44.78425870061389], + [-112.53183775844884, 44.79439052477044], + [-112.53183775844884, 44.804522348926994], + [-112.53183775844884, 44.81465417308355], + [-112.53183775844884, 44.8247859972401], + [-112.53183775844884, 44.83491782139665], + [-112.53183775844884, 44.8450496455532], + [-112.53183775844884, 44.855181469709756], + [-112.53183775844884, 44.86531329386631], + [-112.53183775844884, 44.87544511802286], + [-112.53183775844884, 44.88557694217941], + [-112.53183775844884, 44.895708766335964], + [-112.53183775844884, 44.90584059049252], + [-112.53183775844884, 44.91597241464907], + [-112.53183775844884, 44.92610423880562], + [-112.53183775844884, 44.93623606296217], + [-112.53183775844884, 44.946367887118726], + [-112.53183775844884, 44.95649971127528], + [-112.53183775844884, 44.96663153543183], + [-112.53183775844884, 44.97676335958838], + [-112.53183775844884, 44.986895183744934], + [-112.53183775844884, 44.99702700790149], + [-112.53183775844884, 45.00715883205804], + [-112.53183775844884, 45.01729065621459], + [-112.53183775844884, 45.02742248037114], + [-112.53183775844884, 45.037554304527696], + [-112.53183775844884, 45.04768612868425], + [-112.53183775844884, 45.0578179528408], + [-112.53183775844884, 45.06794977699735], + [-112.53183775844884, 45.078081601153905], + [-112.53183775844884, 45.08821342531046], + [-112.53183775844884, 45.09834524946701], + [-112.53183775844884, 45.10847707362356], + [-112.53183775844884, 45.11860889778011], + [-112.53183775844884, 45.128740721936666], + [-112.53183775844884, 45.13887254609322], + [-112.53183775844884, 45.14900437024977], + [-112.53183775844884, 45.15913619440632], + [-112.53183775844884, 45.169268018562875], + [-112.53183775844884, 45.17939984271943], + [-112.53183775844884, 45.18953166687598], + [-112.53183775844884, 45.19966349103253], + [-112.53183775844884, 45.20979531518908], + [-112.53183775844884, 45.219927139345636], + [-112.53183775844884, 45.23005896350219], + [-112.53183775844884, 45.24019078765874], + [-112.53183775844884, 45.25032261181529], + [-112.53183775844884, 45.260454435971845], + [-112.53183775844884, 45.2705862601284], + [-112.53183775844884, 45.28071808428495], + [-112.53183775844884, 45.2908499084415], + [-112.53183775844884, 45.30098173259805], + [-112.53183775844884, 45.311113556754606], + [-112.53183775844884, 45.32124538091116], + [-112.53183775844884, 45.33137720506771], + [-112.53183775844884, 45.34150902922426], + [-112.53183775844884, 45.351640853380815], + [-112.53183775844884, 45.36177267753737], + [-112.53183775844884, 45.37190450169392], + [-112.53183775844884, 45.38203632585047], + [-112.53183775844884, 45.39216815000702], + [-112.53183775844884, 45.402299974163576], + [-112.53183775844884, 45.41243179832013], + [-112.53183775844884, 45.42256362247668], + [-112.53183775844884, 45.43269544663323], + [-112.53183775844884, 45.442827270789785], + [-112.53183775844884, 45.45295909494634], + [-112.53183775844884, 45.46309091910289], + [-112.53183775844884, 45.47322274325944], + [-112.53183775844884, 45.483354567415994], + [-112.53183775844884, 45.493486391572546], + [-112.53183775844884, 45.5036182157291], + [-112.53183775844884, 45.51375003988565], + [-112.53183775844884, 45.5238818640422], + [-112.53183775844884, 45.534013688198755], + [-112.53183775844884, 45.54414551235531], + [-112.53183775844884, 45.55427733651186], + [-112.53183775844884, 45.56440916066841], + [-112.53183775844884, 45.574540984824964], + [-112.53183775844884, 45.584672808981516], + [-112.53183775844884, 45.59480463313807], + [-112.53183775844884, 45.60493645729462], + [-112.53183775844884, 45.61506828145117], + [-112.53183775844884, 45.625200105607725], + [-112.53183775844884, 45.63533192976428], + [-112.53183775844884, 45.64546375392083], + [-112.53183775844884, 45.65559557807738], + [-112.53183775844884, 45.665727402233934], + [-112.53183775844884, 45.675859226390486], + [-112.53183775844884, 45.68599105054704], + [-112.53183775844884, 45.69612287470359], + [-112.53183775844884, 45.70625469886014], + [-112.53183775844884, 45.716386523016695], + [-112.53183775844884, 45.72651834717325], + [-112.53183775844884, 45.7366501713298], + [-112.53183775844884, 45.74678199548635], + [-112.53183775844884, 45.756913819642904], + [-112.53183775844884, 45.767045643799456], + [-112.53183775844884, 45.77717746795601], + [-112.53183775844884, 45.78730929211256], + [-112.53183775844884, 45.79744111626911], + [-112.53183775844884, 45.807572940425665], + [-112.53183775844884, 45.81770476458222], + [-112.53183775844884, 45.82783658873877], + [-112.53183775844884, 45.83796841289532], + [-112.53183775844884, 45.848100237051874], + [-112.53183775844884, 45.858232061208426], + [-112.53183775844884, 45.86836388536498], + [-112.53183775844884, 45.87849570952153], + [-112.53183775844884, 45.88862753367808], + [-112.53183775844884, 45.898759357834635], + [-112.53183775844884, 45.90889118199119], + [-112.53183775844884, 45.91902300614774], + [-112.53183775844884, 45.92915483030429], + [-112.53183775844884, 45.939286654460844], + [-112.53183775844884, 45.949418478617396], + [-112.53183775844884, 45.95955030277395], + [-112.53183775844884, 45.9696821269305], + [-112.53183775844884, 45.97981395108705], + [-112.53183775844884, 45.989945775243605], + [-112.53183775844884, 46.00007759940016], + [-112.53183775844884, 46.01020942355671], + [-112.53183775844884, 46.02034124771326], + [-112.53183775844884, 46.030473071869814], + [-112.53183775844884, 46.040604896026366], + [-112.53183775844884, 46.05073672018292], + [-112.53183775844884, 46.06086854433947], + [-112.53183775844884, 46.07100036849602], + [-112.53183775844884, 46.081132192652575], + [-112.53183775844884, 46.09126401680913], + [-112.53183775844884, 46.10139584096568], + [-112.53183775844884, 46.11152766512223], + [-112.53183775844884, 46.121659489278784], + [-112.53183775844884, 46.131791313435336], + [-112.53183775844884, 46.14192313759189], + [-112.53183775844884, 46.15205496174844], + [-112.53183775844884, 46.16218678590499], + [-112.53183775844884, 46.172318610061545], + [-112.53183775844884, 46.1824504342181], + [-112.53183775844884, 46.19258225837465], + [-112.53183775844884, 46.2027140825312], + [-112.53183775844884, 46.212845906687754], + [-112.53183775844884, 46.222977730844306], + [-112.53183775844884, 46.23310955500086], + [-112.53183775844884, 46.24324137915741], + [-112.53183775844884, 46.25337320331396], + [-112.53183775844884, 46.263505027470515], + [-112.53183775844884, 46.27363685162707], + [-112.53183775844884, 46.28376867578362], + [-112.53183775844884, 46.29390049994017], + [-112.53183775844884, 46.304032324096724], + [-112.53183775844884, 46.314164148253276], + [-112.53183775844884, 46.32429597240983], + [-112.53183775844884, 46.33442779656638], + [-112.53183775844884, 46.34455962072293], + [-112.53183775844884, 46.354691444879485], + [-112.53183775844884, 46.36482326903604], + [-112.53183775844884, 46.37495509319259], + [-112.53183775844884, 46.38508691734914], + [-112.53183775844884, 46.395218741505694], + [-112.53183775844884, 46.405350565662246], + [-112.53183775844884, 46.4154823898188], + [-112.53183775844884, 46.42561421397535], + [-112.53183775844884, 46.4357460381319], + [-112.53183775844884, 46.445877862288455], + [-112.53183775844884, 46.45600968644501], + [-112.53183775844884, 46.46614151060156], + [-112.53183775844884, 46.47627333475811], + [-112.53183775844884, 46.486405158914664], + [-112.53183775844884, 46.496536983071216], + [-112.53183775844884, 46.50666880722777], + [-112.53183775844884, 46.51680063138432], + [-112.53183775844884, 46.52693245554087], + [-112.53183775844884, 46.537064279697425], + [-112.53183775844884, 46.54719610385398], + [-112.53183775844884, 46.55732792801053], + [-112.53183775844884, 46.56745975216708], + [-112.53183775844884, 46.577591576323634], + [-112.53183775844884, 46.587723400480186], + [-112.53183775844884, 46.59785522463674], + [-112.53183775844884, 46.60798704879329], + [-112.53183775844884, 46.61811887294984], + [-112.53183775844884, 46.628250697106395], + [-112.53183775844884, 46.63838252126295], + [-112.53183775844884, 46.6485143454195], + [-112.53183775844884, 46.65864616957605], + [-112.53183775844884, 46.668777993732604], + [-112.53183775844884, 46.678909817889156], + [-112.53183775844884, 46.68904164204571], + [-112.53183775844884, 46.69917346620226], + [-112.53183775844884, 46.70930529035881], + [-112.53183775844884, 46.719437114515365], + [-112.53183775844884, 46.72956893867192], + [-112.53183775844884, 46.73970076282847], + [-112.53183775844884, 46.74983258698502], + [-112.53183775844884, 46.759964411141574], + [-112.53183775844884, 46.770096235298126], + [-112.53183775844884, 46.78022805945468], + [-112.53183775844884, 46.79035988361123], + [-112.53183775844884, 46.80049170776778], + [-112.53183775844884, 46.810623531924335], + [-112.53183775844884, 46.82075535608089], + [-112.53183775844884, 46.83088718023744], + [-112.53183775844884, 46.84101900439399], + [-112.53183775844884, 46.851150828550544], + [-112.53183775844884, 46.8612826527071], + [-112.53183775844884, 46.87141447686365], + [-112.53183775844884, 46.8815463010202], + [-112.53183775844884, 46.89167812517675], + [-112.53183775844884, 46.901809949333305], + [-112.53183775844884, 46.91194177348986], + [-112.53183775844884, 46.92207359764641], + [-112.53183775844884, 46.93220542180296], + [-112.53183775844884, 46.942337245959514], + [-112.53183775844884, 46.95246907011607], + [-112.53183775844884, 46.96260089427262], + [-112.53183775844884, 46.97273271842917], + [-112.53183775844884, 46.98286454258572], + [-112.53183775844884, 46.992996366742275], + [-112.53183775844884, 47.00312819089883], + [-112.53183775844884, 47.01326001505538], + [-112.53183775844884, 47.02339183921193], + [-112.53183775844884, 47.033523663368484], + [-112.53183775844884, 47.04365548752504], + [-112.53183775844884, 47.05378731168159], + [-112.53183775844884, 47.06391913583814], + [-112.53183775844884, 47.07405095999469], + [-112.53183775844884, 47.084182784151245], + [-112.53183775844884, 47.0943146083078], + [-112.53183775844884, 47.10444643246435], + [-112.53183775844884, 47.1145782566209], + [-112.53183775844884, 47.124710080777454], + [-112.53183775844884, 47.13484190493401], + [-112.53183775844884, 47.14497372909056], + [-112.53183775844884, 47.15510555324711], + [-112.53183775844884, 47.16523737740366], + [-112.53183775844884, 47.175369201560216], + [-112.53183775844884, 47.18550102571677], + [-112.53183775844884, 47.19563284987332], + [-112.53183775844884, 47.20576467402987], + [-112.53183775844884, 47.215896498186424], + [-112.53183775844884, 47.22602832234298], + [-112.53183775844884, 47.23616014649953], + [-112.53183775844884, 47.24629197065608], + [-112.53183775844884, 47.25642379481263], + [-112.53183775844884, 47.266555618969186], + [-112.53183775844884, 47.27668744312574], + [-112.53183775844884, 47.28681926728229], + [-112.53183775844884, 47.29695109143884], + [-112.53183775844884, 47.307082915595394], + [-112.5455428864725, 47.307082915595394], + [-112.55924801449616, 47.307082915595394], + [-112.57295314251982, 47.307082915595394], + [-112.58665827054348, 47.307082915595394], + [-112.60036339856714, 47.307082915595394], + [-112.6140685265908, 47.307082915595394], + [-112.62777365461446, 47.307082915595394], + [-112.64147878263812, 47.307082915595394], + [-112.65518391066178, 47.307082915595394], + [-112.66888903868544, 47.307082915595394], + [-112.6825941667091, 47.307082915595394], + [-112.69629929473275, 47.307082915595394], + [-112.71000442275641, 47.307082915595394], + [-112.72370955078007, 47.307082915595394], + [-112.73741467880373, 47.307082915595394], + [-112.75111980682739, 47.307082915595394], + [-112.76482493485105, 47.307082915595394], + [-112.77853006287471, 47.307082915595394], + [-112.79223519089837, 47.307082915595394], + [-112.80594031892203, 47.307082915595394], + [-112.81964544694569, 47.307082915595394], + [-112.83335057496934, 47.307082915595394], + [-112.847055702993, 47.307082915595394], + [-112.86076083101666, 47.307082915595394], + [-112.87446595904032, 47.307082915595394], + [-112.88817108706398, 47.307082915595394], + [-112.90187621508764, 47.307082915595394], + [-112.9155813431113, 47.307082915595394], + [-112.92928647113496, 47.307082915595394], + [-112.94299159915862, 47.307082915595394], + [-112.95669672718228, 47.307082915595394], + [-112.97040185520594, 47.307082915595394], + [-112.9841069832296, 47.307082915595394], + [-112.99781211125325, 47.307082915595394], + [-113.01151723927691, 47.307082915595394], + [-113.02522236730057, 47.307082915595394], + [-113.03892749532423, 47.307082915595394], + [-113.05263262334789, 47.307082915595394], + [-113.06633775137155, 47.307082915595394], + [-113.08004287939521, 47.307082915595394], + [-113.09374800741887, 47.307082915595394], + [-113.10745313544253, 47.307082915595394], + [-113.12115826346619, 47.307082915595394], + [-113.13486339148984, 47.307082915595394], + [-113.1485685195135, 47.307082915595394], + [-113.16227364753716, 47.307082915595394], + [-113.17597877556082, 47.307082915595394], + [-113.18968390358448, 47.307082915595394], + [-113.20338903160814, 47.307082915595394], + [-113.2170941596318, 47.307082915595394], + [-113.23079928765546, 47.307082915595394], + [-113.24450441567912, 47.307082915595394], + [-113.25820954370278, 47.307082915595394], + [-113.27191467172644, 47.307082915595394], + [-113.2856197997501, 47.307082915595394], + [-113.29932492777375, 47.307082915595394], + [-113.31303005579741, 47.307082915595394], + [-113.32673518382107, 47.307082915595394], + [-113.34044031184473, 47.307082915595394], + [-113.35414543986839, 47.307082915595394], + [-113.36785056789205, 47.307082915595394], + [-113.38155569591571, 47.307082915595394], + [-113.39526082393937, 47.307082915595394], + [-113.40896595196303, 47.307082915595394], + [-113.42267107998669, 47.307082915595394], + [-113.43637620801034, 47.307082915595394], + [-113.450081336034, 47.307082915595394], + [-113.46378646405766, 47.307082915595394], + [-113.47749159208132, 47.307082915595394], + [-113.49119672010498, 47.307082915595394], + [-113.50490184812864, 47.307082915595394], + [-113.5186069761523, 47.307082915595394], + [-113.53231210417596, 47.307082915595394], + [-113.54601723219962, 47.307082915595394], + [-113.55972236022328, 47.307082915595394], + [-113.57342748824694, 47.307082915595394], + [-113.5871326162706, 47.307082915595394], + [-113.60083774429425, 47.307082915595394], + [-113.61454287231791, 47.307082915595394], + [-113.62824800034157, 47.307082915595394], + [-113.64195312836523, 47.307082915595394], + [-113.65565825638889, 47.307082915595394], + [-113.66936338441255, 47.307082915595394], + [-113.68306851243621, 47.307082915595394], + [-113.69677364045987, 47.307082915595394], + [-113.71047876848353, 47.307082915595394], + [-113.72418389650718, 47.307082915595394], + [-113.73788902453084, 47.307082915595394], + [-113.7515941525545, 47.307082915595394], + [-113.76529928057816, 47.307082915595394], + [-113.77900440860182, 47.307082915595394], + [-113.79270953662548, 47.307082915595394], + [-113.80641466464914, 47.307082915595394], + [-113.8201197926728, 47.307082915595394], + [-113.83382492069646, 47.307082915595394], + [-113.84753004872012, 47.307082915595394], + [-113.86123517674378, 47.307082915595394], + [-113.87494030476743, 47.307082915595394], + [-113.8886454327911, 47.307082915595394], + [-113.90235056081475, 47.307082915595394], + [-113.91605568883841, 47.307082915595394], + [-113.92976081686207, 47.307082915595394], + [-113.94346594488573, 47.307082915595394], + [-113.95717107290939, 47.307082915595394], + [-113.97087620093305, 47.307082915595394], + [-113.98458132895671, 47.307082915595394], + [-113.99828645698037, 47.307082915595394], + [-114.01199158500403, 47.307082915595394], + [-114.02569671302768, 47.307082915595394], + [-114.03940184105134, 47.307082915595394], + [-114.053106969075, 47.307082915595394], + [-114.06681209709866, 47.307082915595394], + [-114.08051722512232, 47.307082915595394], + [-114.09422235314598, 47.307082915595394], + [-114.10792748116964, 47.307082915595394], + [-114.1216326091933, 47.307082915595394], + [-114.13533773721696, 47.307082915595394], + [-114.14904286524062, 47.307082915595394], + [-114.16274799326428, 47.307082915595394], + [-114.17645312128793, 47.307082915595394], + [-114.1901582493116, 47.307082915595394], + [-114.20386337733525, 47.307082915595394], + [-114.21756850535891, 47.307082915595394], + [-114.23127363338257, 47.307082915595394], + [-114.24497876140623, 47.307082915595394], + [-114.25868388942989, 47.307082915595394], + [-114.27238901745355, 47.307082915595394], + [-114.28609414547721, 47.307082915595394], + [-114.29979927350087, 47.307082915595394], + [-114.31350440152453, 47.307082915595394], + [-114.32720952954818, 47.307082915595394], + [-114.34091465757184, 47.307082915595394], + [-114.3546197855955, 47.307082915595394], + [-114.36832491361916, 47.307082915595394], + [-114.38203004164282, 47.307082915595394], + [-114.39573516966648, 47.307082915595394], + [-114.40944029769014, 47.307082915595394], + [-114.4231454257138, 47.307082915595394], + [-114.43685055373746, 47.307082915595394], + [-114.45055568176112, 47.307082915595394], + [-114.46426080978478, 47.307082915595394], + [-114.47796593780843, 47.307082915595394], + [-114.4916710658321, 47.307082915595394], + [-114.50537619385575, 47.307082915595394], + [-114.51908132187941, 47.307082915595394], + [-114.53278644990307, 47.307082915595394], + [-114.54649157792673, 47.307082915595394], + [-114.56019670595039, 47.307082915595394], + [-114.57390183397405, 47.307082915595394], + [-114.58760696199771, 47.307082915595394], + [-114.60131209002137, 47.307082915595394], + [-114.61501721804503, 47.307082915595394], + [-114.62872234606868, 47.307082915595394], + [-114.64242747409234, 47.307082915595394], + [-114.656132602116, 47.307082915595394], + [-114.66983773013966, 47.307082915595394], + [-114.68354285816332, 47.307082915595394], + [-114.69724798618698, 47.307082915595394], + [-114.71095311421064, 47.307082915595394], + [-114.7246582422343, 47.307082915595394], + [-114.73836337025796, 47.307082915595394], + [-114.75206849828162, 47.307082915595394], + [-114.76577362630528, 47.307082915595394], + [-114.77947875432893, 47.307082915595394], + [-114.7931838823526, 47.307082915595394], + [-114.80688901037625, 47.307082915595394], + [-114.82059413839991, 47.307082915595394], + [-114.83429926642357, 47.307082915595394], + [-114.84800439444723, 47.307082915595394], + [-114.86170952247089, 47.307082915595394], + [-114.87541465049455, 47.307082915595394], + [-114.88911977851821, 47.307082915595394], + [-114.90282490654187, 47.307082915595394], + [-114.91653003456553, 47.307082915595394], + [-114.93023516258918, 47.307082915595394], + [-114.94394029061284, 47.307082915595394], + [-114.9576454186365, 47.307082915595394], + [-114.97135054666016, 47.307082915595394], + [-114.98505567468382, 47.307082915595394], + [-114.99876080270748, 47.307082915595394], + [-115.01246593073114, 47.307082915595394], + [-115.0261710587548, 47.307082915595394], + [-115.03987618677846, 47.307082915595394], + [-115.05358131480212, 47.307082915595394], + [-115.06728644282578, 47.307082915595394], + [-115.08099157084943, 47.307082915595394], + [-115.0946966988731, 47.307082915595394], + [-115.10840182689675, 47.307082915595394], + [-115.12210695492041, 47.307082915595394], + [-115.13581208294407, 47.307082915595394], + [-115.14951721096773, 47.307082915595394], + [-115.16322233899139, 47.307082915595394], + [-115.17692746701505, 47.307082915595394], + [-115.19063259503871, 47.307082915595394], + [-115.20433772306237, 47.307082915595394], + [-115.21804285108603, 47.307082915595394], + [-115.23174797910968, 47.307082915595394], + [-115.24545310713334, 47.307082915595394], + [-115.259158235157, 47.307082915595394], + [-115.27286336318066, 47.307082915595394], + [-115.28656849120432, 47.307082915595394], + [-115.30027361922798, 47.307082915595394], + [-115.31397874725164, 47.307082915595394], + [-115.3276838752753, 47.307082915595394], + [-115.34138900329896, 47.307082915595394], + [-115.35509413132262, 47.307082915595394], + [-115.36879925934628, 47.307082915595394], + [-115.38250438736993, 47.307082915595394], + [-115.3962095153936, 47.307082915595394], + [-115.40991464341725, 47.307082915595394], + [-115.42361977144091, 47.307082915595394], + [-115.43732489946457, 47.307082915595394], + [-115.45103002748823, 47.307082915595394], + [-115.46473515551189, 47.307082915595394], + [-115.47844028353555, 47.307082915595394], + [-115.4921454115592, 47.307082915595394], + [-115.50585053958287, 47.307082915595394], + [-115.51955566760653, 47.307082915595394], + [-115.53326079563018, 47.307082915595394], + [-115.54696592365384, 47.307082915595394], + [-115.5606710516775, 47.307082915595394], + [-115.57437617970116, 47.307082915595394], + [-115.58808130772482, 47.307082915595394], + [-115.60178643574848, 47.307082915595394], + [-115.61549156377214, 47.307082915595394], + [-115.6291966917958, 47.307082915595394], + [-115.64290181981946, 47.307082915595394], + [-115.65660694784312, 47.307082915595394], + [-115.67031207586678, 47.307082915595394], + [-115.68401720389043, 47.307082915595394], + [-115.6977223319141, 47.307082915595394], + [-115.71142745993775, 47.307082915595394], + [-115.72513258796141, 47.307082915595394], + [-115.73883771598507, 47.307082915595394], + [-115.75254284400873, 47.307082915595394], + [-115.76624797203239, 47.307082915595394], + [-115.77995310005605, 47.307082915595394], + [-115.7936582280797, 47.307082915595394], + [-115.80736335610337, 47.307082915595394], + [-115.82106848412703, 47.307082915595394], + [-115.83477361215068, 47.307082915595394], + [-115.84847874017434, 47.307082915595394], + [-115.862183868198, 47.307082915595394], + [-115.87588899622166, 47.307082915595394], + [-115.88959412424532, 47.307082915595394], + [-115.90329925226898, 47.307082915595394], + [-115.91700438029264, 47.307082915595394], + [-115.9307095083163, 47.307082915595394], + [-115.94441463633996, 47.307082915595394], + [-115.95811976436362, 47.307082915595394], + [-115.97182489238727, 47.307082915595394], + [-115.98553002041093, 47.307082915595394], + [-115.9992351484346, 47.307082915595394], + [-116.01294027645825, 47.307082915595394], + [-116.02664540448191, 47.307082915595394], + [-116.04035053250557, 47.307082915595394], + [-116.05405566052923, 47.307082915595394], + [-116.06776078855289, 47.307082915595394], + [-116.08146591657655, 47.307082915595394], + [-116.0951710446002, 47.307082915595394], + [-116.10887617262387, 47.307082915595394], + [-116.12258130064752, 47.307082915595394], + [-116.13628642867118, 47.307082915595394], + [-116.14999155669484, 47.307082915595394], + [-116.1636966847185, 47.307082915595394], + [-116.17740181274216, 47.307082915595394], + [-116.19110694076582, 47.307082915595394], + [-116.20481206878948, 47.307082915595394], + [-116.21851719681314, 47.307082915595394], + [-116.2322223248368, 47.307082915595394], + [-116.24592745286046, 47.307082915595394], + [-116.25963258088412, 47.307082915595394], + [-116.27333770890777, 47.307082915595394], + [-116.28704283693143, 47.307082915595394], + [-116.3007479649551, 47.307082915595394], + [-116.31445309297875, 47.307082915595394], + [-116.32815822100241, 47.307082915595394], + [-116.34186334902607, 47.307082915595394], + [-116.35556847704973, 47.307082915595394], + [-116.36927360507339, 47.307082915595394], + [-116.38297873309705, 47.307082915595394], + [-116.3966838611207, 47.307082915595394], + [-116.41038898914437, 47.307082915595394], + [-116.42409411716802, 47.307082915595394], + [-116.43779924519168, 47.307082915595394], + [-116.45150437321534, 47.307082915595394], + [-116.465209501239, 47.307082915595394], + [-116.47891462926266, 47.307082915595394], + [-116.49261975728632, 47.307082915595394], + [-116.50632488530998, 47.307082915595394], + [-116.52003001333364, 47.307082915595394], + [-116.5337351413573, 47.307082915595394], + [-116.54744026938096, 47.307082915595394], + [-116.56114539740462, 47.307082915595394], + [-116.57485052542827, 47.307082915595394], + [-116.58855565345193, 47.307082915595394], + [-116.6022607814756, 47.307082915595394], + [-116.61596590949925, 47.307082915595394], + [-116.62967103752291, 47.307082915595394], + [-116.64337616554657, 47.307082915595394], + [-116.65708129357023, 47.307082915595394], + [-116.67078642159389, 47.307082915595394], + [-116.68449154961755, 47.307082915595394], + [-116.6981966776412, 47.307082915595394], + [-116.71190180566487, 47.307082915595394], + [-116.72560693368852, 47.307082915595394], + [-116.73931206171218, 47.307082915595394], + [-116.75301718973584, 47.307082915595394], + [-116.7667223177595, 47.307082915595394], + [-116.78042744578316, 47.307082915595394], + [-116.79413257380682, 47.307082915595394], + [-116.80783770183048, 47.307082915595394], + [-116.82154282985414, 47.307082915595394], + [-116.8352479578778, 47.307082915595394], + [-116.84895308590146, 47.307082915595394], + [-116.86265821392512, 47.307082915595394], + [-116.87636334194877, 47.307082915595394], + [-116.89006846997243, 47.307082915595394], + [-116.90377359799609, 47.307082915595394], + [-116.91747872601975, 47.307082915595394], + [-116.93118385404341, 47.307082915595394], + [-116.94488898206707, 47.307082915595394], + [-116.95859411009073, 47.307082915595394], + [-116.97229923811439, 47.307082915595394], + [-116.98600436613805, 47.307082915595394], + [-116.9997094941617, 47.307082915595394], + [-117.01341462218537, 47.307082915595394], + [-117.02711975020902, 47.307082915595394], + [-117.04082487823268, 47.307082915595394], + [-117.05453000625634, 47.307082915595394], + [-117.06823513428, 47.307082915595394], + [-117.08194026230366, 47.307082915595394], + [-117.09564539032732, 47.307082915595394], + [-117.10935051835098, 47.307082915595394], + [-117.12305564637464, 47.307082915595394], + [-117.1367607743983, 47.307082915595394], + [-117.15046590242196, 47.307082915595394], + [-117.16417103044562, 47.307082915595394], + [-117.17787615846927, 47.307082915595394], + [-117.19158128649293, 47.307082915595394], + [-117.20528641451659, 47.307082915595394], + [-117.21899154254025, 47.307082915595394], + [-117.23269667056391, 47.307082915595394], + [-117.24640179858757, 47.307082915595394], + [-117.26010692661123, 47.307082915595394], + [-117.27381205463489, 47.307082915595394], + [-117.28751718265855, 47.307082915595394], + [-117.3012223106822, 47.307082915595394], + [-117.31492743870587, 47.307082915595394], + [-117.32863256672952, 47.307082915595394], + [-117.34233769475318, 47.307082915595394], + [-117.35604282277684, 47.307082915595394], + [-117.3697479508005, 47.307082915595394], + [-117.38345307882416, 47.307082915595394], + [-117.39715820684782, 47.307082915595394], + [-117.41086333487148, 47.307082915595394], + [-117.42456846289514, 47.307082915595394], + [-117.4382735909188, 47.307082915595394], + [-117.45197871894246, 47.307082915595394], + [-117.46568384696612, 47.307082915595394], + [-117.47938897498977, 47.307082915595394], + [-117.49309410301343, 47.307082915595394], + [-117.50679923103709, 47.307082915595394], + [-117.52050435906075, 47.307082915595394], + [-117.53420948708441, 47.307082915595394], + [-117.54791461510807, 47.307082915595394], + [-117.56161974313173, 47.307082915595394], + [-117.57532487115539, 47.307082915595394], + [-117.58902999917905, 47.307082915595394], + [-117.6027351272027, 47.307082915595394], + [-117.61644025522637, 47.307082915595394], + [-117.63014538325002, 47.307082915595394], + [-117.64385051127368, 47.307082915595394], + [-117.65755563929734, 47.307082915595394], + [-117.671260767321, 47.307082915595394], + [-117.68496589534466, 47.307082915595394], + [-117.69867102336832, 47.307082915595394], + [-117.71237615139198, 47.307082915595394], + [-117.72608127941564, 47.307082915595394], + [-117.7397864074393, 47.307082915595394], + [-117.75349153546296, 47.307082915595394], + [-117.76719666348662, 47.307082915595394], + [-117.78090179151027, 47.307082915595394], + [-117.79460691953393, 47.307082915595394], + [-117.80831204755759, 47.307082915595394], + [-117.82201717558125, 47.307082915595394], + [-117.83572230360491, 47.307082915595394], + [-117.84942743162857, 47.307082915595394], + [-117.86313255965223, 47.307082915595394], + [-117.87683768767589, 47.307082915595394], + [-117.89054281569955, 47.307082915595394], + [-117.9042479437232, 47.307082915595394], + [-117.91795307174687, 47.307082915595394], + [-117.93165819977052, 47.307082915595394], + [-117.94536332779418, 47.307082915595394], + [-117.95906845581784, 47.307082915595394], + [-117.9727735838415, 47.307082915595394], + [-117.98647871186516, 47.307082915595394], + [-118.00018383988882, 47.307082915595394], + [-118.01388896791248, 47.307082915595394], + [-118.02759409593614, 47.307082915595394], + [-118.0412992239598, 47.307082915595394], + [-118.05500435198346, 47.307082915595394], + [-118.06870948000712, 47.307082915595394], + [-118.08241460803077, 47.307082915595394], + [-118.09611973605443, 47.307082915595394], + [-118.10982486407809, 47.307082915595394], + [-118.12352999210175, 47.307082915595394], + [-118.13723512012541, 47.307082915595394], + [-118.15094024814907, 47.307082915595394], + [-118.16464537617273, 47.307082915595394], + [-118.17835050419639, 47.307082915595394], + [-118.19205563222005, 47.307082915595394], + [-118.2057607602437, 47.307082915595394], + [-118.21946588826737, 47.307082915595394], + [-118.23317101629102, 47.307082915595394], + [-118.24687614431468, 47.307082915595394], + [-118.26058127233834, 47.307082915595394], + [-118.274286400362, 47.307082915595394], + [-118.28799152838566, 47.307082915595394], + [-118.30169665640932, 47.307082915595394], + [-118.31540178443298, 47.307082915595394], + [-118.32910691245664, 47.307082915595394], + [-118.3428120404803, 47.307082915595394], + [-118.35651716850396, 47.307082915595394], + [-118.37022229652761, 47.307082915595394], + [-118.38392742455127, 47.307082915595394], + [-118.39763255257493, 47.307082915595394], + [-118.41133768059859, 47.307082915595394], + [-118.42504280862225, 47.307082915595394], + [-118.43874793664591, 47.307082915595394], + [-118.45245306466957, 47.307082915595394], + [-118.46615819269323, 47.307082915595394], + [-118.47986332071689, 47.307082915595394], + [-118.49356844874055, 47.307082915595394], + [-118.5072735767642, 47.307082915595394], + [-118.52097870478786, 47.307082915595394], + [-118.53468383281152, 47.307082915595394], + [-118.54838896083518, 47.307082915595394], + [-118.56209408885884, 47.307082915595394], + [-118.5757992168825, 47.307082915595394], + [-118.58950434490616, 47.307082915595394], + [-118.60320947292982, 47.307082915595394], + [-118.61691460095348, 47.307082915595394], + [-118.63061972897714, 47.307082915595394], + [-118.6443248570008, 47.307082915595394], + [-118.65802998502446, 47.307082915595394], + [-118.67173511304811, 47.307082915595394], + [-118.68544024107177, 47.307082915595394], + [-118.69914536909543, 47.307082915595394], + [-118.71285049711909, 47.307082915595394], + [-118.72655562514275, 47.307082915595394], + [-118.74026075316641, 47.307082915595394], + [-118.75396588119007, 47.307082915595394], + [-118.76767100921373, 47.307082915595394], + [-118.78137613723739, 47.307082915595394], + [-118.79508126526105, 47.307082915595394], + [-118.8087863932847, 47.307082915595394], + [-118.82249152130836, 47.307082915595394], + [-118.83619664933202, 47.307082915595394], + [-118.84990177735568, 47.307082915595394], + [-118.86360690537934, 47.307082915595394], + [-118.877312033403, 47.307082915595394], + [-118.89101716142666, 47.307082915595394], + [-118.90472228945032, 47.307082915595394], + [-118.91842741747398, 47.307082915595394], + [-118.93213254549764, 47.307082915595394], + [-118.9458376735213, 47.307082915595394], + [-118.95954280154496, 47.307082915595394], + [-118.97324792956861, 47.307082915595394], + [-118.98695305759227, 47.307082915595394], + [-119.00065818561593, 47.307082915595394], + [-119.01436331363959, 47.307082915595394], + [-119.02806844166325, 47.307082915595394], + [-119.04177356968691, 47.307082915595394], + [-119.05547869771057, 47.307082915595394], + [-119.06918382573423, 47.307082915595394], + [-119.08288895375789, 47.307082915595394], + [-119.09659408178155, 47.307082915595394], + [-119.1102992098052, 47.307082915595394], + [-119.12400433782886, 47.307082915595394], + [-119.13770946585252, 47.307082915595394], + [-119.15141459387618, 47.307082915595394], + [-119.16511972189984, 47.307082915595394], + [-119.1788248499235, 47.307082915595394], + [-119.19252997794716, 47.307082915595394], + [-119.20623510597082, 47.307082915595394], + [-119.21994023399448, 47.307082915595394], + [-119.23364536201814, 47.307082915595394], + [-119.2473504900418, 47.307082915595394], + [-119.26105561806546, 47.307082915595394], + [-119.27476074608911, 47.307082915595394], + [-119.28846587411277, 47.307082915595394], + [-119.30217100213643, 47.307082915595394], + [-119.31587613016009, 47.307082915595394], + [-119.32958125818375, 47.307082915595394], + [-119.34328638620741, 47.307082915595394], + [-119.35699151423107, 47.307082915595394], + [-119.37069664225473, 47.307082915595394], + [-119.38440177027839, 47.307082915595394], + [-119.39810689830205, 47.307082915595394], + [-119.4118120263257, 47.307082915595394], + [-119.42551715434936, 47.307082915595394], + [-119.43922228237302, 47.307082915595394], + [-119.45292741039668, 47.307082915595394], + [-119.46663253842034, 47.307082915595394], + [-119.480337666444, 47.307082915595394], + [-119.49404279446766, 47.307082915595394], + [-119.50774792249132, 47.307082915595394], + [-119.52145305051498, 47.307082915595394], + [-119.53515817853864, 47.307082915595394], + [-119.5488633065623, 47.307082915595394], + [-119.56256843458596, 47.307082915595394], + [-119.57627356260961, 47.307082915595394], + [-119.58997869063327, 47.307082915595394], + [-119.60368381865693, 47.307082915595394], + [-119.61738894668059, 47.307082915595394], + [-119.63109407470425, 47.307082915595394], + [-119.64479920272791, 47.307082915595394], + [-119.65850433075157, 47.307082915595394], + [-119.67220945877523, 47.307082915595394], + [-119.68591458679889, 47.307082915595394], + [-119.69961971482255, 47.307082915595394], + [-119.7133248428462, 47.307082915595394], + [-119.72702997086986, 47.307082915595394], + [-119.74073509889352, 47.307082915595394], + [-119.75444022691718, 47.307082915595394], + [-119.76814535494084, 47.307082915595394], + [-119.7818504829645, 47.307082915595394], + [-119.79555561098816, 47.307082915595394], + [-119.80926073901182, 47.307082915595394], + [-119.82296586703548, 47.307082915595394], + [-119.83667099505914, 47.307082915595394], + [-119.8503761230828, 47.307082915595394], + [-119.86408125110646, 47.307082915595394], + [-119.87778637913011, 47.307082915595394], + [-119.89149150715377, 47.307082915595394], + [-119.90519663517743, 47.307082915595394], + [-119.91890176320109, 47.307082915595394], + [-119.93260689122475, 47.307082915595394], + [-119.94631201924841, 47.307082915595394], + [-119.96001714727207, 47.307082915595394], + [-119.97372227529573, 47.307082915595394], + [-119.98742740331939, 47.307082915595394], + [-120.00113253134305, 47.307082915595394], + [-120.0148376593667, 47.307082915595394], + [-120.02854278739036, 47.307082915595394], + [-120.04224791541402, 47.307082915595394], + [-120.05595304343768, 47.307082915595394], + [-120.05595304343768, 47.29695109143884], + [-120.05595304343768, 47.28681926728229], + [-120.05595304343768, 47.27668744312574], + [-120.05595304343768, 47.266555618969186], + [-120.05595304343768, 47.25642379481263], + [-120.05595304343768, 47.24629197065608], + [-120.05595304343768, 47.23616014649953], + [-120.05595304343768, 47.22602832234298], + [-120.05595304343768, 47.215896498186424], + [-120.05595304343768, 47.20576467402987], + [-120.05595304343768, 47.19563284987332], + [-120.05595304343768, 47.18550102571677], + [-120.05595304343768, 47.175369201560216], + [-120.05595304343768, 47.16523737740366], + [-120.05595304343768, 47.15510555324711], + [-120.05595304343768, 47.14497372909056], + [-120.05595304343768, 47.13484190493401], + [-120.05595304343768, 47.124710080777454], + [-120.05595304343768, 47.1145782566209], + [-120.05595304343768, 47.10444643246435], + [-120.05595304343768, 47.0943146083078], + [-120.05595304343768, 47.084182784151245], + [-120.05595304343768, 47.07405095999469], + [-120.05595304343768, 47.06391913583814], + [-120.05595304343768, 47.05378731168159], + [-120.05595304343768, 47.04365548752504], + [-120.05595304343768, 47.033523663368484], + [-120.05595304343768, 47.02339183921193], + [-120.05595304343768, 47.01326001505538], + [-120.05595304343768, 47.00312819089883], + [-120.05595304343768, 46.992996366742275], + [-120.05595304343768, 46.98286454258572], + [-120.05595304343768, 46.97273271842917], + [-120.05595304343768, 46.96260089427262], + [-120.05595304343768, 46.95246907011607], + [-120.05595304343768, 46.942337245959514], + [-120.05595304343768, 46.93220542180296], + [-120.05595304343768, 46.92207359764641], + [-120.05595304343768, 46.91194177348986], + [-120.05595304343768, 46.901809949333305], + [-120.05595304343768, 46.89167812517675], + [-120.05595304343768, 46.8815463010202], + [-120.05595304343768, 46.87141447686365], + [-120.05595304343768, 46.8612826527071], + [-120.05595304343768, 46.851150828550544], + [-120.05595304343768, 46.84101900439399], + [-120.05595304343768, 46.83088718023744], + [-120.05595304343768, 46.82075535608089], + [-120.05595304343768, 46.810623531924335], + [-120.05595304343768, 46.80049170776778], + [-120.05595304343768, 46.79035988361123], + [-120.05595304343768, 46.78022805945468], + [-120.05595304343768, 46.770096235298126], + [-120.05595304343768, 46.759964411141574], + [-120.05595304343768, 46.74983258698502], + [-120.05595304343768, 46.73970076282847], + [-120.05595304343768, 46.72956893867192], + [-120.05595304343768, 46.719437114515365], + [-120.05595304343768, 46.70930529035881], + [-120.05595304343768, 46.69917346620226], + [-120.05595304343768, 46.68904164204571], + [-120.05595304343768, 46.678909817889156], + [-120.05595304343768, 46.668777993732604], + [-120.05595304343768, 46.65864616957605], + [-120.05595304343768, 46.6485143454195], + [-120.05595304343768, 46.63838252126295], + [-120.05595304343768, 46.628250697106395], + [-120.05595304343768, 46.61811887294984], + [-120.05595304343768, 46.60798704879329], + [-120.05595304343768, 46.59785522463674], + [-120.05595304343768, 46.587723400480186], + [-120.05595304343768, 46.577591576323634], + [-120.05595304343768, 46.56745975216708], + [-120.05595304343768, 46.55732792801053], + [-120.05595304343768, 46.54719610385398], + [-120.05595304343768, 46.537064279697425], + [-120.05595304343768, 46.52693245554087], + [-120.05595304343768, 46.51680063138432], + [-120.05595304343768, 46.50666880722777], + [-120.05595304343768, 46.496536983071216], + [-120.05595304343768, 46.486405158914664], + [-120.05595304343768, 46.47627333475811], + [-120.05595304343768, 46.46614151060156], + [-120.05595304343768, 46.45600968644501], + [-120.05595304343768, 46.445877862288455], + [-120.05595304343768, 46.4357460381319], + [-120.05595304343768, 46.42561421397535], + [-120.05595304343768, 46.4154823898188], + [-120.05595304343768, 46.405350565662246], + [-120.05595304343768, 46.395218741505694], + [-120.05595304343768, 46.38508691734914], + [-120.05595304343768, 46.37495509319259], + [-120.05595304343768, 46.36482326903604], + [-120.05595304343768, 46.354691444879485], + [-120.05595304343768, 46.34455962072293], + [-120.05595304343768, 46.33442779656638], + [-120.05595304343768, 46.32429597240983], + [-120.05595304343768, 46.314164148253276], + [-120.05595304343768, 46.304032324096724], + [-120.05595304343768, 46.29390049994017], + [-120.05595304343768, 46.28376867578362], + [-120.05595304343768, 46.27363685162707], + [-120.05595304343768, 46.263505027470515], + [-120.05595304343768, 46.25337320331396], + [-120.05595304343768, 46.24324137915741], + [-120.05595304343768, 46.23310955500086], + [-120.05595304343768, 46.222977730844306], + [-120.05595304343768, 46.212845906687754], + [-120.05595304343768, 46.2027140825312], + [-120.05595304343768, 46.19258225837465], + [-120.05595304343768, 46.1824504342181], + [-120.05595304343768, 46.172318610061545], + [-120.05595304343768, 46.16218678590499], + [-120.05595304343768, 46.15205496174844], + [-120.05595304343768, 46.14192313759189], + [-120.05595304343768, 46.131791313435336], + [-120.05595304343768, 46.121659489278784], + [-120.05595304343768, 46.11152766512223], + [-120.05595304343768, 46.10139584096568], + [-120.05595304343768, 46.09126401680913], + [-120.05595304343768, 46.081132192652575], + [-120.05595304343768, 46.07100036849602], + [-120.05595304343768, 46.06086854433947], + [-120.05595304343768, 46.05073672018292], + [-120.05595304343768, 46.040604896026366], + [-120.05595304343768, 46.030473071869814], + [-120.05595304343768, 46.02034124771326], + [-120.05595304343768, 46.01020942355671], + [-120.05595304343768, 46.00007759940016], + [-120.05595304343768, 45.989945775243605], + [-120.05595304343768, 45.97981395108705], + [-120.05595304343768, 45.9696821269305], + [-120.05595304343768, 45.95955030277395], + [-120.05595304343768, 45.949418478617396], + [-120.05595304343768, 45.939286654460844], + [-120.05595304343768, 45.92915483030429], + [-120.05595304343768, 45.91902300614774], + [-120.05595304343768, 45.90889118199119], + [-120.05595304343768, 45.898759357834635], + [-120.05595304343768, 45.88862753367808], + [-120.05595304343768, 45.87849570952153], + [-120.05595304343768, 45.86836388536498], + [-120.05595304343768, 45.858232061208426], + [-120.05595304343768, 45.848100237051874], + [-120.05595304343768, 45.83796841289532], + [-120.05595304343768, 45.82783658873877], + [-120.05595304343768, 45.81770476458222], + [-120.05595304343768, 45.807572940425665], + [-120.05595304343768, 45.79744111626911], + [-120.05595304343768, 45.78730929211256], + [-120.05595304343768, 45.77717746795601], + [-120.05595304343768, 45.767045643799456], + [-120.05595304343768, 45.756913819642904], + [-120.05595304343768, 45.74678199548635], + [-120.05595304343768, 45.7366501713298], + [-120.05595304343768, 45.72651834717325], + [-120.05595304343768, 45.716386523016695], + [-120.05595304343768, 45.70625469886014], + [-120.05595304343768, 45.69612287470359], + [-120.05595304343768, 45.68599105054704], + [-120.05595304343768, 45.675859226390486], + [-120.05595304343768, 45.665727402233934], + [-120.05595304343768, 45.65559557807738], + [-120.05595304343768, 45.64546375392083], + [-120.05595304343768, 45.63533192976428], + [-120.05595304343768, 45.625200105607725], + [-120.05595304343768, 45.61506828145117], + [-120.05595304343768, 45.60493645729462], + [-120.05595304343768, 45.59480463313807], + [-120.05595304343768, 45.584672808981516], + [-120.05595304343768, 45.574540984824964], + [-120.05595304343768, 45.56440916066841], + [-120.05595304343768, 45.55427733651186], + [-120.05595304343768, 45.54414551235531], + [-120.05595304343768, 45.534013688198755], + [-120.05595304343768, 45.5238818640422], + [-120.05595304343768, 45.51375003988565], + [-120.05595304343768, 45.5036182157291], + [-120.05595304343768, 45.493486391572546], + [-120.05595304343768, 45.483354567415994], + [-120.05595304343768, 45.47322274325944], + [-120.05595304343768, 45.46309091910289], + [-120.05595304343768, 45.45295909494634], + [-120.05595304343768, 45.442827270789785], + [-120.05595304343768, 45.43269544663323], + [-120.05595304343768, 45.42256362247668], + [-120.05595304343768, 45.41243179832013], + [-120.05595304343768, 45.402299974163576], + [-120.05595304343768, 45.39216815000702], + [-120.05595304343768, 45.38203632585047], + [-120.05595304343768, 45.37190450169392], + [-120.05595304343768, 45.36177267753737], + [-120.05595304343768, 45.351640853380815], + [-120.05595304343768, 45.34150902922426], + [-120.05595304343768, 45.33137720506771], + [-120.05595304343768, 45.32124538091116], + [-120.05595304343768, 45.311113556754606], + [-120.05595304343768, 45.30098173259805], + [-120.05595304343768, 45.2908499084415], + [-120.05595304343768, 45.28071808428495], + [-120.05595304343768, 45.2705862601284], + [-120.05595304343768, 45.260454435971845], + [-120.05595304343768, 45.25032261181529], + [-120.05595304343768, 45.24019078765874], + [-120.05595304343768, 45.23005896350219], + [-120.05595304343768, 45.219927139345636], + [-120.05595304343768, 45.20979531518908], + [-120.05595304343768, 45.19966349103253], + [-120.05595304343768, 45.18953166687598], + [-120.05595304343768, 45.17939984271943], + [-120.05595304343768, 45.169268018562875], + [-120.05595304343768, 45.15913619440632], + [-120.05595304343768, 45.14900437024977], + [-120.05595304343768, 45.13887254609322], + [-120.05595304343768, 45.128740721936666], + [-120.05595304343768, 45.11860889778011], + [-120.05595304343768, 45.10847707362356], + [-120.05595304343768, 45.09834524946701], + [-120.05595304343768, 45.08821342531046], + [-120.05595304343768, 45.078081601153905], + [-120.05595304343768, 45.06794977699735], + [-120.05595304343768, 45.0578179528408], + [-120.05595304343768, 45.04768612868425], + [-120.05595304343768, 45.037554304527696], + [-120.05595304343768, 45.02742248037114], + [-120.05595304343768, 45.01729065621459], + [-120.05595304343768, 45.00715883205804], + [-120.05595304343768, 44.99702700790149], + [-120.05595304343768, 44.986895183744934], + [-120.05595304343768, 44.97676335958838], + [-120.05595304343768, 44.96663153543183], + [-120.05595304343768, 44.95649971127528], + [-120.05595304343768, 44.946367887118726], + [-120.05595304343768, 44.93623606296217], + [-120.05595304343768, 44.92610423880562], + [-120.05595304343768, 44.91597241464907], + [-120.05595304343768, 44.90584059049252], + [-120.05595304343768, 44.895708766335964], + [-120.05595304343768, 44.88557694217941], + [-120.05595304343768, 44.87544511802286], + [-120.05595304343768, 44.86531329386631], + [-120.05595304343768, 44.855181469709756], + [-120.05595304343768, 44.8450496455532], + [-120.05595304343768, 44.83491782139665], + [-120.05595304343768, 44.8247859972401], + [-120.05595304343768, 44.81465417308355], + [-120.05595304343768, 44.804522348926994], + [-120.05595304343768, 44.79439052477044], + [-120.05595304343768, 44.78425870061389], + [-120.05595304343768, 44.77412687645734], + [-120.05595304343768, 44.763995052300785], + [-120.05595304343768, 44.75386322814423], + [-120.05595304343768, 44.74373140398768], + [-120.05595304343768, 44.73359957983113], + [-120.05595304343768, 44.72346775567458], + [-120.05595304343768, 44.713335931518024], + [-120.05595304343768, 44.70320410736147], + [-120.05595304343768, 44.69307228320492], + [-120.05595304343768, 44.68294045904837], + [-120.05595304343768, 44.672808634891815], + [-120.05595304343768, 44.66267681073526], + [-120.05595304343768, 44.65254498657871], + [-120.05595304343768, 44.64241316242216], + [-120.05595304343768, 44.63228133826561], + [-120.05595304343768, 44.622149514109054], + [-120.05595304343768, 44.6120176899525], + [-120.05595304343768, 44.60188586579595], + [-120.05595304343768, 44.5917540416394], + [-120.05595304343768, 44.581622217482845], + [-120.05595304343768, 44.57149039332629], + [-120.05595304343768, 44.56135856916974], + [-120.05595304343768, 44.55122674501319], + [-120.05595304343768, 44.54109492085664], + [-120.05595304343768, 44.530963096700084], + [-120.05595304343768, 44.52083127254353], + [-120.05595304343768, 44.51069944838698], + [-120.05595304343768, 44.50056762423043], + [-120.05595304343768, 44.490435800073875], + [-120.05595304343768, 44.48030397591732], + [-120.05595304343768, 44.47017215176077], + [-120.05595304343768, 44.46004032760422], + [-120.05595304343768, 44.449908503447666], + [-120.05595304343768, 44.439776679291114], + [-120.05595304343768, 44.42964485513456], + [-120.05595304343768, 44.41951303097801], + [-120.05595304343768, 44.40938120682146], + [-120.05595304343768, 44.399249382664905], + [-120.05595304343768, 44.38911755850835], + [-120.05595304343768, 44.3789857343518], + [-120.05595304343768, 44.36885391019525], + [-120.05595304343768, 44.358722086038696], + [-120.05595304343768, 44.348590261882144], + [-120.05595304343768, 44.33845843772559], + [-120.05595304343768, 44.32832661356904], + [-120.05595304343768, 44.31819478941249], + [-120.05595304343768, 44.308062965255935], + [-120.05595304343768, 44.29793114109938], + [-120.05595304343768, 44.28779931694283], + [-120.05595304343768, 44.27766749278628], + [-120.05595304343768, 44.267535668629726], + [-120.05595304343768, 44.257403844473174], + [-120.05595304343768, 44.24727202031662], + [-120.05595304343768, 44.23714019616007], + [-120.05595304343768, 44.22700837200352], + [-120.05595304343768, 44.216876547846965], + [-120.05595304343768, 44.20674472369041], + [-120.05595304343768, 44.19661289953386], + [-120.05595304343768, 44.18648107537731], + [-120.05595304343768, 44.176349251220756], + [-120.05595304343768, 44.166217427064204], + [-120.05595304343768, 44.15608560290765], + [-120.05595304343768, 44.1459537787511], + [-120.05595304343768, 44.13582195459455], + [-120.05595304343768, 44.125690130437995], + [-120.05595304343768, 44.11555830628144], + [-120.05595304343768, 44.10542648212489], + [-120.05595304343768, 44.09529465796834], + [-120.05595304343768, 44.085162833811786], + [-120.05595304343768, 44.075031009655234], + [-120.05595304343768, 44.06489918549868], + [-120.05595304343768, 44.05476736134213], + [-120.05595304343768, 44.04463553718558], + [-120.05595304343768, 44.034503713029025], + [-120.05595304343768, 44.02437188887247], + [-120.05595304343768, 44.01424006471592], + [-120.05595304343768, 44.00410824055937], + [-120.05595304343768, 43.993976416402816], + [-120.05595304343768, 43.983844592246264], + [-120.05595304343768, 43.97371276808971], + [-120.05595304343768, 43.96358094393316], + [-120.05595304343768, 43.95344911977661], + [-120.05595304343768, 43.943317295620055], + [-120.05595304343768, 43.9331854714635], + [-120.05595304343768, 43.92305364730695], + [-120.05595304343768, 43.9129218231504], + [-120.05595304343768, 43.902789998993846], + [-120.05595304343768, 43.892658174837294], + [-120.05595304343768, 43.88252635068074], + [-120.05595304343768, 43.87239452652419], + [-120.05595304343768, 43.86226270236764], + [-120.05595304343768, 43.852130878211085], + [-120.05595304343768, 43.84199905405453], + [-120.05595304343768, 43.83186722989798], + [-120.05595304343768, 43.82173540574143], + [-120.05595304343768, 43.811603581584876], + [-120.05595304343768, 43.801471757428324], + [-120.05595304343768, 43.79133993327177], + [-120.05595304343768, 43.78120810911522], + [-120.05595304343768, 43.77107628495867], + [-120.05595304343768, 43.760944460802115], + [-120.05595304343768, 43.75081263664556], + [-120.05595304343768, 43.74068081248901], + [-120.05595304343768, 43.73054898833246], + [-120.05595304343768, 43.720417164175906], + [-120.05595304343768, 43.710285340019354], + [-120.05595304343768, 43.7001535158628], + [-120.05595304343768, 43.69002169170625], + [-120.05595304343768, 43.6798898675497], + [-120.05595304343768, 43.669758043393145], + [-120.05595304343768, 43.65962621923659], + [-120.05595304343768, 43.64949439508004], + [-120.05595304343768, 43.63936257092349], + [-120.05595304343768, 43.629230746766936], + [-120.05595304343768, 43.619098922610384], + [-120.05595304343768, 43.60896709845383], + [-120.05595304343768, 43.59883527429728], + [-120.05595304343768, 43.58870345014073], + [-120.05595304343768, 43.578571625984175], + [-120.05595304343768, 43.56843980182762], + [-120.05595304343768, 43.55830797767107], + [-120.05595304343768, 43.54817615351452], + [-120.05595304343768, 43.538044329357966], + [-120.05595304343768, 43.527912505201414], + [-120.05595304343768, 43.51778068104486], + [-120.05595304343768, 43.50764885688831], + [-120.05595304343768, 43.49751703273176], + [-120.05595304343768, 43.487385208575205], + [-120.05595304343768, 43.47725338441865], + [-120.05595304343768, 43.4671215602621], + [-120.05595304343768, 43.45698973610555], + [-120.05595304343768, 43.446857911948996], + [-120.05595304343768, 43.436726087792444], + [-120.05595304343768, 43.42659426363589], + [-120.05595304343768, 43.41646243947934], + [-120.05595304343768, 43.40633061532279], + [-120.05595304343768, 43.396198791166235], + [-120.05595304343768, 43.38606696700968], + [-120.05595304343768, 43.37593514285313], + [-120.05595304343768, 43.36580331869658], + [-120.05595304343768, 43.355671494540026], + [-120.05595304343768, 43.345539670383474], + [-120.05595304343768, 43.33540784622692], + [-120.05595304343768, 43.32527602207037], + [-120.05595304343768, 43.31514419791382], + [-120.05595304343768, 43.305012373757265], + [-120.05595304343768, 43.29488054960071], + [-120.05595304343768, 43.28474872544416], + [-120.05595304343768, 43.27461690128761], + [-120.05595304343768, 43.264485077131056], + [-120.05595304343768, 43.254353252974504], + [-120.05595304343768, 43.24422142881795], + [-120.05595304343768, 43.2340896046614], + [-120.05595304343768, 43.22395778050485], + [-120.05595304343768, 43.213825956348295], + [-120.05595304343768, 43.20369413219174], + [-120.05595304343768, 43.19356230803519], + [-120.05595304343768, 43.18343048387864], + [-120.05595304343768, 43.173298659722086], + [-120.05595304343768, 43.163166835565534], + [-120.05595304343768, 43.15303501140898], + [-120.05595304343768, 43.14290318725243], + [-120.05595304343768, 43.13277136309588], + [-120.05595304343768, 43.122639538939325], + [-120.05595304343768, 43.11250771478277], + [-120.05595304343768, 43.10237589062622], + [-120.05595304343768, 43.09224406646967], + [-120.05595304343768, 43.082112242313116], + [-120.05595304343768, 43.07198041815656], + [-120.05595304343768, 43.06184859400001], + [-120.05595304343768, 43.05171676984346], + [-120.05595304343768, 43.04158494568691], + [-120.05595304343768, 43.031453121530355], + [-120.05595304343768, 43.0213212973738], + [-120.05595304343768, 43.01118947321725], + [-120.05595304343768, 43.0010576490607], + [-120.05595304343768, 42.990925824904146], + [-120.05595304343768, 42.98079400074759], + [-120.05595304343768, 42.97066217659104], + [-120.05595304343768, 42.96053035243449], + [-120.05595304343768, 42.95039852827794], + [-120.05595304343768, 42.940266704121385], + [-120.05595304343768, 42.93013487996483], + [-120.05595304343768, 42.92000305580828], + [-120.05595304343768, 42.90987123165173], + [-120.05595304343768, 42.899739407495176], + [-120.05595304343768, 42.88960758333862], + [-120.05595304343768, 42.87947575918207], + [-120.05595304343768, 42.86934393502552], + [-120.05595304343768, 42.85921211086897], + [-120.05595304343768, 42.849080286712415], + [-120.05595304343768, 42.83894846255586], + [-120.05595304343768, 42.82881663839931], + [-120.05595304343768, 42.81868481424276], + [-120.05595304343768, 42.808552990086206], + [-120.05595304343768, 42.79842116592965], + [-120.05595304343768, 42.7882893417731], + [-120.05595304343768, 42.77815751761655], + [-120.05595304343768, 42.76802569346], + [-120.05595304343768, 42.757893869303444], + [-120.05595304343768, 42.74776204514689], + [-120.05595304343768, 42.73763022099034], + [-120.05595304343768, 42.72749839683379], + [-120.05595304343768, 42.717366572677236], + [-120.05595304343768, 42.70723474852068], + [-120.05595304343768, 42.69710292436413], + [-120.05595304343768, 42.68697110020758], + [-120.05595304343768, 42.67683927605103], + [-120.05595304343768, 42.666707451894474], + [-120.05595304343768, 42.65657562773792], + [-120.05595304343768, 42.64644380358137], + [-120.05595304343768, 42.63631197942482], + [-120.05595304343768, 42.626180155268266], + [-120.05595304343768, 42.61604833111171], + [-120.05595304343768, 42.60591650695516], + [-120.05595304343768, 42.59578468279861], + [-120.05595304343768, 42.58565285864206], + [-120.05595304343768, 42.575521034485504], + [-120.05595304343768, 42.56538921032895], + [-120.05595304343768, 42.5552573861724], + [-120.05595304343768, 42.54512556201585], + [-120.05595304343768, 42.534993737859295], + [-120.05595304343768, 42.52486191370274], + [-120.05595304343768, 42.51473008954619], + [-120.05595304343768, 42.50459826538964], + [-120.05595304343768, 42.49446644123309], + [-120.05595304343768, 42.484334617076534], + [-120.05595304343768, 42.47420279291998], + [-120.05595304343768, 42.46407096876343], + [-120.05595304343768, 42.45393914460688], + [-120.05595304343768, 42.443807320450325], + [-120.05595304343768, 42.43367549629377], + [-120.05595304343768, 42.42354367213722], + [-120.05595304343768, 42.41341184798067], + [-120.05595304343768, 42.40328002382412], + [-120.05595304343768, 42.393148199667564], + [-120.05595304343768, 42.38301637551101], + [-120.05595304343768, 42.37288455135446], + [-120.05595304343768, 42.36275272719791], + [-120.05595304343768, 42.352620903041355], + [-120.05595304343768, 42.3424890788848], + [-120.05595304343768, 42.33235725472825], + [-120.05595304343768, 42.3222254305717], + [-120.05595304343768, 42.31209360641515], + [-120.04224791541402, 42.31209360641515], + [-120.02854278739036, 42.31209360641515], + [-120.0148376593667, 42.31209360641515], + [-120.00113253134305, 42.31209360641515], + [-119.98742740331939, 42.31209360641515], + [-119.97372227529573, 42.31209360641515], + [-119.96001714727207, 42.31209360641515], + [-119.94631201924841, 42.31209360641515], + [-119.93260689122475, 42.31209360641515], + [-119.91890176320109, 42.31209360641515], + [-119.90519663517743, 42.31209360641515], + [-119.89149150715377, 42.31209360641515], + [-119.87778637913011, 42.31209360641515], + [-119.86408125110646, 42.31209360641515], + [-119.8503761230828, 42.31209360641515], + [-119.83667099505914, 42.31209360641515], + [-119.82296586703548, 42.31209360641515], + [-119.80926073901182, 42.31209360641515], + [-119.79555561098816, 42.31209360641515], + [-119.7818504829645, 42.31209360641515], + [-119.76814535494084, 42.31209360641515], + [-119.75444022691718, 42.31209360641515], + [-119.74073509889352, 42.31209360641515], + [-119.72702997086986, 42.31209360641515], + [-119.7133248428462, 42.31209360641515], + [-119.69961971482255, 42.31209360641515], + [-119.68591458679889, 42.31209360641515], + [-119.67220945877523, 42.31209360641515], + [-119.65850433075157, 42.31209360641515], + [-119.64479920272791, 42.31209360641515], + [-119.63109407470425, 42.31209360641515], + [-119.61738894668059, 42.31209360641515], + [-119.60368381865693, 42.31209360641515], + [-119.58997869063327, 42.31209360641515], + [-119.57627356260961, 42.31209360641515], + [-119.56256843458596, 42.31209360641515], + [-119.5488633065623, 42.31209360641515], + [-119.53515817853864, 42.31209360641515], + [-119.52145305051498, 42.31209360641515], + [-119.50774792249132, 42.31209360641515], + [-119.49404279446766, 42.31209360641515], + [-119.480337666444, 42.31209360641515], + [-119.46663253842034, 42.31209360641515], + [-119.45292741039668, 42.31209360641515], + [-119.43922228237302, 42.31209360641515], + [-119.42551715434936, 42.31209360641515], + [-119.4118120263257, 42.31209360641515], + [-119.39810689830205, 42.31209360641515], + [-119.38440177027839, 42.31209360641515], + [-119.37069664225473, 42.31209360641515], + [-119.35699151423107, 42.31209360641515], + [-119.34328638620741, 42.31209360641515], + [-119.32958125818375, 42.31209360641515], + [-119.31587613016009, 42.31209360641515], + [-119.30217100213643, 42.31209360641515], + [-119.28846587411277, 42.31209360641515], + [-119.27476074608911, 42.31209360641515], + [-119.26105561806546, 42.31209360641515], + [-119.2473504900418, 42.31209360641515], + [-119.23364536201814, 42.31209360641515], + [-119.21994023399448, 42.31209360641515], + [-119.20623510597082, 42.31209360641515], + [-119.19252997794716, 42.31209360641515], + [-119.1788248499235, 42.31209360641515], + [-119.16511972189984, 42.31209360641515], + [-119.15141459387618, 42.31209360641515], + [-119.13770946585252, 42.31209360641515], + [-119.12400433782886, 42.31209360641515], + [-119.1102992098052, 42.31209360641515], + [-119.09659408178155, 42.31209360641515], + [-119.08288895375789, 42.31209360641515], + [-119.06918382573423, 42.31209360641515], + [-119.05547869771057, 42.31209360641515], + [-119.04177356968691, 42.31209360641515], + [-119.02806844166325, 42.31209360641515], + [-119.01436331363959, 42.31209360641515], + [-119.00065818561593, 42.31209360641515], + [-118.98695305759227, 42.31209360641515], + [-118.97324792956861, 42.31209360641515], + [-118.95954280154496, 42.31209360641515], + [-118.9458376735213, 42.31209360641515], + [-118.93213254549764, 42.31209360641515], + [-118.91842741747398, 42.31209360641515], + [-118.90472228945032, 42.31209360641515], + [-118.89101716142666, 42.31209360641515], + [-118.877312033403, 42.31209360641515], + [-118.86360690537934, 42.31209360641515], + [-118.84990177735568, 42.31209360641515], + [-118.83619664933202, 42.31209360641515], + [-118.82249152130836, 42.31209360641515], + [-118.8087863932847, 42.31209360641515], + [-118.79508126526105, 42.31209360641515], + [-118.78137613723739, 42.31209360641515], + [-118.76767100921373, 42.31209360641515], + [-118.75396588119007, 42.31209360641515], + [-118.74026075316641, 42.31209360641515], + [-118.72655562514275, 42.31209360641515], + [-118.71285049711909, 42.31209360641515], + [-118.69914536909543, 42.31209360641515], + [-118.68544024107177, 42.31209360641515], + [-118.67173511304811, 42.31209360641515], + [-118.65802998502446, 42.31209360641515], + [-118.6443248570008, 42.31209360641515], + [-118.63061972897714, 42.31209360641515], + [-118.61691460095348, 42.31209360641515], + [-118.60320947292982, 42.31209360641515], + [-118.58950434490616, 42.31209360641515], + [-118.5757992168825, 42.31209360641515], + [-118.56209408885884, 42.31209360641515], + [-118.54838896083518, 42.31209360641515], + [-118.53468383281152, 42.31209360641515], + [-118.52097870478786, 42.31209360641515], + [-118.5072735767642, 42.31209360641515], + [-118.49356844874055, 42.31209360641515], + [-118.47986332071689, 42.31209360641515], + [-118.46615819269323, 42.31209360641515], + [-118.45245306466957, 42.31209360641515], + [-118.43874793664591, 42.31209360641515], + [-118.42504280862225, 42.31209360641515], + [-118.41133768059859, 42.31209360641515], + [-118.39763255257493, 42.31209360641515], + [-118.38392742455127, 42.31209360641515], + [-118.37022229652761, 42.31209360641515], + [-118.35651716850396, 42.31209360641515], + [-118.3428120404803, 42.31209360641515], + [-118.32910691245664, 42.31209360641515], + [-118.31540178443298, 42.31209360641515], + [-118.30169665640932, 42.31209360641515], + [-118.28799152838566, 42.31209360641515], + [-118.274286400362, 42.31209360641515], + [-118.26058127233834, 42.31209360641515], + [-118.24687614431468, 42.31209360641515], + [-118.23317101629102, 42.31209360641515], + [-118.21946588826737, 42.31209360641515], + [-118.2057607602437, 42.31209360641515], + [-118.19205563222005, 42.31209360641515], + [-118.17835050419639, 42.31209360641515], + [-118.16464537617273, 42.31209360641515], + [-118.15094024814907, 42.31209360641515], + [-118.13723512012541, 42.31209360641515], + [-118.12352999210175, 42.31209360641515], + [-118.10982486407809, 42.31209360641515], + [-118.09611973605443, 42.31209360641515], + [-118.08241460803077, 42.31209360641515], + [-118.06870948000712, 42.31209360641515], + [-118.05500435198346, 42.31209360641515], + [-118.0412992239598, 42.31209360641515], + [-118.02759409593614, 42.31209360641515], + [-118.01388896791248, 42.31209360641515], + [-118.00018383988882, 42.31209360641515], + [-117.98647871186516, 42.31209360641515], + [-117.9727735838415, 42.31209360641515], + [-117.95906845581784, 42.31209360641515], + [-117.94536332779418, 42.31209360641515], + [-117.93165819977052, 42.31209360641515], + [-117.91795307174687, 42.31209360641515], + [-117.9042479437232, 42.31209360641515], + [-117.89054281569955, 42.31209360641515], + [-117.87683768767589, 42.31209360641515], + [-117.86313255965223, 42.31209360641515], + [-117.84942743162857, 42.31209360641515], + [-117.83572230360491, 42.31209360641515], + [-117.82201717558125, 42.31209360641515], + [-117.80831204755759, 42.31209360641515], + [-117.79460691953393, 42.31209360641515], + [-117.78090179151027, 42.31209360641515], + [-117.76719666348662, 42.31209360641515], + [-117.75349153546296, 42.31209360641515], + [-117.7397864074393, 42.31209360641515], + [-117.72608127941564, 42.31209360641515], + [-117.71237615139198, 42.31209360641515], + [-117.69867102336832, 42.31209360641515], + [-117.68496589534466, 42.31209360641515], + [-117.671260767321, 42.31209360641515], + [-117.65755563929734, 42.31209360641515], + [-117.64385051127368, 42.31209360641515], + [-117.63014538325002, 42.31209360641515], + [-117.61644025522637, 42.31209360641515], + [-117.6027351272027, 42.31209360641515], + [-117.58902999917905, 42.31209360641515], + [-117.57532487115539, 42.31209360641515], + [-117.56161974313173, 42.31209360641515], + [-117.54791461510807, 42.31209360641515], + [-117.53420948708441, 42.31209360641515], + [-117.52050435906075, 42.31209360641515], + [-117.50679923103709, 42.31209360641515], + [-117.49309410301343, 42.31209360641515], + [-117.47938897498977, 42.31209360641515], + [-117.46568384696612, 42.31209360641515], + [-117.45197871894246, 42.31209360641515], + [-117.4382735909188, 42.31209360641515], + [-117.42456846289514, 42.31209360641515], + [-117.41086333487148, 42.31209360641515], + [-117.39715820684782, 42.31209360641515], + [-117.38345307882416, 42.31209360641515], + [-117.3697479508005, 42.31209360641515], + [-117.35604282277684, 42.31209360641515], + [-117.34233769475318, 42.31209360641515], + [-117.32863256672952, 42.31209360641515], + [-117.31492743870587, 42.31209360641515], + [-117.3012223106822, 42.31209360641515], + [-117.28751718265855, 42.31209360641515], + [-117.27381205463489, 42.31209360641515], + [-117.26010692661123, 42.31209360641515], + [-117.24640179858757, 42.31209360641515], + [-117.23269667056391, 42.31209360641515], + [-117.21899154254025, 42.31209360641515], + [-117.20528641451659, 42.31209360641515], + [-117.19158128649293, 42.31209360641515], + [-117.17787615846927, 42.31209360641515], + [-117.16417103044562, 42.31209360641515], + [-117.15046590242196, 42.31209360641515], + [-117.1367607743983, 42.31209360641515], + [-117.12305564637464, 42.31209360641515], + [-117.10935051835098, 42.31209360641515], + [-117.09564539032732, 42.31209360641515], + [-117.08194026230366, 42.31209360641515], + [-117.06823513428, 42.31209360641515], + [-117.05453000625634, 42.31209360641515], + [-117.04082487823268, 42.31209360641515], + [-117.02711975020902, 42.31209360641515], + [-117.01341462218537, 42.31209360641515], + [-116.9997094941617, 42.31209360641515], + [-116.98600436613805, 42.31209360641515], + [-116.97229923811439, 42.31209360641515], + [-116.95859411009073, 42.31209360641515], + [-116.94488898206707, 42.31209360641515], + [-116.93118385404341, 42.31209360641515], + [-116.91747872601975, 42.31209360641515], + [-116.90377359799609, 42.31209360641515], + [-116.89006846997243, 42.31209360641515], + [-116.87636334194877, 42.31209360641515], + [-116.86265821392512, 42.31209360641515], + [-116.84895308590146, 42.31209360641515], + [-116.8352479578778, 42.31209360641515], + [-116.82154282985414, 42.31209360641515], + [-116.80783770183048, 42.31209360641515], + [-116.79413257380682, 42.31209360641515], + [-116.78042744578316, 42.31209360641515], + [-116.7667223177595, 42.31209360641515], + [-116.75301718973584, 42.31209360641515], + [-116.73931206171218, 42.31209360641515], + [-116.72560693368852, 42.31209360641515], + [-116.71190180566487, 42.31209360641515], + [-116.6981966776412, 42.31209360641515], + [-116.68449154961755, 42.31209360641515], + [-116.67078642159389, 42.31209360641515], + [-116.65708129357023, 42.31209360641515], + [-116.64337616554657, 42.31209360641515], + [-116.62967103752291, 42.31209360641515], + [-116.61596590949925, 42.31209360641515], + [-116.6022607814756, 42.31209360641515], + [-116.58855565345193, 42.31209360641515], + [-116.57485052542827, 42.31209360641515], + [-116.56114539740462, 42.31209360641515], + [-116.54744026938096, 42.31209360641515], + [-116.5337351413573, 42.31209360641515], + [-116.52003001333364, 42.31209360641515], + [-116.50632488530998, 42.31209360641515], + [-116.49261975728632, 42.31209360641515], + [-116.47891462926266, 42.31209360641515], + [-116.465209501239, 42.31209360641515], + [-116.45150437321534, 42.31209360641515], + [-116.43779924519168, 42.31209360641515], + [-116.42409411716802, 42.31209360641515], + [-116.41038898914437, 42.31209360641515], + [-116.3966838611207, 42.31209360641515], + [-116.38297873309705, 42.31209360641515], + [-116.36927360507339, 42.31209360641515], + [-116.35556847704973, 42.31209360641515], + [-116.34186334902607, 42.31209360641515], + [-116.32815822100241, 42.31209360641515], + [-116.31445309297875, 42.31209360641515], + [-116.3007479649551, 42.31209360641515], + [-116.28704283693143, 42.31209360641515], + [-116.27333770890777, 42.31209360641515], + [-116.25963258088412, 42.31209360641515], + [-116.24592745286046, 42.31209360641515], + [-116.2322223248368, 42.31209360641515], + [-116.21851719681314, 42.31209360641515], + [-116.20481206878948, 42.31209360641515], + [-116.19110694076582, 42.31209360641515], + [-116.17740181274216, 42.31209360641515], + [-116.1636966847185, 42.31209360641515], + [-116.14999155669484, 42.31209360641515], + [-116.13628642867118, 42.31209360641515], + [-116.12258130064752, 42.31209360641515], + [-116.10887617262387, 42.31209360641515], + [-116.0951710446002, 42.31209360641515], + [-116.08146591657655, 42.31209360641515], + [-116.06776078855289, 42.31209360641515], + [-116.05405566052923, 42.31209360641515], + [-116.04035053250557, 42.31209360641515], + [-116.02664540448191, 42.31209360641515], + [-116.01294027645825, 42.31209360641515], + [-115.9992351484346, 42.31209360641515], + [-115.98553002041093, 42.31209360641515], + [-115.97182489238727, 42.31209360641515], + [-115.95811976436362, 42.31209360641515], + [-115.94441463633996, 42.31209360641515], + [-115.9307095083163, 42.31209360641515], + [-115.91700438029264, 42.31209360641515], + [-115.90329925226898, 42.31209360641515], + [-115.88959412424532, 42.31209360641515], + [-115.87588899622166, 42.31209360641515], + [-115.862183868198, 42.31209360641515], + [-115.84847874017434, 42.31209360641515], + [-115.83477361215068, 42.31209360641515], + [-115.82106848412703, 42.31209360641515], + [-115.80736335610337, 42.31209360641515], + [-115.7936582280797, 42.31209360641515], + [-115.77995310005605, 42.31209360641515], + [-115.76624797203239, 42.31209360641515], + [-115.75254284400873, 42.31209360641515], + [-115.73883771598507, 42.31209360641515], + [-115.72513258796141, 42.31209360641515], + [-115.71142745993775, 42.31209360641515], + [-115.6977223319141, 42.31209360641515], + [-115.68401720389043, 42.31209360641515], + [-115.67031207586678, 42.31209360641515], + [-115.65660694784312, 42.31209360641515], + [-115.64290181981946, 42.31209360641515], + [-115.6291966917958, 42.31209360641515], + [-115.61549156377214, 42.31209360641515], + [-115.60178643574848, 42.31209360641515], + [-115.58808130772482, 42.31209360641515], + [-115.57437617970116, 42.31209360641515], + [-115.5606710516775, 42.31209360641515], + [-115.54696592365384, 42.31209360641515], + [-115.53326079563018, 42.31209360641515], + [-115.51955566760653, 42.31209360641515], + [-115.50585053958287, 42.31209360641515], + [-115.4921454115592, 42.31209360641515], + [-115.47844028353555, 42.31209360641515], + [-115.46473515551189, 42.31209360641515], + [-115.45103002748823, 42.31209360641515], + [-115.43732489946457, 42.31209360641515], + [-115.42361977144091, 42.31209360641515], + [-115.40991464341725, 42.31209360641515], + [-115.3962095153936, 42.31209360641515], + [-115.38250438736993, 42.31209360641515], + [-115.36879925934628, 42.31209360641515], + [-115.35509413132262, 42.31209360641515], + [-115.34138900329896, 42.31209360641515], + [-115.3276838752753, 42.31209360641515], + [-115.31397874725164, 42.31209360641515], + [-115.30027361922798, 42.31209360641515], + [-115.28656849120432, 42.31209360641515], + [-115.27286336318066, 42.31209360641515], + [-115.259158235157, 42.31209360641515], + [-115.24545310713334, 42.31209360641515], + [-115.23174797910968, 42.31209360641515], + [-115.21804285108603, 42.31209360641515], + [-115.20433772306237, 42.31209360641515], + [-115.19063259503871, 42.31209360641515], + [-115.17692746701505, 42.31209360641515], + [-115.16322233899139, 42.31209360641515], + [-115.14951721096773, 42.31209360641515], + [-115.13581208294407, 42.31209360641515], + [-115.12210695492041, 42.31209360641515], + [-115.10840182689675, 42.31209360641515], + [-115.0946966988731, 42.31209360641515], + [-115.08099157084943, 42.31209360641515], + [-115.06728644282578, 42.31209360641515], + [-115.05358131480212, 42.31209360641515], + [-115.03987618677846, 42.31209360641515], + [-115.0261710587548, 42.31209360641515], + [-115.01246593073114, 42.31209360641515], + [-114.99876080270748, 42.31209360641515], + [-114.98505567468382, 42.31209360641515], + [-114.97135054666016, 42.31209360641515], + [-114.9576454186365, 42.31209360641515], + [-114.94394029061284, 42.31209360641515], + [-114.93023516258918, 42.31209360641515], + [-114.91653003456553, 42.31209360641515], + [-114.90282490654187, 42.31209360641515], + [-114.88911977851821, 42.31209360641515], + [-114.87541465049455, 42.31209360641515], + [-114.86170952247089, 42.31209360641515], + [-114.84800439444723, 42.31209360641515], + [-114.83429926642357, 42.31209360641515], + [-114.82059413839991, 42.31209360641515], + [-114.80688901037625, 42.31209360641515], + [-114.7931838823526, 42.31209360641515], + [-114.77947875432893, 42.31209360641515], + [-114.76577362630528, 42.31209360641515], + [-114.75206849828162, 42.31209360641515], + [-114.73836337025796, 42.31209360641515], + [-114.7246582422343, 42.31209360641515], + [-114.71095311421064, 42.31209360641515], + [-114.69724798618698, 42.31209360641515], + [-114.68354285816332, 42.31209360641515], + [-114.66983773013966, 42.31209360641515], + [-114.656132602116, 42.31209360641515], + [-114.64242747409234, 42.31209360641515], + [-114.62872234606868, 42.31209360641515], + [-114.61501721804503, 42.31209360641515], + [-114.60131209002137, 42.31209360641515], + [-114.58760696199771, 42.31209360641515], + [-114.57390183397405, 42.31209360641515], + [-114.56019670595039, 42.31209360641515], + [-114.54649157792673, 42.31209360641515], + [-114.53278644990307, 42.31209360641515], + [-114.51908132187941, 42.31209360641515], + [-114.50537619385575, 42.31209360641515], + [-114.4916710658321, 42.31209360641515], + [-114.47796593780843, 42.31209360641515], + [-114.46426080978478, 42.31209360641515], + [-114.45055568176112, 42.31209360641515], + [-114.43685055373746, 42.31209360641515], + [-114.4231454257138, 42.31209360641515], + [-114.40944029769014, 42.31209360641515], + [-114.39573516966648, 42.31209360641515], + [-114.38203004164282, 42.31209360641515], + [-114.36832491361916, 42.31209360641515], + [-114.3546197855955, 42.31209360641515], + [-114.34091465757184, 42.31209360641515], + [-114.32720952954818, 42.31209360641515], + [-114.31350440152453, 42.31209360641515], + [-114.29979927350087, 42.31209360641515], + [-114.28609414547721, 42.31209360641515], + [-114.27238901745355, 42.31209360641515], + [-114.25868388942989, 42.31209360641515], + [-114.24497876140623, 42.31209360641515], + [-114.23127363338257, 42.31209360641515], + [-114.21756850535891, 42.31209360641515], + [-114.20386337733525, 42.31209360641515], + [-114.1901582493116, 42.31209360641515], + [-114.17645312128793, 42.31209360641515], + [-114.16274799326428, 42.31209360641515], + [-114.14904286524062, 42.31209360641515], + [-114.13533773721696, 42.31209360641515], + [-114.1216326091933, 42.31209360641515], + [-114.10792748116964, 42.31209360641515], + [-114.09422235314598, 42.31209360641515], + [-114.08051722512232, 42.31209360641515], + [-114.06681209709866, 42.31209360641515], + [-114.053106969075, 42.31209360641515], + [-114.03940184105134, 42.31209360641515], + [-114.02569671302768, 42.31209360641515], + [-114.01199158500403, 42.31209360641515], + [-113.99828645698037, 42.31209360641515], + [-113.98458132895671, 42.31209360641515], + [-113.97087620093305, 42.31209360641515], + [-113.95717107290939, 42.31209360641515], + [-113.94346594488573, 42.31209360641515], + [-113.92976081686207, 42.31209360641515], + [-113.91605568883841, 42.31209360641515], + [-113.90235056081475, 42.31209360641515], + [-113.8886454327911, 42.31209360641515], + [-113.87494030476743, 42.31209360641515], + [-113.86123517674378, 42.31209360641515], + [-113.84753004872012, 42.31209360641515], + [-113.83382492069646, 42.31209360641515], + [-113.8201197926728, 42.31209360641515], + [-113.80641466464914, 42.31209360641515], + [-113.79270953662548, 42.31209360641515], + [-113.77900440860182, 42.31209360641515], + [-113.76529928057816, 42.31209360641515], + [-113.7515941525545, 42.31209360641515], + [-113.73788902453084, 42.31209360641515], + [-113.72418389650718, 42.31209360641515], + [-113.71047876848353, 42.31209360641515], + [-113.69677364045987, 42.31209360641515], + [-113.68306851243621, 42.31209360641515], + [-113.66936338441255, 42.31209360641515], + [-113.65565825638889, 42.31209360641515], + [-113.64195312836523, 42.31209360641515], + [-113.62824800034157, 42.31209360641515], + [-113.61454287231791, 42.31209360641515], + [-113.60083774429425, 42.31209360641515], + [-113.5871326162706, 42.31209360641515], + [-113.57342748824694, 42.31209360641515], + [-113.55972236022328, 42.31209360641515], + [-113.54601723219962, 42.31209360641515], + [-113.53231210417596, 42.31209360641515], + [-113.5186069761523, 42.31209360641515], + [-113.50490184812864, 42.31209360641515], + [-113.49119672010498, 42.31209360641515], + [-113.47749159208132, 42.31209360641515], + [-113.46378646405766, 42.31209360641515], + [-113.450081336034, 42.31209360641515], + [-113.43637620801034, 42.31209360641515], + [-113.42267107998669, 42.31209360641515], + [-113.40896595196303, 42.31209360641515], + [-113.39526082393937, 42.31209360641515], + [-113.38155569591571, 42.31209360641515], + [-113.36785056789205, 42.31209360641515], + [-113.35414543986839, 42.31209360641515], + [-113.34044031184473, 42.31209360641515], + [-113.32673518382107, 42.31209360641515], + [-113.31303005579741, 42.31209360641515], + [-113.29932492777375, 42.31209360641515], + [-113.2856197997501, 42.31209360641515], + [-113.27191467172644, 42.31209360641515], + [-113.25820954370278, 42.31209360641515], + [-113.24450441567912, 42.31209360641515], + [-113.23079928765546, 42.31209360641515], + [-113.2170941596318, 42.31209360641515], + [-113.20338903160814, 42.31209360641515], + [-113.18968390358448, 42.31209360641515], + [-113.17597877556082, 42.31209360641515], + [-113.16227364753716, 42.31209360641515], + [-113.1485685195135, 42.31209360641515], + [-113.13486339148984, 42.31209360641515], + [-113.12115826346619, 42.31209360641515], + [-113.10745313544253, 42.31209360641515], + [-113.09374800741887, 42.31209360641515], + [-113.08004287939521, 42.31209360641515], + [-113.06633775137155, 42.31209360641515], + [-113.05263262334789, 42.31209360641515], + [-113.03892749532423, 42.31209360641515], + [-113.02522236730057, 42.31209360641515], + [-113.01151723927691, 42.31209360641515], + [-112.99781211125325, 42.31209360641515], + [-112.9841069832296, 42.31209360641515], + [-112.97040185520594, 42.31209360641515], + [-112.95669672718228, 42.31209360641515], + [-112.94299159915862, 42.31209360641515], + [-112.92928647113496, 42.31209360641515], + [-112.9155813431113, 42.31209360641515], + [-112.90187621508764, 42.31209360641515], + [-112.88817108706398, 42.31209360641515], + [-112.87446595904032, 42.31209360641515], + [-112.86076083101666, 42.31209360641515], + [-112.847055702993, 42.31209360641515], + [-112.83335057496934, 42.31209360641515], + [-112.81964544694569, 42.31209360641515], + [-112.80594031892203, 42.31209360641515], + [-112.79223519089837, 42.31209360641515], + [-112.77853006287471, 42.31209360641515], + [-112.76482493485105, 42.31209360641515], + [-112.75111980682739, 42.31209360641515], + [-112.73741467880373, 42.31209360641515], + [-112.72370955078007, 42.31209360641515], + [-112.71000442275641, 42.31209360641515], + [-112.69629929473275, 42.31209360641515], + [-112.6825941667091, 42.31209360641515], + [-112.66888903868544, 42.31209360641515], + [-112.65518391066178, 42.31209360641515], + [-112.64147878263812, 42.31209360641515], + [-112.62777365461446, 42.31209360641515], + [-112.6140685265908, 42.31209360641515], + [-112.60036339856714, 42.31209360641515], + [-112.58665827054348, 42.31209360641515], + [-112.57295314251982, 42.31209360641515], + [-112.55924801449616, 42.31209360641515], + [-112.5455428864725, 42.31209360641515], + [-112.53183775844884, 42.31209360641515], + [-112.53183775844884, 42.3222254305717], + [-112.53183775844884, 42.33235725472825], + [-112.53183775844884, 42.3424890788848], + [-112.53183775844884, 42.352620903041355], + [-112.53183775844884, 42.36275272719791], + [-112.53183775844884, 42.37288455135446], + [-112.53183775844884, 42.38301637551101], + [-112.53183775844884, 42.393148199667564], + [-112.53183775844884, 42.40328002382412], + [-112.53183775844884, 42.41341184798067], + [-112.53183775844884, 42.42354367213722], + [-112.53183775844884, 42.43367549629377], + [-112.53183775844884, 42.443807320450325], + [-112.53183775844884, 42.45393914460688], + [-112.53183775844884, 42.46407096876343], + [-112.53183775844884, 42.46407164219668], + [-112.53183911551118, 42.46407096876343], + [-112.5455428864725, 42.45743333572362], + [-112.55312167444629, 42.45393914460688], + [-112.55924801449616, 42.45117703853316], + [-112.57295314251982, 42.445290681953146], + [-112.5765741917885, 42.443807320450325], + [-112.58665827054348, 42.43975762756627], + [-112.60036339856714, 42.43456757919092], + [-112.60284171575255, 42.43367549629377], + [-112.6140685265908, 42.429703090576425], + [-112.62777365461446, 42.42516143306544], + [-112.63296220683394, 42.42354367213722], + [-112.64147878263812, 42.420925705714495], + [-112.65518391066178, 42.41699171763953], + [-112.66868966335001, 42.41341184798067], + [-112.66888903868544, 42.413359579272814], + [-112.6825941667091, 42.40999978161306], + [-112.69629929473275, 42.40692869672025], + [-112.71000442275641, 42.404141139114465], + [-112.71466087745031, 42.40328002382412], + [-112.72370955078007, 42.40161552944166], + [-112.73741467880373, 42.39935515688168], + [-112.75111980682739, 42.39736404150381], + [-112.76482493485105, 42.39563839831063], + [-112.77853006287471, 42.394174774448686], + [-112.79018923159455, 42.393148199667564], + [-112.79223519089837, 42.39296754268192], + [-112.80594031892203, 42.392004773785864], + [-112.81964544694569, 42.39129871687154], + [-112.83335057496934, 42.390848229447535], + [-112.847055702993, 42.39065276972591], + [-112.86076083101666, 42.390712459367926], + [-112.87446595904032, 42.391028148787946], + [-112.88817108706398, 42.3916014833951], + [-112.90187621508764, 42.39243496879562], + [-112.91078471940487, 42.393148199667564], + [-112.9155813431113, 42.39352445180484], + [-112.92928647113496, 42.39486173077692], + [-112.94299159915862, 42.39646570490142], + [-112.95669672718228, 42.39834271780587], + [-112.97040185520594, 42.40050031481582], + [-112.9841069832296, 42.40294725788474], + [-112.98578094867543, 42.40328002382412], + [-112.99781211125325, 42.405641171334985], + [-113.01151723927691, 42.408631301283194], + [-113.02522236730057, 42.41193766819636], + [-113.03082749368544, 42.41341184798067], + [-113.03892749532423, 42.41552719701788], + [-113.05263262334789, 42.419423990430566], + [-113.06591380602471, 42.42354367213722], + [-113.06633775137155, 42.42367488460027], + [-113.08004287939521, 42.42820675777086], + [-113.09374800741887, 42.43313068203823], + [-113.09518114992184, 42.43367549629377], + [-113.10745313544253, 42.43837267064318], + [-113.12061010626375, 42.443807320450325], + [-113.12115826346619, 42.444036180006684], + [-113.13486339148984, 42.45005492201062], + [-113.1431560158819, 42.45393914460688], + [-113.1485685195135, 42.45652328786444], + [-113.16227364753716, 42.463454446114014], + [-113.16344621444057, 42.46407096876343], + [-113.17597877556082, 42.4708561252114], + [-113.18186163163321, 42.47420279291998], + [-113.18968390358448, 42.47881558226231], + [-113.19863837212992, 42.484334617076534], + [-113.20338903160814, 42.48739311673383], + [-113.2139593063209, 42.49446644123309], + [-113.2170941596318, 42.49667721225926], + [-113.22796257789527, 42.50459826538964], + [-113.23079928765546, 42.50680001519599], + [-113.24074383573588, 42.51473008954619], + [-113.24450441567912, 42.51796420866447], + [-113.25235741545494, 42.52486191370274], + [-113.25820954370278, 42.5304925471981], + [-113.26281688855782, 42.534993737859295], + [-113.27191467172644, 42.544925828146944], + [-113.27209585749144, 42.54512556201585], + [-113.28053600515295, 42.5552573861724], + [-113.2856197997501, 42.56227938728684], + [-113.28785031857281, 42.56538921032895], + [-113.29434799153012, 42.575521034485504], + [-113.29932492777375, 42.58459354095839], + [-113.29989970297527, 42.58565285864206], + [-113.30492501327458, 42.59578468279861], + [-113.30923443565125, 42.60591650695516], + [-113.31299728606055, 42.61604833111171], + [-113.31303005579741, 42.61614083942071], + [-113.3165197583472, 42.626180155268266], + [-113.31968810471639, 42.63631197942482], + [-113.32260162781385, 42.64644380358137], + [-113.32533490392764, 42.65657562773792], + [-113.32673518382107, 42.66189507181254], + [-113.32798400159312, 42.666707451894474], + [-113.33057669493186, 42.67683927605103], + [-113.33308057692112, 42.68697110020758], + [-113.33550244342702, 42.69710292436413], + [-113.33783500198346, 42.70723474852068], + [-113.34005978243773, 42.717366572677236], + [-113.34044031184473, 42.719183825671614], + [-113.34221616566167, 42.72749839683379] + ], + [ + [-119.53522312522625, 43.47725338441865], + [-119.53527587190514, 43.487385208575205], + [-119.53518892600178, 43.49751703273176], + [-119.53515817853864, 43.49888888883545], + [-119.53496420490033, 43.50764885688831], + [-119.53460212367186, 43.51778068104486], + [-119.53410299203496, 43.527912505201414], + [-119.5334672590258, 43.538044329357966], + [-119.53269531058862, 43.54817615351452], + [-119.53178746974663, 43.55830797767107], + [-119.53074399674249, 43.56843980182762], + [-119.52956508914849, 43.578571625984175], + [-119.52825088194665, 43.58870345014073], + [-119.52680144757832, 43.59883527429728], + [-119.52521679596376, 43.60896709845383], + [-119.52349687449114, 43.619098922610384], + [-119.52164156797518, 43.629230746766936], + [-119.52145305051498, 43.630186540012105], + [-119.51966389473192, 43.63936257092349], + [-119.5175529816661, 43.64949439508004], + [-119.51530717164947, 43.65962621923659], + [-119.51292611557565, 43.669758043393145], + [-119.5104094011423, 43.6798898675497], + [-119.5077565526503, 43.69002169170625], + [-119.50774792249132, 43.69005292638875], + [-119.50498812472966, 43.7001535158628], + [-119.50208377800193, 43.710285340019354], + [-119.49904279731109, 43.720417164175906], + [-119.49586446823395, 43.73054898833246], + [-119.49404279446766, 43.73610629193532], + [-119.49255958489952, 43.74068081248901], + [-119.489131114097, 43.75081263664556], + [-119.48556413590482, 43.760944460802115], + [-119.48185769267499, 43.77107628495867], + [-119.480337666444, 43.77507295301579], + [-119.47802911546422, 43.78120810911522], + [-119.47407230901544, 43.79133993327177], + [-119.46997420361348, 43.801471757428324], + [-119.46663253842034, 43.80945161106528], + [-119.4657407716129, 43.811603581584876], + [-119.46139158566177, 43.82173540574143], + [-119.45689876043161, 43.83186722989798], + [-119.45292741039668, 43.84054030875756], + [-119.45226628657676, 43.84199905405453], + [-119.4475207622884, 43.852130878211085], + [-119.44262874172233, 43.86226270236764], + [-119.43922228237302, 43.869106390183966], + [-119.43760197251893, 43.87239452652419], + [-119.43245470790536, 43.88252635068074], + [-119.42715756301475, 43.892658174837294], + [-119.42551715434936, 43.895705152227166], + [-119.4217401240507, 43.902789998993846], + [-119.41618423893024, 43.9129218231504], + [-119.4118120263257, 43.92067785354356], + [-119.41048561841093, 43.92305364730695], + [-119.40466889469127, 43.9331854714635], + [-119.39869599685838, 43.943317295620055], + [-119.39810689830205, 43.94428988191518], + [-119.39261102739388, 43.95344911977661], + [-119.38637217791653, 43.96358094393316], + [-119.38440177027839, 43.96669858528968], + [-119.38000938457846, 43.97371276808971], + [-119.37350141808736, 43.983844592246264], + [-119.37069664225473, 43.98810233270555], + [-119.36686194131117, 43.993976416402816], + [-119.36008125988508, 44.00410824055937], + [-119.35699151423107, 44.00861290499456], + [-119.35316587796402, 44.01424006471592], + [-119.34610844424958, 44.02437188887247], + [-119.34328638620741, 44.02832721358141], + [-119.33891755897073, 44.034503713029025], + [-119.33157889018663, 44.04463553718558], + [-119.32958125818375, 44.04732954626016], + [-119.324112512867, 44.05476736134213], + [-119.31648767585682, 44.06489918549868], + [-119.31587613016009, 44.06569341587006], + [-119.30874541395536, 44.075031009655234], + [-119.30217100213643, 44.08344575660615], + [-119.30084033127949, 44.085162833811786], + [-119.29281006596838, 44.09529465796834], + [-119.28846587411277, 44.1006546374866], + [-119.28462887592275, 44.10542648212489], + [-119.27629938813661, 44.11555830628144], + [-119.27476074608911, 44.11738970007563], + [-119.26784063942232, 44.125690130437995], + [-119.26105561806546, 44.13365253466446], + [-119.25922093206131, 44.13582195459455], + [-119.25046719829564, 44.1459537787511], + [-119.2473504900418, 44.149485306444454], + [-119.24156807473707, 44.15608560290765], + [-119.23364536201814, 44.16493825446374], + [-119.23250878122329, 44.166217427064204], + [-119.22331808669384, 44.176349251220756], + [-119.21994023399448, 44.17999656646849], + [-119.21397647126733, 44.18648107537731], + [-119.20623510597082, 44.194725523040255], + [-119.20447494581221, 44.19661289953386], + [-119.19483300268115, 44.20674472369041], + [-119.19252997794716, 44.20911672667772], + [-119.18504515157048, 44.216876547846965], + [-119.1788248499235, 44.22319649352894], + [-119.17509708124172, 44.22700837200352], + [-119.16511972189984, 44.23700846605382], + [-119.16498911230377, 44.23714019616007], + [-119.15474849987095, 44.24727202031662], + [-119.15141459387618, 44.250506513187936], + [-119.14434782534858, 44.257403844473174], + [-119.13770946585252, 44.263758179855195], + [-119.13378612206769, 44.267535668629726], + [-119.12400433782886, 44.27677381073029], + [-119.12306342268919, 44.27766749278628], + [-119.1121947004809, 44.28779931694283], + [-119.1102992098052, 44.2895336269875], + [-119.10117073680263, 44.29793114109938], + [-119.09659408178155, 44.3020633115478], + [-119.08998375360866, 44.308062965255935], + [-119.08288895375789, 44.31438410949521], + [-119.07863346295375, 44.31819478941249], + [-119.06918382573423, 44.326502793927574], + [-119.06711949006026, 44.32832661356904], + [-119.05547869771057, 44.33842590076518], + [-119.05544137033063, 44.33845843772559], + [-119.04361242991207, 44.348590261882144], + [-119.04177356968691, 44.35013762298242], + [-119.0316168544961, 44.358722086038696], + [-119.02806844166325, 44.36166902965539], + [-119.01945362310568, 44.36885391019525], + [-119.01436331363959, 44.37302623168594], + [-119.00712190300273, 44.3789857343518], + [-119.00065818561593, 44.38421466849969], + [-118.99462075986841, 44.38911755850835], + [-118.98695305759227, 44.3952395798582], + [-118.98194915508422, 44.399249382664905], + [-118.97324792956861, 44.40610601089834], + [-118.96910594308135, 44.40938120682146], + [-118.95954280154496, 44.41681881701954], + [-118.95608986877426, 44.41951303097801], + [-118.9458376735213, 44.42738266862898], + [-118.94289956509664, 44.42964485513456], + [-118.93213254549764, 44.43780205575446], + [-118.92953355065859, 44.439776679291114], + [-118.91842741747398, 44.448081292534], + [-118.91599022754531, 44.449908503447666], + [-118.90472228945032, 44.45822452159103], + [-118.90226787927934, 44.46004032760422], + [-118.89101716142666, 44.46823571830338], + [-118.88836466896943, 44.47017215176077], + [-118.877312033403, 44.47811869497392], + [-118.87427863767067, 44.48030397591732], + [-118.86360690537934, 44.48787710491022], + [-118.86000770298196, 44.490435800073875], + [-118.84990177735568, 44.497514446420126], + [-118.84554965790822, 44.50056762423043], + [-118.83619664933202, 44.507034066729844], + [-118.83090217001636, 44.51069944838698], + [-118.82249152130836, 44.516439165830334], + [-118.81606278091493, 44.52083127254353], + [-118.8087863932847, 44.52573280025778], + [-118.80102890608927, 44.530963096700084], + [-118.79508126526105, 44.53491788681305], + [-118.78579783512467, 44.54109492085664], + [-118.78137613723739, 44.54399720622494], + [-118.77036673235146, 44.55122674501319], + [-118.76767100921373, 44.55297340676115], + [-118.75473263794703, 44.56135856916974], + [-118.75396588119007, 44.5618490077908], + [-118.74026075316641, 44.57061895042585], + [-118.73889901630956, 44.57149039332629], + [-118.72655562514275, 44.57928847936053], + [-118.72286015459702, 44.581622217482845], + [-118.71285049711909, 44.5878641855958], + [-118.70660881755296, 44.5917540416394], + [-118.69914536909543, 44.59634818714131], + [-118.69014144630539, 44.60188586579595], + [-118.68544024107177, 44.6047424861173], + [-118.67345436569579, 44.6120176899525], + [-118.67173511304811, 44.6130489721921], + [-118.65802998502446, 44.62126295324659], + [-118.65654932179385, 44.622149514109054], + [-118.6443248570008, 44.62938507368238], + [-118.63942318835787, 44.63228133826561], + [-118.63061972897714, 44.63742480597723], + [-118.62206509445303, 44.64241316242216], + [-118.61691460095348, 44.64538368156165], + [-118.60447079598387, 44.65254498657871], + [-118.60320947292982, 44.65326313239204], + [-118.58950434490616, 44.66105426507512], + [-118.58664381264305, 44.66267681073526], + [-118.5757992168825, 44.66876446265948], + [-118.56857447786805, 44.672808634891815], + [-118.56209408885884, 44.67639965206256], + [-118.5502544061973, 44.68294045904837], + [-118.54838896083518, 44.68396094209895], + [-118.53468383281152, 44.6914402864317], + [-118.53168453260004, 44.69307228320492], + [-118.52097870478786, 44.69884259228015], + [-118.51285659278152, 44.70320410736147], + [-118.5072735767642, 44.70617469290364], + [-118.49376161598568, 44.713335931518024], + [-118.49356844874055, 44.71343740058236], + [-118.47986332071689, 44.720617705792606], + [-118.47439989296295, 44.72346775567458], + [-118.46615819269323, 44.727730502411276], + [-118.4547587606244, 44.73359957983113], + [-118.45245306466957, 44.73477691865394], + [-118.43874793664591, 44.741748925810406], + [-118.43483369976283, 44.74373140398768], + [-118.42504280862225, 44.74865130891299], + [-118.41461652823713, 44.75386322814423], + [-118.41133768059859, 44.75548986785718], + [-118.39763255257493, 44.7622583080683], + [-118.39409885427513, 44.763995052300785], + [-118.38392742455127, 44.76895817965763], + [-118.37327252126346, 44.77412687645734], + [-118.37022229652761, 44.77559634400252], + [-118.35651716850396, 44.782165979306335], + [-118.35212710571183, 44.78425870061389], + [-118.3428120404803, 44.788670264134716], + [-118.33065521196222, 44.79439052477044], + [-118.32910691245664, 44.79511453809175], + [-118.31540178443298, 44.80149009475102], + [-118.3088406171582, 44.804522348926994], + [-118.30169665640932, 44.80780475657093], + [-118.28799152838566, 44.81405914341526], + [-118.28668003695641, 44.81465417308355], + [-118.274286400362, 44.82024680663477], + [-118.26415153380121, 44.8247859972401], + [-118.26058127233834, 44.82637686937674], + [-118.24687614431468, 44.8324437561753], + [-118.24124666255014, 44.83491782139665], + [-118.23317101629102, 44.83845024508791], + [-118.21946588826737, 44.84439856668841], + [-118.21795544428633, 44.8450496455532], + [-118.2057607602437, 44.85028362561339], + [-118.19425210939916, 44.855181469709756], + [-118.19205563222005, 44.856112511919164], + [-118.17835050419639, 44.86187967461937], + [-118.17012096788832, 44.86531329386631], + [-118.16464537617273, 44.867589706213366], + [-118.15094024814907, 44.873240906942954], + [-118.14554922782553, 44.87544511802286], + [-118.13723512012541, 44.878833739152526], + [-118.12352999210175, 44.884369671517184], + [-118.12051554964923, 44.88557694217941], + [-118.10982486407809, 44.88984677801794], + [-118.09611973605443, 44.895268134998595], + [-118.09499603312604, 44.895708766335964], + [-118.08241460803077, 44.90063080405596], + [-118.06896206199097, 44.90584059049252], + [-118.06870948000712, 44.90593820961515], + [-118.05500435198346, 44.911187597781854], + [-118.04238070147603, 44.91597241464907], + [-118.0412992239598, 44.916381672667704], + [-118.02759409593614, 44.92151872531974], + [-118.01522819230225, 44.92610423880562], + [-118.01388896791248, 44.92660025596393], + [-118.00018383988882, 44.93162552588539], + [-117.9874696070826, 44.93623606296217], + [-117.98647871186516, 44.93659511015849], + [-117.9727735838415, 44.94150910049133], + [-117.95906845581784, 44.94636714749949], + [-117.95906634588934, 44.946367887118726], + [-117.94536332779418, 44.95117030192608], + [-117.93165819977052, 44.95591728289386], + [-117.92995683037704, 44.95649971127528], + [-117.91795307174687, 44.960609726030555], + [-117.9042479437232, 44.96524602093315], + [-117.90010174357431, 44.96663153543183], + [-117.89054281569955, 44.969827704267665], + [-117.87683768767589, 44.974353610480804], + [-117.86944706165156, 44.97676335958838], + [-117.86313255965223, 44.97882429755421], + [-117.84942743162857, 44.98324002245635], + [-117.83793335183925, 44.986895183744934], + [-117.83572230360491, 44.9875992912996], + [-117.82201717558125, 44.99190494565757], + [-117.80831204755759, 44.99615320497414], + [-117.80545266197653, 44.99702700790149], + [-117.79460691953393, 45.00034778371416], + [-117.78090179151027, 45.004485725555476], + [-117.77191962018243, 45.00715883205804], + [-117.76719666348662, 45.00856765306026], + [-117.75349153546296, 45.012595152436255], + [-117.7397864074393, 45.016564463843885], + [-117.73723885246761, 45.01729065621459], + [-117.72608127941564, 45.02048019745524], + [-117.71237615139198, 45.024338516813536], + [-117.70124901580346, 45.02742248037114], + [-117.69867102336832, 45.02813928050392], + [-117.68496589534466, 45.03188620981457], + [-117.671260767321, 45.035574052281504], + [-117.6637748150333, 45.037554304527696], + [-117.65755563929734, 45.03920554599275], + [-117.64385051127368, 45.04278108421308], + [-117.63014538325002, 45.04629690241664], + [-117.62462868056808, 45.04768612868425], + [-117.61644025522637, 45.049756773353], + [-117.6027351272027, 45.05315914408133], + [-117.58902999917905, 45.05650110252246], + [-117.5835213837988, 45.0578179528408], + [-117.57532487115539, 45.059786453318196], + [-117.56161974313173, 45.06301357367986], + [-117.54791461510807, 45.06617951470225], + [-117.54008983932746, 45.06794977699735], + [-117.53420948708441, 45.06928691090573], + [-117.52050435906075, 45.07233636029011], + [-117.50679923103709, 45.07532377379034], + [-117.4938754456039, 45.078081601153905], + [-117.49309410301343, 45.07824925380816], + [-117.47938897498977, 45.08111824615909], + [-117.46568384696612, 45.083924242965104], + [-117.45197871894246, 45.08666694348814], + [-117.44405523426772, 45.08821342531046], + [-117.4382735909188, 45.089348688747386], + [-117.42456846289514, 45.09196997738588], + [-117.41086333487148, 45.09452686330759], + [-117.39715820684782, 45.09701900734041], + [-117.3896551540311, 45.09834524946701], + [-117.38345307882416, 45.09944869381233], + [-117.3697479508005, 45.101815918542286], + [-117.35604282277684, 45.10411712339747], + [-117.34233769475318, 45.10635191950743], + [-117.32890213278088, 45.10847707362356], + [-117.32863256672952, 45.108520010113445], + [-117.31492743870587, 45.11062583076819], + [-117.3012223106822, 45.112663770552665], + [-117.28751718265855, 45.11463338021681], + [-117.27381205463489, 45.11653419560026], + [-117.26010692661123, 45.11836573665801], + [-117.25820687292227, 45.11860889778011], + [-117.24640179858757, 45.12013113474514], + [-117.23269667056391, 45.12182658253298], + [-117.21899154254025, 45.1234509558296], + [-117.20528641451659, 45.125003697866866], + [-117.19158128649293, 45.126484231918035], + [-117.17787615846927, 45.12789196035031], + [-117.16913987085125, 45.128740721936666], + [-117.16417103044562, 45.129227385182354], + [-117.15046590242196, 45.130490475618096], + [-117.1367607743983, 45.13167857922774], + [-117.12305564637464, 45.132791006350494], + [-117.10935051835098, 45.13382704252023], + [-117.09564539032732, 45.134785947540124], + [-117.08194026230366, 45.13566695455786], + [-117.06823513428, 45.136469269140804], + [-117.05453000625634, 45.137192068349904], + [-117.04082487823268, 45.13783449981143], + [-117.02711975020902, 45.13839568078512], + [-117.01347574865356, 45.13887254609322], + [-117.01341462218537, 45.13887470148902], + [-116.9997094941617, 45.13927137338273], + [-116.98600436613805, 45.13958375920678], + [-116.97229923811439, 45.13981085416664], + [-116.95859411009073, 45.139951619049384], + [-116.94488898206707, 45.140004979225544], + [-116.93118385404341, 45.13996982363306], + [-116.91747872601975, 45.13984500374081], + [-116.90377359799609, 45.13962933248896], + [-116.89006846997243, 45.139321583203426], + [-116.87636334194877, 45.138920488481446], + [-116.87502849095142, 45.13887254609322], + [-116.86265821392512, 45.138425375706696], + [-116.84895308590146, 45.13783440216784], + [-116.8352479578778, 45.13714608463027], + [-116.82154282985414, 45.13635896445483], + [-116.80783770183048, 45.135471535475574], + [-116.79413257380682, 45.13448224263877], + [-116.78042744578316, 45.13338948058678], + [-116.7667223177595, 45.1321915921827], + [-116.75301718973584, 45.1308868669715], + [-116.73931206171218, 45.12947353957347], + [-116.7326905012636, 45.128740721936666], + [-116.72560693368852, 45.12795033739053], + [-116.71190180566487, 45.126315260470406], + [-116.6981966776412, 45.124565788464125], + [-116.68449154961755, 45.122699894128985], + [-116.67078642159389, 45.1207154852483], + [-116.65708129357023, 45.11861040248578], + [-116.65707194945391, 45.11860889778011], + [-116.64337616554657, 45.11638276179393], + [-116.62967103752291, 45.11402961847223], + [-116.61596590949925, 45.11154856749304], + [-116.6022607814756, 45.10893712628213], + [-116.59994431217079, 45.10847707362356], + [-116.58855565345193, 45.1061920968559], + [-116.57485052542827, 45.10331092320687], + [-116.56114539740462, 45.10029093053864], + [-116.55267804773226, 45.09834524946701], + [-116.54744026938096, 45.09712845895412], + [-116.5337351413573, 45.093819633454764], + [-116.52003001333364, 45.090362491154835], + [-116.5118331596086, 45.08821342531046], + [-116.50632488530998, 45.08675229483565], + [-116.49261975728632, 45.082984433283606], + [-116.47891462926266, 45.0790575356376], + [-116.47561656559502, 45.078081601153905], + [-116.465209501239, 45.074963443406084], + [-116.45150437321534, 45.07070073283112], + [-116.44296485623288, 45.06794977699735], + [-116.43779924519168, 45.06626380489296], + [-116.42409411716802, 45.061645831704176], + [-116.41313575715013, 45.0578179528408], + [-116.41038898914437, 45.05684522420283], + [-116.3966838611207, 45.051850440119196], + [-116.38565233088144, 45.04768612868425], + [-116.38297873309705, 45.046662249762505], + [-116.36927360507339, 45.04126675062442], + [-116.36014703780042, 45.037554304527696], + [-116.35556847704973, 45.035663595028986], + [-116.34186334902607, 45.02984082097118], + [-116.33633261484766, 45.02742248037114], + [-116.32815822100241, 45.02379134554449], + [-116.31445309297875, 45.01751172977042], + [-116.31398176656731, 45.01729065621459], + [-116.3007479649551, 45.01098002497467], + [-116.29296810141213, 45.00715883205804], + [-116.28704283693143, 45.00419845671397], + [-116.27333770890777, 44.997155489019676], + [-116.2730931962162, 44.99702700790149], + [-116.25963258088412, 44.9898265579862], + [-116.25429749022308, 44.986895183744934], + [-116.24592745286046, 44.982210593539314], + [-116.23644255829159, 44.97676335958838], + [-116.2322223248368, 44.974292990870666], + [-116.219455003637, 44.96663153543183], + [-116.21851719681314, 44.96605757302125], + [-116.20481206878948, 44.957480399235344], + [-116.20327998674985, 44.95649971127528], + [-116.19110694076582, 44.94854531805554], + [-116.18784935887278, 44.946367887118726], + [-116.17740181274216, 44.93923402113604], + [-116.17310624152519, 44.93623606296217], + [-116.1636966847185, 44.929522539738194], + [-116.15900567194109, 44.92610423880562], + [-116.14999155669484, 44.91938419687349], + [-116.14550733366653, 44.91597241464907], + [-116.13628642867118, 44.908789248676136], + [-116.13257500563876, 44.90584059049252], + [-116.12258130064752, 44.89770446616954], + [-116.12017608774555, 44.895708766335964], + [-116.10887617262387, 44.8860926454916], + [-116.1082811907893, 44.88557694217941], + [-116.096870340719, 44.87544511802286], + [-116.0951710446002, 44.87389644429947], + [-116.08591579991321, 44.86531329386631], + [-116.08146591657655, 44.86107033179053], + [-116.07539301789012, 44.855181469709756], + [-116.06776078855289, 44.84756417521137], + [-116.06528201843281, 44.8450496455532], + [-116.0555691584222, 44.83491782139665], + [-116.05405566052923, 44.833295187269336], + [-116.04624057423965, 44.8247859972401], + [-116.04035053250557, 44.81816529828701], + [-116.03727324743569, 44.81465417308355], + [-116.02865828550122, 44.804522348926994], + [-116.02664540448191, 44.80208367703279], + [-116.02038499436205, 44.79439052477044], + [-116.01294027645825, 44.78491217960418], + [-116.01243400286214, 44.78425870061389], + [-116.00480536145584, 44.77412687645734], + [-115.9992351484346, 44.76644831967116], + [-115.99747853264512, 44.763995052300785], + [-115.99045174208288, 44.75386322814423], + [-115.98553002041093, 44.746490802911495], + [-115.98371053231995, 44.74373140398768], + [-115.97725196837406, 44.73359957983113], + [-115.97182489238727, 44.72472780663699], + [-115.97106308089873, 44.72346775567458], + [-115.96514301227276, 44.713335931518024], + [-115.95947909675003, 44.70320410736147], + [-115.95811976436362, 44.70067873527145], + [-115.95406988319175, 44.69307228320492], + [-115.9489070078848, 44.68294045904837], + [-115.94441463633996, 44.67370199979234], + [-115.94398468932006, 44.672808634891815], + [-115.93930092367657, 44.66267681073526], + [-115.93484798439171, 44.65254498657871], + [-115.9307095083163, 44.642625186222624], + [-115.93062189776137, 44.64241316242216], + [-115.92662046645242, 44.63228133826561], + [-115.92283798129853, 44.622149514109054], + [-115.9192710665568, 44.6120176899525], + [-115.91700438029264, 44.605190428379764], + [-115.91591675100707, 44.60188586579595], + [-115.9127720699649, 44.5917540416394], + [-115.90983367950042, 44.581622217482845], + [-115.90709895366801, 44.57149039332629], + [-115.90456543243857, 44.56135856916974], + [-115.90329925226898, 44.55588301684123], + [-115.90223077091403, 44.55122674501319], + [-115.90009276374924, 44.54109492085664], + [-115.89814949224146, 44.530963096700084], + [-115.89639916660856, 44.52083127254353], + [-115.89484015089113, 44.51069944838698], + [-115.89347096187497, 44.50056762423043], + [-115.89229026824437, 44.490435800073875], + [-115.8912968899631, 44.48030397591732], + [-115.89048979788178, 44.47017215176077], + [-115.88986811357108, 44.46004032760422], + [-115.88959412424532, 44.453702743607835], + [-115.88943106793218, 44.449908503447666], + [-115.88917810505647, 44.439776679291114], + [-115.88910886956693, 44.42964485513456], + [-115.88922308496639, 44.41951303097801], + [-115.88952062477793, 44.40938120682146], + [-115.88959412424532, 44.407839824282036], + [-115.89000143269878, 44.399249382664905], + [-115.89066573775125, 44.38911755850835], + [-115.89151390485509, 44.3789857343518], + [-115.89254644283244, 44.36885391019525], + [-115.89376402255951, 44.358722086038696], + [-115.8951674795149, 44.348590261882144], + [-115.89675781661097, 44.33845843772559], + [-115.89853620731343, 44.32832661356904], + [-115.90050399905368, 44.31819478941249], + [-115.9026627169365, 44.308062965255935], + [-115.90329925226898, 44.30532781099556], + [-115.90501462510052, 44.29793114109938], + [-115.9075615870306, 44.28779931694283], + [-115.91030558358918, 44.27766749278628], + [-115.91324896895644, 44.267535668629726], + [-115.91639430533479, 44.257403844473174], + [-115.91700438029264, 44.25556307030699], + [-115.91974674662015, 44.24727202031662], + [-115.92330818254538, 44.23714019616007], + [-115.92708147278653, 44.22700837200352], + [-115.9307095083163, 44.21779457875339], + [-115.93107069434937, 44.216876547846965], + [-115.9352849795743, 44.20674472369041], + [-115.93972399028763, 44.19661289953386], + [-115.94439226208016, 44.18648107537731], + [-115.94441463633996, 44.18643489197152], + [-115.94930496749943, 44.176349251220756], + [-115.95445893041924, 44.166217427064204], + [-115.95811976436362, 44.15935132048128], + [-115.95986450340772, 44.15608560290765], + [-115.96553489001376, 44.1459537787511], + [-115.97146745809512, 44.13582195459455], + [-115.97182489238727, 44.13523790643134], + [-115.97769027098873, 44.125690130437995], + [-115.98419475308657, 44.11555830628144], + [-115.98553002041093, 44.113565344290414], + [-115.99101205351171, 44.10542648212489], + [-115.99813729059161, 44.09529465796834], + [-115.9992351484346, 44.093796894571206], + [-116.00560858535518, 44.085162833811786], + [-116.01294027645825, 44.07564486736619], + [-116.0134171005015, 44.075031009655234], + [-116.02161563975707, 44.06489918549868], + [-116.02664540448191, 44.05893743389195], + [-116.03020069406773, 44.05476736134213], + [-116.03920463722625, 44.04463553718558], + [-116.04035053250557, 44.0433962835041], + [-116.04868019669146, 44.034503713029025], + [-116.05405566052923, 44.02899728549648], + [-116.05863860274303, 44.02437188887247], + [-116.06776078855289, 44.0155384454548], + [-116.06912457867014, 44.01424006471592], + [-116.08020844423957, 44.00410824055937], + [-116.08146591657655, 44.00300373536224], + [-116.09195557915815, 43.993976416402816], + [-116.0951710446002, 43.99131981241916], + [-116.1044313086278, 43.983844592246264], + [-116.10887617262387, 43.980400024230704], + [-116.1177358625356, 43.97371276808971], + [-116.12258130064752, 43.9702017174448], + [-116.13199581346377, 43.96358094393316], + [-116.13628642867118, 43.96068417107967], + [-116.14737312554762, 43.95344911977661], + [-116.14999155669484, 43.951808583488585], + [-116.1636966847185, 43.94354436690504], + [-116.16408841831257, 43.943317295620055], + [-116.17740181274216, 43.93591157698978], + [-116.1825431806892, 43.9331854714635], + [-116.19110694076582, 43.92882725584015], + [-116.20309265191676, 43.92305364730695], + [-116.20481206878948, 43.92225852070758], + [-116.21851719681314, 43.916260953821556], + [-116.2266840646963, 43.9129218231504], + [-116.2322223248368, 43.91074803512479], + [-116.24592745286046, 43.9057448043566], + [-116.25473788968444, 43.902789998993846], + [-116.25963258088412, 43.90121358545072], + [-116.27333770890777, 43.897183802866856], + [-116.28704283693143, 43.89358984275807], + [-116.29105520142556, 43.892658174837294], + [-116.3007479649551, 43.89049410927973], + [-116.31445309297875, 43.88786429946432], + [-116.32815822100241, 43.88569176533463], + [-116.34186334902607, 43.88399385921864], + [-116.35556847704973, 43.88279261710494], + [-116.36091945960607, 43.88252635068074], + [-116.36927360507339, 43.882123688002466], + [-116.38297873309705, 43.882008886473336], + [-116.3966838611207, 43.88249189554871], + [-116.397093117926, 43.88252635068074], + [-116.41038898914437, 43.88364838585067], + [-116.42409411716802, 43.88554749859815], + [-116.43779924519168, 43.88828763516563], + [-116.45150437321534, 43.89199814686204], + [-116.45336155552828, 43.892658174837294], + [-116.465209501239, 43.896744749712475], + [-116.47891462926266, 43.90266284596636], + [-116.47915045378984, 43.902789998993846], + [-116.49261975728632, 43.90953390747364], + [-116.49829609112655, 43.9129218231504], + [-116.50632488530998, 43.9172343420311], + [-116.51578579759678, 43.92305364730695], + [-116.52003001333364, 43.92534786121884], + [-116.53331078794808, 43.9331854714635], + [-116.5337351413573, 43.93340334670575], + [-116.54744026938096, 43.94095194974572], + [-116.55169098424216, 43.943317295620055], + [-116.56114539740462, 43.94786832754544], + [-116.57362876300121, 43.95344911977661], + [-116.57485052542827, 43.953938561721735], + [-116.58855565345193, 43.95921654258521], + [-116.6022607814756, 43.96345425328445], + [-116.6027373192208, 43.96358094393316], + [-116.61596590949925, 43.967042096052545], + [-116.62967103752291, 43.96964302910831], + [-116.64337616554657, 43.97127041464911], + [-116.65708129357023, 43.97195467856259], + [-116.67078642159389, 43.971684259095454], + [-116.68449154961755, 43.97033480242812], + [-116.6981966776412, 43.96752845402574], + [-116.70884015306149, 43.96358094393316], + [-116.71190180566487, 43.96270266909236], + [-116.72560693368852, 43.956296587564665], + [-116.72945621668786, 43.95344911977661], + [-116.73931206171218, 43.94711766510548], + [-116.74330643184807, 43.943317295620055], + [-116.75301718973584, 43.934217300088235], + [-116.75383941138541, 43.9331854714635], + [-116.76202345714805, 43.92305364730695], + [-116.7667223177595, 43.91570300336632], + [-116.76828949327478, 43.9129218231504], + [-116.77309970061351, 43.902789998993846], + [-116.77640861933088, 43.892658174837294], + [-116.77860113853555, 43.88252635068074], + [-116.78030264591261, 43.87239452652419], + [-116.78042744578316, 43.87176035436495], + [-116.7828086687086, 43.86226270236764], + [-116.78808118468342, 43.852130878211085], + [-116.79413257380682, 43.84656030138522], + [-116.79942898584538, 43.84199905405453], + [-116.80783770183048, 43.83721150889017], + [-116.81659069498339, 43.83186722989798], + [-116.82154282985414, 43.82937627582854], + [-116.8352479578778, 43.82264648517068], + [-116.8376913396375, 43.82173540574143], + [-116.84895308590146, 43.818397597308554], + [-116.86265821392512, 43.816731453222836], + [-116.87636334194877, 43.81604309616671], + [-116.89006846997243, 43.81509412154722], + [-116.90377359799609, 43.81380901427909], + [-116.91747872601975, 43.81435248119724], + [-116.93118385404341, 43.81721572135458], + [-116.94488898206707, 43.81701513111838], + [-116.95473275434757, 43.811603581584876], + [-116.95859411009073, 43.80702717384809], + [-116.96093635692603, 43.801471757428324], + [-116.95859411009073, 43.79419325528071], + [-116.95617587302401, 43.79133993327177], + [-116.94738022079105, 43.78120810911522], + [-116.94752837491072, 43.77107628495867], + [-116.95859411009073, 43.76209456172517], + [-116.97229923811439, 43.761171329630955], + [-116.97861308097863, 43.760944460802115], + [-116.98600436613805, 43.760796032384334], + [-116.9997094941617, 43.758631870059745], + [-117.01341462218537, 43.75342066559516], + [-117.01829176255394, 43.75081263664556], + [-117.02711975020902, 43.744592849418666], + [-117.03215838994667, 43.74068081248901], + [-117.03925501437648, 43.73054898833246], + [-117.04082487823268, 43.72412649467213], + [-117.04240740975897, 43.720417164175906], + [-117.04286763512744, 43.710285340019354], + [-117.04232182546934, 43.7001535158628], + [-117.04249076568155, 43.69002169170625], + [-117.04357750480814, 43.6798898675497], + [-117.0448805035839, 43.669758043393145], + [-117.04588518086292, 43.65962621923659], + [-117.04648922987535, 43.64949439508004], + [-117.04682062891749, 43.63936257092349], + [-117.04707186578445, 43.629230746766936], + [-117.04740087742876, 43.619098922610384], + [-117.04788993182156, 43.60896709845383], + [-117.0485529892255, 43.59883527429728], + [-117.0493657900345, 43.58870345014073], + [-117.0502933624564, 43.578571625984175], + [-117.05130534520568, 43.56843980182762], + [-117.05238115035499, 43.55830797767107], + [-117.05350972617794, 43.54817615351452], + [-117.05453000625634, 43.5393234555306], + [-117.05469290239087, 43.538044329357966], + [-117.05596075736011, 43.527912505201414], + [-117.05727779302964, 43.51778068104486], + [-117.0586484282306, 43.50764885688831], + [-117.06007663190239, 43.49751703273176], + [-117.061565102078, 43.487385208575205], + [-117.06311493249912, 43.47725338441865], + [-117.06472563589723, 43.4671215602621], + [-117.066395387978, 43.45698973610555], + [-117.06812137610152, 43.446857911948996], + [-117.06823513428, 43.44618229818058], + [-117.06994277627457, 43.436726087792444], + [-117.07181550214565, 43.42659426363589], + [-117.07373321102685, 43.41646243947934], + [-117.07569271244445, 43.40633061532279], + [-117.0776912175578, 43.396198791166235], + [-117.0797265407075, 43.38606696700968], + [-117.08179726913679, 43.37593514285313], + [-117.08194026230366, 43.375222370366664], + [-117.0839514557976, 43.36580331869658], + [-117.08614357091992, 43.355671494540026], + [-117.08837157605382, 43.345539670383474], + [-117.09063813584308, 43.33540784622692], + [-117.0929470429448, 43.32527602207037], + [-117.09530321700063, 43.31514419791382], + [-117.09564539032732, 43.31366101045751], + [-117.0977606687251, 43.305012373757265], + [-117.10028501392063, 43.29488054960071], + [-117.10287610419536, 43.28474872544416], + [-117.1055428207135, 43.27461690128761], + [-117.10829481852848, 43.264485077131056], + [-117.10935051835098, 43.260648796519305], + [-117.11118073531826, 43.254353252974504], + [-117.11419475761697, 43.24422142881795], + [-117.11732486927582, 43.2340896046614], + [-117.12058259162409, 43.22395778050485], + [-117.12305564637464, 43.2165181800549], + [-117.12399808257216, 43.213825956348295], + [-117.12761417847567, 43.20369413219174], + [-117.1313911008469, 43.19356230803519], + [-117.13533996598937, 43.18343048387864], + [-117.1367607743983, 43.17987831386483], + [-117.13952263275793, 43.173298659722086], + [-117.14392443814711, 43.163166835565534], + [-117.14852709562997, 43.15303501140898], + [-117.15046590242196, 43.1488857338372], + [-117.153392312048, 43.14290318725243], + [-117.15851054405104, 43.13277136309588], + [-117.16385162482771, 43.122639538939325], + [-117.16417103044562, 43.12204447762189], + [-117.1695170466046, 43.11250771478277], + [-117.17542088544785, 43.10237589062622], + [-117.17787615846927, 43.09826635609869], + [-117.18162890949742, 43.09224406646967], + [-117.18812129296077, 43.082112242313116], + [-117.19158128649293, 43.07684834230919], + [-117.19491442981726, 43.07198041815656], + [-117.2020130715288, 43.06184859400001], + [-117.20528641451659, 43.057276371875105], + [-117.20942778249758, 43.05171676984346], + [-117.21714258522896, 43.04158494568691], + [-117.21899154254025, 43.0391929359156], + [-117.22520963301017, 43.031453121530355], + [-117.23269667056391, 43.02233354918676], + [-117.23356021502522, 43.0213212973738], + [-117.24228830039098, 43.01118947321725], + [-117.24640179858757, 43.006488605751855], + [-117.2513351463513, 43.0010576490607], + [-117.26010692661123, 42.99153885682313], + [-117.2606932416233, 42.990925824904146], + [-117.27044429719717, 42.98079400074759], + [-117.27381205463489, 42.97733051714292], + [-117.28053564874087, 42.97066217659104], + [-117.28751718265855, 42.963799638701914], + [-117.29096540839207, 42.96053035243449], + [-117.3012223106822, 42.95087258440075], + [-117.30174418623707, 42.95039852827794], + [-117.31292801749318, 42.940266704121385], + [-117.31492743870587, 42.93846290778147], + [-117.32448877425581, 42.93013487996483], + [-117.32863256672952, 42.92653726020552], + [-117.33642665339512, 42.92000305580828], + [-117.34233769475318, 42.915056553636255], + [-117.34875365848399, 42.90987123165173], + [-117.35604282277684, 42.90398348108665], + [-117.36148236968613, 42.899739407495176], + [-117.3697479508005, 42.89328661016985], + [-117.37462594751604, 42.88960758333862], + [-117.38345307882416, 42.88293930117762], + [-117.38819813785837, 42.87947575918207], + [-117.39715820684782, 42.87291885399914], + [-117.40221327826457, 42.86934393502552], + [-117.41086333487148, 42.86320582946999], + [-117.41668630553659, 42.85921211086897], + [-117.42456846289514, 42.85378350503521], + [-117.4316327646041, 42.849080286712415], + [-117.4382735909188, 42.84463743481339], + [-117.44706881870003, 42.83894846255586], + [-117.45197871894246, 42.83575509152314], + [-117.46301126083945, 42.82881663839931], + [-117.46568384696612, 42.82712557312227], + [-117.47938897498977, 42.81873867150017], + [-117.47947989217249, 42.81868481424276], + [-117.49309410301343, 42.81056244770717], + [-117.49657729633859, 42.808552990086206], + [-117.50679923103709, 42.80261114802561], + [-117.51425255360736, 42.79842116592965], + [-117.52050435906075, 42.79487848221542], + [-117.5325260589415, 42.7882893417731], + [-117.53420948708441, 42.787358909658906], + [-117.54791461510807, 42.780023949334606], + [-117.55151877393767, 42.77815751761655], + [-117.56161974313173, 42.77287901903836], + [-117.57122148980318, 42.76802569346], + [-117.57532487115539, 42.76593208159497], + [-117.58902999917905, 42.759164012680486], + [-117.59168711789108, 42.757893869303444], + [-117.6027351272027, 42.75255996799345], + [-117.61300926033157, 42.74776204514689], + [-117.61644025522637, 42.74614342736707], + [-117.63014538325002, 42.739884551913164], + [-117.63524700767529, 42.73763022099034], + [-117.64385051127368, 42.73378777346649], + [-117.65755563929734, 42.727866749893344], + [-117.65843662817352, 42.72749839683379], + [-117.671260767321, 42.72207679955082], + [-117.68278082468875, 42.717366572677236], + [-117.68496589534466, 42.716463091303], + [-117.69867102336832, 42.7109801615489], + [-117.70835188313191, 42.70723474852068], + [-117.71237615139198, 42.7056597239258], + [-117.72608127941564, 42.70047234740328], + [-117.73528880118842, 42.69710292436413], + [-117.7397864074393, 42.695437448990106], + [-117.75349153546296, 42.6905319258448], + [-117.7637846679723, 42.68697110020758], + [-117.76719666348662, 42.68577637433943], + [-117.78090179151027, 42.68114092980942], + [-117.7940645265208, 42.67683927605103], + [-117.79460691953393, 42.676659820108995], + [-117.80831204755759, 42.67228434766091], + [-117.82201717558125, 42.668058936379204], + [-117.82656303411453, 42.666707451894474], + [-117.83572230360491, 42.663949701290356], + [-117.84942743162857, 42.659970109746745], + [-117.86154975260888, 42.65657562773792], + [-117.86313255965223, 42.65612669464755], + [-117.87683768767589, 42.652386220165425], + [-117.89054281569955, 42.648782248790546], + [-117.89978537201618, 42.64644380358137], + [-117.9042479437232, 42.6452998987452], + [-117.91795307174687, 42.641925506157435], + [-117.93165819977052, 42.63868100817676], + [-117.9420818814959, 42.63631197942482], + [-117.94536332779418, 42.63555624807906], + [-117.95906845581784, 42.632534019421534], + [-117.9727735838415, 42.62963631951217], + [-117.98647871186516, 42.62686100981407], + [-117.99000327032275, 42.626180155268266], + [-118.00018383988882, 42.62418685525218], + [-118.01388896791248, 42.621626228099224], + [-118.02759409593614, 42.619184065939464], + [-118.0412992239598, 42.616858728543505], + [-118.04633858567209, 42.61604833111171], + [-118.05500435198346, 42.61463562721356], + [-118.06870948000712, 42.61252029727512], + [-118.08241460803077, 42.61051906344229], + [-118.09611973605443, 42.60863070746023], + [-118.10982486407809, 42.60685411713704], + [-118.11755560719513, 42.60591650695516], + [-118.12352999210175, 42.60518185482583], + [-118.13723512012541, 42.60361237299303], + [-118.15094024814907, 42.60215319002267], + [-118.16464537617273, 42.60080354180319], + [-118.17835050419639, 42.59956275352748], + [-118.19205563222005, 42.598430236767115], + [-118.2057607602437, 42.59740548671553], + [-118.21946588826737, 42.59648807959199], + [-118.23137064711096, 42.59578468279861], + [-118.23317101629102, 42.59567681456734], + [-118.24687614431468, 42.59496759453482], + [-118.26058127233834, 42.59436588860731], + [-118.274286400362, 42.59387153911447], + [-118.28799152838566, 42.59348445902941], + [-118.30169665640932, 42.59320463016978], + [-118.31540178443298, 42.59303210151503], + [-118.32910691245664, 42.59296698763523], + [-118.3428120404803, 42.59300946722652], + [-118.35651716850396, 42.59315978174918], + [-118.37022229652761, 42.593418234164034], + [-118.38392742455127, 42.59378518776361], + [-118.39763255257493, 42.594261065094386], + [-118.41133768059859, 42.59484634696686], + [-118.42504280862225, 42.59554157155033], + [-118.42919957496076, 42.59578468279861], + [-118.43874793664591, 42.59634376705483], + [-118.45245306466957, 42.597255062036005], + [-118.46615819269323, 42.598277759998], + [-118.47986332071689, 42.599412651983954], + [-118.49356844874055, 42.60066058296807], + [-118.5072735767642, 42.602022451430145], + [-118.52097870478786, 42.603499208998606], + [-118.53468383281152, 42.605091860160215], + [-118.54132318699415, 42.60591650695516], + [-118.54838896083518, 42.60679665506058], + [-118.56209408885884, 42.608614679483466], + [-118.5757992168825, 42.61055169414935], + [-118.58950434490616, 42.61260894462834], + [-118.60320947292982, 42.61478772900211], + [-118.61074566459891, 42.61604833111171], + [-118.61691460095348, 42.617084366351285], + [-118.63061972897714, 42.6194989708487], + [-118.6443248570008, 42.62203925963116], + [-118.65802998502446, 42.62470677519263], + [-118.66528278771487, 42.626180155268266], + [-118.67173511304811, 42.6274973826514], + [-118.68544024107177, 42.63041197515419], + [-118.69914536909543, 42.63345883502402], + [-118.71145034533193, 42.63631197942482], + [-118.71285049711909, 42.63663846956731], + [-118.72655562514275, 42.63994266598625], + [-118.74026075316641, 42.64338489674345], + [-118.75198046127015, 42.64644380358137], + [-118.75396588119007, 42.64696532277326], + [-118.76767100921373, 42.65067704226005], + [-118.78137613723739, 42.65453332750518], + [-118.78840323743948, 42.65657562773792], + [-118.79508126526105, 42.65853031463699], + [-118.8087863932847, 42.6626702508283], + [-118.82168632396923, 42.666707451894474], + [-118.82249152130836, 42.66696138689212], + [-118.83619664933202, 42.67139571772068], + [-118.84990177735568, 42.67598753585409], + [-118.8523800566024, 42.67683927605103], + [-118.86360690537934, 42.68073028634373], + [-118.877312033403, 42.68563448113778], + [-118.88095407773822, 42.68697110020758], + [-118.89101716142666, 42.690697483265645], + [-118.90472228945032, 42.695927748674286], + [-118.90772926044478, 42.69710292436413], + [-118.91842741747398, 42.7013240257064], + [-118.93213254549764, 42.70689544014809], + [-118.93294978594608, 42.70723474852068], + [-118.9458376735213, 42.71264007833316], + [-118.95678863427348, 42.717366572677236], + [-118.95954280154496, 42.71856787328802], + [-118.97324792956861, 42.72467954951627], + [-118.9794154828415, 42.72749839683379], + [-118.98695305759227, 42.73098196490109], + [-119.00065818561593, 42.73748043286199], + [-119.000968194181, 42.73763022099034], + [-119.01436331363959, 42.744178816937264], + [-119.02151602370368, 42.74776204514689], + [-119.02806844166325, 42.751084756977754], + [-119.04118402520612, 42.757893869303444], + [-119.04177356968691, 42.758203824959175], + [-119.05547869771057, 42.765543187998645], + [-119.06001511914981, 42.76802569346], + [-119.06918382573423, 42.77311012839473], + [-119.07809314263982, 42.77815751761655], + [-119.08288895375789, 42.7809120240718], + [-119.09547132958693, 42.7882893417731], + [-119.09659408178155, 42.78895704714389], + [-119.1102992098052, 42.79725579108641], + [-119.11218869181036, 42.79842116592965], + [-119.12400433782886, 42.805817908226125], + [-119.12829205665238, 42.808552990086206], + [-119.13770946585252, 42.814653301994895], + [-119.1438213656983, 42.81868481424276], + [-119.15141459387618, 42.82377362606514], + [-119.15880908839286, 42.82881663839931], + [-119.16511972189984, 42.8331916561194], + [-119.17328466306513, 42.83894846255586], + [-119.1788248499235, 42.84292139607459], + [-119.18727481077843, 42.849080286712415], + [-119.19252997794716, 42.85297819753159], + [-119.20080381057899, 42.85921211086897], + [-119.20623510597082, 42.86337889438582], + [-119.21389374155139, 42.86934393502552], + [-119.21994023399448, 42.87414195486536], + [-119.22656469623796, 42.87947575918207], + [-119.23364536201814, 42.88528765365992], + [-119.23883496927584, 42.88960758333862], + [-119.2473504900418, 42.896838267279335], + [-119.25072122452221, 42.899739407495176], + [-119.26105561806546, 42.90881829635395], + [-119.2622386434519, 42.90987123165173], + [-119.27340163210302, 42.92000305580828], + [-119.27476074608911, 42.92126182446822], + [-119.28422386556008, 42.93013487996483], + [-119.28846587411277, 42.934202030252514], + [-119.29471676738937, 42.940266704121385], + [-119.30217100213643, 42.947667250334085], + [-119.30489091639501, 42.95039852827794], + [-119.31475730622093, 42.96053035243449], + [-119.31587613016009, 42.961703574037195], + [-119.32432811172488, 42.97066217659104], + [-119.32958125818375, 42.97637155559158], + [-119.33360856362387, 42.98079400074759], + [-119.34260708877463, 42.990925824904146], + [-119.34328638620741, 42.99170713244528], + [-119.35133769843335, 43.0010576490607], + [-119.35699151423107, 43.00780600238873], + [-119.35980000958259, 43.01118947321725], + [-119.3680054092408, 43.0213212973738], + [-119.37069664225473, 43.02472903834112], + [-119.37596097670362, 43.031453121530355], + [-119.3836669923806, 43.04158494568691], + [-119.38440177027839, 43.042573817347105], + [-119.39114052281188, 43.05171676984346], + [-119.39810689830205, 43.06147386133526], + [-119.39837238616946, 43.06184859400001], + [-119.40538463929673, 43.07198041815656], + [-119.4118120263257, 43.08158246374917], + [-119.41216410644435, 43.082112242313116], + [-119.41873411901808, 43.09224406646967], + [-119.42507981901723, 43.10237589062622], + [-119.42551715434936, 43.103092622501414], + [-119.43122503188476, 43.11250771478277], + [-119.43715616103307, 43.122639538939325], + [-119.43922228237302, 43.12627710084131], + [-119.4428891416153, 43.13277136309588], + [-119.44842202726764, 43.14290318725243], + [-119.45292741039668, 43.15145666261113], + [-119.45375427139936, 43.15303501140898], + [-119.45890359502673, 43.163166835565534], + [-119.46385613026379, 43.173298659722086], + [-119.46663253842034, 43.17918742685612], + [-119.46862354439425, 43.18343048387864], + [-119.47321213707949, 43.19356230803519], + [-119.47761343573286, 43.20369413219174], + [-119.480337666444, 43.21021951529918], + [-119.48183713908212, 43.213825956348295], + [-119.48589130852599, 43.22395778050485], + [-119.48976654621744, 43.2340896046614], + [-119.49346547528329, 43.24422142881795], + [-119.49404279446766, 43.24586944252415], + [-119.49700505648764, 43.254353252974504], + [-119.500375802238, 43.264485077131056], + [-119.50357726372658, 43.27461690128761], + [-119.5066116891846, 43.28474872544416], + [-119.50774792249132, 43.28874188694903], + [-119.50949032400999, 43.29488054960071], + [-119.51221161163524, 43.305012373757265], + [-119.51477166597245, 43.31514419791382], + [-119.51717238884888, 43.32527602207037], + [-119.51941560687256, 43.33540784622692], + [-119.52145305051498, 43.34529518166363], + [-119.5215033541714, 43.345539670383474], + [-119.52344777797352, 43.355671494540026], + [-119.52523912503283, 43.36580331869658], + [-119.52687890299968, 43.37593514285313], + [-119.52836854930182, 43.38606696700968], + [-119.52970943185383, 43.396198791166235], + [-119.53090284972824, 43.40633061532279], + [-119.53195003378866, 43.41646243947934], + [-119.53285214728653, 43.42659426363589], + [-119.53361028642136, 43.436726087792444], + [-119.53422548086604, 43.446857911948996], + [-119.5346986942573, 43.45698973610555], + [-119.53503082465221, 43.4671215602621], + [-119.53515817853864, 43.47383306724233], + [-119.53522312522625, 43.47725338441865] + ], + [ + [-114.0136927073745, 42.54512556201585], + [-114.01414284136537, 42.5552573861724], + [-114.01288251260199, 42.56538921032895], + [-114.01199158500403, 42.56832486014446], + [-114.00984284361346, 42.575521034485504], + [-114.00469398783419, 42.58565285864206], + [-113.99828645698037, 42.59453871842251], + [-113.99717267819241, 42.59578468279861], + [-113.98658048640402, 42.60591650695516], + [-113.98458132895671, 42.60772974231212], + [-113.97238581012545, 42.61604833111171], + [-113.97087620093305, 42.61715550539719], + [-113.95717107290939, 42.62496835091605], + [-113.95453105234772, 42.626180155268266], + [-113.94346594488573, 42.63241347550435], + [-113.93611428483877, 42.63631197942482], + [-113.92976081686207, 42.64033376912334], + [-113.92025294166112, 42.64644380358137], + [-113.91605568883841, 42.64940515813895], + [-113.90592934448148, 42.65657562773792], + [-113.90235056081475, 42.65913746869773], + [-113.89121753898787, 42.666707451894474], + [-113.8886454327911, 42.66840961538033], + [-113.87494030476743, 42.67649029671274], + [-113.87424677356063, 42.67683927605103], + [-113.86123517674378, 42.68327874891987], + [-113.85173706906531, 42.68697110020758], + [-113.84753004872012, 42.688646906897716], + [-113.83382492069646, 42.692824685533246], + [-113.8201197926728, 42.695698963530006], + [-113.80867765727439, 42.69710292436413], + [-113.80641466464914, 42.697411991475825], + [-113.79270953662548, 42.69801685518446], + [-113.77900440860182, 42.697331846567685], + [-113.77743213882752, 42.69710292436413], + [-113.76529928057816, 42.69537093453644], + [-113.7515941525545, 42.69183887629663], + [-113.73942929514874, 42.68697110020758], + [-113.73788902453084, 42.68634347686286], + [-113.72418389650718, 42.67885748014091], + [-113.72132231874359, 42.67683927605103], + [-113.71047876848353, 42.66931667582945], + [-113.70730737454447, 42.666707451894474], + [-113.69677364045987, 42.65894511027814], + [-113.69373114701662, 42.65657562773792], + [-113.68306851243621, 42.65007196732361], + [-113.67587924645505, 42.64644380358137], + [-113.66936338441255, 42.644095270934905], + [-113.65565825638889, 42.641034226722084], + [-113.64195312836523, 42.639588098461886], + [-113.62824800034157, 42.63846774218043], + [-113.61454287231791, 42.63670254312647], + [-113.613242923384, 42.63631197942482], + [-113.60083774429425, 42.63343095210009], + [-113.5871326162706, 42.62930601104247], + [-113.5767144452266, 42.626180155268266], + [-113.57342748824694, 42.623720350898886], + [-113.55972236022328, 42.61685377992577], + [-113.55744839754301, 42.61604833111171], + [-113.54601723219962, 42.60733883315857], + [-113.54317166969987, 42.60591650695516], + [-113.53232590671482, 42.59578468279861], + [-113.53231210417596, 42.595762725751904], + [-113.52256912269297, 42.58565285864206], + [-113.5186069761523, 42.579421667941304], + [-113.51508574339283, 42.575521034485504], + [-113.5090444694288, 42.56538921032895], + [-113.50490184812864, 42.55544806402605], + [-113.50479908494258, 42.5552573861724], + [-113.50157689072657, 42.54512556201585], + [-113.50001803789074, 42.534993737859295], + [-113.49997132183358, 42.52486191370274], + [-113.50138460443267, 42.51473008954619], + [-113.50426325412636, 42.50459826538964], + [-113.50490184812864, 42.503075853927605], + [-113.50828191712884, 42.49446644123309], + [-113.51372480344818, 42.484334617076534], + [-113.5186069761523, 42.47726335778495], + [-113.52062998239097, 42.47420279291998], + [-113.52885492697327, 42.46407096876343], + [-113.53231210417596, 42.460524689920994], + [-113.53862821390881, 42.45393914460688], + [-113.54601723219962, 42.447450398708774], + [-113.55018764825267, 42.443807320450325], + [-113.55972236022328, 42.436632179851365], + [-113.56376876347474, 42.43367549629377], + [-113.57342748824694, 42.42746399570343], + [-113.57987373411532, 42.42354367213722], + [-113.5871326162706, 42.41957722546278], + [-113.59940673363384, 42.41341184798067], + [-113.60083774429425, 42.41275336223344], + [-113.61454287231791, 42.40685837876366], + [-113.62398841416338, 42.40328002382412], + [-113.62824800034157, 42.40176513719972], + [-113.64195312836523, 42.39738516255913], + [-113.65565825638889, 42.39368744996993], + [-113.65795857554376, 42.393148199667564], + [-113.66936338441255, 42.390565816377894], + [-113.68306851243621, 42.3880211677949], + [-113.69677364045987, 42.3860330723039], + [-113.71047876848353, 42.38457663061803], + [-113.72418389650718, 42.38363489334134], + [-113.73788902453084, 42.38319936400248], + [-113.7515941525545, 42.38327024390179], + [-113.76529928057816, 42.383857551332085], + [-113.77900440860182, 42.38498391290792], + [-113.79270953662548, 42.38668876054653], + [-113.80641466464914, 42.38903235265606], + [-113.8201197926728, 42.392097069110214], + [-113.8238860075606, 42.393148199667564], + [-113.83382492069646, 42.395791950384414], + [-113.84753004872012, 42.40031081120322], + [-113.85505282995018, 42.40328002382412], + [-113.86123517674378, 42.40570206019717], + [-113.87494030476743, 42.412050150366746], + [-113.87758835825726, 42.41341184798067], + [-113.8886454327911, 42.41937388821177], + [-113.89571517401735, 42.42354367213722], + [-113.90235056081475, 42.427791330064714], + [-113.91126665251342, 42.43367549629377], + [-113.91605568883841, 42.43719438946594], + [-113.92538373197601, 42.443807320450325], + [-113.92976081686207, 42.44727310076698], + [-113.93899767995846, 42.45393914460688], + [-113.94346594488573, 42.45744897203959], + [-113.95285283058338, 42.46407096876343], + [-113.95717107290939, 42.46725228662868], + [-113.96693731122342, 42.47420279291998], + [-113.97087620093305, 42.4770659332263], + [-113.97971235962038, 42.484334617076534], + [-113.98458132895671, 42.488599427672874], + [-113.9897501635004, 42.49446644123309], + [-113.99729936373706, 42.50459826538964], + [-113.99828645698037, 42.505843139263554], + [-114.00361912743209, 42.51473008954619], + [-114.00834151234791, 42.52486191370274], + [-114.01164032150294, 42.534993737859295], + [-114.01199158500403, 42.536610524953375], + [-114.0136927073745, 42.54512556201585] + ], + [ + [-114.95892991047133, 42.575521034485504], + [-114.96312156614681, 42.58565285864206], + [-114.96619793402144, 42.59578468279861], + [-114.96825748779179, 42.60591650695516], + [-114.96937345527397, 42.61604833111171], + [-114.96959165280397, 42.626180155268266], + [-114.96892762417441, 42.63631197942482], + [-114.96736306619606, 42.64644380358137], + [-114.96484155039411, 42.65657562773792], + [-114.96126357542884, 42.666707451894474], + [-114.9576454186365, 42.674426216185296], + [-114.95659689617929, 42.67683927605103], + [-114.95099123661362, 42.68697110020758], + [-114.94394029061284, 42.69689777364858], + [-114.94379993768524, 42.69710292436413], + [-114.93539813961338, 42.70723474852068], + [-114.93023516258918, 42.71229865878816], + [-114.92495367539026, 42.717366572677236], + [-114.91653003456553, 42.7240856559338], + [-114.91193400590328, 42.72749839683379], + [-114.90282490654187, 42.73328825603011], + [-114.89494050419277, 42.73763022099034], + [-114.88911977851821, 42.74047341797946], + [-114.87541465049455, 42.74595022785014], + [-114.86947943083139, 42.74776204514689], + [-114.86170952247089, 42.74998451215532], + [-114.84800439444723, 42.75271205365038], + [-114.83429926642357, 42.7541481501015], + [-114.82059413839991, 42.75440511352331], + [-114.80688901037625, 42.75354095000205], + [-114.7931838823526, 42.75152573083763], + [-114.77947875432893, 42.748184685199995], + [-114.77836558083723, 42.74776204514689], + [-114.76577362630528, 42.744251991835796], + [-114.75206849828162, 42.738832409877325], + [-114.74991880517621, 42.73763022099034], + [-114.73836337025796, 42.73293217679827], + [-114.72862610585078, 42.72749839683379], + [-114.7246582422343, 42.725865865817795], + [-114.71095311421064, 42.718539968911976], + [-114.70905204359273, 42.717366572677236], + [-114.69724798618698, 42.7115037017722], + [-114.68881789181685, 42.70723474852068], + [-114.68354285816332, 42.70477043143549], + [-114.66983773013966, 42.69914080872036], + [-114.66371414154956, 42.69710292436413], + [-114.656132602116, 42.69446899621769], + [-114.64242747409234, 42.69031255299942], + [-114.63170501191782, 42.68697110020758], + [-114.62872234606868, 42.68584866318543], + [-114.61501721804503, 42.680062264742475], + [-114.60862743277612, 42.67683927605103], + [-114.60131209002137, 42.67074517381703], + [-114.59679976890996, 42.666707451894474], + [-114.59171301113408, 42.65657562773792], + [-114.59107859457953, 42.64644380358137], + [-114.5930528553438, 42.63631197942482], + [-114.59678904335306, 42.626180155268266], + [-114.60131209002137, 42.6177011642807], + [-114.60191539904376, 42.61604833111171], + [-114.60569153118014, 42.60591650695516], + [-114.61086150030454, 42.59578468279861], + [-114.61501721804503, 42.5885511393762], + [-114.61638004209006, 42.58565285864206], + [-114.62121355044695, 42.575521034485504], + [-114.62661951455411, 42.56538921032895], + [-114.62872234606868, 42.56132663841244], + [-114.63248982859353, 42.5552573861724], + [-114.63923246959904, 42.54512556201585], + [-114.64242747409234, 42.54054922697579], + [-114.64736385416268, 42.534993737859295], + [-114.656132602116, 42.52575738825287], + [-114.65724078488465, 42.52486191370274], + [-114.66968832090062, 42.51473008954619], + [-114.66983773013966, 42.51460794022433], + [-114.68354285816332, 42.50579800146197], + [-114.68602605645292, 42.50459826538964], + [-114.69724798618698, 42.498788743913614], + [-114.70849281460583, 42.49446644123309], + [-114.71095311421064, 42.49343880398266], + [-114.7246582422343, 42.489015217896245], + [-114.73836337025796, 42.48581854371609], + [-114.74747452643666, 42.484334617076534], + [-114.75206849828162, 42.48349088319917], + [-114.76577362630528, 42.4819090204155], + [-114.77947875432893, 42.48118603768064], + [-114.7931838823526, 42.48127423832086], + [-114.80688901037625, 42.48216757820466], + [-114.82059413839991, 42.48389415729276], + [-114.82300131200333, 42.484334617076534], + [-114.83429926642357, 42.48632070860434], + [-114.84800439444723, 42.48963825083719], + [-114.86170952247089, 42.49401573617105], + [-114.86289749452499, 42.49446644123309], + [-114.87541465049455, 42.49926976902602], + [-114.88662141983485, 42.50459826538964], + [-114.88911977851821, 42.505830137181306], + [-114.90282490654187, 42.51374490262121], + [-114.90432625725151, 42.51473008954619], + [-114.91653003456553, 42.523389099371556], + [-114.91838275301959, 42.52486191370274], + [-114.92985258637569, 42.534993737859295], + [-114.93023516258918, 42.535372047858374], + [-114.93940269770437, 42.54512556201585], + [-114.94394029061284, 42.550854879854214], + [-114.94726572190643, 42.5552573861724], + [-114.95374922331133, 42.56538921032895], + [-114.9576454186365, 42.57298775561533], + [-114.95892991047133, 42.575521034485504] + ], + [ + [-117.08194026230366, 43.97695961990943], + [-117.0871867997788, 43.983844592246264], + [-117.09140657165014, 43.993976416402816], + [-117.09305544013806, 44.00410824055937], + [-117.0925306554588, 44.01424006471592], + [-117.0898251840492, 44.02437188887247], + [-117.08476607716904, 44.034503713029025], + [-117.08194026230366, 44.03872550281173], + [-117.07704415113658, 44.04463553718558], + [-117.06823513428, 44.053217345059345], + [-117.06609045999559, 44.05476736134213], + [-117.05453000625634, 44.06283176368848], + [-117.0502968990489, 44.06489918549868], + [-117.04082487823268, 44.06990654413104], + [-117.02711975020902, 44.07495179921449], + [-117.02681615899769, 44.075031009655234], + [-117.01341462218537, 44.07932757913934], + [-116.9997094941617, 44.082717913594486], + [-116.98870105381074, 44.085162833811786], + [-116.98600436613805, 44.08592696434802], + [-116.97229923811439, 44.090035718714695], + [-116.9591695104854, 44.09529465796834], + [-116.95859411009073, 44.09555631766747], + [-116.94488898206707, 44.10305525729536], + [-116.94111191478292, 44.10542648212489], + [-116.93118385404341, 44.1112903950014], + [-116.92375336536193, 44.11555830628144], + [-116.91747872601975, 44.118938152538654], + [-116.90377359799609, 44.12528552570216], + [-116.90270893590379, 44.125690130437995], + [-116.89006846997243, 44.13055455451456], + [-116.87636334194877, 44.134326272509185], + [-116.86814718536947, 44.13582195459455], + [-116.86265821392512, 44.13694580286492], + [-116.84895308590146, 44.138530762781755], + [-116.8352479578778, 44.13891491693971], + [-116.82154282985414, 44.1381078142], + [-116.80783770183048, 44.136020121267485], + [-116.80699361531758, 44.13582195459455], + [-116.79413257380682, 44.132884992904515], + [-116.78042744578316, 44.128080775437645], + [-116.77517765533536, 44.125690130437995], + [-116.7667223177595, 44.1214530149147], + [-116.75738211822676, 44.11555830628144], + [-116.75301718973584, 44.112216710100995], + [-116.74510788110518, 44.10542648212489], + [-116.73931206171218, 44.09866490701836], + [-116.736450205376, 44.09529465796834], + [-116.73024714728184, 44.085162833811786], + [-116.72656824542902, 44.075031009655234], + [-116.72560693368852, 44.06945751760869], + [-116.72464029623706, 44.06489918549868], + [-116.72458113386767, 44.05476736134213], + [-116.72560693368852, 44.049790492273104], + [-116.7264640863704, 44.04463553718558], + [-116.73014761008557, 44.034503713029025], + [-116.7369850904954, 44.02437188887247], + [-116.73931206171218, 44.02201312615051], + [-116.74709185356144, 44.01424006471592], + [-116.75301718973584, 44.01025680846988], + [-116.7639631955127, 44.00410824055937], + [-116.7667223177595, 44.002919998703085], + [-116.78042744578316, 43.99778495087122], + [-116.79413257380682, 43.994427906778284], + [-116.79653091978622, 43.993976416402816], + [-116.80783770183048, 43.991938201159535], + [-116.82154282985414, 43.990458994630465], + [-116.8352479578778, 43.98990002309571], + [-116.84895308590146, 43.9901369642241], + [-116.86265821392512, 43.99099644920258], + [-116.87636334194877, 43.99206802380406], + [-116.89006846997243, 43.99239078479071], + [-116.90377359799609, 43.9901975562597], + [-116.91648421132619, 43.983844592246264], + [-116.91747872601975, 43.98340976881947], + [-116.93118385404341, 43.97456930091547], + [-116.9322945754438, 43.97371276808971], + [-116.94488898206707, 43.96727860552231], + [-116.95565917737206, 43.96358094393316], + [-116.95859411009073, 43.96277193331079], + [-116.97229923811439, 43.962281897000295], + [-116.97417943931502, 43.96358094393316], + [-116.98600436613805, 43.96681444309526], + [-116.9997094941617, 43.97353572546294], + [-117.00184867082109, 43.97371276808971], + [-117.01341462218537, 43.97427402380936], + [-117.01474573085193, 43.97371276808971], + [-117.02711975020902, 43.96545518846686], + [-117.03374878949032, 43.96358094393316], + [-117.04082487823268, 43.957503867402764], + [-117.05453000625634, 43.95847539819558], + [-117.06640009531058, 43.96358094393316], + [-117.06823513428, 43.964617644994874], + [-117.07958508176003, 43.97371276808971], + [-117.08194026230366, 43.97695961990943] + ], + [ + [-119.33100137484142, 46.587723400480186], + [-119.3314320724573, 46.59785522463674], + [-119.32967658096172, 46.60798704879329], + [-119.32958125818375, 46.60826808666631], + [-119.32613473410858, 46.61811887294984], + [-119.32110339445556, 46.628250697106395], + [-119.31625597928932, 46.63838252126295], + [-119.31587613016009, 46.64043489025695], + [-119.31423065261606, 46.6485143454195], + [-119.31587613016009, 46.65540181869136], + [-119.31649865666293, 46.65864616957605], + [-119.3203284463831, 46.668777993732604], + [-119.32329498326204, 46.678909817889156], + [-119.32417640005305, 46.68904164204571], + [-119.32245621428957, 46.69917346620226], + [-119.31748399828871, 46.70930529035881], + [-119.31587613016009, 46.711144875536164], + [-119.30830516863735, 46.719437114515365], + [-119.30217100213643, 46.7236822612812], + [-119.29109128190083, 46.72956893867192], + [-119.28846587411277, 46.73062091649028], + [-119.27476074608911, 46.734245385116246], + [-119.26105561806546, 46.73559439321092], + [-119.2473504900418, 46.7348323576108], + [-119.23364536201814, 46.73190273670894], + [-119.22736879170162, 46.72956893867192], + [-119.21994023399448, 46.726168265581364], + [-119.20951149615868, 46.719437114515365], + [-119.20623510597082, 46.71622277418532], + [-119.1999196369508, 46.70930529035881], + [-119.19479600085229, 46.69917346620226], + [-119.19286133643467, 46.68904164204571], + [-119.19339970464999, 46.678909817889156], + [-119.1956716370133, 46.668777993732604], + [-119.19782728983432, 46.65864616957605], + [-119.1960751724472, 46.6485143454195], + [-119.19252997794716, 46.64387141250943], + [-119.18883548248691, 46.63838252126295], + [-119.17981301866008, 46.628250697106395], + [-119.1788248499235, 46.62707909157698], + [-119.17205439585766, 46.61811887294984], + [-119.16639050041661, 46.60798704879329], + [-119.16511972189984, 46.604419776033566], + [-119.16254996376178, 46.59785522463674], + [-119.16021094961239, 46.587723400480186], + [-119.15864277453703, 46.577591576323634], + [-119.15602773475017, 46.56745975216708], + [-119.15141459387618, 46.5608226553629], + [-119.14863953145567, 46.55732792801053], + [-119.13770946585252, 46.549510131062895], + [-119.13488827047573, 46.54719610385398], + [-119.12400433782886, 46.539679523242874], + [-119.12107262487656, 46.537064279697425], + [-119.1108612778305, 46.52693245554087], + [-119.1102992098052, 46.5261943770833], + [-119.10432255082237, 46.51680063138432], + [-119.10100117668479, 46.50666880722777], + [-119.1006299372161, 46.496536983071216], + [-119.1030917856313, 46.486405158914664], + [-119.1083560062849, 46.47627333475811], + [-119.1102992098052, 46.4735133512026], + [-119.11589716100421, 46.46614151060156], + [-119.12281627441956, 46.45600968644501], + [-119.12400433782886, 46.45239843682699], + [-119.1258900474509, 46.445877862288455], + [-119.12674105787187, 46.4357460381319], + [-119.1291789463678, 46.42561421397535], + [-119.13534466310182, 46.4154823898188], + [-119.13770946585252, 46.41358461401899], + [-119.14884236537834, 46.405350565662246], + [-119.15141459387618, 46.40420818080315], + [-119.16511972189984, 46.40026711119237], + [-119.1788248499235, 46.398945927953015], + [-119.19252997794716, 46.40045144356604], + [-119.20623510597082, 46.40463617402765], + [-119.2080189304618, 46.405350565662246], + [-119.21994023399448, 46.41428743586814], + [-119.22154668218575, 46.4154823898188], + [-119.22852300284677, 46.42561421397535], + [-119.23200530972086, 46.4357460381319], + [-119.23364536201814, 46.44273116668036], + [-119.2346274895638, 46.445877862288455], + [-119.23863171410474, 46.45600968644501], + [-119.24452349342492, 46.46614151060156], + [-119.2473504900418, 46.47091524077303], + [-119.250572867558, 46.47627333475811], + [-119.25549365988188, 46.486405158914664], + [-119.25896783962699, 46.496536983071216], + [-119.26105561806546, 46.50448046906965], + [-119.26178452703049, 46.50666880722777], + [-119.26577438509503, 46.51680063138432], + [-119.27410694090361, 46.52693245554087], + [-119.27476074608911, 46.527375037344925], + [-119.28846587411277, 46.53692861489282], + [-119.28864204091862, 46.537064279697425], + [-119.30217100213643, 46.54614910580203], + [-119.30344318144641, 46.54719610385398], + [-119.31495377554619, 46.55732792801053], + [-119.31587613016009, 46.558334720813406], + [-119.32312746314817, 46.56745975216708], + [-119.32829797784068, 46.577591576323634], + [-119.32958125818375, 46.58246159489228], + [-119.33100137484142, 46.587723400480186] + ], + [ + [-115.69865031345786, 42.97066217659104], + [-115.70474827227991, 42.98079400074759], + [-115.70540226524878, 42.990925824904146], + [-115.70191280606109, 43.0010576490607], + [-115.6977223319141, 43.00696374573378], + [-115.69399068953697, 43.01118947321725], + [-115.68401720389043, 43.01908501288857], + [-115.6798573937691, 43.0213212973738], + [-115.67031207586678, 43.02600366102439], + [-115.65660694784312, 43.03022810398834], + [-115.64959727712036, 43.031453121530355], + [-115.64290181981946, 43.03272048239445], + [-115.6291966917958, 43.033920197949264], + [-115.61549156377214, 43.034145277158935], + [-115.60178643574848, 43.0338004417489], + [-115.58808130772482, 43.03324145832469], + [-115.57437617970116, 43.03262551123242], + [-115.5606710516775, 43.03183012367171], + [-115.55669486822805, 43.031453121530355], + [-115.54696592365384, 43.030597366837036], + [-115.53326079563018, 43.028636620442875], + [-115.51955566760653, 43.02559215503927], + [-115.50654790049012, 43.0213212973738], + [-115.50585053958287, 43.021095338591216], + [-115.4921454115592, 43.0149216827745], + [-115.48591377549826, 43.01118947321725], + [-115.47844028353555, 43.00612631440157], + [-115.47235524701279, 43.0010576490607], + [-115.46473515551189, 42.99299107391171], + [-115.46298844702513, 42.990925824904146], + [-115.45656422104831, 42.98079400074759], + [-115.45267969526918, 42.97066217659104], + [-115.45103002748823, 42.96086284404678], + [-115.45097008867873, 42.96053035243449], + [-115.45103002748823, 42.95867756992416], + [-115.45127037302942, 42.95039852827794], + [-115.45362606157595, 42.940266704121385], + [-115.4583909128919, 42.93013487996483], + [-115.46473515551189, 42.92172836937011], + [-115.4661474359369, 42.92000305580828], + [-115.47781609135279, 42.90987123165173], + [-115.47844028353555, 42.90943626614758], + [-115.4921454115592, 42.901829056051454], + [-115.49789081741898, 42.899739407495176], + [-115.50585053958287, 42.89706128833523], + [-115.51955566760653, 42.89459925731166], + [-115.53326079563018, 42.89431452727093], + [-115.54696592365384, 42.896333782717974], + [-115.55636195658423, 42.899739407495176], + [-115.5606710516775, 42.90115499123748], + [-115.57437617970116, 42.909697535821365], + [-115.5745519838756, 42.90987123165173], + [-115.5849701312228, 42.92000305580828], + [-115.58808130772482, 42.92319024533971], + [-115.59349173316076, 42.93013487996483], + [-115.60178643574848, 42.93939809277968], + [-115.60273431456746, 42.940266704121385], + [-115.61549156377214, 42.94698765340934], + [-115.6291966917958, 42.94871263723435], + [-115.64290181981946, 42.949806690961815], + [-115.6465950527906, 42.95039852827794], + [-115.65660694784312, 42.952173329729355], + [-115.67031207586678, 42.95572040903331], + [-115.68401720389043, 42.96028043406244], + [-115.68481812446879, 42.96053035243449], + [-115.6977223319141, 42.97004672920412], + [-115.69865031345786, 42.97066217659104] + ], + [ + [-119.71822955946546, 46.87141447686365], + [-119.72351430001441, 46.8815463010202], + [-119.72605621668352, 46.89167812517675], + [-119.72617412117303, 46.901809949333305], + [-119.72375210989777, 46.91194177348986], + [-119.71812284000296, 46.92207359764641], + [-119.7133248428462, 46.92724477116954], + [-119.70872192318495, 46.93220542180296], + [-119.69961971482255, 46.9388321416381], + [-119.69424802347838, 46.942337245959514], + [-119.68591458679889, 46.94657781398509], + [-119.67220945877523, 46.952069592643966], + [-119.67097265226806, 46.95246907011607], + [-119.65850433075157, 46.95620709543105], + [-119.64479920272791, 46.95896750465276], + [-119.63109407470425, 46.96049783614691], + [-119.61738894668059, 46.96097723757672], + [-119.60368381865693, 46.96055041540475], + [-119.58997869063327, 46.95930452890363], + [-119.57627356260961, 46.957260881807116], + [-119.56256843458596, 46.954366130998956], + [-119.55536675209842, 46.95246907011607], + [-119.5488633065623, 46.95072251879603], + [-119.53515817853864, 46.9458442483375], + [-119.52760558392423, 46.942337245959514], + [-119.52145305051498, 46.93854805078301], + [-119.5130677760962, 46.93220542180296], + [-119.50774792249132, 46.92543509435213], + [-119.50526971275583, 46.92207359764641], + [-119.50104804687581, 46.91194177348986], + [-119.49954893452399, 46.901809949333305], + [-119.4998758674195, 46.89167812517675], + [-119.50171128715753, 46.8815463010202], + [-119.50506682395539, 46.87141447686365], + [-119.50774792249132, 46.86581669622562], + [-119.50990004399938, 46.8612826527071], + [-119.51665657134839, 46.851150828550544], + [-119.52145305051498, 46.84569325617478], + [-119.5263268963511, 46.84101900439399], + [-119.53515817853864, 46.834079094428255], + [-119.54061919428865, 46.83088718023744], + [-119.5488633065623, 46.826415381724466], + [-119.56256843458596, 46.82151013849836], + [-119.56595636993794, 46.82075535608089], + [-119.57627356260961, 46.81828080702192], + [-119.58997869063327, 46.81669140719908], + [-119.60368381865693, 46.81656774415909], + [-119.61738894668059, 46.817772777312285], + [-119.63109407470425, 46.820295277105835], + [-119.63278510242804, 46.82075535608089], + [-119.64479920272791, 46.823715283681], + [-119.65850433075157, 46.82849691971518], + [-119.66404267363659, 46.83088718023744], + [-119.67220945877523, 46.83454009057191], + [-119.68410751654086, 46.84101900439399], + [-119.68591458679889, 46.84215126919949], + [-119.69887038737299, 46.851150828550544], + [-119.69961971482255, 46.851821437231585], + [-119.71011159946012, 46.8612826527071], + [-119.7133248428462, 46.86548221747415], + [-119.71822955946546, 46.87141447686365] + ], + [ + [-119.20651736417547, 46.28376867578362], + [-119.21494713592436, 46.29390049994017], + [-119.21888663694281, 46.304032324096724], + [-119.21966909031468, 46.314164148253276], + [-119.21771753844922, 46.32429597240983], + [-119.21257290160132, 46.33442779656638], + [-119.20623510597082, 46.341006665186995], + [-119.20343484319048, 46.34455962072293], + [-119.19252997794716, 46.35256539443583], + [-119.18996157202653, 46.354691444879485], + [-119.1788248499235, 46.36069222562544], + [-119.17121051179605, 46.36482326903604], + [-119.16511972189984, 46.367343526134064], + [-119.15141459387618, 46.37299573730383], + [-119.14627909632901, 46.37495509319259], + [-119.13770946585252, 46.37823839381351], + [-119.12400433782886, 46.382820262579116], + [-119.11516864224036, 46.38508691734914], + [-119.1102992098052, 46.38676579856239], + [-119.09659408178155, 46.390124313251945], + [-119.08288895375789, 46.39210449088688], + [-119.06918382573423, 46.392763035806], + [-119.05547869771057, 46.391946928641666], + [-119.04177356968691, 46.38921586735886], + [-119.0308031562245, 46.38508691734914], + [-119.02806844166325, 46.383874762419254], + [-119.01460463648716, 46.37495509319259], + [-119.01436331363959, 46.37472563294426], + [-119.00536888235322, 46.36482326903604], + [-119.00065818561593, 46.35517337273151], + [-119.00042007678496, 46.354691444879485], + [-118.9978072227763, 46.34455962072293], + [-118.99787951386132, 46.33442779656638], + [-119.00065818561593, 46.32488324580569], + [-119.00079725743431, 46.32429597240983], + [-119.0062084650114, 46.314164148253276], + [-119.01436331363959, 46.306173735920936], + [-119.01645441621537, 46.304032324096724], + [-119.02806844166325, 46.29649223683097], + [-119.03232909510696, 46.29390049994017], + [-119.04177356968691, 46.28950633138651], + [-119.05547869771057, 46.283952565499575], + [-119.05597347553488, 46.28376867578362], + [-119.06918382573423, 46.278835825872264], + [-119.08288895375789, 46.274597022038144], + [-119.08678835125683, 46.27363685162707], + [-119.09659408178155, 46.27053787443255], + [-119.1102992098052, 46.26724351465015], + [-119.12400433782886, 46.264975614526236], + [-119.13770946585252, 46.26373205572955], + [-119.15141459387618, 46.26361972271951], + [-119.16511972189984, 46.264911717811465], + [-119.1788248499235, 46.26809071092943], + [-119.19203654356116, 46.27363685162707], + [-119.19252997794716, 46.27389466480953], + [-119.20623510597082, 46.28352794366084], + [-119.20651736417547, 46.28376867578362] + ], + [ + [-114.6754071585276, 42.73763022099034], + [-114.68084402142158, 42.74776204514689], + [-114.68032206747762, 42.757893869303444], + [-114.67456536819188, 42.76802569346], + [-114.66983773013966, 42.77386022002639], + [-114.66391192473634, 42.77815751761655], + [-114.656132602116, 42.78538671861156], + [-114.65270476544629, 42.7882893417731], + [-114.64242747409234, 42.79736221119483], + [-114.64106091255924, 42.79842116592965], + [-114.62872234606868, 42.80627410070958], + [-114.62294571467423, 42.808552990086206], + [-114.61501721804503, 42.8117838697774], + [-114.60131209002137, 42.814910837870194], + [-114.58760696199771, 42.81671987760703], + [-114.57850331086479, 42.81868481424276], + [-114.57390183397405, 42.820472178355146], + [-114.56605361458872, 42.82881663839931], + [-114.56019670595039, 42.83552906750955], + [-114.55803136239163, 42.83894846255586], + [-114.54804236187591, 42.849080286712415], + [-114.54649157792673, 42.85025229089967], + [-114.53278644990307, 42.85883559248218], + [-114.5318849099357, 42.85921211086897], + [-114.51908132187941, 42.86392297248886], + [-114.50537619385575, 42.8663218589844], + [-114.4916710658321, 42.86642859320919], + [-114.47796593780843, 42.864218284260396], + [-114.46442019552057, 42.85921211086897], + [-114.46426080978478, 42.859146361180066], + [-114.45055568176112, 42.84984444906864], + [-114.44973965279343, 42.849080286712415], + [-114.44197657322543, 42.83894846255586], + [-114.43832514256425, 42.82881663839931], + [-114.43804174125408, 42.81868481424276], + [-114.44101201214045, 42.808552990086206], + [-114.44791224277154, 42.79842116592965], + [-114.45055568176112, 42.795995007235376], + [-114.4608014508113, 42.7882893417731], + [-114.46426080978478, 42.78637484155087], + [-114.47796593780843, 42.78113268918405], + [-114.4916710658321, 42.77852182856578], + [-114.49975298115022, 42.77815751761655], + [-114.50537619385575, 42.777868945465585], + [-114.51159047292698, 42.77815751761655], + [-114.51908132187941, 42.77855510082506], + [-114.53278644990307, 42.77903557690195], + [-114.53565286534872, 42.77815751761655], + [-114.54649157792673, 42.77277909598936], + [-114.54936787591355, 42.76802569346], + [-114.55855547734683, 42.757893869303444], + [-114.56019670595039, 42.75675398353134], + [-114.5731399674765, 42.74776204514689], + [-114.57390183397405, 42.74740786620646], + [-114.58760696199771, 42.74243857964177], + [-114.60131209002137, 42.73923061183476], + [-114.60662081515453, 42.73763022099034], + [-114.61501721804503, 42.735405929991565], + [-114.62872234606868, 42.72966513166126], + [-114.63557710506491, 42.72749839683379], + [-114.64242747409234, 42.72636779658008], + [-114.656132602116, 42.7269878289298], + [-114.65779568572779, 42.72749839683379], + [-114.66983773013966, 42.73322293826863], + [-114.6754071585276, 42.73763022099034] + ], + [ + [-119.52198673797385, 45.88862753367808], + [-119.52796984239684, 45.898759357834635], + [-119.53102582531943, 45.90889118199119], + [-119.53151051653774, 45.91902300614774], + [-119.52968085657031, 45.92915483030429], + [-119.52555967526774, 45.939286654460844], + [-119.52145305051498, 45.9454736056492], + [-119.5192791277206, 45.949418478617396], + [-119.51129274133892, 45.95955030277395], + [-119.50774792249132, 45.963360039773384], + [-119.50095160579707, 45.9696821269305], + [-119.49404279446766, 45.975849781436374], + [-119.48749217147954, 45.97981395108705], + [-119.480337666444, 45.984725534738374], + [-119.466766533474, 45.989945775243605], + [-119.46663253842034, 45.99001189193104], + [-119.45292741039668, 45.99314138636447], + [-119.43922228237302, 45.993225432278315], + [-119.42551715434936, 45.99038851250378], + [-119.42438986623073, 45.989945775243605], + [-119.4118120263257, 45.985200929066266], + [-119.40275582038421, 45.97981395108705], + [-119.39810689830205, 45.97674941936297], + [-119.38916830345248, 45.9696821269305], + [-119.38440177027839, 45.9649276747882], + [-119.37896913304607, 45.95955030277395], + [-119.37151004440781, 45.949418478617396], + [-119.37069664225473, 45.94776271014299], + [-119.36565781884259, 45.939286654460844], + [-119.36210491648102, 45.92915483030429], + [-119.3606386515469, 45.91902300614774], + [-119.36118856576408, 45.90889118199119], + [-119.36399222422867, 45.898759357834635], + [-119.3695660585756, 45.88862753367808], + [-119.37069664225473, 45.8871360043552], + [-119.37832117196137, 45.87849570952153], + [-119.38440177027839, 45.87340364075518], + [-119.39234022729359, 45.86836388536498], + [-119.39810689830205, 45.86516439860227], + [-119.4118120263257, 45.85992096988507], + [-119.41926157537277, 45.858232061208426], + [-119.42551715434936, 45.856759454495084], + [-119.43922228237302, 45.85525071992399], + [-119.45292741039668, 45.85542407983477], + [-119.46663253842034, 45.85729931403405], + [-119.47005099098823, 45.858232061208426], + [-119.480337666444, 45.86066701141747], + [-119.49404279446766, 45.86621000386913], + [-119.49766367823727, 45.86836388536498], + [-119.50774792249132, 45.87446084132791], + [-119.51243535425193, 45.87849570952153], + [-119.52145305051498, 45.88791027876347], + [-119.52198673797385, 45.88862753367808] + ], + [ + [-114.19234259669732, 42.47420279291998], + [-114.19094967444937, 42.484334617076534], + [-114.1901582493116, 42.48560782976055], + [-114.18388661003908, 42.49446644123309], + [-114.17645312128793, 42.50266108788966], + [-114.17470398938855, 42.50459826538964], + [-114.16700594827194, 42.51473008954619], + [-114.16274799326428, 42.51821672246781], + [-114.1519341581101, 42.52486191370274], + [-114.14904286524062, 42.52621034442768], + [-114.13533773721696, 42.52798461072985], + [-114.1216326091933, 42.52602981276713], + [-114.11746828752177, 42.52486191370274], + [-114.10792748116964, 42.519180466806425], + [-114.1001695683569, 42.51473008954619], + [-114.09422235314598, 42.5080621276399], + [-114.08886253220062, 42.50459826538964], + [-114.08051722512232, 42.498332883087365], + [-114.07129396803965, 42.49446644123309], + [-114.06681209709866, 42.49278791833002], + [-114.053106969075, 42.488261734625496], + [-114.0425321922702, 42.484334617076534], + [-114.03940184105134, 42.48291906671911], + [-114.02569671302768, 42.475712702616065], + [-114.02290642193726, 42.47420279291998], + [-114.01292381681989, 42.46407096876343], + [-114.01199158500403, 42.46189984052614], + [-114.00773470873581, 42.45393914460688], + [-114.00684735279653, 42.443807320450325], + [-114.00924416056624, 42.43367549629377], + [-114.01199158500403, 42.428997012630724], + [-114.01430930388207, 42.42354367213722], + [-114.02270130676342, 42.41341184798067], + [-114.02569671302768, 42.411085436591236], + [-114.03632130252937, 42.40328002382412], + [-114.03940184105134, 42.40166217193376], + [-114.053106969075, 42.395892909691796], + [-114.06467932406446, 42.393148199667564], + [-114.06681209709866, 42.39269085928237], + [-114.08051722512232, 42.39149625228385], + [-114.09422235314598, 42.39240109007032], + [-114.09743329162798, 42.393148199667564], + [-114.10792748116964, 42.395322217762704], + [-114.1216326091933, 42.400871744915825], + [-114.12556532543834, 42.40328002382412], + [-114.13533773721696, 42.41006652894923], + [-114.13906207916656, 42.41341184798067], + [-114.14809697459667, 42.42354367213722], + [-114.14904286524062, 42.42488348890542], + [-114.15601779300825, 42.43367549629377], + [-114.16274799326428, 42.43996725377015], + [-114.16681684015722, 42.443807320450325], + [-114.17645312128793, 42.45007252063551], + [-114.18020679623451, 42.45393914460688], + [-114.18898546757872, 42.46407096876343], + [-114.1901582493116, 42.46674381055032], + [-114.19234259669732, 42.47420279291998] + ], + [ + [-118.82320378890073, 46.212845906687754], + [-118.82951521411147, 46.222977730844306], + [-118.8325791685314, 46.23310955500086], + [-118.83294148364119, 46.24324137915741], + [-118.83072022960346, 46.25337320331396], + [-118.8255196702342, 46.263505027470515], + [-118.82249152130836, 46.26766771077412], + [-118.8160945065367, 46.27363685162707], + [-118.8087863932847, 46.27900381616626], + [-118.79508126526105, 46.28179819698006], + [-118.78137613723739, 46.28125752012723], + [-118.76767100921373, 46.279167488938576], + [-118.75396588119007, 46.27583084443901], + [-118.74776487444937, 46.27363685162707], + [-118.74026075316641, 46.27125601090615], + [-118.72655562514275, 46.26561871463291], + [-118.72158083280944, 46.263505027470515], + [-118.71285049711909, 46.25777827821854], + [-118.70542211633946, 46.25337320331396], + [-118.69914536909543, 46.24628114217386], + [-118.69578849893895, 46.24324137915741], + [-118.69088717430486, 46.23310955500086], + [-118.69024887347939, 46.222977730844306], + [-118.69366443069215, 46.212845906687754], + [-118.69914536909543, 46.20563859527237], + [-118.70193880367417, 46.2027140825312], + [-118.71285049711909, 46.19499794462908], + [-118.71804500005098, 46.19258225837465], + [-118.72655562514275, 46.18914550458026], + [-118.74026075316641, 46.185956409232375], + [-118.75396588119007, 46.184808560913346], + [-118.76767100921373, 46.185431903987215], + [-118.78137613723739, 46.18788313079603], + [-118.79508126526105, 46.19251853598447], + [-118.79521519549566, 46.19258225837465], + [-118.8087863932847, 46.199812603114914], + [-118.81277371140655, 46.2027140825312], + [-118.82249152130836, 46.2120406758941], + [-118.82320378890073, 46.212845906687754] + ], + [ + [-118.86919057387004, 46.33442779656638], + [-118.87194738110858, 46.34455962072293], + [-118.8718259954862, 46.354691444879485], + [-118.86877728037545, 46.36482326903604], + [-118.86360690537934, 46.3733431432168], + [-118.86237539848379, 46.37495509319259], + [-118.85095584140262, 46.38508691734914], + [-118.84990177735568, 46.38585173483328], + [-118.83619664933202, 46.39265588481236], + [-118.82666529678893, 46.395218741505694], + [-118.82249152130836, 46.39636513292292], + [-118.8087863932847, 46.39775079398662], + [-118.79508126526105, 46.39683631083105], + [-118.78835160297373, 46.395218741505694], + [-118.78137613723739, 46.39341046581431], + [-118.76767100921373, 46.38625338069236], + [-118.76617422919874, 46.38508691734914], + [-118.75748085555205, 46.37495509319259], + [-118.75432058454523, 46.36482326903604], + [-118.75507902796296, 46.354691444879485], + [-118.75898681061643, 46.34455962072293], + [-118.76563622290442, 46.33442779656638], + [-118.76767100921373, 46.331957803687565], + [-118.77511481820301, 46.32429597240983], + [-118.78137613723739, 46.31784783873638], + [-118.78727286656975, 46.314164148253276], + [-118.79508126526105, 46.307496725030504], + [-118.80498100872835, 46.304032324096724], + [-118.8087863932847, 46.30132239520588], + [-118.82249152130836, 46.3005089197161], + [-118.83314660295486, 46.304032324096724], + [-118.83619664933202, 46.30464240067634], + [-118.84990177735568, 46.31157627205566], + [-118.85288079118818, 46.314164148253276], + [-118.86337950795387, 46.32429597240983], + [-118.86360690537934, 46.32460199456934], + [-118.86919057387004, 46.33442779656638] + ], + [ + [-119.80952690107762, 45.898759357834635], + [-119.80976026823446, 45.90889118199119], + [-119.80926073901182, 45.9122474294388], + [-119.80768221957025, 45.91902300614774], + [-119.80239387819864, 45.92915483030429], + [-119.79555561098816, 45.93696498523033], + [-119.79158652524883, 45.939286654460844], + [-119.7818504829645, 45.94458124452079], + [-119.76814535494084, 45.9476527483273], + [-119.75444022691718, 45.947909037899535], + [-119.74073509889352, 45.94567132002085], + [-119.72702997086986, 45.94039975228642], + [-119.72513333577305, 45.939286654460844], + [-119.7133248428462, 45.930825735526504], + [-119.71162974213242, 45.92915483030429], + [-119.70409100060746, 45.91902300614774], + [-119.70006888464559, 45.90889118199119], + [-119.69961971482255, 45.9052957711407], + [-119.69883331038196, 45.898759357834635], + [-119.69961971482255, 45.893041686437996], + [-119.70024134455187, 45.88862753367808], + [-119.70459818423357, 45.87849570952153], + [-119.7125663226626, 45.86836388536498], + [-119.7133248428462, 45.86764590172117], + [-119.72702997086986, 45.8583195813722], + [-119.72724437867065, 45.858232061208426], + [-119.74073509889352, 45.85337418140954], + [-119.75444022691718, 45.851589482020906], + [-119.76814535494084, 45.852681334421106], + [-119.7818504829645, 45.85739785426186], + [-119.7830338171326, 45.858232061208426], + [-119.79555561098816, 45.86740565582375], + [-119.79625101157922, 45.86836388536498], + [-119.80281915314738, 45.87849570952153], + [-119.80716978081553, 45.88862753367808], + [-119.80926073901182, 45.8973569128517], + [-119.80952690107762, 45.898759357834635] + ], + [ + [-119.81388898284207, 47.13484190493401], + [-119.8204603422537, 47.14497372909056], + [-119.8197791084352, 47.15510555324711], + [-119.81580152113581, 47.16523737740366], + [-119.80962562669899, 47.175369201560216], + [-119.80926073901182, 47.17592820013667], + [-119.80510033559575, 47.18550102571677], + [-119.80106790917985, 47.19563284987332], + [-119.79694327798596, 47.20576467402987], + [-119.79555561098816, 47.20934463177412], + [-119.79069854177708, 47.215896498186424], + [-119.7818504829645, 47.224707374878506], + [-119.7781477285629, 47.22602832234298], + [-119.76814535494084, 47.23015682072424], + [-119.75444022691718, 47.230814680632975], + [-119.74073509889352, 47.227483312841144], + [-119.73807602443807, 47.22602832234298], + [-119.72702997086986, 47.21972824253055], + [-119.72333242077134, 47.215896498186424], + [-119.71635995934915, 47.20576467402987], + [-119.7133248428462, 47.19613891187583], + [-119.71319490958037, 47.19563284987332], + [-119.71229585558463, 47.18550102571677], + [-119.71331527315763, 47.175369201560216], + [-119.7133248428462, 47.17533526722638], + [-119.71567497816068, 47.16523737740366], + [-119.72051634809847, 47.15510555324711], + [-119.72702997086986, 47.14768561270635], + [-119.73000020938497, 47.14497372909056], + [-119.74073509889352, 47.137803596393624], + [-119.74765910400892, 47.13484190493401], + [-119.75444022691718, 47.13188599984463], + [-119.76814535494084, 47.12824938957753], + [-119.7818504829645, 47.12677246415643], + [-119.79555561098816, 47.127528806146074], + [-119.80926073901182, 47.13191014424262], + [-119.81388898284207, 47.13484190493401] + ], + [ + [-115.28960913767195, 42.92000305580828], + [-115.29654150395145, 42.93013487996483], + [-115.2993854971193, 42.940266704121385], + [-115.29903006968024, 42.95039852827794], + [-115.29532390044983, 42.96053035243449], + [-115.286931023576, 42.97066217659104], + [-115.28656849120432, 42.97094983585128], + [-115.27286336318066, 42.979780628657686], + [-115.27040030822411, 42.98079400074759], + [-115.259158235157, 42.98433081069949], + [-115.24545310713334, 42.9858775385351], + [-115.23174797910968, 42.98470354337131], + [-115.21957527360846, 42.98079400074759], + [-115.21804285108603, 42.98035862961229], + [-115.20433772306237, 42.97172859902917], + [-115.20342399212261, 42.97066217659104], + [-115.1958691652098, 42.96053035243449], + [-115.19106745361485, 42.95039852827794], + [-115.19063259503871, 42.94684191335961], + [-115.1900890051021, 42.940266704121385], + [-115.19063259503871, 42.9367344718118], + [-115.19235234188196, 42.93013487996483], + [-115.19846228596387, 42.92000305580828], + [-115.20433772306237, 42.91331044760238], + [-115.21016932331915, 42.90987123165173], + [-115.21804285108603, 42.9053665770045], + [-115.23174797910968, 42.90180443122036], + [-115.24545310713334, 42.90112925572532], + [-115.259158235157, 42.903067891760706], + [-115.27286336318066, 42.90794184645064], + [-115.27655914081821, 42.90987123165173], + [-115.28656849120432, 42.91728607794983], + [-115.28960913767195, 42.92000305580828] + ], + [ + [-119.79770707100339, 46.69917346620226], + [-119.8042468392743, 46.70930529035881], + [-119.80773835713786, 46.719437114515365], + [-119.80844945794264, 46.72956893867192], + [-119.80609790621041, 46.73970076282847], + [-119.79967413960044, 46.74983258698502], + [-119.79555561098816, 46.75370840012432], + [-119.78393779165764, 46.759964411141574], + [-119.7818504829645, 46.76084828109439], + [-119.76814535494084, 46.76360597598368], + [-119.75444022691718, 46.76358819519753], + [-119.74073509889352, 46.7611483253934], + [-119.73726329385084, 46.759964411141574], + [-119.72702997086986, 46.75571873559882], + [-119.71747284710708, 46.74983258698502], + [-119.7133248428462, 46.74602690619728], + [-119.7075121156021, 46.73970076282847], + [-119.70253183029958, 46.72956893867192], + [-119.7013782140353, 46.719437114515365], + [-119.70393272671971, 46.70930529035881], + [-119.7107869195035, 46.69917346620226], + [-119.7133248428462, 46.696742697764634], + [-119.72480912432832, 46.68904164204571], + [-119.72702997086986, 46.687859932772284], + [-119.74073509889352, 46.68339922121535], + [-119.75444022691718, 46.68191114168961], + [-119.76814535494084, 46.68306568321488], + [-119.7818504829645, 46.687427146369316], + [-119.784464438647, 46.68904164204571], + [-119.79555561098816, 46.696647398873466], + [-119.79770707100339, 46.69917346620226] + ], + [ + [-116.1525245166627, 42.96053035243449], + [-116.15653832208801, 42.97066217659104], + [-116.15672857570067, 42.98079400074759], + [-116.15324761164116, 42.990925824904146], + [-116.14999155669484, 42.995409302514226], + [-116.14527525320372, 43.0010576490607], + [-116.13628642867118, 43.0076001844766], + [-116.12864424240999, 43.01118947321725], + [-116.12258130064752, 43.013433109016894], + [-116.10887617262387, 43.01567446630763], + [-116.0951710446002, 43.01482077197076], + [-116.08452716222556, 43.01118947321725], + [-116.08146591657655, 43.01024374740555], + [-116.06962666779528, 43.0010576490607], + [-116.06776078855289, 42.999277076961995], + [-116.0635884724299, 42.990925824904146], + [-116.06179589674483, 42.98079400074759], + [-116.06327360349424, 42.97066217659104], + [-116.06753791040222, 42.96053035243449], + [-116.06776078855289, 42.96012671269586], + [-116.07824500290663, 42.95039852827794], + [-116.08146591657655, 42.947330756823604], + [-116.0951710446002, 42.941587100465185], + [-116.10501229036306, 42.940266704121385], + [-116.10887617262387, 42.93956798503197], + [-116.11672884985596, 42.940266704121385], + [-116.12258130064752, 42.94085020318215], + [-116.13628642867118, 42.94585515117262], + [-116.14336752636886, 42.95039852827794], + [-116.14999155669484, 42.95735004486889], + [-116.1525245166627, 42.96053035243449] + ], + [ + [-119.37426807234291, 46.93220542180296], + [-119.3758994825046, 46.942337245959514], + [-119.37182637507536, 46.95246907011607], + [-119.37069664225473, 46.95386184880706], + [-119.36080754365874, 46.96260089427262], + [-119.35699151423107, 46.96502241049267], + [-119.34328638620741, 46.97020540699658], + [-119.32958125818375, 46.972195680580654], + [-119.31587613016009, 46.972057442745104], + [-119.30217100213643, 46.96975436163782], + [-119.28846587411277, 46.96432803075368], + [-119.28550461047222, 46.96260089427262], + [-119.27476074608911, 46.95392607436571], + [-119.27330737918909, 46.95246907011607], + [-119.2673248901495, 46.942337245959514], + [-119.26633493107667, 46.93220542180296], + [-119.27014240491097, 46.92207359764641], + [-119.27476074608911, 46.91771585944957], + [-119.28066941553358, 46.91194177348986], + [-119.28846587411277, 46.90835545424265], + [-119.30217100213643, 46.904467780586536], + [-119.31587613016009, 46.903521093047964], + [-119.32958125818375, 46.90498765988595], + [-119.34328638620741, 46.90868747747235], + [-119.35158845010052, 46.91194177348986], + [-119.35699151423107, 46.91555837506191], + [-119.36700285268249, 46.92207359764641], + [-119.37069664225473, 46.92822647750051], + [-119.37426807234291, 46.93220542180296] + ], + [ + [-114.25252686644069, 42.54512556201585], + [-114.25466607903736, 42.5552573861724], + [-114.25368149531975, 42.56538921032895], + [-114.24934617198836, 42.575521034485504], + [-114.24497876140623, 42.58107112908261], + [-114.24045423558599, 42.58565285864206], + [-114.23127363338257, 42.59206069515737], + [-114.22000801598543, 42.59578468279861], + [-114.21756850535891, 42.59662133587991], + [-114.20386337733525, 42.59802219174787], + [-114.19024492932499, 42.59578468279861], + [-114.1901582493116, 42.59577421229065], + [-114.17645312128793, 42.590286049427114], + [-114.17082398436708, 42.58565285864206], + [-114.16301500767422, 42.575521034485504], + [-114.16274799326428, 42.574617434056165], + [-114.16038922181114, 42.56538921032895], + [-114.16267046757666, 42.5552573861724], + [-114.16274799326428, 42.555167316967044], + [-114.16850660562372, 42.54512556201585], + [-114.17645312128793, 42.53852437122962], + [-114.1813590476809, 42.534993737859295], + [-114.1901582493116, 42.529874839483455], + [-114.20386337733525, 42.52601517699979], + [-114.21756850535891, 42.525210558942646], + [-114.23127363338257, 42.52748559713975], + [-114.24456862951384, 42.534993737859295], + [-114.24497876140623, 42.53550753730769], + [-114.25252686644069, 42.54512556201585] + ], + [ + [-119.0694098540011, 46.2027140825312], + [-119.07442853976066, 46.212845906687754], + [-119.07483721697521, 46.222977730844306], + [-119.07072333818563, 46.23310955500086], + [-119.06918382573423, 46.23470981282989], + [-119.06010762052745, 46.24324137915741], + [-119.05547869771057, 46.24582061441459], + [-119.04177356968691, 46.251287560093914], + [-119.0309274481411, 46.25337320331396], + [-119.02806844166325, 46.25379069717523], + [-119.01436331363959, 46.25354154857322], + [-119.01325065725123, 46.25337320331396], + [-119.00065818561593, 46.25028802645847], + [-118.98695305759227, 46.24410778251529], + [-118.9853538129152, 46.24324137915741], + [-118.97537615289072, 46.23310955500086], + [-118.97324792956861, 46.22725797318208], + [-118.97141153588778, 46.222977730844306], + [-118.97214466033554, 46.212845906687754], + [-118.97324792956861, 46.210659069781485], + [-118.9776031370853, 46.2027140825312], + [-118.98695305759227, 46.1945556542409], + [-118.99023931102542, 46.19258225837465], + [-119.00065818561593, 46.18790925710291], + [-119.01436331363959, 46.18486380880579], + [-119.02806844166325, 46.18442041248771], + [-119.04177356968691, 46.186446217660034], + [-119.05547869771057, 46.19160571310298], + [-119.0570259373315, 46.19258225837465], + [-119.06918382573423, 46.20243744558507], + [-119.0694098540011, 46.2027140825312] + ], + [ + [-116.91979099857913, 43.629230746766936], + [-116.92011287463305, 43.63936257092349], + [-116.91747872601975, 43.64250943466732], + [-116.9073866519389, 43.64949439508004], + [-116.90377359799609, 43.65094704354287], + [-116.89006846997243, 43.65070806930271], + [-116.88663535666916, 43.64949439508004], + [-116.87636334194877, 43.64234851622635], + [-116.87236121191417, 43.63936257092349], + [-116.86474375027372, 43.629230746766936], + [-116.86265821392512, 43.62831003419995], + [-116.84895308590146, 43.62801392124203], + [-116.8352479578778, 43.62586590205887], + [-116.82154282985414, 43.623205695492835], + [-116.81189458215535, 43.629230746766936], + [-116.80783770183048, 43.630645286715804], + [-116.79413257380682, 43.63495342241168], + [-116.78042744578316, 43.634165839286034], + [-116.77112921482245, 43.629230746766936], + [-116.7667223177595, 43.62295852717475], + [-116.76512213059915, 43.619098922610384], + [-116.7667223177595, 43.61578988817778], + [-116.76990342896437, 43.60896709845383], + [-116.78042744578316, 43.60054363050152], + [-116.7884685896865, 43.59883527429728], + [-116.79413257380682, 43.59716826177433], + [-116.80783770183048, 43.59849777264979], + [-116.82154282985414, 43.595355206763635], + [-116.83165022227885, 43.58870345014073], + [-116.8352479578778, 43.58727318786356], + [-116.84895308590146, 43.58475252547099], + [-116.86265821392512, 43.58718230467157], + [-116.86567770529047, 43.58870345014073], + [-116.87636334194877, 43.597446283416986], + [-116.87773425682845, 43.59883527429728], + [-116.88271658602797, 43.60896709845383], + [-116.89006846997243, 43.614359105069276], + [-116.90377359799609, 43.61703437030588], + [-116.90734739827474, 43.619098922610384], + [-116.91747872601975, 43.62605712514941], + [-116.91979099857913, 43.629230746766936] + ], + [ + [-119.63749948223938, 45.97981395108705], + [-119.6401640321529, 45.989945775243605], + [-119.63849887655938, 46.00007759940016], + [-119.63200960728108, 46.01020942355671], + [-119.63109407470425, 46.011047319981536], + [-119.61843596242562, 46.02034124771326], + [-119.61738894668059, 46.02087182101205], + [-119.60368381865693, 46.025647559408654], + [-119.58997869063327, 46.027424900179284], + [-119.57627356260961, 46.02657443634523], + [-119.56256843458596, 46.022749487043896], + [-119.55837670665511, 46.02034124771326], + [-119.5488633065623, 46.014214928377775], + [-119.54543468277234, 46.01020942355671], + [-119.54022722486098, 46.00007759940016], + [-119.53966647347282, 45.989945775243605], + [-119.54361867458162, 45.97981395108705], + [-119.5488633065623, 45.97314266418874], + [-119.55298039187768, 45.9696821269305], + [-119.56256843458596, 45.963725146034385], + [-119.57457886021948, 45.95955030277395], + [-119.57627356260961, 45.9589631390652], + [-119.58997869063327, 45.95750821611395], + [-119.60368381865693, 45.95861260316237], + [-119.60774169684235, 45.95955030277395], + [-119.61738894668059, 45.96294142489826], + [-119.62900655081093, 45.9696821269305], + [-119.63109407470425, 45.97209123937002], + [-119.63749948223938, 45.97981395108705] + ], + [ + [-115.98848877152722, 42.87947575918207], + [-115.99476189033571, 42.88960758333862], + [-115.99596118763158, 42.899739407495176], + [-115.99280449700314, 42.90987123165173], + [-115.98553002041093, 42.91865302337168], + [-115.98447647685184, 42.92000305580828], + [-115.97182489238727, 42.92789235428828], + [-115.96637349634861, 42.93013487996483], + [-115.95811976436362, 42.93287179084623], + [-115.94441463633996, 42.9344746000338], + [-115.9307095083163, 42.93321612889193], + [-115.92036495471454, 42.93013487996483], + [-115.91700438029264, 42.928182754800446], + [-115.90611306021752, 42.92000305580828], + [-115.90329925226898, 42.914649513192614], + [-115.90050207619001, 42.90987123165173], + [-115.89958356751085, 42.899739407495176], + [-115.90293937704317, 42.88960758333862], + [-115.90329925226898, 42.88907510721651], + [-115.91100051388324, 42.87947575918207], + [-115.91700438029264, 42.87484963909873], + [-115.92840609750611, 42.86934393502552], + [-115.9307095083163, 42.86839353142684], + [-115.94441463633996, 42.86549332607854], + [-115.95811976436362, 42.865573882894374], + [-115.97182489238727, 42.86886468176215], + [-115.97278867872441, 42.86934393502552], + [-115.98553002041093, 42.876493408727875], + [-115.98848877152722, 42.87947575918207] + ], + [ + [-114.39745481344721, 42.47420279291998], + [-114.40352343050343, 42.484334617076534], + [-114.40551489661038, 42.49446644123309], + [-114.40197833162159, 42.50459826538964], + [-114.39573516966648, 42.509572837743846], + [-114.38981755691887, 42.51473008954619], + [-114.38203004164282, 42.51757144231718], + [-114.36832491361916, 42.52043946363399], + [-114.3546197855955, 42.520308104596616], + [-114.34091465757184, 42.51708693217103], + [-114.3346344728282, 42.51473008954619], + [-114.32720952954818, 42.50942067408749], + [-114.32078568752375, 42.50459826538964], + [-114.31724979957939, 42.49446644123309], + [-114.31946616555317, 42.484334617076534], + [-114.3270628142764, 42.47420279291998], + [-114.32720952954818, 42.47404772736523], + [-114.34091465757184, 42.4653861627277], + [-114.34705265574587, 42.46407096876343], + [-114.3546197855955, 42.46192967923083], + [-114.36832491361916, 42.461905759247756], + [-114.38103836878504, 42.46407096876343], + [-114.38203004164282, 42.464616013975544], + [-114.39573516966648, 42.4724137271096], + [-114.39745481344721, 42.47420279291998] + ], + [ + [-119.71480986821824, 47.06391913583814], + [-119.71810774335665, 47.07405095999469], + [-119.71527832754181, 47.084182784151245], + [-119.7133248428462, 47.08633029847885], + [-119.70431706072739, 47.0943146083078], + [-119.69961971482255, 47.09671807106793], + [-119.68591458679889, 47.10050581583324], + [-119.67220945877523, 47.100774096810824], + [-119.65850433075157, 47.097493924939954], + [-119.652059742916, 47.0943146083078], + [-119.64479920272791, 47.08740772987774], + [-119.64216933471022, 47.084182784151245], + [-119.64058970122774, 47.07405095999469], + [-119.64479920272791, 47.064870721556055], + [-119.645337448137, 47.06391913583814], + [-119.65850433075157, 47.054150416215634], + [-119.65950158689054, 47.05378731168159], + [-119.67220945877523, 47.050121228266384], + [-119.68591458679889, 47.049675571398325], + [-119.69961971482255, 47.05274421996783], + [-119.70182428439684, 47.05378731168159], + [-119.7133248428462, 47.06222545595011], + [-119.71480986821824, 47.06391913583814] + ], + [ + [-116.70435596655818, 43.42659426363589], + [-116.70518131108057, 43.436726087792444], + [-116.70020432284993, 43.446857911948996], + [-116.6981966776412, 43.44881723932635], + [-116.68587320376314, 43.45698973610555], + [-116.68449154961755, 43.45765609363487], + [-116.67078642159389, 43.46061834642083], + [-116.65708129357023, 43.459538298314584], + [-116.65047807177724, 43.45698973610555], + [-116.64337616554657, 43.45290312446669], + [-116.63780742604493, 43.446857911948996], + [-116.63588882081916, 43.436726087792444], + [-116.64086308109592, 43.42659426363589], + [-116.64337616554657, 43.42448408910138], + [-116.65400020631242, 43.41646243947934], + [-116.65708129357023, 43.4144569508934], + [-116.67078642159389, 43.41040137030042], + [-116.68449154961755, 43.41107730755123], + [-116.69630058642706, 43.41646243947934], + [-116.6981966776412, 43.41813859648113], + [-116.70435596655818, 43.42659426363589] + ], + [ + [-119.39813626530923, 46.87141447686365], + [-119.39810689830205, 46.87150916720026], + [-119.39491283910625, 46.8815463010202], + [-119.38440177027839, 46.88863913605449], + [-119.37378169502863, 46.89167812517675], + [-119.37069664225473, 46.89206443339062], + [-119.36712308989274, 46.89167812517675], + [-119.35699151423107, 46.88994523726026], + [-119.34328638620741, 46.88274902369716], + [-119.34145086205854, 46.8815463010202], + [-119.3370696256059, 46.87141447686365], + [-119.34060727241972, 46.8612826527071], + [-119.34328638620741, 46.85846969942566], + [-119.35699151423107, 46.851825871997484], + [-119.367269713474, 46.851150828550544], + [-119.37069664225473, 46.850918240983546], + [-119.37165143769445, 46.851150828550544], + [-119.38440177027839, 46.85471856778873], + [-119.39320805511109, 46.8612826527071], + [-119.39810689830205, 46.871331715844306], + [-119.39813626530923, 46.87141447686365] + ], + [ + [-117.04082487823268, 43.87016729713071], + [-117.04596213286045, 43.87239452652419], + [-117.05357610415177, 43.88252635068074], + [-117.05049536930119, 43.892658174837294], + [-117.04082487823268, 43.90018262651614], + [-117.02711975020902, 43.901499117695664], + [-117.01341462218537, 43.895703390937186], + [-117.01056858687421, 43.892658174837294], + [-117.00772110014772, 43.88252635068074], + [-117.01341462218537, 43.87591532043887], + [-117.01642617479828, 43.87239452652419], + [-117.02711975020902, 43.86901154136752], + [-117.04082487823268, 43.87016729713071] + ], + [ + [-119.15208878699812, 47.15510555324711], + [-119.15141459387618, 47.156256444823576], + [-119.14275108776408, 47.16523737740366], + [-119.13770946585252, 47.16778736988145], + [-119.12400433782886, 47.169188605555675], + [-119.113974248409, 47.16523737740366], + [-119.1102992098052, 47.16342940824575], + [-119.10571069330565, 47.15510555324711], + [-119.10893159728488, 47.14497372909056], + [-119.1102992098052, 47.144082287594415], + [-119.12400433782886, 47.13760582477401], + [-119.13770946585252, 47.1379189753955], + [-119.15008794800421, 47.14497372909056], + [-119.15141459387618, 47.152043944840976], + [-119.15208878699812, 47.15510555324711] + ], + [ + [-114.54924106784439, 42.59578468279861], + [-114.54649157792673, 42.602871327588375], + [-114.53905386720075, 42.60591650695516], + [-114.53278644990307, 42.60813127713039], + [-114.52681977190755, 42.60591650695516], + [-114.51988324649038, 42.59578468279861], + [-114.52961584539119, 42.58565285864206], + [-114.53278644990307, 42.5843921218424], + [-114.53765489110998, 42.58565285864206], + [-114.54649157792673, 42.588015489009045], + [-114.54924106784439, 42.59578468279861] + ], + [ + [-117.01565680044743, 43.73054898833246], + [-117.01341462218537, 43.73303148147697], + [-117.0020559164116, 43.74068081248901], + [-116.9997094941617, 43.741886484381425], + [-116.98600436613805, 43.742819203501895], + [-116.98258119065355, 43.74068081248901], + [-116.98600436613805, 43.7318253418769], + [-116.98766106698761, 43.73054898833246], + [-116.9997094941617, 43.723943070939185], + [-117.01341462218537, 43.72518343823455], + [-117.01565680044743, 43.73054898833246] + ], + [ + [-117.03206776048202, 43.983844592246264], + [-117.02711975020902, 43.991385491861095], + [-117.02033710584654, 43.993976416402816], + [-117.01341462218537, 43.99625727851077], + [-116.9997094941617, 43.99634083435541], + [-116.99679720215113, 43.993976416402816], + [-116.99656424100576, 43.983844592246264], + [-116.9997094941617, 43.98304879284017], + [-117.01341462218537, 43.98302262883379], + [-117.02711975020902, 43.9814286632918], + [-117.03206776048202, 43.983844592246264] + ], + [ + [-117.10935051835098, 43.76434731869599], + [-117.11046016516616, 43.77107628495867], + [-117.10935051835098, 43.77251286353452], + [-117.10221391453635, 43.77107628495867], + [-117.09564539032732, 43.767867135681634], + [-117.08895199149971, 43.760944460802115], + [-117.09119260837323, 43.75081263664556], + [-117.09564539032732, 43.74525859685289], + [-117.10721084426426, 43.75081263664556], + [-117.1065683900647, 43.760944460802115], + [-117.10935051835098, 43.76434731869599] + ], + [ + [-116.90822682398728, 43.77107628495867], + [-116.906411839171, 43.78120810911522], + [-116.90377359799609, 43.783026837576344], + [-116.89006846997243, 43.78256783244028], + [-116.8877959202694, 43.78120810911522], + [-116.88595667328309, 43.77107628495867], + [-116.89006846997243, 43.76787491342765], + [-116.90377359799609, 43.76725003619739], + [-116.90822682398728, 43.77107628495867] + ], + [ + [-116.97335427285603, 43.669758043393145], + [-116.98029832251707, 43.6798898675497], + [-116.97229923811439, 43.68508361784762], + [-116.95859411009073, 43.68306522449329], + [-116.95331414658749, 43.6798898675497], + [-116.95859411009073, 43.67080460892149], + [-116.96468029283194, 43.669758043393145], + [-116.97229923811439, 43.6690999757447], + [-116.97335427285603, 43.669758043393145] + ], + [ + [-117.12305564637464, 43.80774120479451], + [-117.126170744168, 43.811603581584876], + [-117.12305564637464, 43.8135207914779], + [-117.10998861854797, 43.811603581584876], + [-117.12305564637464, 43.80774120479451] + ], + [ + [-117.03613675631539, 43.88252635068074], + [-117.02711975020902, 43.88426978654155], + [-117.02540538487578, 43.88252635068074], + [-117.02711975020902, 43.88057682883853], + [-117.03613675631539, 43.88252635068074] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke": "#0000ff", + "stroke-width": 3, + "stroke-opacity": 1, + "fill": "#0000ff", + "fill-opacity": 0.1 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.18831927404979, 44.030028579646306], + [-117.17430259047141, 44.0503397169731], + [-117.1555607706998, 44.06856989129167], + [-117.13267142393586, 44.084159415030065], + [-117.10633998313425, 44.0966300798537], + [-116.93475998313426, 44.16312134330424], + [-116.90390792911025, 44.17252064368216], + [-116.87115874581731, 44.17764492399985], + [-116.83765236160744, 44.178316943325235], + [-116.80455506136143, 44.17451346096602], + [-116.77301889063061, 44.16636602460454], + [-116.74414155541912, 44.15415650782037], + [-116.718928213408, 44.13830753625746], + [-116.69825648658713, 44.119368102880635], + [-116.54778348658715, 43.95101745855099], + [-116.53323653904495, 43.93109389154936], + [-116.52370589955504, 43.90964883730375], + [-116.50492289955501, 43.849864536541844], + [-116.50148753791605, 43.83490799564131], + [-116.43944453791603, 43.41135161417976], + [-116.43927575177105, 43.385031874270105], + [-116.4463765506012, 43.35921139047269], + [-116.46045828155836, 43.33494109005902], + [-116.48094851161846, 43.313210010145426], + [-116.50701429741726, 43.29490470126345], + [-116.53759604502879, 43.28077267891232], + [-116.57145058326049, 43.27139149081336], + [-116.60720169950345, 43.26714474510305], + [-116.64339608381675, 43.268206153413395], + [-116.6785624070769, 43.274532295880086], + [-116.71127113162042, 43.28586443008807], + [-116.7401926230323, 43.301739263359636], + [-116.90191262303232, 43.410652293483516], + [-116.91245563737971, 43.41836257414538], + [-117.2289646373797, 43.66942845917556], + [-117.23934111816067, 43.67842459985051], + [-117.25943411816067, 43.697529650437545], + [-117.27980251604193, 43.722111404969176], + [-117.29221784328412, 43.74931172932149], + [-117.29607572181801, 43.777803874226485], + [-117.29549672181803, 43.80978996732102], + [-117.29218178569649, 43.83293911240257], + [-117.28318327404982, 43.85527900760285], + [-117.18831927404979, 44.030028579646306] + ] + ] + } + } + ] +} diff --git a/packages/turf-intersect/test/in/unable-to-complete-output-ring-2048-1.geojson b/packages/turf-intersect/test/in/unable-to-complete-output-ring-2048-1.geojson new file mode 100644 index 000000000..6f3fc1656 --- /dev/null +++ b/packages/turf-intersect/test/in/unable-to-complete-output-ring-2048-1.geojson @@ -0,0 +1,247 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "source": "https://github.com/Turfjs/turf/issues/2048#issue-819829932" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-3.83455192598234, 40.409050315155], + [-3.8345491088924044, 40.409032816373895], + [-3.8345418625081247, 40.40901607230197], + [-3.8345304653068033, 40.40900072640372], + [-3.8345153552783007, 40.40898736841227], + [-3.834497113093057, 40.408976511666445], + [-3.8344764397871756, 40.408968573383575], + [-3.8344541298221237, 40.40896385862635], + [-3.8344310405543442, 40.40896254857957], + [-3.8344080592879837, 40.40896469358739], + [-3.83438606917682, 40.408970211218694], + [-3.8343659152856744, 40.4089788894348], + [-3.834348372115476, 40.40899039473786], + [-3.834177858760829, 40.409126560378894], + [-3.83375168422429, 40.409032801990904], + [-3.8337284856464264, 40.40902956463916], + [-3.833704904835557, 40.4090299015569], + [-3.8336818820896954, 40.40903379930932], + [-3.8336603354539585, 40.409041102471356], + [-3.83364112411339, 40.409051519825255], + [-3.8336250141327364, 40.409064635972896], + [-3.833612647909254, 40.4090799278999], + [-3.8336044119232677, 40.40909284706399], + [-3.8335729899859303, 40.40911989936291], + [-3.83354357775375, 40.40912687044306], + [-3.8335137989493044, 40.40912125718645], + [-3.833480309818796, 40.40909557565847], + [-3.833396901450346, 40.40898192854682], + [-3.8333837868735388, 40.408967551586315], + [-3.833367263037019, 40.408955381441274], + [-3.8333479559674717, 40.40894587919202], + [-3.8333265971366535, 40.40893940484228], + [-3.8330251177882237, 40.40887304968846], + [-3.8328484611333167, 40.40876426559626], + [-3.832734951264248, 40.40843336454013], + [-3.832726932462509, 40.40841682588908], + [-3.832714830355114, 40.40840179621679], + [-3.8326991100208536, 40.40838885310396], + [-3.8326803755836294, 40.408378493945825], + [-3.8326593469962735, 40.40837111683777], + [-3.832636832373328, 40.408367005276865], + [-3.832613696936004, 40.40836631726752], + [-3.8325908297626894, 40.40836907924944], + [-3.832569109622699, 40.40837518508161], + [-3.8325493712061665, 40.40838440012121], + [-3.832532373047783, 40.40839637024059], + [-3.8325187683769677, 40.40841063543614], + [-3.832509080014675, 40.40842664750565], + [-3.832503680281511, 40.40844379111528], + [-3.8325027766893167, 40.40846140744634], + [-3.832506403966127, 40.408478819513206], + [-3.832629725743574, 40.40883832755169], + [-3.832630673594837, 40.408840282474216], + [-3.8326312267798404, 40.40884232335561], + [-3.832634676039257, 40.40884853742842], + [-3.8326377445716466, 40.40885486620945], + [-3.8326391750873223, 40.40885664276608], + [-3.8326402405435473, 40.40885856225713], + [-3.8326452156545074, 40.40886414454316], + [-3.8326498467432972, 40.40886989588979], + [-3.832651704949721, 40.4088714258083], + [-3.832653241732515, 40.40887315014393], + [-3.8326595515049795, 40.40887788611862], + [-3.8326655671804466, 40.40888283900928], + [-3.832667781667827, 40.40888406349555], + [-3.832669730719638, 40.40888552641043], + [-3.832895130800659, 40.40902432655466], + [-3.8329147852579775, 40.40903413960093], + [-3.8329366023975, 40.409040795056804], + [-3.8332143756147303, 40.40910193263683], + [-3.8332819982841775, 40.4091940714427], + [-3.8333012883881694, 40.409213565255875], + [-3.83336948838725, 40.40926586530512], + [-3.8333859436734707, 40.40927637405202], + [-3.8334046261255996, 40.409284440127564], + [-3.8334249180008944, 40.40928979682342], + [-3.83351881811523, 40.40930749684639], + [-3.8335399766319913, 40.40930996368926], + [-3.8335613724013182, 40.40930948223858], + [-3.8335823026760876, 40.40930606830765], + [-3.833674702782557, 40.40928416827969], + [-3.833694495571647, 40.40927792779691], + [-3.8337124823739304, 40.40926906767858], + [-3.833728071449941, 40.40925787940999], + [-3.8337678988659136, 40.40922359047], + [-3.8341811162739527, 40.40931449813965], + [-3.83418743179838, 40.40931538856986], + [-3.8341936207298533, 40.40931669648408], + [-3.834198787843836, 40.40931698966665], + [-3.834203882679486, 40.40931770799109], + [-3.8342103049943153, 40.40931764315093], + [-3.8342167101145117, 40.40931800657809], + [-3.834221853061412, 40.409317526560784], + [-3.834227034046546, 40.40931747425317], + [-3.8342333163447924, 40.40931645663443], + [-3.8342396915076176, 40.40931586160816], + [-3.834244612646042, 40.40931462683783], + [-3.834249680677578, 40.40931380590834], + [-3.8342555815332413, 40.409311874617664], + [-3.834261681743722, 40.40931034400458], + [-3.834266191956608, 40.40930840193288], + [-3.834270952272051, 40.40930684392955], + [-3.834276244917819, 40.40930407318568], + [-3.834281835747566, 40.40930166580659], + [-3.8342857617095607, 40.40929909106643], + [-3.834290031372107, 40.40929685586274], + [-3.834294512414421, 40.409293352144026], + [-3.834299379010279, 40.409290160513585], + [-3.83451932993786, 40.40911451550404], + [-3.834533588198565, 40.40910062523229], + [-3.8345440136045337, 40.40908488381169], + [-3.834550205515344, 40.40906789617728], + [-3.83455192598234, 40.409050315155] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-3.83455192598234, 40.409050315155], + [-3.8345491088924044, 40.409032816373895], + [-3.8345418625081247, 40.40901607230197], + [-3.8345304653068033, 40.40900072640372], + [-3.8345153552783007, 40.40898736841227], + [-3.834497113093057, 40.408976511666445], + [-3.8344764397871756, 40.408968573383575], + [-3.8344541298221237, 40.40896385862635], + [-3.8344310405543442, 40.40896254857957], + [-3.8344080592879837, 40.40896469358739], + [-3.83438606917682, 40.408970211218694], + [-3.8343659152856744, 40.4089788894348], + [-3.834348372115476, 40.40899039473786], + [-3.8341860126530114, 40.40912004898301], + [-3.8336592689516156, 40.40894040968877], + [-3.8336560611269483, 40.408853862971455], + [-3.8336531483024934, 40.40883639291525], + [-3.8336458201698336, 40.40881969002402], + [-3.833634357725855, 40.40880439476212], + [-3.8336192004948124, 40.40879109361868], + [-3.8336009296747, 40.40878029661897], + [-3.8335802458513806, 40.40877241776803], + [-3.8335579421350627, 40.40876775917592], + [-3.833534873749143, 40.408766499473685], + [-3.8335119252374934, 40.40876868696387], + [-3.8329991583627283, 40.40885706407902], + [-3.8328484611367055, 40.40876426560614], + [-3.832734951264248, 40.40843336454013], + [-3.832726932462509, 40.40841682588908], + [-3.832714830355114, 40.40840179621679], + [-3.8326991100208536, 40.40838885310396], + [-3.8326803755836294, 40.408378493945825], + [-3.8326593469962735, 40.40837111683777], + [-3.832636832373328, 40.408367005276865], + [-3.832613696936004, 40.40836631726752], + [-3.8325908297626894, 40.40836907924944], + [-3.832569109622699, 40.40837518508161], + [-3.8325493712061665, 40.40838440012121], + [-3.832532373047783, 40.40839637024059], + [-3.8325187683769677, 40.40841063543614], + [-3.832509080014675, 40.40842664750565], + [-3.832503680281511, 40.40844379111528], + [-3.8325027766893167, 40.40846140744634], + [-3.832506403966127, 40.408478819513206], + [-3.832629725743574, 40.40883832755169], + [-3.832630673594837, 40.408840282474216], + [-3.8326312267798404, 40.40884232335561], + [-3.832634676039257, 40.40884853742842], + [-3.8326377445716466, 40.40885486620945], + [-3.8326391750873223, 40.40885664276608], + [-3.8326402405435473, 40.40885856225713], + [-3.8326452156545074, 40.40886414454316], + [-3.8326498467432972, 40.40886989588979], + [-3.832651704949721, 40.4088714258083], + [-3.832653241732515, 40.40887315014393], + [-3.8326595515049795, 40.40887788611862], + [-3.8326655671804466, 40.40888283900928], + [-3.832667781667827, 40.40888406349555], + [-3.832669730719638, 40.40888552641043], + [-3.832895130800659, 40.40902432655466], + [-3.832912826549752, 40.40903334387367], + [-3.832932361033984, 40.40903979538643], + [-3.8329530993491185, 40.40904347140754], + [-3.8329743674638825, 40.40904425245991], + [-3.832995474127387, 40.409042113158], + [-3.8334239904054592, 40.4089682573086], + [-3.8334252386134966, 40.40900193691386], + [-3.833427914072361, 40.40901859790407], + [-3.833434609021053, 40.40903459013415], + [-3.8334450902424826, 40.4090493565116], + [-3.833458992623358, 40.409062382646496], + [-3.833475831872736, 40.409073214770295], + [-3.8334950213922845, 40.40908147554315], + [-3.8341656220460503, 40.40931017582205], + [-3.8341685519810556, 40.4093109223674], + [-3.8341713106692126, 40.409311981672516], + [-3.834179509631203, 40.40931371436887], + [-3.834187578725782, 40.40931577036844], + [-3.8341906436391717, 40.40931606733198], + [-3.8341936207298533, 40.40931669648408], + [-3.8342021060938283, 40.40931717794449], + [-3.8342105469212235, 40.409317995787504], + [-3.834213629029606, 40.40931783175702], + [-3.8342167101145117, 40.40931800657809], + [-3.8342251557914957, 40.40931721830024], + [-3.834233643974112, 40.4093167665573], + [-3.8342366248332436, 40.40931614783642], + [-3.8342396915076176, 40.40931586160816], + [-3.8342477729339226, 40.40931383388519], + [-3.834255982274187, 40.40931212991664], + [-3.834258747330996, 40.40931108028254], + [-3.834261681743722, 40.40931034400458], + [-3.8342690883535533, 40.409307154761045], + [-3.8342767033700853, 40.40930426404971], + [-3.834279146364692, 40.40930282383937], + [-3.834281835747566, 40.40930166580659], + [-3.8342882829085267, 40.4092974376036], + [-3.8342950109596026, 40.40929347123841], + [-3.834297038009003, 40.409291695798444], + [-3.834299379010279, 40.409290160513585], + [-3.83451932993786, 40.40911451550404], + [-3.834533588198565, 40.40910062523229], + [-3.8345440136045337, 40.40908488381169], + [-3.834550205515344, 40.40906789617728], + [-3.83455192598234, 40.409050315155] + ] + ] + } + } + ] +} diff --git a/packages/turf-intersect/test/in/unable-to-complete-output-ring-2048-2.geojson b/packages/turf-intersect/test/in/unable-to-complete-output-ring-2048-2.geojson new file mode 100644 index 000000000..b29da5bcc --- /dev/null +++ b/packages/turf-intersect/test/in/unable-to-complete-output-ring-2048-2.geojson @@ -0,0 +1,49 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "source": "https://github.com/Turfjs/turf/issues/2048#issuecomment-805719137" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [973.2050807568878, 709.8076211353313], + [923.2050807568877, 623.2050807568874], + [923.2050807568877, 623.2050807568874], + [973.2050807568877, 536.6025403784436], + [973.2050807568877, 536.6025403784436], + [1073.2050807568876, 536.6025403784436], + [1073.2050807568876, 536.6025403784436], + [1123.2050807568878, 623.2050807568874], + [1123.2050807568878, 623.2050807568874], + [1073.2050807568878, 709.8076211353313], + [1073.2050807568878, 709.8076211353313], + [973.2050807568878, 709.8076211353313] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [1009.8076211353315, 573.2050807568876], + [923.2050807568877, 623.2050807568876], + [923.2050807568877, 623.2050807568876], + [873.2050807568877, 536.6025403784438], + [873.2050807568877, 536.6025403784438], + [959.8076211353315, 486.60254037844373], + [959.8076211353315, 486.60254037844373], + [1009.8076211353315, 573.2050807568876] + ] + ] + } + } + ] +} diff --git a/packages/turf-intersect/test/out/Intersect2.geojson b/packages/turf-intersect/test/out/Intersect2.geojson index b3cb280f2..8755e4c99 100644 --- a/packages/turf-intersect/test/out/Intersect2.geojson +++ b/packages/turf-intersect/test/out/Intersect2.geojson @@ -59,7 +59,7 @@ [-80.0066252126598, 32.84617770697059], [-79.99351501464844, 32.84440429734253], [-79.98184204101562, 32.90495631913751], - [-80.0050160405751, 32.91295307720083], + [-80.00501604057509, 32.91295307720083], [-80.068359375, 32.88189375925038] ] ] diff --git a/packages/turf-intersect/test/out/issue-1004.geojson b/packages/turf-intersect/test/out/issue-1004.geojson index 08be62434..45a42a10e 100644 --- a/packages/turf-intersect/test/out/issue-1004.geojson +++ b/packages/turf-intersect/test/out/issue-1004.geojson @@ -132,12 +132,12 @@ "type": "Polygon", "coordinates": [ [ - [-114.757217, 32.619867791666415], - [-114.757213, 32.61975337499965], - [-114.757213, 32.61992600000001], + [-114.757217, 32.619867791666664], + [-114.757213, 32.619753375], + [-114.757213, 32.619926], [-114.757215, 32.619925], [-114.757217, 32.619925], - [-114.757217, 32.619867791666415] + [-114.757217, 32.619867791666664] ] ] } diff --git a/packages/turf-intersect/test/out/issue-412.geojson b/packages/turf-intersect/test/out/issue-412.geojson index c2a5ecd53..aa52f6dec 100644 --- a/packages/turf-intersect/test/out/issue-412.geojson +++ b/packages/turf-intersect/test/out/issue-412.geojson @@ -48,9 +48,10 @@ "coordinates": [ [ [11.076136797048882, 9.856269774244707], - [11.102599853580067, 9.85386305739084], - [11.167525294018606, 9.85386305739084], - [11.1687361088318, 9.855073034114678], + [11.076136797048889, 9.856269774244705], + [11.102599853580049, 9.85386305739084], + [11.167525294018608, 9.85386305739084], + [11.168736108831801, 9.855073034114678], [11.076136797048882, 9.856269774244707] ] ] diff --git a/packages/turf-intersect/test/out/multipolygon-input.geojson b/packages/turf-intersect/test/out/multipolygon-input.geojson index a5929c676..971c29d01 100644 --- a/packages/turf-intersect/test/out/multipolygon-input.geojson +++ b/packages/turf-intersect/test/out/multipolygon-input.geojson @@ -79,7 +79,7 @@ [2.3500442504882812, 48.85613168160397], [2.3500442504882812, 48.8615527456014], [2.3273849487304688, 48.87148983809234], - [2.3247093480083025, 48.87186313938144], + [2.324709348008303, 48.87186313938144], [2.3239517211914062, 48.86787657822752] ] ], @@ -87,8 +87,8 @@ [ [2.3363113403320312, 48.87690923865779], [2.3514175415039062, 48.86516646209463], - [2.353365325175929, 48.86714166070064], - [2.3444407066054653, 48.87804332946407], + [2.353365325175928, 48.86714166070064], + [2.3444407066054644, 48.87804332946407], [2.3363113403320312, 48.87690923865779] ] ] diff --git a/packages/turf-invariant/README.md b/packages/turf-invariant/README.md index a885eebbb..381e2d58e 100644 --- a/packages/turf-invariant/README.md +++ b/packages/turf-invariant/README.md @@ -64,6 +64,8 @@ Enforce expectations about types of GeoJSON objects for Turf. * Throws **[Error][9]** if value is not the expected type. +Returns **void** + ## featureOf Enforce expectations about types of [Feature][5] inputs for Turf. @@ -79,6 +81,8 @@ Internally this uses [geojsonType][10] to judge geometry types. * Throws **[Error][9]** error if value is not the expected type. +Returns **void** + ## collectionOf Enforce expectations about types of [FeatureCollection][11] inputs for Turf. diff --git a/packages/turf-invariant/index.ts b/packages/turf-invariant/index.ts index c544d3c75..a672b17bd 100644 --- a/packages/turf-invariant/index.ts +++ b/packages/turf-invariant/index.ts @@ -14,7 +14,7 @@ import { isNumber } from "@turf/helpers"; /** * Unwrap a coordinate from a Point Feature, Geometry or a single coordinate. * - * @name getCoord + * @function * @param {Array|Geometry|Feature} coord GeoJSON Point or an Array of numbers * @returns {Array} coordinates * @example @@ -55,7 +55,7 @@ function getCoord(coord: Feature | Point | number[]): number[] { /** * Unwrap coordinates from a Feature, Geometry Object or an Array * - * @name getCoords + * @function * @param {Array|Geometry|Feature} coords Feature, Geometry Object or an Array * @returns {Array} coordinates * @example @@ -97,7 +97,7 @@ function getCoords< /** * Checks if coordinates contains a number * - * @name containsNumber + * @function * @param {Array} coordinates GeoJSON Coordinates * @returns {boolean} true if Array contains a number */ @@ -119,7 +119,7 @@ function containsNumber(coordinates: any[]): boolean { /** * Enforce expectations about types of GeoJSON objects for Turf. * - * @name geojsonType + * @function * @param {GeoJSON} value any GeoJSON object * @param {string} type expected GeoJSON type * @param {string} name name of calling function @@ -146,7 +146,7 @@ function geojsonType(value: any, type: string, name: string): void { * Enforce expectations about types of {@link Feature} inputs for Turf. * Internally this uses {@link geojsonType} to judge geometry types. * - * @name featureOf + * @function * @param {Feature} feature a feature with an expected geometry type * @param {string} type expected GeoJSON type * @param {string} name name of calling function @@ -180,7 +180,7 @@ function featureOf(feature: Feature, type: string, name: string): void { * Enforce expectations about types of {@link FeatureCollection} inputs for Turf. * Internally this uses {@link geojsonType} to judge geometry types. * - * @name collectionOf + * @function * @param {FeatureCollection} featureCollection a FeatureCollection for which features will be judged * @param {string} type expected GeoJSON type * @param {string} name name of calling function diff --git a/packages/turf-invariant/package.json b/packages/turf-invariant/package.json index 9d3588242..dccfef96a 100644 --- a/packages/turf-invariant/package.json +++ b/packages/turf-invariant/package.json @@ -1,7 +1,7 @@ { "name": "@turf/invariant", - "version": "7.0.0", - "description": "turf invariant module", + "version": "7.2.0", + "description": "Lightweight utility for input validation and data extraction in Turf.js. Ensures GeoJSON inputs are in the correct format and extracts specific components like coordinates or geometries.", "author": "Turf Authors", "contributors": [ "Tom MacWright <@tmcw>", @@ -56,17 +56,17 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/helpers": "workspace:^", + "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-isobands/index.ts b/packages/turf-isobands/index.ts index b03e2f26b..7f7ab8a50 100644 --- a/packages/turf-isobands/index.ts +++ b/packages/turf-isobands/index.ts @@ -34,7 +34,7 @@ type GroupedRings = * Takes a square or rectangular grid {@link FeatureCollection} of {@link Point} features with z-values and an array of * value breaks and generates filled contour isobands. * - * @name isobands + * @function * @param {FeatureCollection} pointGrid input points - must be square or rectangular * @param {Array} breaks where to draw contours * @param {Object} [options={}] options on output diff --git a/packages/turf-isobands/lib/matrix-to-grid.js b/packages/turf-isobands/lib/matrix-to-grid.js index bd63fb9d1..a8e633872 100644 --- a/packages/turf-isobands/lib/matrix-to-grid.js +++ b/packages/turf-isobands/lib/matrix-to-grid.js @@ -12,7 +12,7 @@ import { rhumbDestination } from "@turf/rhumb-destination"; * @param {Object} [options={}] optional parameters * @param {string} [options.zProperty='elevation'] the grid points property name associated with the matrix value * @param {Object} [options.properties={}] GeoJSON properties passed to all the points - * @param {string} [options.units='kilometers'] used in calculating cellSize, can be miles, or kilometers + * @param {Units} [options.units='kilometers'] used in calculating cellSize. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @returns {FeatureCollection} grid of points * * @example diff --git a/packages/turf-isobands/package.json b/packages/turf-isobands/package.json index 9426064c3..e5387b9a4 100644 --- a/packages/turf-isobands/package.json +++ b/packages/turf-isobands/package.json @@ -1,7 +1,7 @@ { "name": "@turf/isobands", - "version": "7.0.0", - "description": "turf isobands module", + "version": "7.2.0", + "description": "Takes a grid of values (GeoJSON format) and a set of threshold ranges. It outputs polygons that group areas within those ranges, effectively creating filled contour isobands.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>" @@ -57,32 +57,32 @@ "test:tape": "tsx test.ts" }, "devDependencies": { - "@turf/envelope": "workspace:^", - "@turf/point-grid": "workspace:^", - "@turf/random": "workspace:^", - "@turf/rhumb-destination": "workspace:^", - "@turf/truncate": "workspace:^", + "@turf/envelope": "workspace:*", + "@turf/point-grid": "workspace:*", + "@turf/random": "workspace:*", + "@turf/rhumb-destination": "workspace:*", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/area": "workspace:^", - "@turf/bbox": "workspace:^", - "@turf/boolean-point-in-polygon": "workspace:^", - "@turf/explode": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/area": "workspace:*", + "@turf/bbox": "workspace:*", + "@turf/boolean-point-in-polygon": "workspace:*", + "@turf/explode": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "marchingsquares": "^1.3.3", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-isolines/index.ts b/packages/turf-isolines/index.ts index bade82833..92080bfc3 100644 --- a/packages/turf-isolines/index.ts +++ b/packages/turf-isolines/index.ts @@ -17,7 +17,7 @@ import { * Takes a grid {@link FeatureCollection} of {@link Point} features with z-values and an array of * value breaks and generates [isolines](https://en.wikipedia.org/wiki/Contour_line). * - * @name isolines + * @function * @param {FeatureCollection} pointGrid input points * @param {Array} breaks values of `zProperty` where to draw isolines * @param {Object} [options={}] Optional parameters diff --git a/packages/turf-isolines/lib/matrix-to-grid.js b/packages/turf-isolines/lib/matrix-to-grid.js index bd63fb9d1..85d50e86d 100644 --- a/packages/turf-isolines/lib/matrix-to-grid.js +++ b/packages/turf-isolines/lib/matrix-to-grid.js @@ -12,7 +12,7 @@ import { rhumbDestination } from "@turf/rhumb-destination"; * @param {Object} [options={}] optional parameters * @param {string} [options.zProperty='elevation'] the grid points property name associated with the matrix value * @param {Object} [options.properties={}] GeoJSON properties passed to all the points - * @param {string} [options.units='kilometers'] used in calculating cellSize, can be miles, or kilometers + * @param {Units} [options.units='kilometers'] used in calculating cellSize. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @returns {FeatureCollection} grid of points * * @example diff --git a/packages/turf-isolines/package.json b/packages/turf-isolines/package.json index a1c266498..60920c2c8 100644 --- a/packages/turf-isolines/package.json +++ b/packages/turf-isolines/package.json @@ -1,7 +1,7 @@ { "name": "@turf/isolines", - "version": "7.0.0", - "description": "turf isolines module", + "version": "7.2.0", + "description": "Generate contour lines from a grid of data.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>" @@ -57,29 +57,29 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/envelope": "workspace:^", - "@turf/point-grid": "workspace:^", - "@turf/random": "workspace:^", - "@turf/rhumb-destination": "workspace:^", - "@turf/truncate": "workspace:^", + "@turf/envelope": "workspace:*", + "@turf/point-grid": "workspace:*", + "@turf/random": "workspace:*", + "@turf/rhumb-destination": "workspace:*", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/bbox": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/bbox": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "marchingsquares": "^1.3.3", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-kinks/index.ts b/packages/turf-kinks/index.ts index 331068832..88bae8dcf 100644 --- a/packages/turf-kinks/index.ts +++ b/packages/turf-kinks/index.ts @@ -14,7 +14,7 @@ import { point } from "@turf/helpers"; * {@link MultiPolygon|multi-polygon} or {@link Polygon|polygon} and * returns {@link Point|points} at all self-intersections. * - * @name kinks + * @function * @param {Feature} featureIn input feature * @returns {FeatureCollection} self-intersections * @example diff --git a/packages/turf-kinks/package.json b/packages/turf-kinks/package.json index 33c573846..76edb9219 100644 --- a/packages/turf-kinks/package.json +++ b/packages/turf-kinks/package.json @@ -1,7 +1,7 @@ { "name": "@turf/kinks", - "version": "7.0.0", - "description": "turf kinks module", + "version": "7.2.0", + "description": "Takes a GeoJSON feature and returns points at all self-intersections.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -51,21 +51,21 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/meta": "workspace:^", + "@turf/meta": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", + "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-length/README.md b/packages/turf-length/README.md index 6a280be53..2f0b03e45 100644 --- a/packages/turf-length/README.md +++ b/packages/turf-length/README.md @@ -11,7 +11,7 @@ Takes a [GeoJSON][1] and measures its length in the specified units, [(Multi)Poi * `geojson` **[Feature][3]<([LineString][4] | [MultiLineString][5])>** GeoJSON to measure * `options` **[Object][6]** Optional parameters (optional, default `{}`) - * `options.units` **[string][7]** can be degrees, radians, miles, or kilometers (optional, default `kilometers`) + * `options.units` **Units** Supports all valid Turf [Units][7]. (optional, default `kilometers`) ### Examples @@ -38,7 +38,7 @@ Returns **[number][8]** length of GeoJSON [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[7]: https://turfjs.org/docs/api/types/Units [8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number diff --git a/packages/turf-length/index.ts b/packages/turf-length/index.ts index 989013c76..4b30cf31c 100644 --- a/packages/turf-length/index.ts +++ b/packages/turf-length/index.ts @@ -6,10 +6,10 @@ import { segmentReduce } from "@turf/meta"; /** * Takes a {@link GeoJSON} and measures its length in the specified units, {@link (Multi)Point}'s distance are ignored. * - * @name length + * @function * @param {Feature} geojson GeoJSON to measure * @param {Object} [options={}] Optional parameters - * @param {string} [options.units=kilometers] can be degrees, radians, miles, or kilometers + * @param {Units} [options.units=kilometers] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @returns {number} length of GeoJSON * @example * var line = turf.lineString([[115, -32], [131, -22], [143, -25], [150, -34]]); diff --git a/packages/turf-length/package.json b/packages/turf-length/package.json index 718fe5ea6..5765d5e37 100644 --- a/packages/turf-length/package.json +++ b/packages/turf-length/package.json @@ -1,7 +1,7 @@ { "name": "@turf/length", - "version": "7.0.0", - "description": "turf length module", + "version": "7.2.0", + "description": " Calculates the length of a line, perfect for paths or routes.", "author": "Turf Authors", "contributors": [ "Denis Carriere <@DenisCarriere>", @@ -58,21 +58,21 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/distance": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/distance": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-line-arc/README.md b/packages/turf-line-arc/README.md index 0a8327926..97609db47 100644 --- a/packages/turf-line-arc/README.md +++ b/packages/turf-line-arc/README.md @@ -16,7 +16,7 @@ Creates a circular arc, of a circle of the given radius and center point, betwee * `options` **[Object][3]** Optional parameters (optional, default `{}`) * `options.steps` **[number][2]** number of steps (straight segments) that will constitute the arc (optional, default `64`) - * `options.units` **[string][4]** miles, kilometers, degrees, or radians (optional, default `'kilometers'`) + * `options.units` **Units** Supports all valid Turf [Units][4]. (optional, default `'kilometers'`) ### Examples @@ -40,7 +40,7 @@ Returns **[Feature][5]<[LineString][6]>** line arc [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[4]: https://turfjs.org/docs/api/types/Units [5]: https://tools.ietf.org/html/rfc7946#section-3.2 diff --git a/packages/turf-line-arc/index.ts b/packages/turf-line-arc/index.ts index 078b5850e..efc7c03c4 100644 --- a/packages/turf-line-arc/index.ts +++ b/packages/turf-line-arc/index.ts @@ -7,14 +7,14 @@ import { Coord, lineString, Units } from "@turf/helpers"; * Creates a circular arc, of a circle of the given radius and center point, between bearing1 and bearing2; * 0 bearing is North of center point, positive clockwise. * - * @name lineArc + * @function * @param {Coord} center center point * @param {number} radius radius of the circle * @param {number} bearing1 angle, in decimal degrees, of the first radius of the arc * @param {number} bearing2 angle, in decimal degrees, of the second radius of the arc * @param {Object} [options={}] Optional parameters * @param {number} [options.steps=64] number of steps (straight segments) that will constitute the arc - * @param {string} [options.units='kilometers'] miles, kilometers, degrees, or radians + * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @returns {Feature} line arc * @example * var center = turf.point([-75, 40]); diff --git a/packages/turf-line-arc/package.json b/packages/turf-line-arc/package.json index 901757d57..4cd34680a 100644 --- a/packages/turf-line-arc/package.json +++ b/packages/turf-line-arc/package.json @@ -1,7 +1,7 @@ { "name": "@turf/line-arc", - "version": "7.0.0", - "description": "turf line-arc module", + "version": "7.2.0", + "description": "Creates a circular arc, of a circle of the given radius and center point, between two bearings.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -50,23 +50,23 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/truncate": "workspace:^", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/circle": "workspace:^", - "@turf/destination": "workspace:^", - "@turf/helpers": "workspace:^", + "@turf/circle": "workspace:*", + "@turf/destination": "workspace:*", + "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-line-chunk/README.md b/packages/turf-line-chunk/README.md index ef0b74797..d422c38f2 100644 --- a/packages/turf-line-chunk/README.md +++ b/packages/turf-line-chunk/README.md @@ -13,7 +13,7 @@ If the line is shorter than the segment length then the original line is returne * `segmentLength` **[number][6]** how long to make each segment * `options` **[Object][7]** Optional parameters (optional, default `{}`) - * `options.units` **[string][8]** units can be degrees, radians, miles, or kilometers (optional, default `'kilometers'`) + * `options.units` **Units** Supports all valid Turf [Units][8] (optional, default `'kilometers'`) * `options.reverse` **[boolean][9]** reverses coordinates to start the first chunked segment at the end (optional, default `false`) ### Examples @@ -43,7 +43,7 @@ Returns **[FeatureCollection][2]<[LineString][1]>** collection of line segments [7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[8]: https://turfjs.org/docs/api/types/Units [9]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean diff --git a/packages/turf-line-chunk/index.js b/packages/turf-line-chunk/index.js index d8f7e1bdb..28074c5f1 100644 --- a/packages/turf-line-chunk/index.js +++ b/packages/turf-line-chunk/index.js @@ -7,11 +7,11 @@ import { featureCollection, isObject } from "@turf/helpers"; * Divides a {@link LineString} into chunks of a specified length. * If the line is shorter than the segment length then the original line is returned. * - * @name lineChunk + * @function * @param {FeatureCollection|Geometry|Feature} geojson the lines to split * @param {number} segmentLength how long to make each segment * @param {Object} [options={}] Optional parameters - * @param {string} [options.units='kilometers'] units can be degrees, radians, miles, or kilometers + * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @param {boolean} [options.reverse=false] reverses coordinates to start the first chunked segment at the end * @returns {FeatureCollection} collection of line segments * @example @@ -56,7 +56,7 @@ function lineChunk(geojson, segmentLength, options) { * @private * @param {Feature} line GeoJSON LineString * @param {number} segmentLength how long to make each segment - * @param {string}[units='kilometers'] units can be degrees, radians, miles, or kilometers + * @param {Units}[units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @param {Function} callback iterate over sliced line segments * @returns {void} */ diff --git a/packages/turf-line-chunk/package.json b/packages/turf-line-chunk/package.json index 6e5c518fa..0b50c65f2 100644 --- a/packages/turf-line-chunk/package.json +++ b/packages/turf-line-chunk/package.json @@ -1,7 +1,7 @@ { "name": "@turf/line-chunk", - "version": "7.0.0", - "description": "turf line-chunk module", + "version": "7.2.0", + "description": "Divides a LineString into chunks of a specified length.", "author": "Turf Authors", "contributors": [ "Tim Channell <@tcql>", @@ -59,22 +59,22 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/truncate": "workspace:^", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/length": "workspace:^", - "@turf/line-slice-along": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/length": "workspace:*", + "@turf/line-slice-along": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10" } } diff --git a/packages/turf-line-intersect/README.md b/packages/turf-line-intersect/README.md index 2c9881046..6e389836c 100644 --- a/packages/turf-line-intersect/README.md +++ b/packages/turf-line-intersect/README.md @@ -13,7 +13,7 @@ Takes any LineString or Polygon GeoJSON and returns the intersecting point(s). * `options` **[Object][2]** Optional parameters (optional, default `{}`) * `options.removeDuplicates` **[boolean][3]** remove duplicate intersections (optional, default `true`) - * `options.ignoreSelfIntersections` **[boolean][3]** ignores self-intersections on input features (optional, default `false`) + * `options.ignoreSelfIntersections` **[boolean][3]** ignores self-intersections on input features (optional, default `true`) ### Examples diff --git a/packages/turf-line-intersect/index.ts b/packages/turf-line-intersect/index.ts index e4c83d30e..7e2977896 100644 --- a/packages/turf-line-intersect/index.ts +++ b/packages/turf-line-intersect/index.ts @@ -14,12 +14,12 @@ import { sweeplineIntersections as findIntersections } from "./lib/sweepline-int /** * Takes any LineString or Polygon GeoJSON and returns the intersecting point(s). * - * @name lineIntersect + * @function * @param {GeoJSON} line1 any LineString or Polygon * @param {GeoJSON} line2 any LineString or Polygon * @param {Object} [options={}] Optional parameters * @param {boolean} [options.removeDuplicates=true] remove duplicate intersections - * @param {boolean} [options.ignoreSelfIntersections=false] ignores self-intersections on input features + * @param {boolean} [options.ignoreSelfIntersections=true] ignores self-intersections on input features * @returns {FeatureCollection} point(s) that intersect both * @example * var line1 = turf.lineString([[126, -11], [129, -21]]); @@ -40,7 +40,7 @@ function lineIntersect< ignoreSelfIntersections?: boolean; } = {} ): FeatureCollection { - const { removeDuplicates = true, ignoreSelfIntersections = false } = options; + const { removeDuplicates = true, ignoreSelfIntersections = true } = options; let features: Feature[] = []; if (line1.type === "FeatureCollection") features = features.concat(line1.features); diff --git a/packages/turf-line-intersect/package.json b/packages/turf-line-intersect/package.json index 15089f312..c3e4a423d 100644 --- a/packages/turf-line-intersect/package.json +++ b/packages/turf-line-intersect/package.json @@ -1,7 +1,7 @@ { "name": "@turf/line-intersect", - "version": "7.0.0", - "description": "turf line-intersect module", + "version": "7.2.0", + "description": "Takes any LineString or Polygon GeoJSON and returns the intersecting point(s).", "author": "Turf Authors", "contributors": [ "Denis Carriere <@DenisCarriere>", @@ -56,22 +56,22 @@ "test:tape": "tsx test.ts" }, "devDependencies": { - "@turf/truncate": "workspace:^", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", + "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", "sweepline-intersections": "^1.5.0", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-line-intersect/test.ts b/packages/turf-line-intersect/test.ts index 40d45e91d..c61092572 100644 --- a/packages/turf-line-intersect/test.ts +++ b/packages/turf-line-intersect/test.ts @@ -4,13 +4,9 @@ import path from "path"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { truncate } from "@turf/truncate"; -import { - featureCollection, - // geometryCollection, - lineString, - polygon, -} from "@turf/helpers"; +import { featureCollection, lineString, polygon } from "@turf/helpers"; import { lineIntersect } from "./index.js"; +import { Feature, LineString, Point } from "geojson"; const directories = { in: path.join("test", "in") + path.sep, @@ -21,14 +17,18 @@ const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, - geojson: loadJsonFileSync(directories.in + filename), + geojson: loadJsonFileSync( + directories.in + filename + ) as GeoJSON.FeatureCollection, }; }); test("turf-line-intersect", (t) => { for (const { filename, name, geojson } of fixtures) { const [line1, line2] = geojson.features; - const results = truncate(lineIntersect(line1, line2)); + const results: GeoJSON.FeatureCollection = truncate( + lineIntersect(line1, line2) + ); results.features.push(line1); results.features.push(line2); @@ -132,3 +132,52 @@ test("turf-line-intersect - polygon support #586", (t) => { t.equal(results.features.length, 1, "should return single point"); t.end(); }); + +/** + * ensures that the self intersection param behaves as expected - + * since it cannot be verified in the fixture format. + */ +test("turf-line-intersect - self intersection behavior", (t) => { + const line1: Feature = { + type: "Feature", + properties: {}, + geometry: { + type: "LineString", + coordinates: [ + [0, 0], + [0, 2], + [2, 1], + [-1, 1], + ], + }, + }; + const line2: Feature = { + type: "Feature", + properties: {}, + geometry: { + type: "LineString", + coordinates: [ + [3, 3], + [4, 4], + [5, 5], + ], + }, + }; + + const ignored = lineIntersect(line1, line2); + t.equal( + ignored.features.length, + 0, + "self intersections should be ignored by default" + ); + + const included = lineIntersect(line1, line2, { + ignoreSelfIntersections: false, + }); + t.equal( + included.features.length, + 1, + "self intersections should be included when ignoreSelfIntersections set to false" + ); + t.end(); +}); diff --git a/packages/turf-line-intersect/test/in/self-intersecting-line.geojson b/packages/turf-line-intersect/test/in/self-intersecting-line.geojson new file mode 100644 index 000000000..ec5b6ebf7 --- /dev/null +++ b/packages/turf-line-intersect/test/in/self-intersecting-line.geojson @@ -0,0 +1,30 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [0, 0], + [0, 2], + [2, 1], + [-1, 1] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [3, 3], + [4, 4], + [5, 5] + ] + } + } + ] +} diff --git a/packages/turf-line-intersect/test/in/self-intersecting-multiline.geojson b/packages/turf-line-intersect/test/in/self-intersecting-multiline.geojson new file mode 100644 index 000000000..9f08036d8 --- /dev/null +++ b/packages/turf-line-intersect/test/in/self-intersecting-multiline.geojson @@ -0,0 +1,36 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [0, 0], + [1, 2], + [0, 4] + ], + [ + [1, 0], + [0, 2], + [1, 4] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [3, 3], + [4, 4], + [5, 5] + ] + } + } + ] +} diff --git a/packages/turf-line-intersect/test/in/self-intersecting-multipoly.geojson b/packages/turf-line-intersect/test/in/self-intersecting-multipoly.geojson new file mode 100644 index 000000000..f907df2dc --- /dev/null +++ b/packages/turf-line-intersect/test/in/self-intersecting-multipoly.geojson @@ -0,0 +1,52 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "fill": "#ed333b", + "fill-opacity": 0.5 + }, + "geometry": { + "coordinates": [ + [ + [ + [2.8208987964653716, 5.206515064293427], + [2.8208987964653716, -4.530167455797994], + [6.383916833323553, -4.530167455797994], + [6.383916833323553, 5.206515064293427], + [2.8208987964653716, 5.206515064293427] + ] + ], + [ + [ + [-0.33343506038161763, 3.67541603033537], + [-0.33343506038161763, 2.1793088174136273], + [8.775841349855597, 2.1793088174136273], + [8.775841349855597, 3.67541603033537], + [-0.33343506038161763, 3.67541603033537] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 0 + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "coordinates": [ + [ + [-7.951422534380413, 5.231149187754099], + [-7.951422534380413, -4.552832252613101], + [-5.701165954657256, -4.552832252613101], + [-5.701165954657256, 5.231149187754099], + [-7.951422534380413, 5.231149187754099] + ] + ], + "type": "Polygon" + } + } + ] +} diff --git a/packages/turf-line-intersect/test/in/self-intersecting-poly.geojson b/packages/turf-line-intersect/test/in/self-intersecting-poly.geojson new file mode 100644 index 000000000..241a878a9 --- /dev/null +++ b/packages/turf-line-intersect/test/in/self-intersecting-poly.geojson @@ -0,0 +1,44 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "coordinates": [ + [ + [-0.8680870854922205, 3.0368343508535673], + [-1.321147431010786, 5.333329344976903], + [1.0099462525165848, 5.611566335081363], + [0.47439299724965167, -1.9282285399474688], + [3.2162894164922875, -1.8166964568157766], + [2.707220996335252, 7.192842763774053], + [-3.8645185945755713, 6.519248925309753], + [-3.8571038955967083, 0.3483632770754781], + [-0.5093053180867742, 0.39824548653076874], + [4.4119165583018685, 0.21046777461485533], + [3.9804563423212755, 3.7937082620644844], + [-0.8680870854922205, 3.0368343508535673] + ] + ], + "type": "Polygon" + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "coordinates": [ + [ + [-7.4564971746842446, 6.278543929857676], + [-13.631981273628753, 6.323585458965155], + [-12.43687692686214, -2.589094309688946], + [-6.376915352576532, -3.0767722870515115], + [-7.4564971746842446, 6.278543929857676] + ] + ], + "type": "Polygon" + } + } + ] +} diff --git a/packages/turf-line-intersect/test/out/self-intersecting-line.geojson b/packages/turf-line-intersect/test/out/self-intersecting-line.geojson new file mode 100644 index 000000000..ec5b6ebf7 --- /dev/null +++ b/packages/turf-line-intersect/test/out/self-intersecting-line.geojson @@ -0,0 +1,30 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [0, 0], + [0, 2], + [2, 1], + [-1, 1] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [3, 3], + [4, 4], + [5, 5] + ] + } + } + ] +} diff --git a/packages/turf-line-intersect/test/out/self-intersecting-multiline.geojson b/packages/turf-line-intersect/test/out/self-intersecting-multiline.geojson new file mode 100644 index 000000000..9f08036d8 --- /dev/null +++ b/packages/turf-line-intersect/test/out/self-intersecting-multiline.geojson @@ -0,0 +1,36 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [0, 0], + [1, 2], + [0, 4] + ], + [ + [1, 0], + [0, 2], + [1, 4] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [3, 3], + [4, 4], + [5, 5] + ] + } + } + ] +} diff --git a/packages/turf-line-intersect/test/out/self-intersecting-multipoly.geojson b/packages/turf-line-intersect/test/out/self-intersecting-multipoly.geojson new file mode 100644 index 000000000..f907df2dc --- /dev/null +++ b/packages/turf-line-intersect/test/out/self-intersecting-multipoly.geojson @@ -0,0 +1,52 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "fill": "#ed333b", + "fill-opacity": 0.5 + }, + "geometry": { + "coordinates": [ + [ + [ + [2.8208987964653716, 5.206515064293427], + [2.8208987964653716, -4.530167455797994], + [6.383916833323553, -4.530167455797994], + [6.383916833323553, 5.206515064293427], + [2.8208987964653716, 5.206515064293427] + ] + ], + [ + [ + [-0.33343506038161763, 3.67541603033537], + [-0.33343506038161763, 2.1793088174136273], + [8.775841349855597, 2.1793088174136273], + [8.775841349855597, 3.67541603033537], + [-0.33343506038161763, 3.67541603033537] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 0 + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "coordinates": [ + [ + [-7.951422534380413, 5.231149187754099], + [-7.951422534380413, -4.552832252613101], + [-5.701165954657256, -4.552832252613101], + [-5.701165954657256, 5.231149187754099], + [-7.951422534380413, 5.231149187754099] + ] + ], + "type": "Polygon" + } + } + ] +} diff --git a/packages/turf-line-intersect/test/out/self-intersecting-poly.geojson b/packages/turf-line-intersect/test/out/self-intersecting-poly.geojson new file mode 100644 index 000000000..241a878a9 --- /dev/null +++ b/packages/turf-line-intersect/test/out/self-intersecting-poly.geojson @@ -0,0 +1,44 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "coordinates": [ + [ + [-0.8680870854922205, 3.0368343508535673], + [-1.321147431010786, 5.333329344976903], + [1.0099462525165848, 5.611566335081363], + [0.47439299724965167, -1.9282285399474688], + [3.2162894164922875, -1.8166964568157766], + [2.707220996335252, 7.192842763774053], + [-3.8645185945755713, 6.519248925309753], + [-3.8571038955967083, 0.3483632770754781], + [-0.5093053180867742, 0.39824548653076874], + [4.4119165583018685, 0.21046777461485533], + [3.9804563423212755, 3.7937082620644844], + [-0.8680870854922205, 3.0368343508535673] + ] + ], + "type": "Polygon" + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "coordinates": [ + [ + [-7.4564971746842446, 6.278543929857676], + [-13.631981273628753, 6.323585458965155], + [-12.43687692686214, -2.589094309688946], + [-6.376915352576532, -3.0767722870515115], + [-7.4564971746842446, 6.278543929857676] + ] + ], + "type": "Polygon" + } + } + ] +} diff --git a/packages/turf-line-offset/README.md b/packages/turf-line-offset/README.md index 3301253d7..ecdc23e7e 100644 --- a/packages/turf-line-offset/README.md +++ b/packages/turf-line-offset/README.md @@ -12,7 +12,7 @@ Takes a [line][1] and returns a [line][1] at offset by the specified distance. * `distance` **[number][5]** distance to offset the line (can be of negative value) * `options` **[Object][6]** Optional parameters (optional, default `{}`) - * `options.units` **[string][7]** can be degrees, radians, miles, kilometers, inches, yards, meters (optional, default `'kilometers'`) + * `options.units` **Units** Supports all valid Turf [Units][7]. (optional, default `'kilometers'`) ### Examples @@ -40,7 +40,7 @@ Returns **[Feature][3]<([LineString][1] | [MultiLineString][4])>** Line offset f [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[7]: https://turfjs.org/docs/api/types/Units diff --git a/packages/turf-line-offset/index.js b/packages/turf-line-offset/index.js index 1c936c4b2..36c867173 100644 --- a/packages/turf-line-offset/index.js +++ b/packages/turf-line-offset/index.js @@ -11,11 +11,11 @@ import { intersection } from "./lib/intersection.js"; /** * Takes a {@link LineString|line} and returns a {@link LineString|line} at offset by the specified distance. * - * @name lineOffset + * @function * @param {Geometry|Feature} geojson input GeoJSON * @param {number} distance distance to offset the line (can be of negative value) * @param {Object} [options={}] Optional parameters - * @param {string} [options.units='kilometers'] can be degrees, radians, miles, kilometers, inches, yards, meters + * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @returns {Feature} Line offset from the input line * @example * var line = turf.lineString([[-83, 30], [-84, 36], [-78, 41]], { "stroke": "#F00" }); diff --git a/packages/turf-line-offset/package.json b/packages/turf-line-offset/package.json index 33831dd6f..4e5a91f4e 100644 --- a/packages/turf-line-offset/package.json +++ b/packages/turf-line-offset/package.json @@ -1,7 +1,7 @@ { "name": "@turf/line-offset", - "version": "7.0.0", - "description": "turf line-offset module", + "version": "7.2.0", + "description": "Takes a line and returns a line at offset by the specified distance.", "author": "Turf Authors", "contributors": [ "David Wee <@rook2pawn>", @@ -57,21 +57,21 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/truncate": "workspace:^", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10" } } diff --git a/packages/turf-line-overlap/index.ts b/packages/turf-line-overlap/index.ts index 8027d2747..74d477a81 100644 --- a/packages/turf-line-overlap/index.ts +++ b/packages/turf-line-overlap/index.ts @@ -19,7 +19,7 @@ import equal from "fast-deep-equal"; /** * Takes any LineString or Polygon and returns the overlapping lines between both features. * - * @name lineOverlap + * @function * @param {Geometry|Feature} line1 any LineString or Polygon * @param {Geometry|Feature} line2 any LineString or Polygon * @param {Object} [options={}] Optional parameters diff --git a/packages/turf-line-overlap/package.json b/packages/turf-line-overlap/package.json index a34e01996..1ff9a1fcc 100644 --- a/packages/turf-line-overlap/package.json +++ b/packages/turf-line-overlap/package.json @@ -1,7 +1,7 @@ { "name": "@turf/line-overlap", - "version": "7.0.0", - "description": "turf line-overlap module", + "version": "7.2.0", + "description": "Takes any LineString or Polygon and returns the overlapping lines between both features.", "author": "Turf Authors", "contributors": [ "Denis Carriere <@DenisCarriere>" @@ -57,26 +57,26 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/boolean-point-on-line": "workspace:^", - "@turf/geojson-rbush": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/line-segment": "workspace:^", - "@turf/meta": "workspace:^", - "@turf/nearest-point-on-line": "workspace:^", + "@turf/boolean-point-on-line": "workspace:*", + "@turf/geojson-rbush": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/line-segment": "workspace:*", + "@turf/meta": "workspace:*", + "@turf/nearest-point-on-line": "workspace:*", "@types/geojson": "^7946.0.10", "fast-deep-equal": "^3.1.3", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-line-segment/index.ts b/packages/turf-line-segment/index.ts index 5c518277f..10f795f47 100644 --- a/packages/turf-line-segment/index.ts +++ b/packages/turf-line-segment/index.ts @@ -15,7 +15,7 @@ import { flattenEach } from "@turf/meta"; * Creates a {@link FeatureCollection} of 2-vertex {@link LineString} segments from a * {@link LineString|(Multi)LineString} or {@link Polygon|(Multi)Polygon}. * - * @name lineSegment + * @function * @param {GeoJSON} geojson GeoJSON Polygon or LineString * @returns {FeatureCollection} 2-vertex line segments * @example diff --git a/packages/turf-line-segment/package.json b/packages/turf-line-segment/package.json index c1d4ec4a3..3498b7cb9 100644 --- a/packages/turf-line-segment/package.json +++ b/packages/turf-line-segment/package.json @@ -1,7 +1,7 @@ { "name": "@turf/line-segment", - "version": "7.0.0", - "description": "turf line-segment module", + "version": "7.2.0", + "description": "Creates line segments from a GeoJSON feature.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -51,21 +51,21 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-line-slice-along/README.md b/packages/turf-line-slice-along/README.md index 4fddeb597..459e19f4d 100644 --- a/packages/turf-line-slice-along/README.md +++ b/packages/turf-line-slice-along/README.md @@ -17,7 +17,7 @@ This can be useful for extracting only the part of a route between two distances * `stopDist` **[number][4]** distance along the line to ending point * `options` **[Object][5]** Optional parameters (optional, default `{}`) - * `options.units` **[string][6]** can be degrees, radians, miles, or kilometers (optional, default `'kilometers'`) + * `options.units` **Units** Supports all valid Turf [Units][6] (optional, default `'kilometers'`) ### Examples @@ -43,7 +43,7 @@ Returns **[Feature][3]<[LineString][1]>** sliced line [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[6]: https://turfjs.org/docs/api/types/Units diff --git a/packages/turf-line-slice-along/index.js b/packages/turf-line-slice-along/index.js index 9d7c11699..f5dc885b7 100644 --- a/packages/turf-line-slice-along/index.js +++ b/packages/turf-line-slice-along/index.js @@ -10,12 +10,12 @@ import { lineString, isObject } from "@turf/helpers"; * * This can be useful for extracting only the part of a route between two distances. * - * @name lineSliceAlong + * @function * @param {Feature|LineString} line input line * @param {number} startDist distance along the line to starting point * @param {number} stopDist distance along the line to ending point * @param {Object} [options={}] Optional parameters - * @param {string} [options.units='kilometers'] can be degrees, radians, miles, or kilometers + * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @returns {Feature} sliced line * @example * var line = turf.lineString([[7, 45], [9, 45], [14, 40], [14, 41]]); diff --git a/packages/turf-line-slice-along/package.json b/packages/turf-line-slice-along/package.json index 702c22fcf..2a5028b52 100644 --- a/packages/turf-line-slice-along/package.json +++ b/packages/turf-line-slice-along/package.json @@ -1,7 +1,7 @@ { "name": "@turf/line-slice-along", - "version": "7.0.0", - "description": "turf line-slice-along module", + "version": "7.2.0", + "description": "Useful for extracting only the part of a route between two distances.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -50,22 +50,22 @@ "test:tape": "tsx test.ts" }, "devDependencies": { - "@turf/along": "workspace:^", - "@turf/length": "workspace:^", + "@turf/along": "workspace:*", + "@turf/length": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4" }, "dependencies": { - "@turf/bearing": "workspace:^", - "@turf/destination": "workspace:^", - "@turf/distance": "workspace:^", - "@turf/helpers": "workspace:^", + "@turf/bearing": "workspace:*", + "@turf/destination": "workspace:*", + "@turf/distance": "workspace:*", + "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10" } } diff --git a/packages/turf-line-slice/index.js b/packages/turf-line-slice/index.js index dc66da414..b4fdbc7b7 100644 --- a/packages/turf-line-slice/index.js +++ b/packages/turf-line-slice/index.js @@ -9,7 +9,7 @@ import { nearestPointOnLine } from "@turf/nearest-point-on-line"; * * This can be useful for extracting only the part of a route between waypoints. * - * @name lineSlice + * @function * @param {Coord} startPt starting point * @param {Coord} stopPt stopping point * @param {Feature|LineString} line line to slice diff --git a/packages/turf-line-slice/package.json b/packages/turf-line-slice/package.json index a6492f44c..46c621a5a 100644 --- a/packages/turf-line-slice/package.json +++ b/packages/turf-line-slice/package.json @@ -1,7 +1,7 @@ { "name": "@turf/line-slice", - "version": "7.0.0", - "description": "turf line-slice module", + "version": "7.2.0", + "description": "Useful for extracting only the part of a route between waypoints.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -54,21 +54,21 @@ "test:tape": "tsx test.ts" }, "devDependencies": { - "@turf/truncate": "workspace:^", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/nearest-point-on-line": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/nearest-point-on-line": "workspace:*", "@types/geojson": "^7946.0.10" } } diff --git a/packages/turf-line-slice/test.ts b/packages/turf-line-slice/test.ts index 026b30238..b52db0554 100644 --- a/packages/turf-line-slice/test.ts +++ b/packages/turf-line-slice/test.ts @@ -5,7 +5,7 @@ import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { truncate } from "@turf/truncate"; -import { featureCollection } from "@turf/helpers"; +import { featureCollection, point, lineString } from "@turf/helpers"; import { lineSlice } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); @@ -38,3 +38,24 @@ test("turf-line-slice", (t) => { } t.end(); }); + +test("turf-nearest-point-on-line -- issue 2023", (t) => { + const ptStart = point([3.69140625, 51.72702815704774]); + const ptEnd = point([0.31936718356317106, 47.93913163509963]); + const line = lineString([ + [3.69140625, 51.72702815704774], + [-5.3173828125, 41.60722821271717], + ]); + + const slice = lineSlice(ptStart, ptEnd, line); + + t.deepEqual( + truncate(slice, { precision: 8 }).geometry.coordinates, + [ + [3.69140625, 51.72702816], + [-0.03079923, 48.08596086], + ], + "slice should be [[3.69140625, 51.72702816], [-0.03079923, 48.08596086]]" + ); + t.end(); +}); diff --git a/packages/turf-line-slice/test/out/line1.geojson b/packages/turf-line-slice/test/out/line1.geojson index 58dc12f1b..fc79a112c 100644 --- a/packages/turf-line-slice/test/out/line1.geojson +++ b/packages/turf-line-slice/test/out/line1.geojson @@ -38,9 +38,9 @@ "geometry": { "type": "LineString", "coordinates": [ - [-97.835729, 22.247393], + [-97.835747, 22.247595], [-97.820892, 22.17596], - [-97.738467, 22.051207] + [-97.738477, 22.051413] ] } } diff --git a/packages/turf-line-slice/test/out/line2.geojson b/packages/turf-line-slice/test/out/line2.geojson index ff3228795..c5215cde1 100644 --- a/packages/turf-line-slice/test/out/line2.geojson +++ b/packages/turf-line-slice/test/out/line2.geojson @@ -37,8 +37,8 @@ "geometry": { "type": "LineString", "coordinates": [ - [0.049987, 0.049987], - [0.849858, 0.849858] + [0.05, 0.050008], + [0.849981, 0.850017] ] } } diff --git a/packages/turf-line-slice/test/out/route2.geojson b/packages/turf-line-slice/test/out/route2.geojson index a389e0af6..d86ab51f3 100644 --- a/packages/turf-line-slice/test/out/route2.geojson +++ b/packages/turf-line-slice/test/out/route2.geojson @@ -3796,7 +3796,7 @@ "geometry": { "type": "LineString", "coordinates": [ - [-111.895792, 48.877416], + [-111.895843, 48.877468], [-111.878176, 48.860393], [-111.867242, 48.849753], [-111.866486, 48.849013], diff --git a/packages/turf-line-split/index.js b/packages/turf-line-split/index.js index 81d33017b..cfbdfb584 100644 --- a/packages/turf-line-split/index.js +++ b/packages/turf-line-split/index.js @@ -12,7 +12,7 @@ import { lineString, featureCollection } from "@turf/helpers"; /** * Split a LineString by another GeoJSON Feature. * - * @name lineSplit + * @function * @param {Feature} line LineString Feature to split * @param {Feature} splitter Feature used to split line * @returns {FeatureCollection} Split LineStrings diff --git a/packages/turf-line-split/package.json b/packages/turf-line-split/package.json index 36775e723..3260981eb 100644 --- a/packages/turf-line-split/package.json +++ b/packages/turf-line-split/package.json @@ -1,7 +1,7 @@ { "name": "@turf/line-split", - "version": "7.0.0", - "description": "turf line-split module", + "version": "7.2.0", + "description": "Split a LineString by another GeoJSON Feature.", "author": "Turf Authors", "contributors": [ "Denis Carriere <@DenisCarriere>" @@ -56,26 +56,26 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/bbox": "workspace:^", - "@turf/geojson-rbush": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/line-intersect": "workspace:^", - "@turf/line-segment": "workspace:^", - "@turf/meta": "workspace:^", - "@turf/nearest-point-on-line": "workspace:^", - "@turf/square": "workspace:^", - "@turf/truncate": "workspace:^", + "@turf/bbox": "workspace:*", + "@turf/geojson-rbush": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/line-intersect": "workspace:*", + "@turf/line-segment": "workspace:*", + "@turf/meta": "workspace:*", + "@turf/nearest-point-on-line": "workspace:*", + "@turf/square": "workspace:*", + "@turf/truncate": "workspace:*", "@types/geojson": "^7946.0.10" } } diff --git a/packages/turf-line-to-polygon/index.ts b/packages/turf-line-to-polygon/index.ts index 78fb03141..cdf859cf1 100644 --- a/packages/turf-line-to-polygon/index.ts +++ b/packages/turf-line-to-polygon/index.ts @@ -15,7 +15,7 @@ import { clone } from "@turf/clone"; /** * Converts (Multi)LineString(s) to Polygon(s). * - * @name lineToPolygon + * @function * @param {FeatureCollection|Feature} lines Features to convert * @param {Object} [options={}] Optional parameters * @param {Object} [options.properties={}] translates GeoJSON properties to Feature diff --git a/packages/turf-line-to-polygon/package.json b/packages/turf-line-to-polygon/package.json index 46d08e0ec..07992905e 100644 --- a/packages/turf-line-to-polygon/package.json +++ b/packages/turf-line-to-polygon/package.json @@ -1,7 +1,7 @@ { "name": "@turf/line-to-polygon", - "version": "7.0.0", - "description": "turf line-to-polygon module", + "version": "7.2.0", + "description": "Converts line(s) to polygon(s).", "author": "Turf Authors", "contributors": [ "Denis Carriere <@DenisCarriere>" @@ -57,22 +57,22 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/bbox": "workspace:^", - "@turf/clone": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/bbox": "workspace:*", + "@turf/clone": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-mask/index.ts b/packages/turf-mask/index.ts index 43abb6304..7c021099e 100644 --- a/packages/turf-mask/index.ts +++ b/packages/turf-mask/index.ts @@ -6,14 +6,14 @@ import { MultiPolygon, } from "geojson"; import { polygon as createPolygon, multiPolygon } from "@turf/helpers"; -import polygonClipping, { Geom } from "polygon-clipping"; +import * as polyclip from "polyclip-ts"; import { clone } from "@turf/clone"; /** * Takes polygons or multipolygons and an optional mask, and returns an exterior * ring polygon with holes. * - * @name mask + * @function * @param {Polygon|MultiPolygon|Feature|FeatureCollection} polygon GeoJSON polygon used as interior rings or holes * @param {Polygon|Feature} [mask] GeoJSON polygon used as the exterior ring (if undefined, the world extent is used) * @param {Object} [options={}] Optional parameters @@ -51,14 +51,14 @@ function mask( // Need to cast below as Position[][] isn't quite as strict as Geom, even // though they should be equivalent. polygonOuters = createGeomFromPolygonClippingOutput( - polygonClipping.union(polygon.geometry.coordinates as Geom) + polyclip.union(polygon.geometry.coordinates as polyclip.Geom) ); } else { // Geometry // Need to cast below as Position[][] isn't quite as strict as Geom, even // though they should be equivalent. polygonOuters = createGeomFromPolygonClippingOutput( - polygonClipping.union(polygon.coordinates as Geom) + polyclip.union(polygon.coordinates as polyclip.Geom) ); } @@ -78,15 +78,15 @@ function unionFc(fc: FeatureCollection) { /* eslint-disable prefer-spread */ const unioned = fc.features.length === 2 - ? polygonClipping.union( - fc.features[0].geometry.coordinates as Geom, - fc.features[1].geometry.coordinates as Geom + ? polyclip.union( + fc.features[0].geometry.coordinates as polyclip.Geom, + fc.features[1].geometry.coordinates as polyclip.Geom ) - : polygonClipping.union.apply( - polygonClipping, + : polyclip.union.apply( + polyclip, fc.features.map(function (f) { return f.geometry.coordinates; - }) as [Geom, ...Geom[]] + }) as [polyclip.Geom, ...polyclip.Geom[]] ); /* eslint-enable */ return createGeomFromPolygonClippingOutput(unioned); diff --git a/packages/turf-mask/package.json b/packages/turf-mask/package.json index c51057d70..0330e4c60 100644 --- a/packages/turf-mask/package.json +++ b/packages/turf-mask/package.json @@ -1,7 +1,7 @@ { "name": "@turf/mask", - "version": "7.0.0", - "description": "turf mask module", + "version": "7.2.0", + "description": "Takes polygons or multipolygons and an optional mask, and returns an exterior ring polygon with holes.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -52,22 +52,22 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "mkdirp": "^3.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/clone": "workspace:^", - "@turf/helpers": "workspace:^", + "@turf/clone": "workspace:*", + "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", - "polygon-clipping": "^0.15.3", - "tslib": "^2.6.2" + "polyclip-ts": "^0.16.8", + "tslib": "^2.8.1" } } diff --git a/packages/turf-meta/README.md b/packages/turf-meta/README.md index 13dc60352..95dc11e47 100644 --- a/packages/turf-meta/README.md +++ b/packages/turf-meta/README.md @@ -16,15 +16,17 @@ Type: [Function][1] * `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed. * `geometryIndex` **[number][3]** The current index of the Geometry being processed. +Returns **void** + ## coordEach Iterate over coordinates in any GeoJSON object, similar to Array.forEach() ### Parameters -* `geojson` **([FeatureCollection][4] | [Feature][5] | [Geometry][6])** any GeoJSON object -* `callback` **[Function][1]** a method that takes (currentCoord, coordIndex, featureIndex, multiFeatureIndex) -* `excludeWrapCoord` **[boolean][7]** whether or not to include the final coordinate of LinearRings that wraps the ring in its iteration. (optional, default `false`) +* `geojson` **AllGeoJSON** any GeoJSON object +* `callback` **[coordEachCallback][4]** a method that takes (currentCoord, coordIndex, featureIndex, multiFeatureIndex) +* `excludeWrapCoord` **[boolean][5]** whether or not to include the final coordinate of LinearRings that wraps the ring in its iteration. (optional, default `false`) ### Examples @@ -66,7 +68,7 @@ Type: [Function][1] ### Parameters -* `previousValue` **any** The accumulated value previously returned in the last invocation +* `previousValue` **Reducer** The accumulated value previously returned in the last invocation of the callback, or initialValue, if supplied. * `currentCoord` **[Array][2]<[number][3]>** The current coordinate being processed. * `coordIndex` **[number][3]** The current index of the coordinate being processed. @@ -75,16 +77,18 @@ Type: [Function][1] * `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed. * `geometryIndex` **[number][3]** The current index of the Geometry being processed. +Returns **Reducer** + ## coordReduce Reduce coordinates in any GeoJSON object, similar to Array.reduce() ### Parameters -* `geojson` **([FeatureCollection][4] | [Geometry][6] | [Feature][5])** any GeoJSON object -* `callback` **[Function][1]** a method that takes (previousValue, currentCoord, coordIndex) -* `initialValue` **any?** Value to use as the first argument to the first call of the callback. -* `excludeWrapCoord` **[boolean][7]** whether or not to include the final coordinate of LinearRings that wraps the ring in its iteration. (optional, default `false`) +* `geojson` **AllGeoJSON** any GeoJSON object +* `callback` **[coordReduceCallback][6]** a method that takes (previousValue, currentCoord, coordIndex) +* `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback. +* `excludeWrapCoord` **[boolean][5]** whether or not to include the final coordinate of LinearRings that wraps the ring in its iteration. (optional, default `false`) ### Examples @@ -105,7 +109,7 @@ turf.coordReduce(features, function (previousValue, currentCoord, coordIndex, fe }); ``` -Returns **any** The value that results from the reduction. +Returns **Reducer** The value that results from the reduction. ## propEachCallback @@ -115,17 +119,19 @@ Type: [Function][1] ### Parameters -* `currentProperties` **[Object][8]** The current Properties being processed. +* `currentProperties` **[GeoJsonProperties][7]** The current Properties being processed. * `featureIndex` **[number][3]** The current index of the Feature being processed. +Returns **void** + ## propEach Iterate over properties in any GeoJSON object, similar to Array.forEach() ### Parameters -* `geojson` **([FeatureCollection][4] | [Feature][5])** any GeoJSON object -* `callback` **[Function][1]** a method that takes (currentProperties, featureIndex) +* `geojson` **([FeatureCollection][8] | [Feature][7])** any GeoJSON object +* `callback` **[propEachCallback][9]** a method that takes (currentProperties, featureIndex) ### Examples @@ -164,11 +170,13 @@ Type: [Function][1] ### Parameters -* `previousValue` **any** The accumulated value previously returned in the last invocation +* `previousValue` **Reducer** The accumulated value previously returned in the last invocation of the callback, or initialValue, if supplied. -* `currentProperties` **any** The current Properties being processed. +* `currentProperties` **[GeoJsonProperties][7]** The current Properties being processed. * `featureIndex` **[number][3]** The current index of the Feature being processed. +Returns **Reducer** + ## propReduce Reduce properties in any GeoJSON object into a single value, @@ -177,9 +185,9 @@ the reduction, so an array of all properties is unnecessary. ### Parameters -* `geojson` **([FeatureCollection][4] | [Feature][5])** any GeoJSON object -* `callback` **[Function][1]** a method that takes (previousValue, currentProperties, featureIndex) -* `initialValue` **any?** Value to use as the first argument to the first call of the callback. +* `geojson` **([FeatureCollection][8] | [Feature][7] | [Geometry][10])** any GeoJSON object +* `callback` **[propReduceCallback][11]** a method that takes (previousValue, currentProperties, featureIndex) +* `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback. ### Examples @@ -197,7 +205,7 @@ turf.propReduce(features, function (previousValue, currentProperties, featureInd }); ``` -Returns **any** The value that results from the reduction. +Returns **Reducer** The value that results from the reduction. ## featureEachCallback @@ -207,9 +215,11 @@ Type: [Function][1] ### Parameters -* `currentFeature` **[Feature][5]\** The current Feature being processed. +* `currentFeature` **[Feature][7]\** The current Feature being processed. * `featureIndex` **[number][3]** The current index of the Feature being processed. +Returns **void** + ## featureEach Iterate over features in any GeoJSON object, similar to @@ -217,8 +227,8 @@ Array.forEach. ### Parameters -* `geojson` **([FeatureCollection][4] | [Feature][5] | [Geometry][6])** any GeoJSON object -* `callback` **[Function][1]** a method that takes (currentFeature, featureIndex) +* `geojson` **([FeatureCollection][8] | [Feature][7] | [Feature][7]<[GeometryCollection][12]>)** any GeoJSON object +* `callback` **[featureEachCallback][13]** a method that takes (currentFeature, featureIndex) ### Examples @@ -257,20 +267,22 @@ Type: [Function][1] ### Parameters -* `previousValue` **any** The accumulated value previously returned in the last invocation +* `previousValue` **Reducer** The accumulated value previously returned in the last invocation of the callback, or initialValue, if supplied. -* `currentFeature` **[Feature][5]** The current Feature being processed. +* `currentFeature` **[Feature][7]** The current Feature being processed. * `featureIndex` **[number][3]** The current index of the Feature being processed. +Returns **Reducer** + ## featureReduce Reduce features in any GeoJSON object, similar to Array.reduce(). ### Parameters -* `geojson` **([FeatureCollection][4] | [Feature][5] | [Geometry][6])** any GeoJSON object -* `callback` **[Function][1]** a method that takes (previousValue, currentFeature, featureIndex) -* `initialValue` **any?** Value to use as the first argument to the first call of the callback. +* `geojson` **([FeatureCollection][8] | [Feature][7] | [Feature][7]<[GeometryCollection][12]>)** any GeoJSON object +* `callback` **[featureReduceCallback][14]** a method that takes (previousValue, currentFeature, featureIndex) +* `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback. ### Examples @@ -288,7 +300,7 @@ turf.featureReduce(features, function (previousValue, currentFeature, featureInd }); ``` -Returns **any** The value that results from the reduction. +Returns **Reducer** The value that results from the reduction. ## coordAll @@ -296,7 +308,7 @@ Get all coordinates from any GeoJSON object. ### Parameters -* `geojson` **([FeatureCollection][4] | [Feature][5] | [Geometry][6])** any GeoJSON object +* `geojson` **AllGeoJSON** any GeoJSON object ### Examples @@ -320,11 +332,13 @@ Type: [Function][1] ### Parameters -* `currentGeometry` **[Geometry][6]** The current Geometry being processed. +* `currentGeometry` **[GeometryObject][10]** The current Geometry being processed. * `featureIndex` **[number][3]** The current index of the Feature being processed. -* `featureProperties` **[Object][8]** The current Feature Properties being processed. -* `featureBBox` **[Array][2]<[number][3]>** The current Feature BBox being processed. -* `featureId` **([number][3] | [string][9])** The current Feature Id being processed. +* `featureProperties` **[GeoJsonProperties][7]** The current Feature Properties being processed. +* `featureBBox` **[BBox][15]** The current Feature BBox being processed. +* `featureId` **Id** The current Feature Id being processed. + +Returns **void** ## geomEach @@ -332,8 +346,8 @@ Iterate over each geometry in any GeoJSON object, similar to Array.forEach() ### Parameters -* `geojson` **([FeatureCollection][4] | [Feature][5] | [Geometry][6])** any GeoJSON object -* `callback` **[Function][1]** a method that takes (currentGeometry, featureIndex, featureProperties, featureBBox, featureId) +* `geojson` **([FeatureCollection][8] | [Feature][7] | [Geometry][10] | [GeometryObject][10] | [Feature][7]<[GeometryCollection][12]>)** any GeoJSON object +* `callback` **[geomEachCallback][16]** a method that takes (currentGeometry, featureIndex, featureProperties, featureBBox, featureId) ### Examples @@ -375,13 +389,15 @@ Type: [Function][1] ### Parameters -* `previousValue` **any** The accumulated value previously returned in the last invocation +* `previousValue` **Reducer** The accumulated value previously returned in the last invocation of the callback, or initialValue, if supplied. -* `currentGeometry` **[Geometry][6]** The current Geometry being processed. +* `currentGeometry` **[GeometryObject][10]** The current Geometry being processed. * `featureIndex` **[number][3]** The current index of the Feature being processed. -* `featureProperties` **[Object][8]** The current Feature Properties being processed. -* `featureBBox` **[Array][2]<[number][3]>** The current Feature BBox being processed. -* `featureId` **([number][3] | [string][9])** The current Feature Id being processed. +* `featureProperties` **[GeoJsonProperties][7]** The current Feature Properties being processed. +* `featureBBox` **[BBox][15]** The current Feature BBox being processed. +* `featureId` **Id** The current Feature Id being processed. + +Returns **Reducer** ## geomReduce @@ -389,9 +405,9 @@ Reduce geometry in any GeoJSON object, similar to Array.reduce(). ### Parameters -* `geojson` **([FeatureCollection][4] | [Feature][5] | [Geometry][6])** any GeoJSON object -* `callback` **[Function][1]** a method that takes (previousValue, currentGeometry, featureIndex, featureProperties, featureBBox, featureId) -* `initialValue` **any?** Value to use as the first argument to the first call of the callback. +* `geojson` **([FeatureCollection][8] | [Feature][7] | [GeometryObject][10] | [GeometryCollection][12] | [Feature][7]<[GeometryCollection][12]>)** any GeoJSON object +* `callback` **[geomReduceCallback][17]** a method that takes (previousValue, currentGeometry, featureIndex, featureProperties, featureBBox, featureId) +* `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback. ### Examples @@ -412,7 +428,7 @@ turf.geomReduce(features, function (previousValue, currentGeometry, featureIndex }); ``` -Returns **any** The value that results from the reduction. +Returns **Reducer** The value that results from the reduction. ## flattenEachCallback @@ -422,10 +438,12 @@ Type: [Function][1] ### Parameters -* `currentFeature` **[Feature][5]** The current flattened feature being processed. +* `currentFeature` **[Feature][7]** The current flattened feature being processed. * `featureIndex` **[number][3]** The current index of the Feature being processed. * `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed. +Returns **void** + ## flattenEach Iterate over flattened features in any GeoJSON object, similar to @@ -433,8 +451,8 @@ Array.forEach. ### Parameters -* `geojson` **([FeatureCollection][4] | [Feature][5] | [Geometry][6])** any GeoJSON object -* `callback` **[Function][1]** a method that takes (currentFeature, featureIndex, multiFeatureIndex) +* `geojson` **([FeatureCollection][8] | [Feature][7] | [GeometryObject][10] | [GeometryCollection][12] | [Feature][7]<[GeometryCollection][12]>)** any GeoJSON object +* `callback` **[flattenEachCallback][18]** a method that takes (currentFeature, featureIndex, multiFeatureIndex) ### Examples @@ -451,6 +469,8 @@ turf.flattenEach(features, function (currentFeature, featureIndex, multiFeatureI }); ``` +Returns **void** + ## flattenReduceCallback Callback for flattenReduce @@ -472,21 +492,23 @@ Type: [Function][1] ### Parameters -* `previousValue` **any** The accumulated value previously returned in the last invocation +* `previousValue` **Reducer** The accumulated value previously returned in the last invocation of the callback, or initialValue, if supplied. -* `currentFeature` **[Feature][5]** The current Feature being processed. +* `currentFeature` **[Feature][7]** The current Feature being processed. * `featureIndex` **[number][3]** The current index of the Feature being processed. * `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed. +Returns **Reducer** + ## flattenReduce Reduce flattened features in any GeoJSON object, similar to Array.reduce(). ### Parameters -* `geojson` **([FeatureCollection][4] | [Feature][5] | [Geometry][6])** any GeoJSON object -* `callback` **[Function][1]** a method that takes (previousValue, currentFeature, featureIndex, multiFeatureIndex) -* `initialValue` **any?** Value to use as the first argument to the first call of the callback. +* `geojson` **([FeatureCollection][8] | [Feature][7] | [GeometryObject][10] | [GeometryCollection][12] | [Feature][7]<[GeometryCollection][12]>)** any GeoJSON object +* `callback` **[flattenReduceCallback][19]** a method that takes (previousValue, currentFeature, featureIndex, multiFeatureIndex) +* `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback. ### Examples @@ -505,7 +527,7 @@ turf.flattenReduce(features, function (previousValue, currentFeature, featureInd }); ``` -Returns **any** The value that results from the reduction. +Returns **Reducer** The value that results from the reduction. ## segmentEachCallback @@ -515,7 +537,7 @@ Type: [Function][1] ### Parameters -* `currentSegment` **[Feature][5]<[LineString][10]>** The current Segment being processed. +* `currentSegment` **[Feature][7]<[LineString][20]>** The current Segment being processed. * `featureIndex` **[number][3]** The current index of the Feature being processed. * `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed. * `geometryIndex` **[number][3]** The current index of the Geometry being processed. @@ -530,8 +552,8 @@ Iterate over 2-vertex line segment in any GeoJSON object, similar to Array.forEa ### Parameters -* `geojson` **([FeatureCollection][4] | [Feature][5] | [Geometry][6])** any GeoJSON -* `callback` **[Function][1]** a method that takes (currentSegment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex) +* `geojson` **AllGeoJSON** any GeoJSON +* `callback` **[segmentEachCallback][21]** a method that takes (currentSegment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex) ### Examples @@ -577,14 +599,16 @@ Type: [Function][1] ### Parameters -* `previousValue` **any** The accumulated value previously returned in the last invocation +* `previousValue` **Reducer** The accumulated value previously returned in the last invocation of the callback, or initialValue, if supplied. -* `currentSegment` **[Feature][5]<[LineString][10]>** The current Segment being processed. +* `currentSegment` **[Feature][7]<[LineString][20]>** The current Segment being processed. * `featureIndex` **[number][3]** The current index of the Feature being processed. * `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed. * `geometryIndex` **[number][3]** The current index of the Geometry being processed. * `segmentIndex` **[number][3]** The current index of the Segment being processed. +Returns **Reducer** + ## segmentReduce Reduce 2-vertex line segment in any GeoJSON object, similar to Array.reduce() @@ -592,9 +616,9 @@ Reduce 2-vertex line segment in any GeoJSON object, similar to Array.reduce() ### Parameters -* `geojson` **([FeatureCollection][4] | [Feature][5] | [Geometry][6])** any GeoJSON -* `callback` **[Function][1]** a method that takes (previousValue, currentSegment, currentIndex) -* `initialValue` **any?** Value to use as the first argument to the first call of the callback. +* `geojson` **([FeatureCollection][8] | [Feature][7] | [Geometry][10])** any GeoJSON +* `callback` **[segmentReduceCallback][22]** a method that takes (previousValue, currentSegment, currentIndex) +* `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback. ### Examples @@ -620,7 +644,7 @@ var total = turf.segmentReduce(polygon, function (previousValue) { }, initialValue); ``` -Returns **void** +Returns **Reducer** ## lineEachCallback @@ -630,11 +654,13 @@ Type: [Function][1] ### Parameters -* `currentLine` **[Feature][5]<[LineString][10]>** The current LineString|LinearRing being processed +* `currentLine` **[Feature][7]<[LineString][20]>** The current LineString|LinearRing being processed * `featureIndex` **[number][3]** The current index of the Feature being processed * `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed * `geometryIndex` **[number][3]** The current index of the Geometry being processed +Returns **void** + ## lineEach Iterate over line or ring coordinates in LineString, Polygon, MultiLineString, MultiPolygon Features or Geometries, @@ -642,8 +668,8 @@ similar to Array.forEach. ### Parameters -* `geojson` **([Geometry][6] | [Feature][5]<([LineString][10] | [Polygon][11] | [MultiLineString][12] | [MultiPolygon][13])>)** object -* `callback` **[Function][1]** a method that takes (currentLine, featureIndex, multiFeatureIndex, geometryIndex) +* `geojson` **([FeatureCollection][8]\ | [Feature][7]\ | Lines | [Feature][7]<[GeometryCollection][12]> | [GeometryCollection][12])** object +* `callback` **[lineEachCallback][23]** a method that takes (currentLine, featureIndex, multiFeatureIndex, geometryIndex) ### Examples @@ -661,6 +687,8 @@ turf.lineEach(multiLine, function (currentLine, featureIndex, multiFeatureIndex, }); ``` +Returns **void** + ## lineReduceCallback Callback for lineReduce @@ -682,22 +710,24 @@ Type: [Function][1] ### Parameters -* `previousValue` **any** The accumulated value previously returned in the last invocation +* `previousValue` **Reducer** The accumulated value previously returned in the last invocation of the callback, or initialValue, if supplied. -* `currentLine` **[Feature][5]<[LineString][10]>** The current LineString|LinearRing being processed. +* `currentLine` **[Feature][7]<[LineString][20]>** The current LineString|LinearRing being processed. * `featureIndex` **[number][3]** The current index of the Feature being processed * `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed * `geometryIndex` **[number][3]** The current index of the Geometry being processed +Returns **Reducer** + ## lineReduce Reduce features in any GeoJSON object, similar to Array.reduce(). ### Parameters -* `geojson` **([Geometry][6] | [Feature][5]<([LineString][10] | [Polygon][11] | [MultiLineString][12] | [MultiPolygon][13])>)** object +* `geojson` **([FeatureCollection][8]\ | [Feature][7]\ | Lines | [Feature][7]<[GeometryCollection][12]> | [GeometryCollection][12])** object * `callback` **[Function][1]** a method that takes (previousValue, currentLine, featureIndex, multiFeatureIndex, geometryIndex) -* `initialValue` **any?** Value to use as the first argument to the first call of the callback. +* `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback. ### Examples @@ -717,7 +747,7 @@ turf.lineReduce(multiPoly, function (previousValue, currentLine, featureIndex, m }); ``` -Returns **any** The value that results from the reduction. +Returns **Reducer** The value that results from the reduction. ## findSegment @@ -728,16 +758,16 @@ Point & MultiPoint will always return null. ### Parameters -* `geojson` **([FeatureCollection][4] | [Feature][5] | [Geometry][6])** Any GeoJSON Feature or Geometry -* `options` **[Object][8]** Optional parameters (optional, default `{}`) +* `geojson` **([FeatureCollection][8] | [Feature][7] | [Geometry][10])** Any GeoJSON Feature or Geometry +* `options` **[Object][24]** Optional parameters (optional, default `{}`) * `options.featureIndex` **[number][3]** Feature Index (optional, default `0`) * `options.multiFeatureIndex` **[number][3]** Multi-Feature Index (optional, default `0`) * `options.geometryIndex` **[number][3]** Geometry Index (optional, default `0`) * `options.segmentIndex` **[number][3]** Segment Index (optional, default `0`) - * `options.properties` **[Object][8]** Translate Properties to output LineString (optional, default `{}`) - * `options.bbox` **[BBox][14]** Translate BBox to output LineString (optional, default `{}`) - * `options.id` **([number][3] | [string][9])** Translate Id to output LineString (optional, default `{}`) + * `options.properties` **[Object][24]** Translate Properties to output LineString (optional, default `{}`) + * `options.bbox` **[BBox][15]** Translate BBox to output LineString (optional, default `{}`) + * `options.id` **([number][3] | [string][25])** Translate Id to output LineString (optional, default `{}`) ### Examples @@ -760,7 +790,7 @@ turf.findSegment(multiLine, {multiFeatureIndex: -1, segmentIndex: -1}); // => Feature> ``` -Returns **[Feature][5]<[LineString][10]>** 2-vertex GeoJSON Feature LineString +Returns **[Feature][7]<[LineString][20]>** 2-vertex GeoJSON Feature LineString ## findPoint @@ -770,16 +800,16 @@ Negative indexes are permitted. ### Parameters -* `geojson` **([FeatureCollection][4] | [Feature][5] | [Geometry][6])** Any GeoJSON Feature or Geometry -* `options` **[Object][8]** Optional parameters (optional, default `{}`) +* `geojson` **([FeatureCollection][8] | [Feature][7] | [Geometry][10])** Any GeoJSON Feature or Geometry +* `options` **[Object][24]** Optional parameters (optional, default `{}`) * `options.featureIndex` **[number][3]** Feature Index (optional, default `0`) * `options.multiFeatureIndex` **[number][3]** Multi-Feature Index (optional, default `0`) * `options.geometryIndex` **[number][3]** Geometry Index (optional, default `0`) * `options.coordIndex` **[number][3]** Coord Index (optional, default `0`) - * `options.properties` **[Object][8]** Translate Properties to output Point (optional, default `{}`) - * `options.bbox` **[BBox][14]** Translate BBox to output Point (optional, default `{}`) - * `options.id` **([number][3] | [string][9])** Translate Id to output Point (optional, default `{}`) + * `options.properties` **[Object][24]** Translate Properties to output Point (optional, default `{}`) + * `options.bbox` **[BBox][15]** Translate BBox to output Point (optional, default `{}`) + * `options.id` **([number][3] | [string][25])** Translate Id to output Point (optional, default `{}`) ### Examples @@ -802,7 +832,7 @@ turf.findPoint(multiLine, {multiFeatureIndex: -1, coordIndex: -1}); // => Feature> ``` -Returns **[Feature][5]<[Point][15]>** 2-vertex GeoJSON Feature Point +Returns **[Feature][7]<[Point][26]>** 2-vertex GeoJSON Feature Point [1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function @@ -810,29 +840,51 @@ Returns **[Feature][5]<[Point][15]>** 2-vertex GeoJSON Feature Point [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number -[4]: https://tools.ietf.org/html/rfc7946#section-3.3 +[4]: #coordeachcallback -[5]: https://tools.ietf.org/html/rfc7946#section-3.2 +[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean -[6]: https://tools.ietf.org/html/rfc7946#section-3.1 +[6]: #coordreducecallback -[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean +[7]: https://tools.ietf.org/html/rfc7946#section-3.2 -[8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object +[8]: https://tools.ietf.org/html/rfc7946#section-3.3 -[9]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[9]: #propeachcallback -[10]: https://tools.ietf.org/html/rfc7946#section-3.1.4 +[10]: https://tools.ietf.org/html/rfc7946#section-3.1 -[11]: https://tools.ietf.org/html/rfc7946#section-3.1.6 +[11]: #propreducecallback -[12]: https://tools.ietf.org/html/rfc7946#section-3.1.5 +[12]: https://tools.ietf.org/html/rfc7946#section-3.1.8 -[13]: https://tools.ietf.org/html/rfc7946#section-3.1.7 +[13]: #featureeachcallback -[14]: https://tools.ietf.org/html/rfc7946#section-5 +[14]: #featurereducecallback -[15]: https://tools.ietf.org/html/rfc7946#section-3.1.2 +[15]: https://tools.ietf.org/html/rfc7946#section-5 + +[16]: #geomeachcallback + +[17]: #geomreducecallback + +[18]: #flatteneachcallback + +[19]: #flattenreducecallback + +[20]: https://tools.ietf.org/html/rfc7946#section-3.1.4 + +[21]: #segmenteachcallback + +[22]: #segmentreducecallback + +[23]: #lineeachcallback + +[24]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object + +[25]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String + +[26]: https://tools.ietf.org/html/rfc7946#section-3.1.2 diff --git a/packages/turf-meta/index.js b/packages/turf-meta/index.js index d9d42e942..d1fe722c8 100644 --- a/packages/turf-meta/index.js +++ b/packages/turf-meta/index.js @@ -4,19 +4,20 @@ import { feature, point, lineString, isObject } from "@turf/helpers"; * Callback for coordEach * * @callback coordEachCallback - * @param {Array} currentCoord The current coordinate being processed. + * @param {number[]} currentCoord The current coordinate being processed. * @param {number} coordIndex The current index of the coordinate being processed. * @param {number} featureIndex The current index of the Feature being processed. * @param {number} multiFeatureIndex The current index of the Multi-Feature being processed. * @param {number} geometryIndex The current index of the Geometry being processed. + * @returns {void} */ /** * Iterate over coordinates in any GeoJSON object, similar to Array.forEach() * - * @name coordEach - * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON object - * @param {Function} callback a method that takes (currentCoord, coordIndex, featureIndex, multiFeatureIndex) + * @function + * @param {AllGeoJSON} geojson any GeoJSON object + * @param {coordEachCallback} callback a method that takes (currentCoord, coordIndex, featureIndex, multiFeatureIndex) * @param {boolean} [excludeWrapCoord=false] whether or not to include the final coordinate of LinearRings that wraps the ring in its iteration. * @returns {void} * @example @@ -202,25 +203,26 @@ function coordEach(geojson, callback, excludeWrapCoord) { * - The currentValue argument is the value of the second element present in the array. * * @callback coordReduceCallback - * @param {*} previousValue The accumulated value previously returned in the last invocation + * @param {Reducer} previousValue The accumulated value previously returned in the last invocation * of the callback, or initialValue, if supplied. - * @param {Array} currentCoord The current coordinate being processed. + * @param {number[]} currentCoord The current coordinate being processed. * @param {number} coordIndex The current index of the coordinate being processed. * Starts at index 0, if an initialValue is provided, and at index 1 otherwise. * @param {number} featureIndex The current index of the Feature being processed. * @param {number} multiFeatureIndex The current index of the Multi-Feature being processed. * @param {number} geometryIndex The current index of the Geometry being processed. + * @returns {Reducer} */ /** * Reduce coordinates in any GeoJSON object, similar to Array.reduce() * - * @name coordReduce - * @param {FeatureCollection|Geometry|Feature} geojson any GeoJSON object - * @param {Function} callback a method that takes (previousValue, currentCoord, coordIndex) - * @param {*} [initialValue] Value to use as the first argument to the first call of the callback. + * @function + * @param {AllGeoJSON} geojson any GeoJSON object + * @param {coordReduceCallback} callback a method that takes (previousValue, currentCoord, coordIndex) + * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback. * @param {boolean} [excludeWrapCoord=false] whether or not to include the final coordinate of LinearRings that wraps the ring in its iteration. - * @returns {*} The value that results from the reduction. + * @returns {Reducer} The value that results from the reduction. * @example * var features = turf.featureCollection([ * turf.point([26, 37], {"foo": "bar"}), @@ -269,16 +271,17 @@ function coordReduce(geojson, callback, initialValue, excludeWrapCoord) { * Callback for propEach * * @callback propEachCallback - * @param {Object} currentProperties The current Properties being processed. + * @param {GeoJsonProperties} currentProperties The current Properties being processed. * @param {number} featureIndex The current index of the Feature being processed. + * @returns {void} */ /** * Iterate over properties in any GeoJSON object, similar to Array.forEach() * - * @name propEach + * @function * @param {FeatureCollection|Feature} geojson any GeoJSON object - * @param {Function} callback a method that takes (currentProperties, featureIndex) + * @param {propEachCallback} callback a method that takes (currentProperties, featureIndex) * @returns {void} * @example * var features = turf.featureCollection([ @@ -320,10 +323,11 @@ function propEach(geojson, callback) { * - The currentValue argument is the value of the second element present in the array. * * @callback propReduceCallback - * @param {*} previousValue The accumulated value previously returned in the last invocation + * @param {Reducer} previousValue The accumulated value previously returned in the last invocation * of the callback, or initialValue, if supplied. - * @param {*} currentProperties The current Properties being processed. + * @param {GeoJsonProperties} currentProperties The current Properties being processed. * @param {number} featureIndex The current index of the Feature being processed. + * @returns {Reducer} */ /** @@ -331,11 +335,11 @@ function propEach(geojson, callback) { * similar to how Array.reduce works. However, in this case we lazily run * the reduction, so an array of all properties is unnecessary. * - * @name propReduce - * @param {FeatureCollection|Feature} geojson any GeoJSON object - * @param {Function} callback a method that takes (previousValue, currentProperties, featureIndex) - * @param {*} [initialValue] Value to use as the first argument to the first call of the callback. - * @returns {*} The value that results from the reduction. + * @function + * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON object + * @param {propReduceCallback} callback a method that takes (previousValue, currentProperties, featureIndex) + * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback. + * @returns {Reducer} The value that results from the reduction. * @example * var features = turf.featureCollection([ * turf.point([26, 37], {foo: 'bar'}), @@ -366,15 +370,16 @@ function propReduce(geojson, callback, initialValue) { * @callback featureEachCallback * @param {Feature} currentFeature The current Feature being processed. * @param {number} featureIndex The current index of the Feature being processed. + * @returns {void} */ /** * Iterate over features in any GeoJSON object, similar to * Array.forEach. * - * @name featureEach - * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON object - * @param {Function} callback a method that takes (currentFeature, featureIndex) + * @function + * @param {FeatureCollection|Feature|Feature} geojson any GeoJSON object + * @param {featureEachCallback} callback a method that takes (currentFeature, featureIndex) * @returns {void} * @example * var features = turf.featureCollection([ @@ -412,20 +417,21 @@ function featureEach(geojson, callback) { * - The currentValue argument is the value of the second element present in the array. * * @callback featureReduceCallback - * @param {*} previousValue The accumulated value previously returned in the last invocation + * @param {Reducer} previousValue The accumulated value previously returned in the last invocation * of the callback, or initialValue, if supplied. * @param {Feature} currentFeature The current Feature being processed. * @param {number} featureIndex The current index of the Feature being processed. + * @returns {Reducer} */ /** * Reduce features in any GeoJSON object, similar to Array.reduce(). * - * @name featureReduce - * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON object - * @param {Function} callback a method that takes (previousValue, currentFeature, featureIndex) - * @param {*} [initialValue] Value to use as the first argument to the first call of the callback. - * @returns {*} The value that results from the reduction. + * @function + * @param {FeatureCollection|Feature|Feature} geojson any GeoJSON object + * @param {featureReduceCallback} callback a method that takes (previousValue, currentFeature, featureIndex) + * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback. + * @returns {Reducer} The value that results from the reduction. * @example * var features = turf.featureCollection([ * turf.point([26, 37], {"foo": "bar"}), @@ -452,8 +458,8 @@ function featureReduce(geojson, callback, initialValue) { /** * Get all coordinates from any GeoJSON object. * - * @name coordAll - * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON object + * @function + * @param {AllGeoJSON} geojson any GeoJSON object * @returns {Array>} coordinate position array * @example * var features = turf.featureCollection([ @@ -476,19 +482,20 @@ function coordAll(geojson) { * Callback for geomEach * * @callback geomEachCallback - * @param {Geometry} currentGeometry The current Geometry being processed. + * @param {GeometryObject} currentGeometry The current Geometry being processed. * @param {number} featureIndex The current index of the Feature being processed. - * @param {Object} featureProperties The current Feature Properties being processed. - * @param {Array} featureBBox The current Feature BBox being processed. - * @param {number|string} featureId The current Feature Id being processed. + * @param {GeoJsonProperties} featureProperties The current Feature Properties being processed. + * @param {BBox} featureBBox The current Feature BBox being processed. + * @param {Id} featureId The current Feature Id being processed. + * @returns {void} */ /** * Iterate over each geometry in any GeoJSON object, similar to Array.forEach() * - * @name geomEach - * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON object - * @param {Function} callback a method that takes (currentGeometry, featureIndex, featureProperties, featureBBox, featureId) + * @function + * @param {FeatureCollection|Feature|Geometry|GeometryObject|Feature} geojson any GeoJSON object + * @param {geomEachCallback} callback a method that takes (currentGeometry, featureIndex, featureProperties, featureBBox, featureId) * @returns {void} * @example * var features = turf.featureCollection([ @@ -637,23 +644,24 @@ function geomEach(geojson, callback) { * - The currentValue argument is the value of the second element present in the array. * * @callback geomReduceCallback - * @param {*} previousValue The accumulated value previously returned in the last invocation + * @param {Reducer} previousValue The accumulated value previously returned in the last invocation * of the callback, or initialValue, if supplied. - * @param {Geometry} currentGeometry The current Geometry being processed. + * @param {GeometryObject} currentGeometry The current Geometry being processed. * @param {number} featureIndex The current index of the Feature being processed. - * @param {Object} featureProperties The current Feature Properties being processed. - * @param {Array} featureBBox The current Feature BBox being processed. - * @param {number|string} featureId The current Feature Id being processed. + * @param {GeoJsonProperties} featureProperties The current Feature Properties being processed. + * @param {BBox} featureBBox The current Feature BBox being processed. + * @param {Id} featureId The current Feature Id being processed. + * @returns {Reducer} */ /** * Reduce geometry in any GeoJSON object, similar to Array.reduce(). * - * @name geomReduce - * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON object - * @param {Function} callback a method that takes (previousValue, currentGeometry, featureIndex, featureProperties, featureBBox, featureId) - * @param {*} [initialValue] Value to use as the first argument to the first call of the callback. - * @returns {*} The value that results from the reduction. + * @function + * @param {FeatureCollection|Feature|GeometryObject|GeometryCollection|Feature} geojson any GeoJSON object + * @param {geomReduceCallback} callback a method that takes (previousValue, currentGeometry, featureIndex, featureProperties, featureBBox, featureId) + * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback. + * @returns {Reducer} The value that results from the reduction. * @example * var features = turf.featureCollection([ * turf.point([26, 37], {foo: 'bar'}), @@ -704,15 +712,17 @@ function geomReduce(geojson, callback, initialValue) { * @param {Feature} currentFeature The current flattened feature being processed. * @param {number} featureIndex The current index of the Feature being processed. * @param {number} multiFeatureIndex The current index of the Multi-Feature being processed. + * @returns {void} */ /** * Iterate over flattened features in any GeoJSON object, similar to * Array.forEach. * - * @name flattenEach - * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON object - * @param {Function} callback a method that takes (currentFeature, featureIndex, multiFeatureIndex) + * @function + * @param {FeatureCollection|Feature|GeometryObject|GeometryCollection|Feature} geojson any GeoJSON object + * @param {flattenEachCallback} callback a method that takes (currentFeature, featureIndex, multiFeatureIndex) + * @returns {void} * @example * var features = turf.featureCollection([ * turf.point([26, 37], {foo: 'bar'}), @@ -794,21 +804,22 @@ function flattenEach(geojson, callback) { * - The currentValue argument is the value of the second element present in the array. * * @callback flattenReduceCallback - * @param {*} previousValue The accumulated value previously returned in the last invocation + * @param {Reducer} previousValue The accumulated value previously returned in the last invocation * of the callback, or initialValue, if supplied. * @param {Feature} currentFeature The current Feature being processed. * @param {number} featureIndex The current index of the Feature being processed. * @param {number} multiFeatureIndex The current index of the Multi-Feature being processed. + * @returns {Reducer} */ /** * Reduce flattened features in any GeoJSON object, similar to Array.reduce(). * - * @name flattenReduce - * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON object - * @param {Function} callback a method that takes (previousValue, currentFeature, featureIndex, multiFeatureIndex) - * @param {*} [initialValue] Value to use as the first argument to the first call of the callback. - * @returns {*} The value that results from the reduction. + * @function + * @param {FeatureCollection|Feature|GeometryObject|GeometryCollection|Feature} geojson any GeoJSON object + * @param {flattenReduceCallback} callback a method that takes (previousValue, currentFeature, featureIndex, multiFeatureIndex) + * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback. + * @returns {Reducer} The value that results from the reduction. * @example * var features = turf.featureCollection([ * turf.point([26, 37], {foo: 'bar'}), @@ -862,8 +873,8 @@ function flattenReduce(geojson, callback, initialValue) { * Iterate over 2-vertex line segment in any GeoJSON object, similar to Array.forEach() * (Multi)Point geometries do not contain segments therefore they are ignored during this operation. * - * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON - * @param {Function} callback a method that takes (currentSegment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex) + * @param {AllGeoJSON} geojson any GeoJSON + * @param {segmentEachCallback} callback a method that takes (currentSegment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex) * @returns {void} * @example * var polygon = turf.polygon([[[-50, 5], [-40, -10], [-50, -10], [-40, 5], [-50, 5]]]); @@ -960,13 +971,14 @@ function segmentEach(geojson, callback) { * - The currentValue argument is the value of the second element present in the array. * * @callback segmentReduceCallback - * @param {*} previousValue The accumulated value previously returned in the last invocation + * @param {Reducer} previousValue The accumulated value previously returned in the last invocation * of the callback, or initialValue, if supplied. * @param {Feature} currentSegment The current Segment being processed. * @param {number} featureIndex The current index of the Feature being processed. * @param {number} multiFeatureIndex The current index of the Multi-Feature being processed. * @param {number} geometryIndex The current index of the Geometry being processed. * @param {number} segmentIndex The current index of the Segment being processed. + * @returns {Reducer} */ /** @@ -974,9 +986,9 @@ function segmentEach(geojson, callback) { * (Multi)Point geometries do not contain segments therefore they are ignored during this operation. * * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON - * @param {Function} callback a method that takes (previousValue, currentSegment, currentIndex) - * @param {*} [initialValue] Value to use as the first argument to the first call of the callback. - * @returns {void} + * @param {segmentReduceCallback} callback a method that takes (previousValue, currentSegment, currentIndex) + * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback. + * @returns {Reducer} * @example * var polygon = turf.polygon([[[-50, 5], [-40, -10], [-50, -10], [-40, 5], [-50, 5]]]); * @@ -1035,15 +1047,17 @@ function segmentReduce(geojson, callback, initialValue) { * @param {number} featureIndex The current index of the Feature being processed * @param {number} multiFeatureIndex The current index of the Multi-Feature being processed * @param {number} geometryIndex The current index of the Geometry being processed + * @returns {void} */ /** * Iterate over line or ring coordinates in LineString, Polygon, MultiLineString, MultiPolygon Features or Geometries, * similar to Array.forEach. * - * @name lineEach - * @param {Geometry|Feature} geojson object - * @param {Function} callback a method that takes (currentLine, featureIndex, multiFeatureIndex, geometryIndex) + * @function + * @param {FeatureCollection|Feature|Lines|Feature|GeometryCollection} geojson object + * @param {lineEachCallback} callback a method that takes (currentLine, featureIndex, multiFeatureIndex, geometryIndex) + * @returns {void} * @example * var multiLine = turf.multiLineString([ * [[26, 37], [35, 45]], @@ -1106,22 +1120,23 @@ function lineEach(geojson, callback) { * - The currentValue argument is the value of the second element present in the array. * * @callback lineReduceCallback - * @param {*} previousValue The accumulated value previously returned in the last invocation + * @param {Reducer} previousValue The accumulated value previously returned in the last invocation * of the callback, or initialValue, if supplied. * @param {Feature} currentLine The current LineString|LinearRing being processed. * @param {number} featureIndex The current index of the Feature being processed * @param {number} multiFeatureIndex The current index of the Multi-Feature being processed * @param {number} geometryIndex The current index of the Geometry being processed + * @returns {Reducer} */ /** * Reduce features in any GeoJSON object, similar to Array.reduce(). * - * @name lineReduce - * @param {Geometry|Feature} geojson object + * @function + * @param {FeatureCollection|Feature|Lines|Feature|GeometryCollection} geojson object * @param {Function} callback a method that takes (previousValue, currentLine, featureIndex, multiFeatureIndex, geometryIndex) - * @param {*} [initialValue] Value to use as the first argument to the first call of the callback. - * @returns {*} The value that results from the reduction. + * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback. + * @returns {Reducer} The value that results from the reduction. * @example * var multiPoly = turf.multiPolygon([ * turf.polygon([[[12,48],[2,41],[24,38],[12,48]], [[9,44],[13,41],[13,45],[9,44]]]), diff --git a/packages/turf-meta/package.json b/packages/turf-meta/package.json index fae0bae96..32c237f66 100644 --- a/packages/turf-meta/package.json +++ b/packages/turf-meta/package.json @@ -1,7 +1,7 @@ { "name": "@turf/meta", - "version": "7.0.0", - "description": "turf meta module", + "version": "7.2.0", + "description": "Provides tools for iterating over and manipulating GeoJSON objects.", "author": "Turf Authors", "contributors": [ "Tom MacWright <@tmcw>", @@ -73,16 +73,16 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/random": "workspace:^", + "@turf/random": "workspace:*", "@types/benchmark": "^2.1.5", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4" }, "dependencies": { - "@turf/helpers": "workspace:^", + "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10" } } diff --git a/packages/turf-meta/test.ts b/packages/turf-meta/test.ts index a8589fe0e..8c59c0e0b 100644 --- a/packages/turf-meta/test.ts +++ b/packages/turf-meta/test.ts @@ -532,7 +532,7 @@ test("null geometries", (t) => { 0, "coordReduce" ); - /* eslint-enable no-return-assign */ + t.end(); }); diff --git a/packages/turf-midpoint/index.ts b/packages/turf-midpoint/index.ts index a401c57a1..70ccef3f5 100644 --- a/packages/turf-midpoint/index.ts +++ b/packages/turf-midpoint/index.ts @@ -9,7 +9,7 @@ import { Coord } from "@turf/helpers"; * calculated geodesically, meaning the curvature of the earth is taken into * account. * - * @name midpoint + * @function * @param {Coord} point1 first point * @param {Coord} point2 second point * @returns {Feature} a point midway between `pt1` and `pt2` diff --git a/packages/turf-midpoint/package.json b/packages/turf-midpoint/package.json index a150bc123..2d77e7ad5 100644 --- a/packages/turf-midpoint/package.json +++ b/packages/turf-midpoint/package.json @@ -1,7 +1,7 @@ { "name": "@turf/midpoint", - "version": "7.0.0", - "description": "turf midpoint module", + "version": "7.2.0", + "description": "Takes two points and calculates a point midway between them geodesically.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -53,20 +53,20 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/bearing": "workspace:^", - "@turf/destination": "workspace:^", - "@turf/distance": "workspace:^", - "@turf/helpers": "workspace:^", + "@turf/bearing": "workspace:*", + "@turf/destination": "workspace:*", + "@turf/distance": "workspace:*", + "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-moran-index/README.md b/packages/turf-moran-index/README.md index ce93589de..c4b022ab8 100644 --- a/packages/turf-moran-index/README.md +++ b/packages/turf-moran-index/README.md @@ -2,6 +2,17 @@ +## MoranIndex + +Type: [object][1] + +### Properties + +* `moranIndex` **[number][2]** the moran's Index of the observed feature set +* `expectedMoranIndex` **[number][2]** the moran's Index of the random distribution +* `stdNorm` **[number][2]** the standard devitaion of the random distribution +* `zNorm` **[number][2]** the z-score of the observe samples with regard to the random distribution + ## moranIndex Moran's I measures patterns of attribute values associated with features. @@ -20,22 +31,22 @@ the z-score can be calculated based on a normal or random assumption. **Bibliography**\* -1. [Moran's I][1] +1. [Moran's I][3] -2. [pysal][2] +2. [pysal][4] 3. Andy Mitchell, The ESRI Guide to GIS Analysis Volume 2: Spatial Measurements & Statistics. ### Parameters -* `fc` **[FeatureCollection][3]\** -* `options` **[Object][4]** +* `fc` **[FeatureCollection][5]\** +* `options` **[Object][1]** - * `options.inputField` **[string][5]** the property name, must contain numeric values - * `options.threshold` **[number][6]** the distance threshold (optional, default `100000`) - * `options.p` **[number][6]** the Minkowski p-norm distance parameter (optional, default `2`) + * `options.inputField` **[string][6]** the property name, must contain numeric values + * `options.threshold` **[number][2]** the distance threshold (optional, default `100000`) + * `options.p` **[number][2]** the Minkowski p-norm distance parameter (optional, default `2`) * `options.binary` **[boolean][7]** whether transfrom the distance to binary (optional, default `false`) - * `options.alpha` **[number][6]** the distance decay parameter (optional, default `-1`) + * `options.alpha` **[number][2]** the distance decay parameter (optional, default `-1`) * `options.standardization` **[boolean][7]** wheter row standardization the distance (optional, default `true`) ### Examples @@ -51,55 +62,22 @@ const result = turf.moranIndex(dataset, { Returns **[MoranIndex][8]** -## mean +[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -get mean of a list +[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number -### Parameters +[3]: https://en.wikipedia.org/wiki/Moran%27s_I -* `y` **[Array][9]<[number][6]>** +[4]: http://pysal.readthedocs.io/en/latest/index.html -Returns **[number][6]** +[5]: https://tools.ietf.org/html/rfc7946#section-3.3 -## variance - -get variance of a list - -### Parameters - -* `y` **[Array][9]<[number][6]>** - -Returns **[number][6]** - -## MoranIndex - -Type: [Object][4] - -### Properties - -* `moranIndex` **[number][6]** the moran's Index of the observed feature set -* `expectedMoranIndex` **[number][6]** the moran's Index of the random distribution -* `stdNorm` **[number][6]** the standard devitaion of the random distribution -* `zNorm` **[number][6]** the z-score of the observe samples with regard to the random distribution - -[1]: https://en.wikipedia.org/wiki/Moran%27s_I - -[2]: http://pysal.readthedocs.io/en/latest/index.html - -[3]: https://tools.ietf.org/html/rfc7946#section-3.3 - -[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object - -[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String - -[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number +[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String [7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean [8]: #moranindex -[9]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array - --- diff --git a/packages/turf-moran-index/index.ts b/packages/turf-moran-index/index.ts index 362c35578..83a5e9e5b 100644 --- a/packages/turf-moran-index/index.ts +++ b/packages/turf-moran-index/index.ts @@ -2,6 +2,20 @@ import { FeatureCollection } from "geojson"; import { distanceWeight as spatialWeight } from "@turf/distance-weight"; import { featureEach } from "@turf/meta"; +/** + * @typedef {object} MoranIndex + * @property {number} moranIndex the moran's Index of the observed feature set + * @property {number} expectedMoranIndex the moran's Index of the random distribution + * @property {number} stdNorm the standard devitaion of the random distribution + * @property {number} zNorm the z-score of the observe samples with regard to the random distribution + */ +type MoranIndex = { + moranIndex: number; + expectedMoranIndex: number; + stdNorm: number; + zNorm: number; +}; + /** * Moran's I measures patterns of attribute values associated with features. * The method reveal whether similar values tend to occur near each other, @@ -25,7 +39,7 @@ import { featureEach } from "@turf/meta"; * * 3. Andy Mitchell, The ESRI Guide to GIS Analysis Volume 2: Spatial Measurements & Statistics. * - * @name moranIndex + * @function * @param {FeatureCollection} fc * @param {Object} options * @param {string} options.inputField the property name, must contain numeric values @@ -55,12 +69,7 @@ function moranIndex( alpha?: number; standardization?: boolean; } -): { - moranIndex: number; - expectedMoranIndex: number; - stdNorm: number; - zNorm: number; -} { +): MoranIndex { const inputField = options.inputField; const threshold = options.threshold || 100000; const p = options.p || 2; @@ -121,6 +130,8 @@ function moranIndex( /** * get mean of a list + * + * @private * @param {number[]} y * @returns {number} * @@ -134,6 +145,8 @@ function mean(y: number[]): number { } /** * get variance of a list + * + * @private * @param {number[]} y * @returns {number} * @@ -147,13 +160,5 @@ function variance(y: number[]): number { return sum / y.length; } -/** - * @typedef {Object} MoranIndex - * @property {number} moranIndex the moran's Index of the observed feature set - * @property {number} expectedMoranIndex the moran's Index of the random distribution - * @property {number} stdNorm the standard devitaion of the random distribution - * @property {number} zNorm the z-score of the observe samples with regard to the random distribution - */ - -export { moranIndex }; +export { moranIndex, MoranIndex }; export default moranIndex; diff --git a/packages/turf-moran-index/package.json b/packages/turf-moran-index/package.json index 2768bc479..00797b5c4 100644 --- a/packages/turf-moran-index/package.json +++ b/packages/turf-moran-index/package.json @@ -1,7 +1,7 @@ { "name": "@turf/moran-index", - "version": "7.0.0", - "description": "turf moran-index module", + "version": "7.2.0", + "description": "Measures patterns of attribute values associated with features. Reveals whether similar values tend to occur near each other, or whether high or low values are interspersed", "author": "Turf Authors", "contributors": [ "Haoming Zhuang <@zhuang-hao-ming>" @@ -53,21 +53,21 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/distance-weight": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/distance-weight": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-nearest-neighbor-analysis/README.md b/packages/turf-nearest-neighbor-analysis/README.md index 5b66701df..25121b22a 100644 --- a/packages/turf-nearest-neighbor-analysis/README.md +++ b/packages/turf-nearest-neighbor-analysis/README.md @@ -2,16 +2,42 @@ +## NearestNeighborStatistics + +Nearest neighbour statistics. + +Type: [object][1] + +### Properties + +* `arealUnits` **[string][2]** +* `observedMeanDistance` **[number][3]** +* `expectedMeanDistance` **[number][3]** +* `numberOfPoints` **[number][3]** +* `zScore` **[number][3]** + +## NearestNeighborStudyArea + +Nearest neighbour study area polygon feature. + +Type: [object][1] + +### Properties + +* `properties` **[GeoJsonProperties][4]** + + * `properties.nearestNeighborAnalysis` **[NearestNeighborStatistics][5]** + ## nearestNeighborAnalysis -Nearest Neighbor Analysis calculates an index based the average distances +Nearest Neighbor Analysis calculates an index based on the average distances between points in the dataset, thereby providing inference as to whether the data is clustered, dispersed, or randomly distributed within the study area. -It returns a [Feature\][1] of the study area, with the results of +It returns a [Feature][4]<[Polygon][6]> of the study area, with the results of the analysis attached as part of of the `nearestNeighborAnalysis` property of the study area's `properties`. The attached -[*z*-score][2] indicates how many +[*z*-score][7] indicates how many standard deviations above or below the expected mean distance the data's observed mean distance is. The more negative, the more clustered. The more positive, the more evenly dispersed. A *z*-score between -2 and 2 indicates @@ -21,11 +47,11 @@ dispersed. **Remarks** -* Though the analysis will work on any [FeatureCollection][3] type, it - works best with [Point][4] collections. +* Though the analysis will work on any [FeatureCollection][8] type, it + works best with [Point][9] collections. * This analysis is *very* sensitive to the study area provided. - If no [Feature\][1] is passed as the study area, the function draws a box + If no [Feature][4]<[Polygon][6]> is passed as the study area, the function draws a box around the data, which may distort the findings. This analysis works best with a bounded area of interest within with the data is either clustered, dispersed, or randomly distributed. For example, a city's subway stops may @@ -37,16 +63,15 @@ dispersed. Philip J. Clark and Francis C. Evans, β€œDistance to Nearest Neighbor as a Measure of Spatial Relationships in Populations,” *Ecology* 35, no. 4 -(1954): 445–453, doi:[10.2307/1931034][5]. +(1954): 445–453, doi:[10.2307/1931034][10]. ### Parameters -* `dataset` **[FeatureCollection][3]\** FeatureCollection (pref. of points) to study -* `options` **[Object][6]** Optional parameters (optional, default `{}`) +* `dataset` **[FeatureCollection][8]\** FeatureCollection (pref. of points) to study +* `options` **[Object][1]** Optional parameters (optional, default `{}`) - * `options.studyArea` **[Feature][7]<[Polygon][8]>?** polygon representing the study area - * `options.units` **[string][9]** unit of measurement for distances and, squared, area. (optional, default `'kilometers'`) - * `options.properties` **[Object][6]** properties (optional, default `{}`) + * `options.studyArea` **[Feature][4]<[Polygon][6]>?** polygon representing the study area + * `options.properties` **[GeoJsonProperties][4]** properties (optional, default `{}`) ### Examples @@ -59,25 +84,29 @@ var nearestNeighborStudyArea = turf.nearestNeighborAnalysis(dataset); var addToMap = [dataset, nearestNeighborStudyArea]; ``` -Returns **[Feature][7]<[Polygon][8]>** A polygon of the study area or an approximation of one. +Returns **[NearestNeighborStudyArea][11]** A polygon of the study area or an approximation of one. -[1]: Feature +[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[2]: https://en.wikipedia.org/wiki/Standard_score +[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String -[3]: https://tools.ietf.org/html/rfc7946#section-3.3 +[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number -[4]: https://tools.ietf.org/html/rfc7946#section-3.1.2 +[4]: https://tools.ietf.org/html/rfc7946#section-3.2 -[5]: http://doi.org/10.2307/1931034 +[5]: #nearestneighborstatistics -[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object +[6]: https://tools.ietf.org/html/rfc7946#section-3.1.6 -[7]: https://tools.ietf.org/html/rfc7946#section-3.2 +[7]: https://en.wikipedia.org/wiki/Standard_score -[8]: https://tools.ietf.org/html/rfc7946#section-3.1.6 +[8]: https://tools.ietf.org/html/rfc7946#section-3.3 -[9]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[9]: https://tools.ietf.org/html/rfc7946#section-3.1.2 + +[10]: http://doi.org/10.2307/1931034 + +[11]: #nearestneighborstudyarea diff --git a/packages/turf-nearest-neighbor-analysis/index.ts b/packages/turf-nearest-neighbor-analysis/index.ts index 274ecb8ac..5e033f2a8 100644 --- a/packages/turf-nearest-neighbor-analysis/index.ts +++ b/packages/turf-nearest-neighbor-analysis/index.ts @@ -19,6 +19,17 @@ import { AreaUnits, } from "@turf/helpers"; +/** + * Nearest neighbour statistics. + * + * @typedef {object} NearestNeighborStatistics + * @property {(Units & AreaUnits)} units + * @property {string} arealUnits + * @property {number} observedMeanDistance + * @property {number} expectedMeanDistance + * @property {number} numberOfPoints + * @property {number} zScore + */ interface NearestNeighborStatistics { units: Units & AreaUnits; arealUnits: string; @@ -28,6 +39,14 @@ interface NearestNeighborStatistics { zScore: number; } +/** + * Nearest neighbour study area polygon feature. + * + * @typedef {object} NearestNeighborStudyArea + * @extends Feature + * @property {GeoJsonProperties} properties + * @property {NearestNeighborStatistics} properties.nearestNeighborAnalysis + */ interface NearestNeighborStudyArea extends Feature { properties: { nearestNeighborAnalysis: NearestNeighborStatistics; @@ -36,11 +55,11 @@ interface NearestNeighborStudyArea extends Feature { } /** - * Nearest Neighbor Analysis calculates an index based the average distances + * Nearest Neighbor Analysis calculates an index based on the average distances * between points in the dataset, thereby providing inference as to whether the * data is clustered, dispersed, or randomly distributed within the study area. * - * It returns a {@link Feature} of the study area, with the results of + * It returns a {@link Feature}<{@link Polygon}> of the study area, with the results of * the analysis attached as part of of the `nearestNeighborAnalysis` property * of the study area's `properties`. The attached * [_z_-score](https://en.wikipedia.org/wiki/Standard_score) indicates how many @@ -57,7 +76,7 @@ interface NearestNeighborStudyArea extends Feature { * works best with {@link Point} collections. * * - This analysis is _very_ sensitive to the study area provided. - * If no {@link Feature} is passed as the study area, the function draws a box + * If no {@link Feature}<{@link Polygon}> is passed as the study area, the function draws a box * around the data, which may distort the findings. This analysis works best * with a bounded area of interest within with the data is either clustered, * dispersed, or randomly distributed. For example, a city's subway stops may @@ -71,13 +90,13 @@ interface NearestNeighborStudyArea extends Feature { * Measure of Spatial Relationships in Populations,” _Ecology_ 35, no. 4 * (1954): 445–453, doi:[10.2307/1931034](http://doi.org/10.2307/1931034). * - * @name nearestNeighborAnalysis + * @function * @param {FeatureCollection} dataset FeatureCollection (pref. of points) to study * @param {Object} [options={}] Optional parameters * @param {Feature} [options.studyArea] polygon representing the study area - * @param {string} [options.units='kilometers'] unit of measurement for distances and, squared, area. - * @param {Object} [options.properties={}] properties - * @returns {Feature} A polygon of the study area or an approximation of one. + * @param {Units & AreaUnits} [options.units='kilometers'] unit of measurement for distances and, squared, area. + * @param {GeoJsonProperties} [options.properties={}] properties + * @returns {NearestNeighborStudyArea} A polygon of the study area or an approximation of one. * @example * var bbox = [-65, 40, -63, 42]; * var dataset = turf.randomPoint(100, { bbox: bbox }); diff --git a/packages/turf-nearest-neighbor-analysis/package.json b/packages/turf-nearest-neighbor-analysis/package.json index bf4a77205..4314e7f84 100644 --- a/packages/turf-nearest-neighbor-analysis/package.json +++ b/packages/turf-nearest-neighbor-analysis/package.json @@ -1,7 +1,7 @@ { "name": "@turf/nearest-neighbor-analysis", - "version": "7.0.0", - "description": "turf nearest-neighbor-analysis module", + "version": "7.2.0", + "description": "Calculates an index based the average distances between points in the dataset, thereby providing inference as to whether the data is clustered, dispersed, or randomly distributed within the study area.", "author": "Turf Authors", "contributors": [ "Moacir P. de SΓ‘ Pereira <@muziejus>" @@ -52,28 +52,28 @@ "test:tape": "tsx test.ts" }, "devDependencies": { - "@turf/truncate": "workspace:^", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/area": "workspace:^", - "@turf/bbox": "workspace:^", - "@turf/bbox-polygon": "workspace:^", - "@turf/centroid": "workspace:^", - "@turf/distance": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", - "@turf/nearest-point": "workspace:^", + "@turf/area": "workspace:*", + "@turf/bbox": "workspace:*", + "@turf/bbox-polygon": "workspace:*", + "@turf/centroid": "workspace:*", + "@turf/distance": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", + "@turf/nearest-point": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-nearest-point-on-line/README.md b/packages/turf-nearest-point-on-line/README.md index 4e260cab4..614296c8c 100644 --- a/packages/turf-nearest-point-on-line/README.md +++ b/packages/turf-nearest-point-on-line/README.md @@ -4,15 +4,15 @@ ## nearestPointOnLine -Takes a [Point][1] and a [LineString][2] and calculates the closest Point on the (Multi)LineString. +Returns the nearest point on a line to a given point. ### Parameters -* `lines` **([Geometry][3] | [Feature][4]<([LineString][2] | [MultiLineString][5])>)** lines to snap to -* `pt` **([Geometry][3] | [Feature][4]<[Point][1]> | [Array][6]<[number][7]>)** point to snap from +* `lines` **([Geometry][1] | [Feature][2]<([LineString][3] | [MultiLineString][4])>)** lines to snap to +* `pt` **([Geometry][1] | [Feature][2]<[Point][5]> | [Array][6]<[number][7]>)** point to snap from * `options` **[Object][8]** Optional parameters (optional, default `{}`) - * `options.units` **[string][9]** can be degrees, radians, miles, or kilometers (optional, default `'kilometers'`) + * `options.units` **Units** Supports all valid Turf [Units][9] (optional, default `'kilometers'`) ### Examples @@ -34,17 +34,17 @@ var addToMap = [line, pt, snapped]; snapped.properties['marker-color'] = '#00f'; ``` -Returns **[Feature][4]<[Point][1]>** closest point on the `line` to `point`. The properties object will contain four values: `index`: closest point was found on nth line part, `multiFeatureIndex`: closest point was found on the nth line of the `MultiLineString`, `dist`: distance between pt and the closest point, `location`: distance along the line between start and the closest point. +Returns **[Feature][2]<[Point][5]>** closest point on the `line` to `point`. The properties object will contain four values: `index`: closest point was found on nth line part, `multiFeatureIndex`: closest point was found on the nth line of the `MultiLineString`, `dist`: distance between pt and the closest point, `location`: distance along the line between start and the closest point. -[1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 +[1]: https://tools.ietf.org/html/rfc7946#section-3.1 -[2]: https://tools.ietf.org/html/rfc7946#section-3.1.4 +[2]: https://tools.ietf.org/html/rfc7946#section-3.2 -[3]: https://tools.ietf.org/html/rfc7946#section-3.1 +[3]: https://tools.ietf.org/html/rfc7946#section-3.1.4 -[4]: https://tools.ietf.org/html/rfc7946#section-3.2 +[4]: https://tools.ietf.org/html/rfc7946#section-3.1.5 -[5]: https://tools.ietf.org/html/rfc7946#section-3.1.5 +[5]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array @@ -52,7 +52,7 @@ Returns **[Feature][4]<[Point][1]>** closest point on the `line` to `point`. The [8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[9]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[9]: https://turfjs.org/docs/api/types/Units diff --git a/packages/turf-nearest-point-on-line/bench.ts b/packages/turf-nearest-point-on-line/bench.ts index c6e79eabf..eb6d58cee 100644 --- a/packages/turf-nearest-point-on-line/bench.ts +++ b/packages/turf-nearest-point-on-line/bench.ts @@ -2,7 +2,7 @@ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; -import Benchmark from "benchmark"; +import Benchmark, { Event } from "benchmark"; import { nearestPointOnLine } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); @@ -29,10 +29,19 @@ const fixtures = fs.readdirSync(directory).map((filename) => { * route1 x 195 ops/sec Β±2.23% (80 runs sampled) * route2 x 218 ops/sec Β±2.42% (78 runs sampled) */ +let totalTime = 0.0; const suite = new Benchmark.Suite("turf-nearest-point-on-line"); for (const { name, geojson } of fixtures) { const [line, point] = geojson.features; - suite.add(name, () => nearestPointOnLine(line, point)); + suite.add(name, () => nearestPointOnLine(line, point), { + onComplete: (e: Event) => + (totalTime = totalTime += e.target.times?.elapsed), + }); } -suite.on("cycle", (e) => console.log(String(e.target))).run(); +suite + .on("cycle", (e: Event) => console.log(String(e.target))) + .on("complete", () => + console.log(`completed in ${totalTime.toFixed(2)} seconds`) + ) + .run(); diff --git a/packages/turf-nearest-point-on-line/index.ts b/packages/turf-nearest-point-on-line/index.ts index 9d900fb3e..17639230b 100644 --- a/packages/turf-nearest-point-on-line/index.ts +++ b/packages/turf-nearest-point-on-line/index.ts @@ -1,20 +1,23 @@ -import { Feature, Point, LineString, MultiLineString } from "geojson"; -import { bearing } from "@turf/bearing"; +import { Feature, Point, Position, LineString, MultiLineString } from "geojson"; import { distance } from "@turf/distance"; -import { destination } from "@turf/destination"; -import { lineIntersect as lineIntersects } from "@turf/line-intersect"; import { flattenEach } from "@turf/meta"; -import { point, lineString, Coord, Units } from "@turf/helpers"; -import { getCoords } from "@turf/invariant"; +import { + point, + degreesToRadians, + radiansToDegrees, + Coord, + Units, +} from "@turf/helpers"; +import { getCoord, getCoords } from "@turf/invariant"; /** - * Takes a {@link Point} and a {@link LineString} and calculates the closest Point on the (Multi)LineString. + * Returns the nearest point on a line to a given point. * - * @name nearestPointOnLine + * @function * @param {Geometry|Feature} lines lines to snap to * @param {Geometry|Feature|number[]} pt point to snap from * @param {Object} [options={}] Optional parameters - * @param {string} [options.units='kilometers'] can be degrees, radians, miles, or kilometers + * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @returns {Feature} closest point on the `line` to `point`. The properties object will contain four values: `index`: closest point was found on nth line part, `multiFeatureIndex`: closest point was found on the nth line of the `MultiLineString`, `dist`: distance between pt and the closest point, `location`: distance along the line between start and the closest point. * @example * var line = turf.lineString([ @@ -51,6 +54,8 @@ function nearestPointOnLine( throw new Error("lines and pt are required arguments"); } + const ptPos = getCoord(pt); + let closestPt: Feature< Point, { dist: number; index: number; multiFeatureIndex: number; location: number } @@ -68,39 +73,37 @@ function nearestPointOnLine( const coords: any = getCoords(line); for (let i = 0; i < coords.length - 1; i++) { - //start + //start - start of current line section const start: Feature = point(coords[i]); start.properties.dist = distance(pt, start, options); - //stop + const startPos = getCoord(start); + + //stop - end of current line section const stop: Feature = point(coords[i + 1]); stop.properties.dist = distance(pt, stop, options); + const stopPos = getCoord(stop); + // sectionLength const sectionLength = distance(start, stop, options); - //perpendicular - const heightDistance = Math.max( - start.properties.dist, - stop.properties.dist - ); - const direction = bearing(start, stop); - const perpendicularPt1 = destination( - pt, - heightDistance, - direction + 90, - options - ); - const perpendicularPt2 = destination( - pt, - heightDistance, - direction - 90, - options - ); - const intersect = lineIntersects( - lineString([ - perpendicularPt1.geometry.coordinates, - perpendicularPt2.geometry.coordinates, - ]), - lineString([start.geometry.coordinates, stop.geometry.coordinates]) - ); + let intersectPos: Position; + let wasEnd: boolean; + + // Short circuit if snap point is start or end position of the line + // segment or if start is equal to stop position. + if (startPos[0] === ptPos[0] && startPos[1] === ptPos[1]) { + [intersectPos, , wasEnd] = [startPos, undefined, false]; + } else if (stopPos[0] === ptPos[0] && stopPos[1] === ptPos[1]) { + [intersectPos, , wasEnd] = [stopPos, undefined, true]; + } else if (startPos[0] === stopPos[0] && startPos[1] === stopPos[1]) { + [intersectPos, , wasEnd] = [stopPos, undefined, true]; + } else { + // Otherwise, find the nearest point the hard way. + [intersectPos, , wasEnd] = nearestPointOnSegment( + start.geometry.coordinates, + stop.geometry.coordinates, + getCoord(pt) + ); + } let intersectPt: | Feature< Point, @@ -108,40 +111,12 @@ function nearestPointOnLine( > | undefined; - if (intersect.features.length > 0 && intersect.features[0]) { - intersectPt = { - ...intersect.features[0], - properties: { - dist: distance(pt, intersect.features[0], options), - multiFeatureIndex: multiFeatureIndex, - location: - length + distance(start, intersect.features[0], options), - }, - }; - } - - if (start.properties.dist < closestPt.properties.dist) { - closestPt = { - ...start, - properties: { - ...start.properties, - index: i, - multiFeatureIndex: multiFeatureIndex, - location: length, - }, - }; - } - - if (stop.properties.dist < closestPt.properties.dist) { - closestPt = { - ...stop, - properties: { - ...stop.properties, - index: i + 1, - multiFeatureIndex: multiFeatureIndex, - location: length + sectionLength, - }, - }; + if (intersectPos) { + intersectPt = point(intersectPos, { + dist: distance(pt, intersectPos, options), + multiFeatureIndex: multiFeatureIndex, + location: length + distance(start, intersectPos, options), + }); } if ( @@ -150,9 +125,15 @@ function nearestPointOnLine( ) { closestPt = { ...intersectPt, - properties: { ...intersectPt.properties, index: i }, + properties: { + ...intersectPt.properties, + // Legacy behaviour where index progresses to next segment # if we + // went with the end point this iteration. + index: wasEnd ? i + 1 : i, + }, }; } + // update length length += sectionLength; } @@ -162,5 +143,126 @@ function nearestPointOnLine( return closestPt; } +/* + * Plan is to externalise these vector functions to a simple third party + * library. + * Possible candidate is @amandaghassaei/vector-math though having some import + * issues. + */ +type Vector = [number, number, number]; + +function dot(v1: Vector, v2: Vector): number { + const [v1x, v1y, v1z] = v1; + const [v2x, v2y, v2z] = v2; + return v1x * v2x + v1y * v2y + v1z * v2z; +} + +// https://en.wikipedia.org/wiki/Cross_product +function cross(v1: Vector, v2: Vector): Vector { + const [v1x, v1y, v1z] = v1; + const [v2x, v2y, v2z] = v2; + return [v1y * v2z - v1z * v2y, v1z * v2x - v1x * v2z, v1x * v2y - v1y * v2x]; +} + +function magnitude(v: Vector) { + return Math.sqrt(Math.pow(v[0], 2) + Math.pow(v[1], 2) + Math.pow(v[2], 2)); +} + +function angle(v1: Vector, v2: Vector): number { + const theta = dot(v1, v2) / (magnitude(v1) * magnitude(v2)); + return Math.acos(Math.min(Math.max(theta, -1), 1)); +} + +function lngLatToVector(a: Position): Vector { + const lat = degreesToRadians(a[1]); + const lng = degreesToRadians(a[0]); + return [ + Math.cos(lat) * Math.cos(lng), + Math.cos(lat) * Math.sin(lng), + Math.sin(lat), + ]; +} + +function vectorToLngLat(v: Vector): Position { + const [x, y, z] = v; + const lat = radiansToDegrees(Math.asin(z)); + const lng = radiansToDegrees(Math.atan2(y, x)); + + return [lng, lat]; +} + +function nearestPointOnSegment( + posA: Position, // start point of segment to measure to + posB: Position, // end point of segment to measure to + posC: Position // point to measure from +): [Position, boolean, boolean] { + // Based heavily on this article on finding cross track distance to an arc: + // https://gis.stackexchange.com/questions/209540/projecting-cross-track-distance-on-great-circle + + // Convert spherical (lng, lat) to cartesian vector coords (x, y, z) + // In the below https://tikz.net/spherical_1/ we convert lng (πœ™) and lat (πœƒ) + // into vectors with x, y, and z components with a length (r) of 1. + const A = lngLatToVector(posA); // the vector from 0,0,0 to posA + const B = lngLatToVector(posB); // ... to posB + const C = lngLatToVector(posC); // ... to posC + + // Components of target point. + const [Cx, Cy, Cz] = C; + + // Calculate coefficients. + const [D, E, F] = cross(A, B); + const a = E * Cz - F * Cy; + const b = F * Cx - D * Cz; + const c = D * Cy - E * Cx; + + const f = c * E - b * F; + const g = a * F - c * D; + const h = b * D - a * E; + + const t = 1 / Math.sqrt(Math.pow(f, 2) + Math.pow(g, 2) + Math.pow(h, 2)); + + // Vectors to the two points these great circles intersect. + const I1: Vector = [f * t, g * t, h * t]; + const I2: Vector = [-1 * f * t, -1 * g * t, -1 * h * t]; + + // Figure out which is the closest intersection to this segment of the great + // circle. + const angleAB = angle(A, B); + const angleAI1 = angle(A, I1); + const angleBI1 = angle(B, I1); + const angleAI2 = angle(A, I2); + const angleBI2 = angle(B, I2); + + let I: Vector; + + if ( + (angleAI1 < angleAI2 && angleAI1 < angleBI2) || + (angleBI1 < angleAI2 && angleBI1 < angleBI2) + ) { + I = I1; + } else { + I = I2; + } + + // I is the closest intersection to the segment, though might not actually be + // ON the segment. + + // If angle AI or BI is greater than angleAB, I lies on the circle *beyond* A + // and B so use the closest of A or B as the intersection + if (angle(A, I) > angleAB || angle(B, I) > angleAB) { + if ( + distance(vectorToLngLat(I), vectorToLngLat(A)) <= + distance(vectorToLngLat(I), vectorToLngLat(B)) + ) { + return [vectorToLngLat(A), true, false]; + } else { + return [vectorToLngLat(B), false, true]; + } + } + + // As angleAI nor angleBI don't exceed angleAB, I is on the segment + return [vectorToLngLat(I), false, false]; +} + export { nearestPointOnLine }; export default nearestPointOnLine; diff --git a/packages/turf-nearest-point-on-line/package.json b/packages/turf-nearest-point-on-line/package.json index 1ea9c1a2a..07488b64e 100644 --- a/packages/turf-nearest-point-on-line/package.json +++ b/packages/turf-nearest-point-on-line/package.json @@ -1,7 +1,7 @@ { "name": "@turf/nearest-point-on-line", - "version": "7.0.0", - "description": "turf nearest-point-on-line module", + "version": "7.2.0", + "description": "Finds the nearest point on a line to a given point", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -46,29 +46,26 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/along": "workspace:^", - "@turf/length": "workspace:^", - "@turf/truncate": "workspace:^", + "@turf/along": "workspace:*", + "@turf/length": "workspace:*", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/bearing": "workspace:^", - "@turf/destination": "workspace:^", - "@turf/distance": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/line-intersect": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/distance": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-nearest-point-on-line/test.ts b/packages/turf-nearest-point-on-line/test.ts index d94eda16c..34e2e73c6 100644 --- a/packages/turf-nearest-point-on-line/test.ts +++ b/packages/turf-nearest-point-on-line/test.ts @@ -32,7 +32,7 @@ const fixtures = fs.readdirSync(directories.in).map((filename) => { }; }); -test("turf-linestring-to-polygon", (t) => { +test("turf-nearest-point-on-line", (t) => { for (const { name, filename, geojson } of fixtures) { const [line, point] = geojson.features; const onLine = nearestPointOnLine(line, point); @@ -52,14 +52,14 @@ test("turf-linestring-to-polygon", (t) => { t.end(); }); -test("turf-point-on-line - throws error if invalid arguments", (t) => { +test("turf-nearest-point-on-line - throws error if invalid arguments", (t) => { t.throws(() => { nearestPointOnLine(undefined, undefined); }); t.end(); }); -test("turf-point-on-line - first point", (t) => { +test("turf-nearest-point-on-line - first point", (t) => { const line = lineString([ [-122.457175, 37.720033], [-122.457175, 37.718242], @@ -82,7 +82,7 @@ test("turf-point-on-line - first point", (t) => { t.end(); }); -test("turf-point-on-line - points behind first point", (t) => { +test("turf-nearest-point-on-line - points behind first point", (t) => { const line = lineString([ [-122.457175, 37.720033], [-122.457175, 37.718242], @@ -99,8 +99,8 @@ test("turf-point-on-line - points behind first point", (t) => { pts.forEach((pt) => { const snapped = truncate(nearestPointOnLine(line, pt)); t.deepEqual( - first.geometry.coordinates, snapped.geometry.coordinates, + first.geometry.coordinates, "pt behind start moves to first vertex" ); expectedLocation.push(Number(snapped.properties.location.toFixed(6))); @@ -117,7 +117,7 @@ test("turf-point-on-line - points behind first point", (t) => { t.end(); }); -test("turf-point-on-line - points in front of last point", (t) => { +test("turf-nearest-point-on-line - points in front of last point", (t) => { const line = lineString([ [-122.456161, 37.721259], [-122.457175, 37.720033], @@ -132,13 +132,13 @@ test("turf-point-on-line - points in front of last point", (t) => { point([-122.457309, 37.717979]), point([-122.45718, 37.717045]), ]; - const expectedLocation = []; + const expectedLocation: number[] = []; pts.forEach((pt) => { const snapped = truncate(nearestPointOnLine(line, pt)); t.deepEqual( - last.geometry.coordinates, snapped.geometry.coordinates, + last.geometry.coordinates, "pt behind start moves to last vertex" ); expectedLocation.push(Number(snapped.properties.location.toFixed(6))); @@ -155,7 +155,7 @@ test("turf-point-on-line - points in front of last point", (t) => { t.end(); }); -test("turf-point-on-line - points on joints", (t) => { +test("turf-nearest-point-on-line - points on joints", (t) => { const lines = [ lineString([ [-122.456161, 37.721259], @@ -189,7 +189,7 @@ test("turf-point-on-line - points on joints", (t) => { [-0.107599, 51.517782], ]), ]; - const expectedLocation = []; + const expectedLocation: number[] = []; lines.forEach((line, i) => { line.geometry.coordinates @@ -199,8 +199,8 @@ test("turf-point-on-line - points on joints", (t) => { .forEach((pt, j) => { const snapped = truncate(nearestPointOnLine(line, pt)); t.deepEqual( - pt.geometry.coordinates, snapped.geometry.coordinates, + pt.geometry.coordinates, "pt on joint stayed in place" ); if (!expectedLocation[i]) expectedLocation[i] = []; @@ -211,14 +211,14 @@ test("turf-point-on-line - points on joints", (t) => { const filepath = directories.out + "expectedLocation - points on joints.json"; if (process.env.REGEN) writeJsonFileSync(filepath, expectedLocation); t.deepEqual( - loadJsonFileSync(filepath), expectedLocation, + loadJsonFileSync(filepath), "properties.location" ); t.end(); }); -test("turf-point-on-line - points on top of line", (t) => { +test("turf-nearest-point-on-line - points on top of line", (t) => { const line = lineString([ [-0.109198, 51.522042], [-0.10923, 51.521942], @@ -251,14 +251,14 @@ test("turf-point-on-line - points on top of line", (t) => { directories.out + "expectedLocation - points on top of line.json"; if (process.env.REGEN) writeJsonFileSync(filepath, expectedLocation); t.deepEqual( - loadJsonFileSync(filepath), expectedLocation, + loadJsonFileSync(filepath), "properties.location" ); t.end(); }); -test("turf-point-on-line - point along line", (t) => { +test("turf-nearest-point-on-line - point along line", (t) => { const line = lineString([ [-122.457175, 37.720033], [-122.457175, 37.718242], @@ -273,7 +273,7 @@ test("turf-point-on-line - point along line", (t) => { t.end(); }); -test("turf-point-on-line - points on sides of lines", (t) => { +test("turf-nearest-point-on-line - points on sides of lines", (t) => { const line = lineString([ [-122.456161, 37.721259], [-122.457175, 37.718242], @@ -304,7 +304,7 @@ test("turf-point-on-line - points on sides of lines", (t) => { t.end(); }); -test("turf-point-on-line - check dist and index", (t) => { +test("turf-nearest-point-on-line - check dist and index", (t) => { const line = lineString([ [-92.090492, 41.102897], [-92.191085, 41.079868], @@ -334,7 +334,7 @@ test("turf-point-on-line - check dist and index", (t) => { t.end(); }); -test("turf-point-on-line -- Issue #691", (t) => { +test("turf-nearest-point-on-line -- Issue #691", (t) => { const line1 = lineString([ [7, 50], [8, 50], @@ -347,7 +347,7 @@ test("turf-point-on-line -- Issue #691", (t) => { t.end(); }); -test("turf-point-on-line -- Geometry Support", (t) => { +test("turf-nearest-point-on-line -- Geometry Support", (t) => { const pt = point([7, 55]); const line = lineString([ [7, 50], @@ -376,7 +376,7 @@ test("turf-point-on-line -- Geometry Support", (t) => { t.end(); }); -test("turf-point-on-line -- multifeature index", (t) => { +test("turf-nearest-point-on-line -- multifeature index", (t) => { const pt = point([4, 30]); const multiLine = multiLineString([ [ @@ -397,3 +397,123 @@ test("turf-point-on-line -- multifeature index", (t) => { ); t.end(); }); + +test("turf-nearest-point-on-line -- issue 1514", (t) => { + const pt = point([-40.01, 56]); + const line = lineString([ + [-40, 50], + [-40, 60], + ]); + + const nearest = nearestPointOnLine(line, pt, { units: "meters" }); + + t.deepEqual( + truncate(nearest, { precision: 8 }).geometry.coordinates, + [-40, 56.0000004], + "nearest point should be [-40, 56.0000004]" + ); + t.end(); +}); + +test("turf-nearest-point-on-line -- issue 965", (t) => { + const pt = point([-1.75, 50.02876666663333]); + const line = lineString([ + [-76.42916666666666, 36.967333333333336], + [-76.43083333333334, 36.96516666666667], + [-76.43033333333334, 36.962833333333336], + [-76.416, 36.95466666666667], + [-76.4075, 36.953833333333336], + [-76.3555, 36.959], + [-76.35083333333333, 36.96083333333333], + [-76.3405, 36.96783333333333], + [-76.29766666666667, 37.00066666666667], + [-76.25, 37.00966666666667], + [-76.015, 36.95], + [-75.975, 36.94166666666667], + [-75.92166666666667, 36.916666666666664], + [-75.87, 36.87166666666667], + [-75.78083333333333, 36.82666666666667], + [-75.76333333333334, 36.81], + [-75.64433333333334, 36.81], + [-2.75, 49.81666666666667], + [0.9866666666666667, 50.49333333333333], + [1.335, 50.68], + [1.4849999999999999, 50.89833333333333], + [1.7516666666666667, 51.10333333333333], + [2.1666666666666665, 51.25666666666667], + [2.5, 51.36666666666667], + [2.71, 51.36666666666667], + [2.8116666666666665, 51.42333333333333], + [2.881666666666667, 51.42166666666667], + [2.965, 51.415], + [3.046666666666667, 51.413333333333334], + [3.1066666666666665, 51.39833333333333], + [3.25, 51.41], + [3.3033333333333332, 51.406666666666666], + [3.3333333333333335, 51.406666666666666], + [3.36, 51.40833333333333], + [3.408333333333333, 51.4075], + [3.6, 51.43], + [3.6466666666666665, 51.43966666666667], + [3.6683333333333334, 51.43866666666667], + [3.71, 51.415333333333336], + [3.711666666666667, 51.39083333333333], + [3.720833333333333, 51.37833333333333], + [3.751666666666667, 51.365], + [3.8133333333333335, 51.346666666666664], + [3.8466666666666667, 51.345], + [3.888333333333333, 51.354166666666664], + [3.9283333333333332, 51.37083333333333], + [3.9466666666666668, 51.384166666666665], + [3.9783333333333335, 51.435], + [3.9966666666666666, 51.4375], + [4.015, 51.43333333333333], + [4.03, 51.4225], + [4.035, 51.39], + [4.045, 51.37833333333333], + [4.069166666666667, 51.37166666666667], + [4.101666666666667, 51.36866666666667], + [4.133333333333334, 51.37166666666667], + [4.147, 51.37416666666667], + [4.181333333333333, 51.39666666666667], + [4.190666666666667, 51.39833333333333], + [4.200833333333334, 51.39833333333333], + [4.2091666666666665, 51.39416666666666], + [4.221333333333333, 51.36533333333333], + [4.2396666666666665, 51.355], + [4.261666666666667, 51.348333333333336], + [4.275, 51.34466666666667], + [4.293333333333333, 51.343333333333334], + [4.2988333333333335, 51.34166666666667], + [4.308333333333334, 51.325], + [4.314666666666667, 51.329], + [4.316666666666666, 51.32633333333333], + ]); + + const nearest = nearestPointOnLine(line, pt, { units: "meters" }); + + t.deepEqual( + truncate(nearest, { precision: 8 }).geometry.coordinates, + [-1.74267971, 50.01283081], + "nearest point should be [-1.74267971, 50.01283081]" + ); + t.end(); +}); + +test("turf-nearest-point-on-line -- issue 2808 redundant point support", (t) => { + // include redundant points in line + const line1 = lineString([ + [10.57846, 49.8463959], + [10.57846, 49.8468386], + [10.57846, 49.8468386], + [10.57846, 49.8468386], + [10.57846, 49.8472814], + [10.57846, 49.8472814], + ]); + const thePoint = point([10.57846, 49.8468386]); + + const nearest = nearestPointOnLine(line1, thePoint); // should not throw + t.equal(nearest.properties.dist, 0, "redundant point should not throw"); + + t.end(); +}); diff --git a/packages/turf-nearest-point-on-line/test/out/expectedLocation - points on top of line.json b/packages/turf-nearest-point-on-line/test/out/expectedLocation - points on top of line.json index 6ab11d48a..fad575df4 100644 --- a/packages/turf-nearest-point-on-line/test/out/expectedLocation - points on top of line.json +++ b/packages/turf-nearest-point-on-line/test/out/expectedLocation - points on top of line.json @@ -1,4 +1,4 @@ [ 0, 0.030566, 0.061133, 0.091699, 0.122265, 0.152831, 0.183398, 0.213964, 0.24453, - 0.275097 + 0.275096 ] diff --git a/packages/turf-nearest-point-on-line/test/out/line-northern-latitude-#344.geojson b/packages/turf-nearest-point-on-line/test/out/line-northern-latitude-#344.geojson index 64a5af130..4c16f7248 100644 --- a/packages/turf-nearest-point-on-line/test/out/line-northern-latitude-#344.geojson +++ b/packages/turf-nearest-point-on-line/test/out/line-northern-latitude-#344.geojson @@ -23,7 +23,7 @@ "geometry": { "type": "LineString", "coordinates": [ - [-94.517044, 74.854791], + [-94.51639, 74.85549], [-94.713135, 74.870757] ] } @@ -39,15 +39,15 @@ { "type": "Feature", "properties": { - "dist": 5.964157, + "dist": 5.959562, "multiFeatureIndex": 0, - "location": 19.828788, + "location": 19.748879, "index": 1, "marker-color": "#F0F" }, "geometry": { "type": "Point", - "coordinates": [-94.517044, 74.854791] + "coordinates": [-94.51639, 74.85549] } } ] diff --git a/packages/turf-nearest-point-on-line/test/out/line1.geojson b/packages/turf-nearest-point-on-line/test/out/line1.geojson index 634477fa6..d896f4910 100644 --- a/packages/turf-nearest-point-on-line/test/out/line1.geojson +++ b/packages/turf-nearest-point-on-line/test/out/line1.geojson @@ -23,7 +23,7 @@ "geometry": { "type": "LineString", "coordinates": [ - [-97.856495, 22.269978], + [-97.856502, 22.270017], [-97.879944, 22.26241] ] } @@ -39,15 +39,15 @@ { "type": "Feature", "properties": { - "dist": 2.555507, + "dist": 2.556271, "multiFeatureIndex": 0, - "location": 22.141834, + "location": 22.137494, "index": 1, "marker-color": "#F0F" }, "geometry": { "type": "Point", - "coordinates": [-97.856495, 22.269978] + "coordinates": [-97.856502, 22.270017] } } ] diff --git a/packages/turf-nearest-point-on-line/test/out/multiLine3.geojson b/packages/turf-nearest-point-on-line/test/out/multiLine3.geojson index 67be313c2..d858ad925 100644 --- a/packages/turf-nearest-point-on-line/test/out/multiLine3.geojson +++ b/packages/turf-nearest-point-on-line/test/out/multiLine3.geojson @@ -41,7 +41,7 @@ "geometry": { "type": "LineString", "coordinates": [ - [123.924613, -19.025117], + [123.930125, -19.033194], [123.486328, -18.020528] ] } @@ -57,15 +57,15 @@ { "type": "Feature", "properties": { - "dist": 120.886021, + "dist": 121.937841, "multiFeatureIndex": 0, - "location": 214.548785, + "location": 214.735285, "index": 0, "marker-color": "#F0F" }, "geometry": { "type": "Point", - "coordinates": [123.924613, -19.025117] + "coordinates": [123.930125, -19.033194] } } ] diff --git a/packages/turf-nearest-point-on-line/test/out/route1.geojson b/packages/turf-nearest-point-on-line/test/out/route1.geojson index 9ca24d947..71003b12d 100644 --- a/packages/turf-nearest-point-on-line/test/out/route1.geojson +++ b/packages/turf-nearest-point-on-line/test/out/route1.geojson @@ -4776,7 +4776,7 @@ "geometry": { "type": "LineString", "coordinates": [ - [-78.429267, 38.140728], + [-78.429232, 38.140783], [-78.348999, 38.108628] ] } @@ -4792,15 +4792,15 @@ { "type": "Feature", "properties": { - "dist": 7.876559, + "dist": 7.876557, "multiFeatureIndex": 0, - "location": 183.461611, + "location": 183.46844, "index": 3104, "marker-color": "#F0F" }, "geometry": { "type": "Point", - "coordinates": [-78.429267, 38.140728] + "coordinates": [-78.429232, 38.140783] } } ] diff --git a/packages/turf-nearest-point-on-line/test/out/route2.geojson b/packages/turf-nearest-point-on-line/test/out/route2.geojson index d17968e69..59b51f99d 100644 --- a/packages/turf-nearest-point-on-line/test/out/route2.geojson +++ b/packages/turf-nearest-point-on-line/test/out/route2.geojson @@ -3780,7 +3780,7 @@ "geometry": { "type": "LineString", "coordinates": [ - [-111.927576, 48.931885], + [-111.927805, 48.932435], [-112.181396, 48.886392] ] } @@ -3796,15 +3796,15 @@ { "type": "Feature", "properties": { - "dist": 19.22748, + "dist": 19.22738, "multiFeatureIndex": 0, - "location": 303.703041, + "location": 303.639629, "index": 1185, "marker-color": "#F0F" }, "geometry": { "type": "Point", - "coordinates": [-111.927576, 48.931885] + "coordinates": [-111.927805, 48.932435] } } ] diff --git a/packages/turf-nearest-point-to-line/README.md b/packages/turf-nearest-point-to-line/README.md index 579691041..f40c77fc8 100644 --- a/packages/turf-nearest-point-to-line/README.md +++ b/packages/turf-nearest-point-to-line/README.md @@ -11,9 +11,9 @@ to a [line][3]. The returned point has a `dist` property indicating its distance * `points` **([FeatureCollection][2] | [GeometryCollection][4]<[Point][1]>)** Point Collection * `line` **([Feature][5] | [Geometry][6]<[LineString][3]>)** Line Feature -* `options` **[Object][7]?** Optional parameters +* `options` **[Object][7]?** Optional parameters (optional, default `{}`) - * `options.units` **[string][8]** unit of the output distance property + * `options.units` **Units** unit of the output distance property. Supports all valid Turf [Units][8]. (eg: degrees, radians, miles, or kilometers) (optional, default `'kilometers'`) * `options.properties` **[Object][7]** Translate Properties to Point (optional, default `{}`) @@ -33,14 +33,6 @@ var addToMap = [nearest, line]; Returns **[Feature][5]<[Point][1]>** the closest point -## pt - -Translate Properties to final Point, priorities: - -1. options.properties -2. inherent Point properties -3. dist custom properties created by NearestPointToLine - [1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [2]: https://tools.ietf.org/html/rfc7946#section-3.3 @@ -55,7 +47,7 @@ Translate Properties to final Point, priorities: [7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[8]: https://turfjs.org/docs/api/types/Units diff --git a/packages/turf-nearest-point-to-line/index.ts b/packages/turf-nearest-point-to-line/index.ts index d0f61501b..37f3bf58c 100644 --- a/packages/turf-nearest-point-to-line/index.ts +++ b/packages/turf-nearest-point-to-line/index.ts @@ -15,11 +15,11 @@ import { pointToLineDistance } from "@turf/point-to-line-distance"; * Returns the closest {@link Point|point}, of a {@link FeatureCollection|collection} of points, * to a {@link LineString|line}. The returned point has a `dist` property indicating its distance to the line. * - * @name nearestPointToLine + * @function * @param {FeatureCollection|GeometryCollection} points Point Collection * @param {Feature|Geometry} line Line Feature * @param {Object} [options] Optional parameters - * @param {string} [options.units='kilometers'] unit of the output distance property + * @param {Units} [options.units='kilometers'] unit of the output distance property. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * (eg: degrees, radians, miles, or kilometers) * @param {Object} [options.properties={}] Translate Properties to Point * @returns {Feature} the closest point @@ -71,7 +71,7 @@ function nearestPointToLine

( pt = point; } }); - /** + /* * Translate Properties to final Point, priorities: * 1. options.properties * 2. inherent Point properties diff --git a/packages/turf-nearest-point-to-line/package.json b/packages/turf-nearest-point-to-line/package.json index 66405c2b3..fafe88332 100644 --- a/packages/turf-nearest-point-to-line/package.json +++ b/packages/turf-nearest-point-to-line/package.json @@ -1,7 +1,7 @@ { "name": "@turf/nearest-point-to-line", - "version": "7.0.0", - "description": "turf nearest-point-to-line module", + "version": "7.2.0", + "description": "Returns the closest point, of a collection of points, to a line.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>" @@ -56,26 +56,26 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/circle": "workspace:^", - "@turf/truncate": "workspace:^", + "@turf/circle": "workspace:*", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/object-assign": "^4.0.33", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/meta": "workspace:^", - "@turf/point-to-line-distance": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/meta": "workspace:*", + "@turf/point-to-line-distance": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-nearest-point-to-line/test/out/fiji.geojson b/packages/turf-nearest-point-to-line/test/out/fiji.geojson index e740058a8..fe1c68c6a 100644 --- a/packages/turf-nearest-point-to-line/test/out/fiji.geojson +++ b/packages/turf-nearest-point-to-line/test/out/fiji.geojson @@ -37,7 +37,7 @@ { "type": "Feature", "properties": { - "dist": 3.432383, + "dist": 3.504198, "marker-color": "#F00", "marker-size": "large", "marker-symbol": "star" @@ -69,71 +69,71 @@ "type": "Polygon", "coordinates": [ [ - [180.258179, -16.923483], - [180.255016, -16.923632], - [180.251884, -16.924076], - [180.248812, -16.924812], - [180.245831, -16.925833], - [180.242969, -16.927128], - [180.240253, -16.928685], - [180.237709, -16.930489], - [180.235363, -16.932523], - [180.233236, -16.934767], - [180.231349, -16.9372], - [180.229721, -16.939798], - [180.228366, -16.942537], - [180.227299, -16.945389], - [180.226529, -16.948327], - [180.226064, -16.951323], - [180.225908, -16.954349], - [180.226063, -16.957375], - [180.226527, -16.960371], - [180.227296, -16.96331], - [180.228363, -16.966162], - [180.229716, -16.968901], - [180.231344, -16.971499], - [180.233231, -16.973932], - [180.235357, -16.976177], - [180.237704, -16.978212], - [180.240248, -16.980017], - [180.242964, -16.981574], - [180.245827, -16.98287], - [180.24881, -16.98389], - [180.251882, -16.984626], - [180.255015, -16.985071], - [180.258179, -16.98522], - [180.261342, -16.985071], - [180.264475, -16.984626], - [180.267548, -16.98389], - [180.27053, -16.98287], - [180.273393, -16.981574], - [180.27611, -16.980017], - [180.278654, -16.978212], - [180.281, -16.976177], - [180.283127, -16.973932], - [180.285013, -16.971499], - [180.286641, -16.968901], - [180.287995, -16.966162], - [180.289061, -16.96331], - [180.28983, -16.960371], - [180.290295, -16.957375], - [180.290449, -16.954349], - [180.290293, -16.951323], - [180.289828, -16.948327], - [180.289058, -16.945389], - [180.287991, -16.942537], - [180.286637, -16.939798], - [180.285008, -16.9372], - [180.283122, -16.934767], - [180.280995, -16.932523], - [180.278648, -16.930489], - [180.276105, -16.928685], - [180.273389, -16.927128], - [180.270526, -16.925833], - [180.267545, -16.924812], - [180.264473, -16.924076], - [180.261341, -16.923632], - [180.258179, -16.923483] + [180.258179, -16.922837], + [180.25495, -16.922989], + [180.251752, -16.923443], + [180.248617, -16.924194], + [180.245573, -16.925236], + [180.24265, -16.926558], + [180.239878, -16.928148], + [180.237281, -16.92999], + [180.234885, -16.932066], + [180.232714, -16.934358], + [180.230788, -16.936841], + [180.229125, -16.939494], + [180.227743, -16.942289], + [180.226653, -16.945201], + [180.225867, -16.948201], + [180.225392, -16.95126], + [180.225233, -16.954349], + [180.225391, -16.957438], + [180.225865, -16.960497], + [180.22665, -16.963497], + [180.227739, -16.966409], + [180.229121, -16.969205], + [180.230783, -16.971858], + [180.232708, -16.974342], + [180.23488, -16.976634], + [180.237275, -16.978711], + [180.239872, -16.980554], + [180.242646, -16.982144], + [180.245569, -16.983466], + [180.248613, -16.984508], + [180.25175, -16.98526], + [180.254949, -16.985714], + [180.258179, -16.985865], + [180.261409, -16.985714], + [180.264607, -16.98526], + [180.267744, -16.984508], + [180.270789, -16.983466], + [180.273712, -16.982144], + [180.276485, -16.980554], + [180.279082, -16.978711], + [180.281478, -16.976634], + [180.283649, -16.974342], + [180.285575, -16.971858], + [180.287237, -16.969205], + [180.288619, -16.966409], + [180.289707, -16.963497], + [180.290493, -16.960497], + [180.290966, -16.957438], + [180.291125, -16.954349], + [180.290965, -16.95126], + [180.29049, -16.948201], + [180.289704, -16.945201], + [180.288615, -16.942289], + [180.287232, -16.939494], + [180.28557, -16.936841], + [180.283644, -16.934358], + [180.281472, -16.932066], + [180.279077, -16.92999], + [180.27648, -16.928148], + [180.273707, -16.926558], + [180.270785, -16.925236], + [180.267741, -16.924194], + [180.264605, -16.923443], + [180.261407, -16.922989], + [180.258179, -16.922837] ] ] } diff --git a/packages/turf-nearest-point-to-line/test/out/one.geojson b/packages/turf-nearest-point-to-line/test/out/one.geojson index ba312ce97..a3f2d1401 100644 --- a/packages/turf-nearest-point-to-line/test/out/one.geojson +++ b/packages/turf-nearest-point-to-line/test/out/one.geojson @@ -25,7 +25,7 @@ { "type": "Feature", "properties": { - "dist": 32.003656, + "dist": 31.791167, "marker-color": "#F00", "marker-size": "large", "marker-symbol": "star" @@ -57,71 +57,71 @@ "type": "Polygon", "coordinates": [ [ - [29.750977, 18.02344], - [29.703234, 18.021204], - [29.655955, 18.014518], - [29.609598, 18.003445], - [29.564612, 17.988094], - [29.521434, 17.968614], - [29.480483, 17.945194], - [29.442152, 17.91806], - [29.406814, 17.887476], - [29.374809, 17.853737], - [29.346444, 17.817171], - [29.321991, 17.778131], - [29.301684, 17.736995], - [29.285717, 17.69416], - [29.274241, 17.65004], - [29.267362, 17.60506], - [29.265144, 17.559654], - [29.267604, 17.514259], - [29.274716, 17.469313], - [29.286408, 17.425248], - [29.302563, 17.382486], - [29.323024, 17.34144], - [29.347592, 17.302503], - [29.376028, 17.266048], - [29.408057, 17.232425], - [29.443371, 17.201956], - [29.481631, 17.174934], - [29.522468, 17.151616], - [29.565491, 17.132225], - [29.610288, 17.116948], - [29.65643, 17.10593], - [29.703476, 17.099277], - [29.750977, 17.097053], - [29.798477, 17.099277], - [29.845523, 17.10593], - [29.891665, 17.116948], - [29.936462, 17.132225], - [29.979485, 17.151616], - [30.020322, 17.174934], - [30.058582, 17.201956], - [30.093896, 17.232425], - [30.125925, 17.266048], - [30.154361, 17.302503], - [30.178929, 17.34144], - [30.19939, 17.382486], - [30.215545, 17.425248], - [30.227237, 17.469313], - [30.234349, 17.514259], - [30.236809, 17.559654], - [30.234591, 17.60506], - [30.227712, 17.65004], - [30.216236, 17.69416], - [30.200269, 17.736995], - [30.179962, 17.778131], - [30.15551, 17.817171], - [30.127144, 17.853737], - [30.095139, 17.887476], - [30.059801, 17.91806], - [30.021471, 17.945194], - [29.980519, 17.968614], - [29.937341, 17.988094], - [29.892356, 18.003445], - [29.845998, 18.014518], - [29.798719, 18.021204], - [29.750977, 18.02344] + [29.750977, 18.020365], + [29.703552, 18.018144], + [29.656587, 18.011502], + [29.610539, 18.000503], + [29.565852, 17.985254], + [29.522962, 17.965904], + [29.482282, 17.942639], + [29.444207, 17.915686], + [29.409104, 17.885305], + [29.37731, 17.851791], + [29.349133, 17.815468], + [29.324842, 17.776688], + [29.30467, 17.735825], + [29.288809, 17.693275], + [29.277408, 17.649448], + [29.270574, 17.604766], + [29.26837, 17.559662], + [29.270813, 17.514569], + [29.277877, 17.469921], + [29.28949, 17.426147], + [29.305538, 17.38367], + [29.325862, 17.342896], + [29.350266, 17.304217], + [29.378513, 17.268003], + [29.41033, 17.234603], + [29.44541, 17.204337], + [29.483415, 17.177493], + [29.523982, 17.154329], + [29.56672, 17.135068], + [29.61122, 17.119892], + [29.657057, 17.108947], + [29.703791, 17.102338], + [29.750977, 17.100128], + [29.798162, 17.102338], + [29.844897, 17.108947], + [29.890733, 17.119892], + [29.935233, 17.135068], + [29.977971, 17.154329], + [30.018538, 17.177493], + [30.056543, 17.204337], + [30.091623, 17.234603], + [30.12344, 17.268003], + [30.151687, 17.304217], + [30.176091, 17.342896], + [30.196416, 17.38367], + [30.212463, 17.426147], + [30.224076, 17.469921], + [30.23114, 17.514569], + [30.233584, 17.559662], + [30.231379, 17.604766], + [30.224546, 17.649448], + [30.213145, 17.693275], + [30.197283, 17.735825], + [30.177111, 17.776688], + [30.15282, 17.815468], + [30.124643, 17.851791], + [30.09285, 17.885305], + [30.057746, 17.915686], + [30.019671, 17.942639], + [29.978991, 17.965904], + [29.936101, 17.985254], + [29.891415, 18.000503], + [29.845366, 18.011502], + [29.798401, 18.018144], + [29.750977, 18.020365] ] ] } diff --git a/packages/turf-nearest-point-to-line/test/out/two.geojson b/packages/turf-nearest-point-to-line/test/out/two.geojson index 9fa0e29b5..5eb1480d5 100644 --- a/packages/turf-nearest-point-to-line/test/out/two.geojson +++ b/packages/turf-nearest-point-to-line/test/out/two.geojson @@ -29,7 +29,7 @@ { "type": "Feature", "properties": { - "dist": 72.458938, + "dist": 78.009454, "marker-color": "#F00", "marker-size": "large", "marker-symbol": "star" @@ -62,71 +62,71 @@ "type": "Polygon", "coordinates": [ [ - [-38.012695, 26.846515], - [-38.084279, 26.843359], - [-38.155162, 26.833923], - [-38.22465, 26.8183], - [-38.292063, 26.796641], - [-38.356743, 26.76916], - [-38.41806, 26.736125], - [-38.475417, 26.697858], - [-38.52826, 26.654734], - [-38.576079, 26.607173], - [-38.618414, 26.555638], - [-38.654861, 26.50063], - [-38.685075, 26.442684], - [-38.708773, 26.382361], - [-38.725736, 26.320247], - [-38.73581, 26.256941], - [-38.73891, 26.193054], - [-38.735018, 26.129202], - [-38.724181, 26.065999], - [-38.706516, 26.004053], - [-38.682202, 25.943958], - [-38.651483, 25.886288], - [-38.61466, 25.831595], - [-38.572094, 25.780402], - [-38.524197, 25.733196], - [-38.471432, 25.690428], - [-38.414305, 25.652503], - [-38.353364, 25.619783], - [-38.289189, 25.592578], - [-38.222392, 25.571146], - [-38.153607, 25.555691], - [-38.083486, 25.546359], - [-38.012695, 25.543239], - [-37.941904, 25.546359], - [-37.871784, 25.555691], - [-37.802999, 25.571146], - [-37.736201, 25.592578], - [-37.672027, 25.619783], - [-37.611085, 25.652503], - [-37.553959, 25.690428], - [-37.501194, 25.733196], - [-37.453297, 25.780402], - [-37.410731, 25.831595], - [-37.373908, 25.886288], - [-37.343188, 25.943958], - [-37.318875, 26.004053], - [-37.301209, 26.065999], - [-37.290373, 26.129202], - [-37.28648, 26.193054], - [-37.28958, 26.256941], - [-37.299655, 26.320247], - [-37.316617, 26.382361], - [-37.340315, 26.442684], - [-37.37053, 26.50063], - [-37.406977, 26.555638], - [-37.449312, 26.607173], - [-37.49713, 26.654734], - [-37.549973, 26.697858], - [-37.607331, 26.736125], - [-37.668648, 26.76916], - [-37.733328, 26.796641], - [-37.800741, 26.8183], - [-37.870229, 26.833923], - [-37.941111, 26.843359], - [-38.012695, 26.846515] + [-38.012695, 26.896432], + [-38.089796, 26.893033], + [-38.166141, 26.88287], + [-38.240981, 26.866042], + [-38.313584, 26.842715], + [-38.38324, 26.813117], + [-38.449269, 26.777538], + [-38.51103, 26.736326], + [-38.567924, 26.689884], + [-38.619402, 26.638664], + [-38.66497, 26.583167], + [-38.704193, 26.523933], + [-38.7367, 26.461537], + [-38.762187, 26.396584], + [-38.78042, 26.329705], + [-38.791234, 26.261546], + [-38.794539, 26.192764], + [-38.790315, 26.124023], + [-38.778618, 26.055983], + [-38.759571, 25.989299], + [-38.73337, 25.92461], + [-38.700277, 25.862534], + [-38.660619, 25.803664], + [-38.614783, 25.748564], + [-38.563214, 25.697757], + [-38.506411, 25.651726], + [-38.444918, 25.610911], + [-38.379324, 25.575697], + [-38.310254, 25.546419], + [-38.238365, 25.523355], + [-38.164339, 25.506723], + [-38.088877, 25.49668], + [-38.012695, 25.493322], + [-37.936513, 25.49668], + [-37.861052, 25.506723], + [-37.787026, 25.523355], + [-37.715137, 25.546419], + [-37.646067, 25.575697], + [-37.580473, 25.610911], + [-37.51898, 25.651726], + [-37.462176, 25.697757], + [-37.410608, 25.748564], + [-37.364772, 25.803664], + [-37.325114, 25.862534], + [-37.292021, 25.92461], + [-37.26582, 25.989299], + [-37.246773, 26.055983], + [-37.235075, 26.124023], + [-37.230852, 26.192764], + [-37.234157, 26.261546], + [-37.244971, 26.329705], + [-37.263203, 26.396584], + [-37.288691, 26.461537], + [-37.321198, 26.523933], + [-37.360421, 26.583167], + [-37.405989, 26.638664], + [-37.457466, 26.689884], + [-37.51436, 26.736326], + [-37.576121, 26.777538], + [-37.642151, 26.813117], + [-37.711806, 26.842715], + [-37.784409, 26.866042], + [-37.85925, 26.88287], + [-37.935594, 26.893033], + [-38.012695, 26.896432] ] ] } diff --git a/packages/turf-nearest-point/README.md b/packages/turf-nearest-point/README.md index 818a71afb..b5e56996e 100644 --- a/packages/turf-nearest-point/README.md +++ b/packages/turf-nearest-point/README.md @@ -15,7 +15,7 @@ is geodesic. * `points` **[FeatureCollection][3]<[Point][1]>** against input point set * `options` **[Object][4]** Optional parameters (optional, default `{}`) - * `options.units` **[string][5]** the units of the numeric result (optional, default `'kilometers'`) + * `options.units` **Units** the units of the numeric result. Supports all valid Turf [Units][5]. (optional, default `'kilometers'`) ### Examples @@ -44,7 +44,7 @@ Returns **[Feature][6]<[Point][1]>** the closest point in the set to the referen [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[5]: https://turfjs.org/docs/api/types/Units [6]: https://tools.ietf.org/html/rfc7946#section-3.2 diff --git a/packages/turf-nearest-point/index.ts b/packages/turf-nearest-point/index.ts index d53b5a8c9..2d6882a06 100644 --- a/packages/turf-nearest-point/index.ts +++ b/packages/turf-nearest-point/index.ts @@ -1,15 +1,15 @@ -import { Feature, FeatureCollection, Point } from "geojson"; +import { Feature, FeatureCollection, GeoJsonProperties, Point } from "geojson"; import { Coord, Units } from "@turf/helpers"; import { clone } from "@turf/clone"; import { distance } from "@turf/distance"; import { featureEach } from "@turf/meta"; -interface NearestPoint extends Feature { +interface NearestPoint

+ extends Feature { properties: { featureIndex: number; distanceToPoint: number; - [key: string]: any; - }; + } & P; } /** @@ -18,11 +18,11 @@ interface NearestPoint extends Feature { * point from the FeatureCollection closest to the reference. This calculation * is geodesic. * - * @name nearestPoint + * @function * @param {Coord} targetPoint the reference point * @param {FeatureCollection} points against input point set * @param {Object} [options={}] Optional parameters - * @param {string} [options.units='kilometers'] the units of the numeric result + * @param {Units} [options.units='kilometers'] the units of the numeric result. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @returns {Feature} the closest point in the set to the reference point * @example * var targetPoint = turf.point([28.965797, 41.010086], {"marker-color": "#0F0"}); @@ -38,13 +38,13 @@ interface NearestPoint extends Feature { * var addToMap = [targetPoint, points, nearest]; * nearest.properties['marker-color'] = '#F00'; */ -function nearestPoint( +function nearestPoint

( targetPoint: Coord, - points: FeatureCollection, + points: FeatureCollection, options: { units?: Units; } = {} -): NearestPoint { +): NearestPoint

{ // Input validation if (!targetPoint) throw new Error("targetPoint is required"); if (!points) throw new Error("points is required"); diff --git a/packages/turf-nearest-point/package.json b/packages/turf-nearest-point/package.json index 477417a4c..2212a4818 100644 --- a/packages/turf-nearest-point/package.json +++ b/packages/turf-nearest-point/package.json @@ -1,7 +1,7 @@ { "name": "@turf/nearest-point", - "version": "7.0.0", - "description": "turf nearest-point module", + "version": "7.2.0", + "description": "Finds the nearest point from a FeatureCollection of Features with Point geometries to a given point.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -55,22 +55,22 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/clone": "workspace:^", - "@turf/distance": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/clone": "workspace:*", + "@turf/distance": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-planepoint/index.ts b/packages/turf-planepoint/index.ts index 9e6e53172..f54d0552f 100644 --- a/packages/turf-planepoint/index.ts +++ b/packages/turf-planepoint/index.ts @@ -11,7 +11,7 @@ import { Coord } from "@turf/helpers"; * of each triangle point can be provided by their respective 3rd coordinate * if their values are not provided as properties. * - * @name planepoint + * @function * @param {Coord} point the Point for which a z-value will be calculated * @param {Feature} triangle a Polygon feature with three vertices * @returns {number} the z-value for `interpolatedPoint` diff --git a/packages/turf-planepoint/package.json b/packages/turf-planepoint/package.json index 959e45ce8..53ecff59a 100644 --- a/packages/turf-planepoint/package.json +++ b/packages/turf-planepoint/package.json @@ -1,7 +1,7 @@ { "name": "@turf/planepoint", - "version": "7.0.0", - "description": "turf planepoint module", + "version": "7.2.0", + "description": "Takes a triangular plane as a polygon and a point within that triangle, and returns the z-value at that point.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -54,18 +54,18 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-point-grid/README.md b/packages/turf-point-grid/README.md index 6c409b727..7ef41b043 100644 --- a/packages/turf-point-grid/README.md +++ b/packages/turf-point-grid/README.md @@ -4,17 +4,17 @@ ## pointGrid -Creates a [Point][1] grid from a bounding box, [FeatureCollection][2] or [Feature][3]. +Creates a grid of points ### Parameters -* `bbox` **[Array][4]<[number][5]>** extent in \[minX, minY, maxX, maxY] order -* `cellSide` **[number][5]** the distance between points, in units -* `options` **[Object][6]** Optional parameters (optional, default `{}`) +* `bbox` **[BBox][1]** extent of grid in \[minX, minY, maxX, maxY] order +* `cellSide` **[number][2]** the distance between points +* `options` **[Object][3]** Optional parameters (optional, default `{}`) - * `options.units` **[string][7]** used in calculating cellSide, can be degrees, radians, miles, or kilometers (optional, default `'kilometers'`) - * `options.mask` **[Feature][3]<([Polygon][8] | [MultiPolygon][9])>?** if passed a Polygon or MultiPolygon, the grid Points will be created only inside it - * `options.properties` **[Object][6]** passed to each point of the grid (optional, default `{}`) + * `options.units` **Units** the units of the cellSide value. Supports all valid Turf [Units][4] (optional, default `'kilometers'`) + * `options.mask` **[Feature][5]<([Polygon][6] | [MultiPolygon][7])>?** if passed a Polygon or MultiPolygon, the grid Points will be created only inside it + * `options.properties` **[Object][3]** passed to each point of the grid (optional, default `{}`) ### Examples @@ -29,25 +29,25 @@ var grid = turf.pointGrid(extent, cellSide, options); var addToMap = [grid]; ``` -Returns **[FeatureCollection][2]<[Point][1]>** grid of points +Returns **[FeatureCollection][8]<[Point][9]>** grid of points -[1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 +[1]: https://tools.ietf.org/html/rfc7946#section-5 -[2]: https://tools.ietf.org/html/rfc7946#section-3.3 +[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number -[3]: https://tools.ietf.org/html/rfc7946#section-3.2 +[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array +[4]: https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/README_UNITS.md -[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number +[5]: https://tools.ietf.org/html/rfc7946#section-3.2 -[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object +[6]: https://tools.ietf.org/html/rfc7946#section-3.1.6 -[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[7]: https://tools.ietf.org/html/rfc7946#section-3.1.7 -[8]: https://tools.ietf.org/html/rfc7946#section-3.1.6 +[8]: https://tools.ietf.org/html/rfc7946#section-3.3 -[9]: https://tools.ietf.org/html/rfc7946#section-3.1.7 +[9]: https://tools.ietf.org/html/rfc7946#section-3.1.2 diff --git a/packages/turf-point-grid/index.ts b/packages/turf-point-grid/index.ts index 05e8d716e..a577d2dc2 100644 --- a/packages/turf-point-grid/index.ts +++ b/packages/turf-point-grid/index.ts @@ -12,13 +12,13 @@ import { distance } from "@turf/distance"; import { point, featureCollection, Units } from "@turf/helpers"; /** - * Creates a {@link Point} grid from a bounding box, {@link FeatureCollection} or {@link Feature}. + * Creates a grid of points * - * @name pointGrid - * @param {Array} bbox extent in [minX, minY, maxX, maxY] order - * @param {number} cellSide the distance between points, in units + * @function + * @param {BBox} bbox extent of grid in [minX, minY, maxX, maxY] order + * @param {number} cellSide the distance between points * @param {Object} [options={}] Optional parameters - * @param {string} [options.units='kilometers'] used in calculating cellSide, can be degrees, radians, miles, or kilometers + * @param {Units} [options.units='kilometers'] the units of the cellSide value. Supports all valid Turf {@link https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/README_UNITS.md Units} * @param {Feature} [options.mask] if passed a Polygon or MultiPolygon, the grid Points will be created only inside it * @param {Object} [options.properties={}] passed to each point of the grid * @returns {FeatureCollection} grid of points diff --git a/packages/turf-point-grid/package.json b/packages/turf-point-grid/package.json index 4caa52441..8726edd2c 100644 --- a/packages/turf-point-grid/package.json +++ b/packages/turf-point-grid/package.json @@ -1,7 +1,7 @@ { "name": "@turf/point-grid", - "version": "7.0.0", - "description": "turf point-grid module", + "version": "7.2.0", + "description": "Creates a grid of points within a bounding box.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>", @@ -56,25 +56,25 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/bbox-polygon": "workspace:^", - "@turf/truncate": "workspace:^", + "@turf/bbox-polygon": "workspace:*", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/boolean-within": "workspace:^", - "@turf/distance": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/boolean-within": "workspace:*", + "@turf/distance": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-point-on-feature/index.ts b/packages/turf-point-on-feature/index.ts index 004cd5e8d..9c823f809 100644 --- a/packages/turf-point-on-feature/index.ts +++ b/packages/turf-point-on-feature/index.ts @@ -13,7 +13,7 @@ import { featureCollection, feature, point } from "@turf/helpers"; * * Given a {@link LineString}, the point will be along the string * * Given a {@link Point}, the point will the same as the input * - * @name pointOnFeature + * @function * @param {GeoJSON} geojson any Feature or FeatureCollection * @returns {Feature} a point on the surface of `input` * @example diff --git a/packages/turf-point-on-feature/package.json b/packages/turf-point-on-feature/package.json index 7fe21ed3c..33a6f0bb3 100644 --- a/packages/turf-point-on-feature/package.json +++ b/packages/turf-point-on-feature/package.json @@ -1,7 +1,7 @@ { "name": "@turf/point-on-feature", - "version": "7.0.0", - "description": "turf point-on-feature module", + "version": "7.2.0", + "description": "Takes a Feature or FeatureCollection and returns a Point guaranteed to be on the surface of the feature.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -53,25 +53,25 @@ "test:tape": "tsx test.ts" }, "devDependencies": { - "@turf/meta": "workspace:^", - "@turf/truncate": "workspace:^", + "@turf/meta": "workspace:*", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/boolean-point-in-polygon": "workspace:^", - "@turf/center": "workspace:^", - "@turf/explode": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/nearest-point": "workspace:^", + "@turf/boolean-point-in-polygon": "workspace:*", + "@turf/center": "workspace:*", + "@turf/explode": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/nearest-point": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-point-to-line-distance/README.md b/packages/turf-point-to-line-distance/README.md index 81792b28f..7305ea2df 100644 --- a/packages/turf-point-to-line-distance/README.md +++ b/packages/turf-point-to-line-distance/README.md @@ -4,18 +4,17 @@ ## pointToLineDistance -Returns the minimum distance between a [Point][1] and a [LineString][2], being the distance from a line the -minimum distance between the point and any segment of the `LineString`. +Calculates the distance between a given point and the nearest point on a +line. Sometimes referred to as the cross track distance. ### Parameters -* `pt` **([Feature][3]<[Point][1]> | [Array][4]<[number][5]>)** Feature or Geometry -* `line` **[Feature][3]<[LineString][2]>** GeoJSON Feature or Geometry +* `pt` **([Feature][1]<[Point][2]> | [Array][3]<[number][4]>)** Feature or Geometry +* `line` **[Feature][1]<[LineString][5]>** GeoJSON Feature or Geometry * `options` **[Object][6]** Optional parameters (optional, default `{}`) - * `options.units` **[string][7]** can be anything supported by turf/convertLength - (ex: degrees, radians, miles, or kilometers) (optional, default `"kilometers"`) - * `options.method` **[string][7]** whether to calculate the distance based on geodesic (spheroid) or + * `options.units` **Units** Supports all valid Turf [Units][7] (optional, default `"kilometers"`) + * `options.method` **[string][8]** whether to calculate the distance based on geodesic (spheroid) or planar (flat) method. Valid options are 'geodesic' or 'planar'. (optional, default `"geodesic"`) ### Examples @@ -28,21 +27,23 @@ var distance = turf.pointToLineDistance(pt, line, {units: 'miles'}); //=69.11854715938406 ``` -Returns **[number][5]** distance between point and line +Returns **[number][4]** distance between point and line -[1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 +[1]: https://tools.ietf.org/html/rfc7946#section-3.2 -[2]: https://tools.ietf.org/html/rfc7946#section-3.1.4 +[2]: https://tools.ietf.org/html/rfc7946#section-3.1.2 -[3]: https://tools.ietf.org/html/rfc7946#section-3.2 +[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array -[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array +[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number -[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number +[5]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[7]: https://turfjs.org/docs/api/types/Units + +[8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String diff --git a/packages/turf-point-to-line-distance/bench.ts b/packages/turf-point-to-line-distance/bench.ts index a1f9b2e15..18275fa06 100644 --- a/packages/turf-point-to-line-distance/bench.ts +++ b/packages/turf-point-to-line-distance/bench.ts @@ -72,12 +72,21 @@ for (const { name, geojson } of fixtures) { * segment3 x 692,171 ops/sec Β±1.16% (82 runs sampled) * segment4 x 681,063 ops/sec Β±0.95% (86 runs sampled) */ +let totalTime = 0.0; const suite = new Benchmark.Suite("turf-point-to-line-distance"); for (const { name, geojson } of fixtures) { const [point, line] = geojson.features; let { units } = geojson.properties || {}; if (!units) units = "kilometers"; - suite.add(name, () => pointToLineDistance(point, line, { units: units })); + suite.add(name, () => pointToLineDistance(point, line, { units: units }), { + onComplete: (e: Event) => + (totalTime = totalTime += e.target.times?.elapsed), + }); } -suite.on("cycle", (e) => console.log(String(e.target))).run(); +suite + .on("cycle", (e: Event) => console.log(String(e.target))) + .on("complete", () => + console.log(`completed in ${totalTime.toFixed(2)} seconds`) + ) + .run(); diff --git a/packages/turf-point-to-line-distance/index.ts b/packages/turf-point-to-line-distance/index.ts index 0bd7b60b4..9defac1f5 100644 --- a/packages/turf-point-to-line-distance/index.ts +++ b/packages/turf-point-to-line-distance/index.ts @@ -1,6 +1,5 @@ // Taken from http://geomalgorithms.com/a02-_lines.html import { Feature, LineString } from "geojson"; -import { distance as getDistance } from "@turf/distance"; import { convertLength, Coord, @@ -9,20 +8,20 @@ import { point, Units, } from "@turf/helpers"; +import { nearestPointOnLine } from "@turf/nearest-point-on-line"; import { featureOf } from "@turf/invariant"; import { segmentEach } from "@turf/meta"; -import { rhumbDistance as getPlanarDistance } from "@turf/rhumb-distance"; +import { rhumbDistance } from "@turf/rhumb-distance"; /** - * Returns the minimum distance between a {@link Point} and a {@link LineString}, being the distance from a line the - * minimum distance between the point and any segment of the `LineString`. + * Calculates the distance between a given point and the nearest point on a + * line. Sometimes referred to as the cross track distance. * - * @name pointToLineDistance + * @function * @param {Feature|Array} pt Feature or Geometry * @param {Feature} line GeoJSON Feature or Geometry * @param {Object} [options={}] Optional parameters - * @param {string} [options.units="kilometers"] can be anything supported by turf/convertLength - * (ex: degrees, radians, miles, or kilometers) + * @param {Units} [options.units="kilometers"] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @param {string} [options.method="geodesic"] whether to calculate the distance based on geodesic (spheroid) or * planar (flat) method. Valid options are 'geodesic' or 'planar'. * @returns {number} distance between point and line @@ -42,12 +41,8 @@ function pointToLineDistance( } = {} ): number { // Optional parameters - if (!options.method) { - options.method = "geodesic"; - } - if (!options.units) { - options.units = "kilometers"; - } + const method = options.method ?? "geodesic"; + const units = options.units ?? "kilometers"; // validation if (!pt) { @@ -75,14 +70,16 @@ function pointToLineDistance( let distance = Infinity; const p = pt.geometry.coordinates; segmentEach(line, (segment) => { - const a = segment!.geometry.coordinates[0]; - const b = segment!.geometry.coordinates[1]; - const d = distanceToSegment(p, a, b, options); - if (d < distance) { - distance = d; + if (segment) { + const a = segment.geometry.coordinates[0]; + const b = segment.geometry.coordinates[1]; + const d = distanceToSegment(p, a, b, { method }); + if (d < distance) { + distance = d; + } } }); - return convertLength(distance, "degrees", options.units); + return convertLength(distance, "degrees", units); } /** @@ -96,36 +93,45 @@ function pointToLineDistance( * @returns {number} distance */ function distanceToSegment( - p: number[], - a: number[], - b: number[], - options: any + p: number[], // point to measure from + a: number[], // start point of the segment to measure to + b: number[], // end point of the segment to measure to + options: { + method: "geodesic" | "planar"; + } ) { + // Internally just use degrees, and then convert to the user's requested units + // in the calling function. + if (options.method === "geodesic") { + // Use nearestPointOnLine to properly calculate distances on a spherical + // Earth. + const nearest = nearestPointOnLine(lineString([a, b]).geometry, p, { + units: "degrees", + }); + return nearest.properties.dist; + } + + // Perform scalar calculations instead using rhumb lines. const v = [b[0] - a[0], b[1] - a[1]]; const w = [p[0] - a[0], p[1] - a[1]]; const c1 = dot(w, v); if (c1 <= 0) { - return calcDistance(p, a, { method: options.method, units: "degrees" }); + return rhumbDistance(p, a, { units: "degrees" }); } const c2 = dot(v, v); if (c2 <= c1) { - return calcDistance(p, b, { method: options.method, units: "degrees" }); + return rhumbDistance(p, b, { units: "degrees" }); } const b2 = c1 / c2; const Pb = [a[0] + b2 * v[0], a[1] + b2 * v[1]]; - return calcDistance(p, Pb, { method: options.method, units: "degrees" }); + + return rhumbDistance(p, Pb, { units: "degrees" }); } function dot(u: number[], v: number[]) { return u[0] * v[0] + u[1] * v[1]; } -function calcDistance(a: number[], b: number[], options: any) { - return options.method === "planar" - ? getPlanarDistance(a, b, options) - : getDistance(a, b, options); -} - export { pointToLineDistance }; export default pointToLineDistance; diff --git a/packages/turf-point-to-line-distance/package.json b/packages/turf-point-to-line-distance/package.json index d1a7b07c4..fbf50205e 100644 --- a/packages/turf-point-to-line-distance/package.json +++ b/packages/turf-point-to-line-distance/package.json @@ -1,7 +1,7 @@ { "name": "@turf/point-to-line-distance", - "version": "7.0.0", - "description": "turf point-to-line-distance module", + "version": "7.2.0", + "description": "Calculates the distance between a given point and the nearest point on a line.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>" @@ -54,28 +54,29 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/circle": "workspace:^", + "@turf/circle": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/bearing": "workspace:^", - "@turf/distance": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/meta": "workspace:^", - "@turf/projection": "workspace:^", - "@turf/rhumb-bearing": "workspace:^", - "@turf/rhumb-distance": "workspace:^", + "@turf/bearing": "workspace:*", + "@turf/distance": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/meta": "workspace:*", + "@turf/nearest-point-on-line": "workspace:*", + "@turf/projection": "workspace:*", + "@turf/rhumb-bearing": "workspace:*", + "@turf/rhumb-distance": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-point-to-line-distance/test.ts b/packages/turf-point-to-line-distance/test.ts index ffbc640cc..37498612a 100644 --- a/packages/turf-point-to-line-distance/test.ts +++ b/packages/turf-point-to-line-distance/test.ts @@ -1,6 +1,7 @@ import fs from "fs"; import test from "tape"; import path from "path"; +import { Feature, LineString, Point } from "geojson"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; @@ -117,3 +118,69 @@ test("turf-point-to-line-distance -- Check planar and geodesic results are diffe t.notEqual(geoOut, planarOut); t.end(); }); + +test("turf-point-to-line-distance -- issue 2270", (t) => { + let pt: Feature; + let line: Feature; + let d: number; + + // This point should be about 3.4m from the line. Definitely not 4.3! + // https://github.com/Turfjs/turf/issues/2270#issuecomment-1073787691 + pt = point([10.748363481687537, 59.94785299224352]); + line = lineString([ + [10.7482034954027, 59.9477463357725], + [10.7484686179823, 59.9480515133037], + ]); + + d = round(pointToLineDistance(pt, line, { units: "meters" }), 1); + t.equal(d, 3.4, "Point is approx 3.4m from line"); + + // This point should be about 1000m from the line. Definitely not 1017! + // https://github.com/Turfjs/turf/issues/2270#issuecomment-2307907374 + pt = point([11.991689565382663, 34.00578044047174]); + line = lineString([ + [12, 34], + [11.993027757380355, 33.99311060965808], + ]); + + d = round(pointToLineDistance(pt, line, { units: "meters" })); + t.equal(d, 1000, "Point is approx 1000m from line"); + + t.end(); +}); + +test("turf-point-to-line-distance -- issue 1156", (t) => { + // According to issue 1156 the result of pointToLineDistance varies suddenly + // at a certain longitude. Code below + + // When the error occurs we would expect to see 'd' jump from about 188 to + // over 800 + // ... + // [ 11.028347, 41 ] 188.9853459755496 189.00642024172396 + // [ 11.028348, 41 ] 842.5784253401666 189.08988164279026 + // ^^^ + + // https://github.com/Turfjs/turf/issues/1156#issue-279806209 + let lineCoords = [ + [10.964832305908203, 41.004681939880314], + [10.977363586425781, 40.99096148527727], + [10.983200073242188, 40.97075154073346], + [11.02834701538086, 40.98372150040732], + [11.02508544921875, 41.00716631272605], + [10.994186401367188, 41.01947819666632], + [10.964832305908203, 41.004681939880314], + ]; + + let line = lineString(lineCoords); + + let x0 = 11.02834; + let x1 = 11.02835; + let dx = 0.000001; + for (let i = 0, x = x0; x <= x1; i++, x = x0 + i * dx) { + let p = point([x, 41.0]); + let d = pointToLineDistance(p, line, { units: "meters" }); + t.true(d < 190, "pointToLineDistance never jumps past 190"); + } + + t.end(); +}); diff --git a/packages/turf-point-to-line-distance/test/out/city-line1.geojson b/packages/turf-point-to-line-distance/test/out/city-line1.geojson index 3b69f88fc..2a7e1e053 100644 --- a/packages/turf-point-to-line-distance/test/out/city-line1.geojson +++ b/packages/turf-point-to-line-distance/test/out/city-line1.geojson @@ -33,207 +33,207 @@ "type": "Polygon", "coordinates": [ [ - [-0.3767967224121093, 39.47819519469433], - [-0.37717366447120515, 39.47819062349373], - [-0.37755023438550783, 39.47817691440493], - [-0.37792606037807247, 39.47815408096256], - [-0.37830077140728574, 39.47812214570944], - [-0.37867399753361825, 39.478081140174304], - [-0.37904537028528285, 39.47803110484069], - [-0.3794145230224353, 39.47797208910683], - [-0.3797810912995552, 39.47790415123693], - [-0.38014471322564813, 39.47782735830347], - [-0.38050502982191126, 39.47774178612103], - [-0.3808616853765066, 39.477647519171235], - [-0.381214327796091, 39.47754465051934], - [-0.38156260895375294, 39.477433281722206], - [-0.3819061850330118, 39.47731352272793], - [-0.3822447168675381, 39.47718549176721], - [-0.3825778702762565, 39.47704931523645], - [-0.3829053163935029, 39.47690512757287], - [-0.3832267319939034, 39.47675307112165], - [-0.3835417998116576, 39.47659329599524], - [-0.3838502088539076, 39.476425959925], - [-0.3841516547078829, 39.476251228105404], - [-0.3844458398415176, 39.476069273030724], - [-0.38473247389724163, 39.47588027432459], - [-0.3850112739786563, 39.475684418562544], - [-0.38528196492981037, 39.475481899087654], - [-0.38554427960680027, 39.4752729158195], - [-0.38579795914142695, 39.475057675056625], - [-0.3860427531966488, 39.47483638927277], - [-0.38627842021357833, 39.474609276906904], - [-0.3865047276497791, 39.474376562147434], - [-0.38672145220862925, 39.47413847471082], - [-0.3869283800595237, 39.47389524961451], - [-0.38712530704869996, 39.47364712694494], - [-0.3873120389004807, 39.47339435162029], - [-0.3874883914087324, 39.47313717314862], - [-0.38765419061835676, 39.472875845381445], - [-0.38780927299663276, 39.472610626262984], - [-0.3879534855942439, 39.472341777575494], - [-0.38808668619583303, 39.47206956468066], - [-0.38820874345993606, 39.47179425625767], - [-0.3883195370481606, 39.4715161240378], - [-0.3884189577434814, 39.47123544253617], - [-0.38850690755753947, 39.470952488780696], - [-0.38858329982683976, 39.47066754203858], - [-0.38864805929775503, 39.47038088354062], - [-0.38870112220025393, 39.4700927962035], - [-0.3887424363102825, 39.469803564350634], - [-0.38877196100074, 39.46951347343143], - [-0.388789667281001, 39.46922280973952], - [-0.3887955378249465, 39.46893186013026], - [-0.3887895669874796, 39.468640911737566], - [-0.3887717608095098, 39.46835025169056], - [-0.38874213701140675, 39.468060166830185], - [-0.3887007249749286, 39.4677709434262], - [-0.3886475657136467, 39.467482866894656], - [-0.38858271183189924, 39.4671962215163], - [-0.38850622747231395, 39.466911290156084], - [-0.38841818825195645, 39.466628353984056], - [-0.3883186811871674, 39.46634769219805], - [-0.3882078046071668, 39.46606958174816], - [-0.38808566805651024, 39.46579429706359], - [-0.3879523921864982, 39.46552210978195], - [-0.3878081086356445, 39.465253288481314], - [-0.3876529598993267, 39.46498809841532], - [-0.38748709918874596, 39.46472680125153], - [-0.3873106902793395, 39.46446965481341], - [-0.3871239073487953, 39.46421691282605], - [-0.3869269348048313, 39.463968824665955], - [-0.38671996710290896, 39.46372563511508], - [-0.38650320855406456, 39.4634875841196], - [-0.38627687312304604, 39.46325490655315], - [-0.3860411842169583, 39.46302783198539], - [-0.385796374464624, 39.46280658445557], - [-0.38554268548688025, 39.46259138225168], - [-0.3852803676580363, 39.4623824376953], - [-0.38500967985873014, 39.46217995693217], - [-0.3847308892204265, 39.461984139729104], - [-0.38444427086180893, 39.46179517927701], - [-0.384150107617327, 39.461613262000434], - [-0.3838486897581641, 39.46143856737385], - [-0.3835403147059036, 39.46127126774477], - [-0.38322528673917305, 39.46111152816379], - [-0.38290391669355667, 39.460959506222025], - [-0.3825765216550707, 39.46081535189573], - [-0.38224342464750477, 39.46067920739854], - [-0.38190495431393345, 39.460551207041206], - [-0.38156144459271557, 39.4604314770994], - [-0.3812132343882961, 39.46032013568912], - [-0.3808606672371355, 39.46021729265042], - [-0.3805040909690952, 39.460123049439055], - [-0.3801438573646105, 39.4600374990266], - [-0.3797803218079887, 39.459960725808756], - [-0.37941384293717195, 39.4598928055223], - [-0.37904478229030875, 39.459833805170334], - [-0.378673503949481, 39.459783782956336], - [-0.3783003741819366, 39.45974278822677], - [-0.37792576107917863, 39.45971086142252], - [-0.37755003419426536, 39.459688034039], - [-0.3771735641776775, 39.4596743285951], - [-0.3767967224121093, 39.45966975861106], - [-0.37641988064654114, 39.4596743285951], - [-0.37604341062995333, 39.459688034039], - [-0.37566768374504006, 39.45971086142252], - [-0.37529307064228207, 39.45974278822677], - [-0.3749199408747377, 39.459783782956336], - [-0.37454866253391006, 39.459833805170334], - [-0.37417960188704674, 39.4598928055223], - [-0.37381312301623, 39.459960725808756], - [-0.3734495874596082, 39.4600374990266], - [-0.3730893538551235, 39.460123049439055], - [-0.37273277758708323, 39.46021729265042], - [-0.3723802104359226, 39.46032013568912], - [-0.37203200023150307, 39.4604314770994], - [-0.37168849051028524, 39.460551207041206], - [-0.3713500201767139, 39.46067920739854], - [-0.3710169231691479, 39.46081535189573], - [-0.37068952813066197, 39.460959506222025], - [-0.37036815808504564, 39.46111152816379], - [-0.3700531301183151, 39.46127126774477], - [-0.36974475506605464, 39.46143856737385], - [-0.3694433372068917, 39.461613262000434], - [-0.36914917396240976, 39.46179517927701], - [-0.3688625556037922, 39.461984139729104], - [-0.36858376496548856, 39.46217995693217], - [-0.3683130771661824, 39.4623824376953], - [-0.36805075933733844, 39.46259138225168], - [-0.3677970703595947, 39.46280658445557], - [-0.3675522606072604, 39.46302783198539], - [-0.36731657170117266, 39.46325490655315], - [-0.3670902362701542, 39.4634875841196], - [-0.36687347772130974, 39.46372563511508], - [-0.36666651001938744, 39.463968824665955], - [-0.36646953747542343, 39.46421691282605], - [-0.3662827545448792, 39.46446965481341], - [-0.36610634563547273, 39.46472680125153], - [-0.36594048492489195, 39.46498809841532], - [-0.3657853361885742, 39.465253288481314], - [-0.3656410526377205, 39.46552210978195], - [-0.3655077767677084, 39.46579429706359], - [-0.36538564021705194, 39.46606958174816], - [-0.3652747636370513, 39.46634769219805], - [-0.3651752565722623, 39.466628353984056], - [-0.36508721735190475, 39.466911290156084], - [-0.36501073299231945, 39.4671962215163], - [-0.36494587911057197, 39.467482866894656], - [-0.3648927198492901, 39.4677709434262], - [-0.36485130781281194, 39.468060166830185], - [-0.36482168401470894, 39.46835025169056], - [-0.3648038778367391, 39.468640911737566], - [-0.36479790699927217, 39.46893186013026], - [-0.3648037775432177, 39.46922280973952], - [-0.36482148382347873, 39.46951347343143], - [-0.36485100851393615, 39.469803564350634], - [-0.3648923226239647, 39.4700927962035], - [-0.36494538552646366, 39.47038088354062], - [-0.36501014499737894, 39.47066754203858], - [-0.3650865372666792, 39.470952488780696], - [-0.36517448708073735, 39.47123544253617], - [-0.3652739077760581, 39.4715161240378], - [-0.36538470136428264, 39.47179425625767], - [-0.36550675862838566, 39.47206956468066], - [-0.3656399592299747, 39.472341777575494], - [-0.36578417182758594, 39.472610626262984], - [-0.36593925420586193, 39.472875845381445], - [-0.36610505341548627, 39.47313717314862], - [-0.366281405923738, 39.47339435162029], - [-0.3664681377755187, 39.47364712694494], - [-0.366665064764695, 39.47389524961451], - [-0.3668719926155894, 39.47413847471082], - [-0.36708871717443964, 39.474376562147434], - [-0.36731502461064036, 39.474609276906904], - [-0.3675506916275698, 39.47483638927277], - [-0.3677954856827917, 39.475057675056625], - [-0.36804916521741843, 39.4752729158195], - [-0.3683114798944083, 39.475481899087654], - [-0.3685821708455624, 39.475684418562544], - [-0.36886097092697706, 39.47588027432459], - [-0.3691476049827011, 39.476069273030724], - [-0.36944179011633577, 39.476251228105404], - [-0.36974323597031106, 39.476425959925], - [-0.3700516450125611, 39.47659329599524], - [-0.3703667128303153, 39.47675307112165], - [-0.3706881284307158, 39.47690512757287], - [-0.3710155745479622, 39.47704931523645], - [-0.37134872795668067, 39.47718549176721], - [-0.37168725979120687, 39.47731352272793], - [-0.3720308358704657, 39.477433281722206], - [-0.3723791170281277, 39.47754465051934], - [-0.3727317594477121, 39.477647519171235], - [-0.37308841500230744, 39.47774178612103], - [-0.37344873159857056, 39.47782735830347], - [-0.3738123535246635, 39.47790415123693], - [-0.37417892180178336, 39.47797208910683], - [-0.37454807453893585, 39.47803110484069], - [-0.37491944729060045, 39.478081140174304], - [-0.3752926734169329, 39.47812214570944], - [-0.37566738444614617, 39.47815408096256], - [-0.37604321043871086, 39.47817691440493], - [-0.37641978035301354, 39.47819062349373], - [-0.3767967224121093, 39.47819519469433] + [-0.3767967224121093, 39.47792027425889], + [-0.3771624752655126, 39.477915838750505], + [-0.3775278670252035, 39.47790253660436], + [-0.3778925369543775, 39.477880380953145], + [-0.37825612502969186, 39.47784939367026], + [-0.3786182722971102, 39.47780960534819], + [-0.3789786212266862, 39.47776105526827], + [-0.3793368160659328, 39.477703791361854], + [-0.3796925031914264, 39.477637870162965], + [-0.38004533145829766, 39.47756335675235], + [-0.38039495254726097, 39.47748032469325], + [-0.3807410213088388, 39.47738885595864], + [-0.3810831961044393, 39.47728904085019], + [-0.38142113914394893, 39.477180977909086], + [-0.3817545168195042, 39.47706477381856], + [-0.382083000035113, 39.47694054329855], + [-0.3824062645317976, 39.47680840899221], + [-0.3827239912079377, 39.4766685013448], + [-0.38303586643449467, 39.47652095847477], + [-0.38334158236480737, 39.47636592603721], + [-0.38364083723864917, 39.476203557079955], + [-0.3839333356802484, 39.47603401189237], + [-0.3842187889899756, 39.475857457846914], + [-0.384496915429408, 39.475674069233804], + [-0.3847674404994925, 39.475484027088775], + [-0.3850300972115282, 39.47528751901423], + [-0.3852846263507043, 39.47508473899386], + [-0.38553077673193015, 39.474875887201], + [-0.38576830544770735, 39.47466116980091], + [-0.3859969781077976, 39.47444079874704], + [-0.38621656907045027, 39.47421499157169], + [-0.38642686166496354, 39.47398397117111], + [-0.386627648405357, 39.47374796558531], + [-0.38681873119494825, 39.47350720777287], + [-0.3869999215216302, 39.47326193538074], + [-0.38717104064365965, 39.47301239050961], + [-0.38733191976577114, 39.47275881947478], + [-0.3874824002054476, 39.47250147256287], + [-0.38762233354918196, 39.4722406037847], + [-0.3877515817985777, 39.4719764706244], + [-0.3878700175061461, 39.47170933378517], + [-0.38797752390066703, 39.471439456931904], + [-0.38807399500199163, 39.4711671064308], + [-0.3881593357251753, 39.470892551086365], + [-0.3882334619738392, 39.470616061876036], + [-0.3882963007226719, 39.47033791168274], + [-0.3883477900889894, 39.47005837502537], + [-0.3883878793932865, 39.4697777277879], + [-0.38841652920872133, 39.469496246947024], + [-0.38843371139948607, 39.46921421029877], + [-0.388439409148029, 39.468931896184316], + [-0.3884336169711014, 39.468649583215274], + [-0.38841634072461756, 39.46836754999878], + [-0.38838759759732433, 39.46808607486242], + [-0.3883474160932887, 39.46780543557975], + [-0.38829583600322265, 39.46752590909604], + [-0.3882329083646765, 39.46724777125512], + [-0.38815869541114156, 39.46697129652716], + [-0.3880732705101136, 39.46669675773789], + [-0.38797671809018286, 39.46642442579944], + [-0.38786913355722147, 39.466154569443056], + [-0.38775062319975484, 39.46588745495404], + [-0.3876213040836124, 39.46562334590907], + [-0.3874813039359612, 39.465362502916186], + [-0.3873307610188425, 39.46510518335776], + [-0.38716982399233335, 39.46485164113664], + [-0.38699865176747295, 39.46460212642576], + [-0.3868174133490992, 39.46435688542136], + [-0.3866262876687516, 39.464116160100275], + [-0.3864254634078073, 39.46388018798123], + [-0.3862151388110252, 39.46364920189072], + [-0.38599552149068406, 39.46342342973334], + [-0.3857668282215075, 39.463203094267165], + [-0.38552928472658077, 39.462988412884016], + [-0.38528312545446874, 39.46277959739524], + [-0.38502859334775835, 39.46257685382277], + [-0.3847659396032515, 39.46238038219614], + [-0.3844954234240478, 39.462190376355174], + [-0.3842173117637596, 39.462007023759014], + [-0.3839318790631139, 39.46183050530124], + [-0.38363940697919835, 39.461660995131645], + [-0.3833401841076213, 39.46149866048446], + [-0.3830345056978558, 39.461343661513645], + [-0.3827226733620519, 39.46119615113497], + [-0.3824049947776009, 39.46105627487531], + [-0.3820817833837452, 39.46092417072921], + [-0.38175335807253274, 39.46079996902291], + [-0.381420042874419, 39.46068379228587], + [-0.38108216663882616, 39.46057575513005], + [-0.3807400627099731, 39.46047596413694], + [-0.3803940685982949, 39.46038451775254], + [-0.3800445256477741, 39.46030150619032], + [-0.37969177869951154, 39.46022701134236], + [-0.37933617575186546, 39.46016110669864], + [-0.37897806761749375, 39.46010385727459], + [-0.37861780757763525, 39.46005531954705], + [-0.37825575103397013, 39.46001554139865], + [-0.3778922551583994, 39.45998456207056], + [-0.377527678541089, 39.459962412123865], + [-0.37716238083712245, 39.45994911340946], + [-0.3767967224121093, 39.459944679046494], + [-0.37643106398709625, 39.45994911340946], + [-0.37606576628312965, 39.459962412123865], + [-0.3757011896658193, 39.45998456207056], + [-0.37533769379024856, 39.46001554139865], + [-0.3749756372465834, 39.46005531954705], + [-0.37461537720672494, 39.46010385727459], + [-0.37425726907235324, 39.46016110669864], + [-0.37390166612470715, 39.46022701134236], + [-0.3735489191764446, 39.46030150619032], + [-0.37319937622592386, 39.46038451775254], + [-0.37285338211424557, 39.46047596413694], + [-0.37251127818539254, 39.46057575513005], + [-0.3721734019497997, 39.46068379228587], + [-0.37184008675168595, 39.46079996902291], + [-0.3715116614404735, 39.46092417072921], + [-0.37118845004661777, 39.46105627487531], + [-0.3708707714621668, 39.46119615113497], + [-0.3705589391263629, 39.461343661513645], + [-0.3702532607165974, 39.46149866048446], + [-0.36995403784502034, 39.461660995131645], + [-0.3696615657611048, 39.46183050530124], + [-0.3693761330604591, 39.462007023759014], + [-0.3690980214001709, 39.462190376355174], + [-0.3688275052209672, 39.46238038219614], + [-0.36856485147646034, 39.46257685382277], + [-0.36831031936974995, 39.46277959739524], + [-0.3680641600976379, 39.462988412884016], + [-0.3678266166027112, 39.463203094267165], + [-0.36759792333353475, 39.46342342973334], + [-0.36737830601319343, 39.46364920189072], + [-0.3671679814164114, 39.46388018798123], + [-0.36696715715546707, 39.464116160100275], + [-0.36677603147511945, 39.46435688542136], + [-0.3665947930567457, 39.46460212642576], + [-0.36642362083188534, 39.46485164113664], + [-0.36626268380537613, 39.46510518335776], + [-0.36611214088825744, 39.465362502916186], + [-0.3659721407406063, 39.46562334590907], + [-0.3658428216244638, 39.46588745495404], + [-0.3657243112669972, 39.466154569443056], + [-0.36561672673403584, 39.46642442579944], + [-0.3655201743141051, 39.46669675773789], + [-0.36543474941307713, 39.46697129652716], + [-0.3653605364595422, 39.46724777125512], + [-0.36529760882099604, 39.46752590909604], + [-0.36524602873093, 39.46780543557975], + [-0.36520584722689436, 39.46808607486242], + [-0.36517710409960114, 39.46836754999878], + [-0.3651598278531173, 39.468649583215274], + [-0.3651540356761897, 39.468931896184316], + [-0.3651597334247326, 39.46921421029877], + [-0.3651769156154974, 39.469496246947024], + [-0.3652055654309322, 39.4697777277879], + [-0.36524565473522935, 39.47005837502537], + [-0.3652971441015468, 39.47033791168274], + [-0.3653599828503795, 39.470616061876036], + [-0.3654341090990434, 39.470892551086365], + [-0.365519449822227, 39.4711671064308], + [-0.36561592092355166, 39.471439456931904], + [-0.3657234273180726, 39.47170933378517], + [-0.365841863025641, 39.4719764706244], + [-0.36597111127503673, 39.4722406037847], + [-0.3661110446187711, 39.47250147256287], + [-0.36626152505844756, 39.47275881947478], + [-0.36642240418055905, 39.47301239050961], + [-0.3665935233025885, 39.47326193538074], + [-0.3667747136292705, 39.47350720777287], + [-0.36696579641886173, 39.47374796558531], + [-0.36716658315925516, 39.47398397117111], + [-0.3673768757537684, 39.47421499157169], + [-0.3675964667164211, 39.47444079874704], + [-0.3678251393765113, 39.47466116980091], + [-0.36806266809228855, 39.474875887201], + [-0.36830881847351443, 39.47508473899386], + [-0.3685633476126905, 39.47528751901423], + [-0.3688260043247262, 39.475484027088775], + [-0.3690965293948107, 39.475674069233804], + [-0.36937465583424317, 39.475857457846914], + [-0.3696601091439703, 39.47603401189237], + [-0.3699526075855695, 39.476203557079955], + [-0.37025186245941133, 39.47636592603721], + [-0.370557578389724, 39.47652095847477], + [-0.370869453616281, 39.4766685013448], + [-0.37118718029242104, 39.47680840899221], + [-0.3715104447891057, 39.47694054329855], + [-0.3718389280047145, 39.47706477381856], + [-0.37217230568026977, 39.477180977909086], + [-0.37251024871977945, 39.47728904085019], + [-0.3728524235153799, 39.47738885595864], + [-0.3731984922769577, 39.47748032469325], + [-0.37354811336592103, 39.47756335675235], + [-0.3739009416327923, 39.477637870162965], + [-0.3742566287582859, 39.477703791361854], + [-0.3746148235975325, 39.47776105526827], + [-0.3749751725271085, 39.47780960534819], + [-0.3753373197945268, 39.47784939367026], + [-0.3757009078698411, 39.477880380953145], + [-0.37606557779901517, 39.47790253660436], + [-0.3764309695587061, 39.477915838750505], + [-0.3767967224121093, 39.47792027425889] ] ] } diff --git a/packages/turf-point-to-line-distance/test/out/city-line2.geojson b/packages/turf-point-to-line-distance/test/out/city-line2.geojson index d6722db79..b67c774d0 100644 --- a/packages/turf-point-to-line-distance/test/out/city-line2.geojson +++ b/packages/turf-point-to-line-distance/test/out/city-line2.geojson @@ -30,207 +30,207 @@ "type": "Polygon", "coordinates": [ [ - [-3.592529296875, 40.606347761734895], - [-3.593875714048617, 40.6063316959338], - [-3.5952208005314175, 40.60628351440868], - [-3.596563226953486, 40.606203264778266], - [-3.59790166658538, 40.60609102635459], - [-3.5992347966550295, 40.60594691006426], - [-3.6005612996606433, 40.60577105833835], - [-3.601879864678295, 40.605563644970985], - [-3.6031891886628626, 40.605324874946945], - [-3.60448797774102, 40.60505498423808], - [-3.6057749484949686, 40.60475423956921], - [-3.607048829235617, 40.604422938153355], - [-3.608308361263925, 40.60406140739681], - [-3.609552300119147, 40.60367000457425], - [-3.610779416812714, 40.60324911647421], - [-3.6119884990465088, 40.602799159015305], - [-3.6131783524143297, 40.60232057683355], - [-3.614347801585316, 40.60181384284133], - [-3.6154956914681518, 40.60127945775823], - [-3.6166208883549005, 40.60071794961438], - [-3.6177222810433047, 40.600129873226756], - [-3.618798781936438, 40.599515809648985], - [-3.6198493281186166, 40.598876365595174], - [-3.6208728824064873, 40.59821217283832], - [-3.6218684343742598, 40.59752388758407], - [-3.6228350013520543, 40.59681218982013], - [-3.6237716293963786, 40.59607778264242], - [-3.624677394231779, 40.595321391558194], - [-3.625551402162719, 40.594543763767234], - [-3.6263927909548133, 40.593745667421494], - [-3.627200730684522, 40.59292789086416], - [-3.627974424556494, 40.59209124184884], - [-3.6287131096877423, 40.591236546739616], - [-3.629416057857906, 40.59036464969275], - [-3.6300825762248405, 40.589476411820975], - [-3.6307120080048785, 40.58857271034108], - [-3.6313037331170657, 40.58765443770573], - [-3.6318571687907846, 40.58672250072024], - [-3.632371770136161, 40.5857778196455], - [-3.6328470306767215, 40.584821327287486], - [-3.6332824828437884, 40.58385396807475], - [-3.6336776984321566, 40.5828766971244], - [-3.6340322890166097, 40.58189047929774], - [-3.6343459063289054, 40.5808962882465], - [-3.6346182425948723, 40.57989510545045], - [-3.6348490308313117, 40.57888791924746], - [-3.6350380451024478, 40.57787572385702], - [-3.635185100735687, 40.5768595183981], - [-3.6352900544965174, 40.57584030590231], - [-3.635352804722391, 40.574819092323395], - [-3.635373291415493, 40.57379688554409], - [-3.6353514962943407, 40.572774694381145], - [-3.6352874428041804, 40.571753527589664], - [-3.6351811960862053, 40.57073439286771], - [-3.6350328629056725, 40.569718295862145], - [-3.6348425915389817, 40.56870623917652], - [-3.6346105716199033, 40.56769922138241], - [-3.6343370339450987, 40.56669823603468], - [-3.634022250239172, 40.565704270691974], - [-3.633666532879515, 40.56471830594328], - [-3.6332702345812344, 40.56374131444153], - [-3.632833748042504, 40.56277425994521], - [-3.6323575055507225, 40.56181809636882], - [-3.6318419785498772, 40.560873766843386], - [-3.631287677169581, 40.559942202787475], - [-3.630695149716258, 40.559024322990176], - [-3.630064982127002, 40.558121032706495], - [-3.6293977973866696, 40.557233222766264], - [-3.628694254908805, 40.556361768697414], - [-3.627955049881017, 40.55550752986447], - [-3.6271809125754633, 40.55467134862298], - [-3.626372607625168, 40.55385404949094], - [-3.625530933266844, 40.55305643833775], - [-3.6246567205510374, 40.55227930159179], - [-3.623750832520331, 40.55152340546709], - [-3.622814163356462, 40.55078949521003], - [-3.6218476374971726, 40.55007829436677], - [-3.620852208723684, 40.54939050407207], - [-3.61982885921969, 40.548726802360314], - [-3.6187785986027987, 40.54808784349918], - [-3.617702462929373, 40.547474257346835], - [-3.6166015136737477, 40.54688664873321], - [-3.6154768366828263, 40.546325596865834], - [-3.6143295411070797, 40.54579165476097], - [-3.6131607583089895, 40.545285348700524], - [-3.6119716407500033, 40.54480717771522], - [-3.610763360857085, 40.54435761309463], - [-3.6095371098699656, 40.54393709792443], - [-3.6082940966702117, 40.54354604665144], - [-3.607035546593256, 40.5431848446768], - [-3.60576270022453, 40.54285384797762], - [-3.604476812180877, 40.5425533827576], - [-3.6031791498784247, 40.54228374512693], - [-3.6018709922880996, 40.54204520081163], - [-3.6005536286799997, 40.541837984892794], - [-3.5992283573578256, 40.54166230157593], - [-3.5978964843846106, 40.54151832399055], - [-3.5965593223009527, 40.54140619402033], - [-3.5952181888370176, 40.54132602216386], - [-3.5938744056195286, 40.54127788742621], - [-3.592529296875, 40.54126183724149], - [-3.591184188130472, 40.54127788742621], - [-3.589840404912983, 40.54132602216386], - [-3.588499271449048, 40.54140619402033], - [-3.58716210936539, 40.54151832399055], - [-3.5858302363921744, 40.54166230157593], - [-3.5845049650700003, 40.541837984892794], - [-3.5831876014619004, 40.54204520081163], - [-3.5818794438715758, 40.54228374512693], - [-3.580581781569123, 40.5425533827576], - [-3.57929589352547, 40.54285384797762], - [-3.578023047156744, 40.5431848446768], - [-3.5767644970797883, 40.54354604665144], - [-3.5755214838800353, 40.54393709792443], - [-3.5742952328929154, 40.54435761309463], - [-3.573086952999997, 40.54480717771522], - [-3.5718978354410105, 40.545285348700524], - [-3.5707290526429207, 40.54579165476097], - [-3.569581757067174, 40.546325596865834], - [-3.5684570800762527, 40.54688664873321], - [-3.5673561308206265, 40.547474257346835], - [-3.5662799951472013, 40.54808784349918], - [-3.5652297345303103, 40.548726802360314], - [-3.564206385026317, 40.54939050407207], - [-3.563210956252828, 40.55007829436677], - [-3.562244430393538, 40.55078949521003], - [-3.5613077612296693, 40.55152340546709], - [-3.5604018731989635, 40.55227930159179], - [-3.5595276604831563, 40.55305643833775], - [-3.5586859861248326, 40.55385404949094], - [-3.557877681174536, 40.55467134862298], - [-3.5571035438689838, 40.55550752986447], - [-3.556364338841195, 40.556361768697414], - [-3.555660796363331, 40.557233222766264], - [-3.554993611622999, 40.558121032706495], - [-3.554363444033742, 40.559024322990176], - [-3.5537709165804197, 40.559942202787475], - [-3.5532166152001237, 40.560873766843386], - [-3.5527010881992784, 40.56181809636882], - [-3.552224845707496, 40.56277425994521], - [-3.551788359168766, 40.56374131444153], - [-3.551392060870485, 40.56471830594328], - [-3.5510363435108285, 40.565704270691974], - [-3.550721559804902, 40.56669823603468], - [-3.5504480221300967, 40.56769922138241], - [-3.5502160022110187, 40.56870623917652], - [-3.5500257308443284, 40.569718295862145], - [-3.5498773976637947, 40.57073439286771], - [-3.5497711509458205, 40.571753527589664], - [-3.549707097455659, 40.572774694381145], - [-3.549685302334507, 40.57379688554409], - [-3.5497057890276094, 40.574819092323395], - [-3.5497685392534826, 40.57584030590231], - [-3.5498734930143137, 40.5768595183981], - [-3.5500205486475527, 40.57787572385702], - [-3.5502095629186883, 40.57888791924746], - [-3.550440351155128, 40.57989510545045], - [-3.550712687421095, 40.5808962882465], - [-3.551026304733391, 40.58189047929774], - [-3.5513808953178443, 40.5828766971244], - [-3.5517761109062116, 40.58385396807475], - [-3.552211563073279, 40.584821327287486], - [-3.552686823613839, 40.5857778196455], - [-3.553201424959215, 40.58672250072024], - [-3.5537548606329343, 40.58765443770573], - [-3.554346585745122, 40.58857271034108], - [-3.5549760175251595, 40.589476411820975], - [-3.5556425358920944, 40.59036464969275], - [-3.5563454840622577, 40.591236546739616], - [-3.557084169193507, 40.59209124184884], - [-3.557857863065478, 40.59292789086416], - [-3.558665802795187, 40.593745667421494], - [-3.559507191587281, 40.594543763767234], - [-3.5603811995182215, 40.595321391558194], - [-3.5612869643536205, 40.59607778264242], - [-3.5622235923979457, 40.59681218982013], - [-3.5631901593757402, 40.59752388758407], - [-3.5641857113435123, 40.59821217283832], - [-3.565209265631383, 40.598876365595174], - [-3.5662598118135618, 40.599515809648985], - [-3.5673363127066957, 40.600129873226756], - [-3.5684377053951, 40.60071794961438], - [-3.569562902281849, 40.60127945775823], - [-3.5707107921646846, 40.60181384284133], - [-3.57188024133567, 40.60232057683355], - [-3.573070094703492, 40.602799159015305], - [-3.574279176937287, 40.60324911647421], - [-3.575506293630853, 40.60367000457425], - [-3.576750232486075, 40.60406140739681], - [-3.5780097645143836, 40.604422938153355], - [-3.579283645255032, 40.60475423956921], - [-3.5805706160089805, 40.60505498423808], - [-3.5818694050871374, 40.605324874946945], - [-3.5831787290717054, 40.605563644970985], - [-3.5844972940893567, 40.60577105833835], - [-3.585823797094971, 40.60594691006426], - [-3.58715692716462, 40.60609102635459], - [-3.5884953667965145, 40.606203264778266], - [-3.589837793218583, 40.60628351440868], - [-3.591182879701383, 40.6063316959338], - [-3.592529296875, 40.606347761734895] + [-3.592529296875, 40.60602538523366], + [-3.5938623697696777, 40.60600947866], + [-3.5951941251810005, 40.6059617746596], + [-3.5965232469333337, 40.60588232037856], + [-3.597848421465152, 40.605771194341706], + [-3.599168339132803, 40.60562850637471], + [-3.6004816955103065, 40.605454397494974], + [-3.6017871926838874, 40.60524903977175], + [-3.60308354053994, 40.60501263615534], + [-3.604369458045117, 40.60474542027563], + [-3.605643674517246, 40.60444765621031], + [-3.6069049308858205, 40.604119638222734], + [-3.6081519809407654, 40.60376169046993], + [-3.6093835925682267, 40.60337416668096], + [-3.6105985489721633, 40.60295744980593], + [-3.6117956498804844, 40.60251195163606], + [-3.6129737127345343, 40.602038112395086], + [-3.614131573860742, 40.60153640030268], + [-3.615268089623238, 40.60100731110987], + [-3.6163821375562972, 40.600451367607434], + [-3.6174726174754857, 40.599869119107396], + [-3.618538452566372, 40.599261140898285], + [-3.6195785904497506, 40.598628033674714], + [-3.6205920042222894, 40.59797042294182], + [-3.621577693471587, 40.59728895839522], + [-3.6225346852646085, 40.596584313276956], + [-3.623462035108548, 40.595857183708304], + [-3.624358827883139, 40.5951082879999], + [-3.6252241787435158, 40.59433836594002], + [-3.6260572339927157, 40.59354817806165], + [-3.62685717192298, 40.59273850488912], + [-3.6276232036250193, 40.59191014616502], + [-3.628354573764453, 40.59106392005826], + [-3.6290505613246657, 40.59020066235392], + [-3.62971048031536, 40.58932122562581], + [-3.6303336804461153, 40.58842647839257], + [-3.630919547764299, 40.587517304258114], + [-3.6314675052567225, 40.58659460103716], + [-3.6319770134144673, 40.585659279867144], + [-3.6324475707603225, 40.58471226430669], + [-3.6328787143383634, 40.58375448942232], + [-3.63327002016518, 40.58278690086369], + [-3.6336211036423567, 40.58181045392862], + [-3.633931619929799, 40.5808261126188], + [-3.6342012642795796, 40.57983484868691], + [-3.6344297723299896, 40.57883764067638], + [-3.6346169203595404, 40.57783547295455], + [-3.6347625255006792, 40.57682933474024], + [-3.63486644591305, 40.5758202191268], + [-3.634928580916152, 40.574809122101335], + [-3.634948871081288, 40.5737970415614], + [-3.634927298282747, 40.57278497632995], + [-3.6348638857082016, 40.57177392516953], + [-3.634758697828335, 40.57076488579669], + [-3.634611840325757, 40.56975885389766], + [-3.634423459983317, 40.568756822146185], + [-3.634193744531938, 40.56775977922449], + [-3.633922922458165, 40.56676870884838], + [-3.633611262771641, 40.56578458879742], + [-3.633259074732764, 40.56480838995108], + [-3.6328667075408254, 40.56384107533194], + [-3.632434549982963, 40.562883599156734], + [-3.6319630300442993, 40.56193690589624], + [-3.6314526144796724, 40.561001929345], + [-3.6309038083474134, 40.560079591701616], + [-3.6303171545056356, 40.55917080266072], + [-3.6296932330715803, 40.55827645851727], + [-3.629032660844533, 40.55739744128436], + [-3.6283360906929456, 40.55653461782507], + [-3.6276042109063398, 40.555688838999465], + [-3.6268377445126796, 40.554860938827396], + [-3.6260374485618803, 40.554051733668075], + [-3.625204113376179, 40.55326202141707], + [-3.624338561768121, 40.552492580721626], + [-3.623441648226934, 40.551744170214995], + [-3.6225142580741014, 40.55101752777059], + [-3.621557306588975, 40.55031336977659], + [-3.6205717381052898, 40.5496323904318], + [-3.6195585250794804, 40.548975261063426], + [-3.6185186671316982, 40.54834262946732], + [-3.6174531900605027, 40.54773511927155], + [-3.6163631448321643, 40.547153329323706], + [-3.615249606545591, 40.54659783310261], + [-3.6141136733738826, 40.54606917815507], + [-3.612956465483545, 40.545567885558086], + [-3.6117791239324273, 40.54509444940715], + [-3.6105828095474526, 40.544649336331084], + [-3.6093687017832248, 40.54423298503387], + [-3.608137997562646, 40.543845805863945], + [-3.6068919101006354, 40.543488180411345], + [-3.6056316677121316, 40.543160461133176], + [-3.6043585126054922, 40.542862971007594], + [-3.6030736996624992, 40.54259600321684], + [-3.601778495206115, 40.54235982085949], + [-3.600474175757211, 40.54215465669224], + [-3.5991620267814475, 40.541980712901506], + [-3.5978433414275304, 40.541838160905], + [-3.596519419258057, 40.54172714118353], + [-3.5951915649741717, 40.541647763143175], + [-3.5938610871352736, 40.54160010500787], + [-3.592529296875, 40.541584213742716], + [-3.591197506614727, 40.54160010500787], + [-3.589867028775829, 40.541647763143175], + [-3.5885391744919435, 40.54172714118353], + [-3.58721525232247, 40.541838160905], + [-3.585896566968553, 40.541980712901506], + [-3.5845844179927893, 40.54215465669224], + [-3.5832800985438857, 40.54235982085949], + [-3.5819848940875008, 40.54259600321684], + [-3.5807000811445078, 40.542862971007594], + [-3.5794269260378693, 40.543160461133176], + [-3.5781666836493646, 40.543488180411345], + [-3.576920596187355, 40.543845805863945], + [-3.5756898919667752, 40.54423298503387], + [-3.574475784202548, 40.544649336331084], + [-3.5732794698175727, 40.54509444940715], + [-3.572102128266455, 40.545567885558086], + [-3.570944920376118, 40.54606917815507], + [-3.569808987204409, 40.54659783310261], + [-3.5686954489178366, 40.547153329323706], + [-3.567605403689498, 40.54773511927155], + [-3.566539926618302, 40.54834262946732], + [-3.5655000686705205, 40.548975261063426], + [-3.5644868556447102, 40.5496323904318], + [-3.5635012871610257, 40.55031336977659], + [-3.562544335675899, 40.55101752777059], + [-3.5616169455230664, 40.551744170214995], + [-3.5607200319818793, 40.552492580721626], + [-3.5598544803738217, 40.55326202141707], + [-3.5590211451881197, 40.554051733668075], + [-3.5582208492373204, 40.554860938827396], + [-3.5574543828436602, 40.555688838999465], + [-3.5567225030570553, 40.55653461782507], + [-3.556025932905467, 40.55739744128436], + [-3.55536536067842, 40.55827645851727], + [-3.5547414392443635, 40.55917080266072], + [-3.5541547854025874, 40.560079591701616], + [-3.553605979270328, 40.561001929345], + [-3.5530955637057016, 40.56193690589624], + [-3.5526240437670373, 40.562883599156734], + [-3.5521918862091746, 40.56384107533194], + [-3.551799519017236, 40.56480838995108], + [-3.5514473309783594, 40.56578458879742], + [-3.551135671291835, 40.56676870884838], + [-3.550864849218062, 40.56775977922449], + [-3.5506351337666833, 40.568756822146185], + [-3.5504467534242434, 40.56975885389766], + [-3.5502998959216656, 40.57076488579669], + [-3.5501947080417984, 40.57177392516953], + [-3.550131295467253, 40.57278497632995], + [-3.550109722668712, 40.5737970415614], + [-3.5501300128338475, 40.574809122101335], + [-3.55019214783695, 40.5758202191268], + [-3.550296068249321, 40.57682933474024], + [-3.55044167339046, 40.57783547295455], + [-3.55062882142001, 40.57883764067638], + [-3.550857329470421, 40.57983484868691], + [-3.551126973820201, 40.5808261126188], + [-3.5514374901076438, 40.58181045392862], + [-3.55178857358482, 40.58278690086369], + [-3.5521798794116375, 40.58375448942232], + [-3.5526110229896775, 40.58471226430669], + [-3.5530815803355327, 40.585659279867144], + [-3.5535910884932775, 40.58659460103716], + [-3.554139045985701, 40.587517304258114], + [-3.5547249133038847, 40.58842647839257], + [-3.5553481134346394, 40.58932122562581], + [-3.5560080324253347, 40.59020066235392], + [-3.556704019985547, 40.59106392005826], + [-3.5574353901249807, 40.59191014616502], + [-3.55820142182702, 40.59273850488912], + [-3.5590013597572843, 40.59354817806165], + [-3.5598344150064842, 40.59433836594002], + [-3.5606997658668607, 40.5951082879999], + [-3.5615965586414524, 40.595857183708304], + [-3.5625239084853915, 40.596584313276956], + [-3.5634809002784134, 40.59728895839522], + [-3.5644665895277106, 40.59797042294182], + [-3.5654800033002503, 40.598628033674714], + [-3.566520141183629, 40.599261140898285], + [-3.567585976274515, 40.599869119107396], + [-3.5686764561937028, 40.600451367607434], + [-3.5697905041267624, 40.60100731110987], + [-3.570927019889258, 40.60153640030268], + [-3.572084881015466, 40.602038112395086], + [-3.573262943869516, 40.60251195163606], + [-3.574460044777836, 40.60295744980593], + [-3.5756750011817733, 40.60337416668096], + [-3.576906612809235, 40.60376169046993], + [-3.5781536628641795, 40.604119638222734], + [-3.5794149192327547, 40.60444765621031], + [-3.580689135704884, 40.60474542027563], + [-3.58197505321006, 40.60501263615534], + [-3.583271401066113, 40.60524903977175], + [-3.584576898239694, 40.605454397494974], + [-3.585890254617197, 40.60562850637471], + [-3.5872101722848484, 40.605771194341706], + [-3.5885353468166667, 40.60588232037856], + [-3.589864468568999, 40.6059617746596], + [-3.591196223980323, 40.60600947866], + [-3.592529296875, 40.60602538523366] ] ] } diff --git a/packages/turf-point-to-line-distance/test/out/city-segment-inside1.geojson b/packages/turf-point-to-line-distance/test/out/city-segment-inside1.geojson index 62cd1e3f8..3bf8fd81c 100644 --- a/packages/turf-point-to-line-distance/test/out/city-segment-inside1.geojson +++ b/packages/turf-point-to-line-distance/test/out/city-segment-inside1.geojson @@ -30,207 +30,207 @@ "type": "Polygon", "coordinates": [ [ - [-6.0047149658203125, 37.38173807898709], - [-6.005372299073763, 37.381729871871954], - [-6.0060289831874485, 37.38170525863135], - [-6.006684369663929, 37.381664263571714], - [-6.007337811289779, 37.381606927177074], - [-6.007988662775988, 37.381533306068896], - [-6.008636281396446, 37.38144347295018], - [-6.009280027623878, 37.381337516533456], - [-6.009919265762576, 37.38121554145301], - [-6.010553364577327, 37.38107766816137], - [-6.011181697917877, 37.38092403281011], - [-6.011803645338334, 37.38075478711514], - [-6.012418592710884, 37.380570098206626], - [-6.013025932833204, 37.38037014846361], - [-6.01362506602898, 37.38015513533359], - [-6.014215400740913, 37.379925271137154], - [-6.014796354115646, 37.379680782858], - [-6.015367352580006, 37.37942191191833], - [-6.01592783240802, 37.37914891394006], - [-6.016477240278099, 37.378862058492], - [-6.017015033819875, 37.37856162882315], - [-6.017540682150134, 37.37824792158262], - [-6.018053666397305, 37.37792124652619], - [-6.018553480213996, 37.377581926209984], - [-6.019039630277075, 37.37723029567146], - [-6.019511636774775, 37.376866702098155], - [-6.019969033880372, 37.37649150448433], - [-6.020411370211957, 37.376105073276015], - [-6.020838209277829, 37.37570779000477], - [-6.0212491299071065, 37.375300046910475], - [-6.021643726665097, 37.37488224655357], - [-6.022021610253042, 37.374454801417066], - [-6.022382407891826, 37.37401813349895], - [-6.022725763689293, 37.37357267389495], - [-6.023051338990778, 37.37311886237256], - [-6.023358812712556, 37.37265714693638], - [-6.023647881657835, 37.372187983385494], - [-6.023918260815019, 37.371711834862985], - [-6.024169683637928, 37.37122917139844], - [-6.02440190230773, 37.37074046944349], - [-6.024614687976294, 37.370246211401195], - [-6.024807830990759, 37.36974688514948], - [-6.024981141099086, 37.3692429835593], - [-6.025134447636411, 37.3687350040078], - [-6.025267599691998, 37.36822344788714], - [-6.025380466256653, 37.367708820109385], - [-6.0254729363504556, 37.36719162860793], - [-6.025544919130674, 37.36667238383603], - [-6.025596343979785, 37.36615159826285], - [-6.025627160573504, 37.36562978586756], - [-6.025637338928764, 37.365107461631986], - [-6.0256268694316155, 37.36458514103234], - [-6.025595762845011, 37.36406333953052], - [-6.025544050296487, 37.363542572065356], - [-6.025471783245746, 37.363023352544545], - [-6.025379033432198, 37.36250619333761], - [-6.0252658928025, 37.361991604770324], - [-6.0251324734181795, 37.361480094621356], - [-6.024978907343458, 37.360972167621355], - [-6.024805346513346, 37.360468324955065], - [-6.02461196258219, 37.35996906376712], - [-6.024398946752817, 37.35947487667164], - [-6.02416650958643, 37.35898625126659], - [-6.023914880793464, 37.358503669652926], - [-6.023644309005622, 37.358027607959244], - [-6.02335506152931, 37.35755853587244], - [-6.023047424080701, 37.357096916174676], - [-6.022721700502744, 37.35664320428715], - [-6.0223782124643455, 37.35619784782128], - [-6.022017299142062, 37.3557612861375], - [-6.0216393168846025, 37.35533394991231], - [-6.021244638860484, 37.35491626071383], - [-6.020833654689188, 37.35450863058642], - [-6.020406770056176, 37.35411146164468], - [-6.019964406312164, 37.35372514567726], - [-6.019507000057037, 37.353350063760956], - [-6.019035002708814, 37.35298658588516], - [-6.01854888005811, 37.35263507058755], - [-6.018049111808508, 37.35229586460085], - [-6.017536191103308, 37.35196930251131], - [-6.017010624039132, 37.35165570642923], - [-6.01647292916683, 37.35135538567169], - [-6.015923636980213, 37.351068636457974], - [-6.015363289393101, 37.350795741617844], - [-6.014792439205185, 37.35053697031305], - [-6.0142116495572635, 37.350292577772315], - [-6.013621493376353, 37.35006280503999], - [-6.013022552811227, 37.34984787873881], - [-6.012415418658964, 37.349648010846686], - [-6.011800689783007, 37.3494633984881], - [-6.011178972523371, 37.34929422373996], - [-6.010550880099531, 37.349140653452466], - [-6.009917032006593, 37.34900283908472], - [-6.009278053405322, 37.34888091655579], - [-6.008634574506658, 37.34877500611077], - [-6.007987229951285, 37.34868521220255], - [-6.007336658184867, 37.34861162338889], - [-6.0066835008295865, 37.348554312245334], - [-6.006028402052568, 37.348513335293724], - [-6.00537200793182, 37.34848873294659], - [-6.0047149658203125, 37.348480529467395], - [-6.004057923708805, 37.34848873294659], - [-6.003401529588056, 37.348513335293724], - [-6.0027464308110385, 37.348554312245334], - [-6.002093273455758, 37.34861162338889], - [-6.00144270168934, 37.34868521220255], - [-6.000795357133966, 37.34877500611077], - [-6.000151878235304, 37.34888091655579], - [-5.999512899634033, 37.34900283908472], - [-5.998879051541093, 37.349140653452466], - [-5.998250959117254, 37.34929422373996], - [-5.997629241857618, 37.3494633984881], - [-5.997014512981661, 37.349648010846686], - [-5.996407378829397, 37.34984787873881], - [-5.995808438264273, 37.35006280503999], - [-5.995218282083361, 37.350292577772315], - [-5.994637492435439, 37.35053697031305], - [-5.994066642247524, 37.350795741617844], - [-5.993506294660411, 37.351068636457974], - [-5.992957002473794, 37.35135538567169], - [-5.992419307601492, 37.35165570642923], - [-5.991893740537316, 37.35196930251131], - [-5.991380819832116, 37.35229586460085], - [-5.990881051582514, 37.35263507058755], - [-5.99039492893181, 37.35298658588516], - [-5.989922931583588, 37.353350063760956], - [-5.989465525328461, 37.35372514567726], - [-5.9890231615844485, 37.35411146164468], - [-5.988596276951436, 37.35450863058642], - [-5.98818529278014, 37.35491626071383], - [-5.987790614756022, 37.35533394991231], - [-5.987412632498562, 37.3557612861375], - [-5.9870517191762795, 37.35619784782128], - [-5.9867082311378805, 37.35664320428715], - [-5.986382507559924, 37.357096916174676], - [-5.986074870111314, 37.35755853587244], - [-5.985785622635002, 37.358027607959244], - [-5.9855150508471615, 37.358503669652926], - [-5.985263422054194, 37.35898625126659], - [-5.985030984887807, 37.35947487667164], - [-5.984817969058434, 37.35996906376712], - [-5.98462458512728, 37.360468324955065], - [-5.984451024297166, 37.360972167621355], - [-5.984297458222445, 37.361480094621356], - [-5.984164038838126, 37.361991604770324], - [-5.984050898208426, 37.36250619333761], - [-5.983958148394878, 37.363023352544545], - [-5.983885881344137, 37.363542572065356], - [-5.983834168795613, 37.36406333953052], - [-5.9838030622090095, 37.36458514103234], - [-5.98379259271186, 37.365107461631986], - [-5.98380277106712, 37.36562978586756], - [-5.983833587660839, 37.36615159826285], - [-5.98388501250995, 37.36667238383603], - [-5.9839569952901694, 37.36719162860793], - [-5.984049465383972, 37.367708820109385], - [-5.984162331948626, 37.36822344788714], - [-5.984295484004215, 37.3687350040078], - [-5.984448790541538, 37.3692429835593], - [-5.984622100649865, 37.36974688514948], - [-5.98481524366433, 37.370246211401195], - [-5.985028029332894, 37.37074046944349], - [-5.985260248002697, 37.37122917139844], - [-5.985511670825607, 37.371711834862985], - [-5.985782049982789, 37.372187983385494], - [-5.986071118928068, 37.37265714693638], - [-5.986378592649846, 37.37311886237256], - [-5.986704167951332, 37.37357267389495], - [-5.987047523748799, 37.37401813349895], - [-5.9874083213875835, 37.374454801417066], - [-5.987786204975527, 37.37488224655357], - [-5.988180801733518, 37.375300046910475], - [-5.988591722362795, 37.37570779000477], - [-5.989018561428667, 37.376105073276015], - [-5.989460897760252, 37.37649150448433], - [-5.98991829486585, 37.376866702098155], - [-5.990390301363549, 37.37723029567146], - [-5.990876451426628, 37.377581926209984], - [-5.9913762652433205, 37.37792124652619], - [-5.99188924949049, 37.37824792158262], - [-5.992414897820749, 37.37856162882315], - [-5.992952691362526, 37.378862058492], - [-5.993502099232604, 37.37914891394006], - [-5.994062579060619, 37.37942191191833], - [-5.994633577524979, 37.379680782858], - [-5.995214530899711, 37.379925271137154], - [-5.995804865611644, 37.38015513533359], - [-5.99640399880742, 37.38037014846361], - [-5.997011338929741, 37.380570098206626], - [-5.99762628630229, 37.38075478711514], - [-5.998248233722747, 37.38092403281011], - [-5.998876567063297, 37.38107766816137], - [-5.999510665878049, 37.38121554145301], - [-6.000149904016746, 37.381337516533456], - [-6.000793650244178, 37.38144347295018], - [-6.001441268864636, 37.381533306068896], - [-6.002092120350845, 37.381606927177074], - [-6.002745561976695, 37.381664263571714], - [-6.003400948453176, 37.38170525863135], - [-6.0040576325668615, 37.381729871871954], - [-6.0047149658203125, 37.38173807898709] + [-6.0047149658203125, 37.38167284314159], + [-6.005369719740231, 37.381664668230634], + [-6.006023827069253, 37.38164015157079], + [-6.006676641856281, 37.381599317373066], + [-6.007327519429171, 37.38154220596246], + [-6.007975817032622, 37.38146887373818], + [-6.008620894464146, 37.38137939311773], + [-6.00926211470749, 37.38127385246532], + [-6.009898844562894, 37.38115235600438], + [-6.010530455273525, 37.3810150237145], + [-6.011156323147495, 37.38086199121266], + [-6.011775830174828, 37.38069340961909], + [-6.012388364638748, 37.38050944540773], + [-6.012993321720721, 37.38031028024154], + [-6.01359010409859, 37.380096110792806], + [-6.014178122537265, 37.379867148548485], + [-6.014756796471341, 37.37962361960109], + [-6.015325554579076, 37.379365764424975], + [-6.015883835347175, 37.37909383763847], + [-6.016431087625788, 37.37880810775202], + [-6.0169667711731964, 37.378508856902656], + [-6.017490357189638, 37.37819638057483], + [-6.018001328839736, 37.377870987308285], + [-6.0184991817630245, 37.37753299839284], + [-6.018983424572061, 37.37718274755073], + [-6.019453579337623, 37.37682058060653], + [-6.019909182060527, 37.376446855145275], + [-6.020349783129591, 37.3760619401588], + [-6.020774947765292, 37.37566621568101], + [-6.021184256448675, 37.37526007241211], + [-6.021577305335104, 37.374843911332384], + [-6.021953706652434, 37.37441814330584], + [-6.022313089083229, 37.37398318867403], + [-6.022655098130623, 37.37353947684068], + [-6.022979396467497, 37.373087445847226], + [-6.023285664268614, 37.372627541939984], + [-6.023573599525376, 37.37216021912914], + [-6.023842918342927, 37.37168593874014], + [-6.024093355219282, 37.37120516895794], + [-6.024324663306228, 37.37071838436439], + [-6.02453661465173, 37.37022606546946], + [-6.024729000423632, 37.36972869823655], + [-6.02490163111441, 37.369226773602534], + [-6.025054336726796, 37.36872078699286], + [-6.025186966940079, 37.36821123783229], + [-6.025299391256965, 37.36769862905173], + [-6.025391499130798, 37.36718346659164], + [-6.02546320007307, 37.36666625890246], + [-6.025514423741105, 37.36614751644271], + [-6.025545120005821, 37.36562775117503], + [-6.025555258999542, 37.365107476060885], + [-6.02554483114379, 37.364587204554205], + [-6.02551384715705, 37.3640674500947], + [-6.025462338042505, 37.36354872560115], + [-6.0253903550557615, 37.36303154296533], + [-6.025297969652599, 37.36251641254685], + [-6.025185273416803, 37.36200384266973], + [-6.025052377968172, 37.361494339120874], + [-6.024899414850762, 37.36098840465118], + [-6.024726535401538, 37.360486538479634], + [-6.024533910599502, 37.35998923580098], + [-6.024321730895523, 37.359496987297305], + [-6.0240902060229855, 37.3590102786542], + [-6.023839564789473, 37.35852959008193], + [-6.0235700548497055, 37.358055395841824], + [-6.02328194245994, 37.35758816377884], + [-6.022975512214098, 37.35712835486029], + [-6.022651066761868, 37.356676422721506], + [-6.022308926509088, 37.35623281321863], + [-6.021949429300682, 37.35579796398927], + [-6.021572930086494, 37.35537230402117], + [-6.021179800570312, 37.354956253229425], + [-6.020770428842493, 37.354550222042796], + [-6.020345218996477, 37.35415461099922], + [-6.019904590729645, 37.353769810351224], + [-6.0194489789288586, 37.353396199681484], + [-6.0189788332411265, 37.353034147528795], + [-6.018494617629807, 37.352684011025175], + [-6.017996809916783, 37.352346135543954], + [-6.017485901311074, 37.35202085435968], + [-6.016962395924343, 37.35170848831984], + [-6.016426810273752, 37.35140934552893], + [-6.015879672772713, 37.35112372104494], + [-6.015321523209971, 37.35085189658892], + [-6.014752912217564, 37.350594140267475], + [-6.014174400728197, 37.350350706308795], + [-6.013586559422511, 37.35012183481235], + [-6.012989968166851, 37.34990775151252], + [-6.012385215442036, 37.34970866755627], + [-6.011772897763715, 37.349524779295386], + [-6.011153619094871, 37.34935626809309], + [-6.010527990251052, 37.349203300145504], + [-6.009896628298893, 37.34906602631811], + [-6.009260155948546, 37.348944581997166], + [-6.0086192009405845, 37.348839086956474], + [-6.007974395428011, 37.348749645239465], + [-6.007326375353934, 37.348676345056816], + [-6.006675779825563, 37.348619258699564], + [-6.006023250485095, 37.348578442468046], + [-6.005369430878148, 37.348553936616376], + [-6.0047149658203125, 37.348545765312906], + [-6.004060500762476, 37.348553936616376], + [-6.00340668115553, 37.348578442468046], + [-6.002754151815063, 37.348619258699564], + [-6.0021035562866905, 37.348676345056816], + [-6.001455536212614, 37.348749645239465], + [-6.0008107307000405, 37.348839086956474], + [-6.000169775692079, 37.348944581997166], + [-5.999533303341731, 37.34906602631811], + [-5.998901941389572, 37.349203300145504], + [-5.998276312545753, 37.34935626809309], + [-5.997657033876911, 37.349524779295386], + [-5.997044716198589, 37.34970866755627], + [-5.996439963473773, 37.34990775151252], + [-5.995843372218113, 37.35012183481235], + [-5.995255530912427, 37.350350706308795], + [-5.99467701942306, 37.350594140267475], + [-5.994108408430655, 37.35085189658892], + [-5.993550258867911, 37.35112372104494], + [-5.993003121366873, 37.35140934552893], + [-5.9924675357162815, 37.35170848831984], + [-5.99194403032955, 37.35202085435968], + [-5.9914331217238415, 37.352346135543954], + [-5.990935314010819, 37.352684011025175], + [-5.990451098399498, 37.353034147528795], + [-5.989980952711766, 37.353396199681484], + [-5.98952534091098, 37.353769810351224], + [-5.989084712644148, 37.35415461099922], + [-5.988659502798131, 37.354550222042796], + [-5.988250131070312, 37.354956253229425], + [-5.987857001554131, 37.35537230402117], + [-5.987480502339942, 37.35579796398927], + [-5.987121005131536, 37.35623281321863], + [-5.986778864878756, 37.356676422721506], + [-5.986454419426527, 37.35712835486029], + [-5.986147989180684, 37.35758816377884], + [-5.985859876790919, 37.358055395841824], + [-5.985590366851151, 37.35852959008193], + [-5.9853397256176395, 37.3590102786542], + [-5.985108200745102, 37.359496987297305], + [-5.9848960210411235, 37.35998923580098], + [-5.9847033962390865, 37.360486538479634], + [-5.984530516789862, 37.36098840465118], + [-5.984377553672453, 37.361494339120874], + [-5.984244658223821, 37.36200384266973], + [-5.984131961988026, 37.36251641254685], + [-5.9840395765848635, 37.36303154296533], + [-5.983967593598119, 37.36354872560115], + [-5.983916084483574, 37.3640674500947], + [-5.983885100496834, 37.364587204554205], + [-5.9838746726410825, 37.365107476060885], + [-5.983884811634804, 37.36562775117503], + [-5.983915507899519, 37.36614751644271], + [-5.983966731567554, 37.36666625890246], + [-5.984038432509826, 37.36718346659164], + [-5.984130540383659, 37.36769862905173], + [-5.984242964700545, 37.36821123783229], + [-5.984375594913829, 37.36872078699286], + [-5.984528300526214, 37.369226773602534], + [-5.9847009312169925, 37.36972869823655], + [-5.984893316988894, 37.37022606546946], + [-5.985105268334398, 37.37071838436439], + [-5.985336576421342, 37.37120516895794], + [-5.985587013297698, 37.37168593874014], + [-5.985856332115249, 37.37216021912914], + [-5.98614426737201, 37.372627541939984], + [-5.986450535173127, 37.373087445847226], + [-5.986774833510002, 37.37353947684068], + [-5.987116842557396, 37.37398318867403], + [-5.987476224988192, 37.37441814330584], + [-5.987852626305521, 37.374843911332384], + [-5.98824567519195, 37.37526007241211], + [-5.988654983875333, 37.37566621568101], + [-5.989080148511033, 37.3760619401588], + [-5.989520749580098, 37.376446855145275], + [-5.989976352303003, 37.37682058060653], + [-5.9904465070685635, 37.37718274755073], + [-5.9909307498776, 37.37753299839284], + [-5.991428602800888, 37.377870987308285], + [-5.991939574450986, 37.37819638057483], + [-5.992463160467428, 37.378508856902656], + [-5.992998844014836, 37.37880810775202], + [-5.993546096293449, 37.37909383763847], + [-5.994104377061548, 37.379365764424975], + [-5.9946731351692835, 37.37962361960109], + [-5.995251809103359, 37.379867148548485], + [-5.995839827542034, 37.380096110792806], + [-5.996436609919903, 37.38031028024154], + [-5.997041567001877, 37.38050944540773], + [-5.997654101465798, 37.38069340961909], + [-5.998273608493129, 37.38086199121266], + [-5.998899476367099, 37.3810150237145], + [-5.99953108707773, 37.38115235600438], + [-6.000167816933134, 37.38127385246532], + [-6.000809037176479, 37.38137939311773], + [-6.001454114608002, 37.38146887373818], + [-6.002102412211454, 37.38154220596246], + [-6.002753289784344, 37.381599317373066], + [-6.003406104571371, 37.38164015157079], + [-6.004060211900394, 37.381664668230634], + [-6.0047149658203125, 37.38167284314159] ] ] } diff --git a/packages/turf-point-to-line-distance/test/out/city-segment-inside2.geojson b/packages/turf-point-to-line-distance/test/out/city-segment-inside2.geojson index 0eede6637..d76727da6 100644 --- a/packages/turf-point-to-line-distance/test/out/city-segment-inside2.geojson +++ b/packages/turf-point-to-line-distance/test/out/city-segment-inside2.geojson @@ -27,207 +27,207 @@ "type": "Polygon", "coordinates": [ [ - [-0.3767967224121093, 39.47817829771828], - [-0.37717297676517364, 39.478173734857535], - [-0.37754885965266904, 39.47816005078006], - [-0.3779239999762024, 39.4781372589958], - [-0.37829802737136786, 39.4781053820064], - [-0.3786705725738289, 39.478064451283075], - [-0.3790412677843082, 39.47801450723546], - [-0.37940974703212244, 39.47795559917164], - [-0.3797756465369009, 39.477887785249465], - [-0.38013860506812935, 39.47781113241903], - [-0.3804982643021618, 39.4777257163565], - [-0.38085426917634524, 39.47763162138934], - [-0.38120626823990733, 39.477528940412945], - [-0.3815539140012577, 39.47741777479881], - [-0.38189686327135797, 39.477298234294395], - [-0.3822347775028214, 39.4771704369146], - [-0.3825673231244046, 39.477034508825156], - [-0.38289417187056, 39.47689058421791], - [-0.3832150011057224, 39.476738805178286], - [-0.38352949414300874, 39.47657932154475], - [-0.383837340557015, 39.47641229076082], - [-0.3841382364904002, 39.47623787771947], - [-0.3844318849539543, 39.476056254600195], - [-0.3847179961198538, 39.47586760069882], - [-0.3849962876078137, 39.47567210225041], - [-0.3852664847638536, 39.47546995224517], - [-0.38552832093140305, 39.475261350237865], - [-0.38578153771447654, 39.47504650215058], - [-0.3860258852326613, 39.4748256200693], - [-0.38626112236766286, 39.4745989220344], - [-0.386487017001168, 39.47436663182521], - [-0.3867033462437899, 39.47412897873896], - [-0.3869098966548689, 39.473886197364294], - [-0.38710646445291524, 39.47363852734952], - [-0.38729285571648314, 39.473386213165945], - [-0.38746888657528306, 39.47312950386634], - [-0.387634383391341, 39.47286865283905], - [-0.3877891829300298, 39.47260391755761], - [-0.3879331325208033, 39.47233555932666], - [-0.388066090207477, 39.47206384302373], - [-0.3881879248879085, 39.47178903683776], - [-0.3882985164429403, 39.47151141200427], - [-0.3883977558544816, 39.47123124253753], - [-0.3884855453126127, 39.47094880496003], - [-0.38856179831160775, 39.47066437802948], - [-0.38862643973478556, 39.470378242463575], - [-0.3886794059281041, 39.4700906806629], - [-0.3887206447624299, 39.46980197643214], - [-0.38875011568442186, 39.46951241469996], - [-0.388767789755983, 39.46922228123774], - [-0.38877364968224115, 39.46893186237752], - [-0.38876768982803694, 39.468641444729435], - [-0.38874991622289995, 39.468351314898825], - [-0.3887203465545154, 39.4680617592034], - [-0.3886790101506874, 39.46777306339072], - [-0.388625947949819, 39.46748551235623], - [-0.38856121245994185, 39.46719938986212], - [-0.3884848677063361, 39.46691497825739], - [-0.3883969891677966, 39.466632558199244], - [-0.38829766370160856, 39.46635240837626], - [-0.3881869894573102, 39.46607480523338], - [-0.38806507577932936, 39.46580002269933], - [-0.38793204309859025, 39.46552833191621], - [-0.38778802281320285, 39.4652600009723], - [-0.387633157158351, 39.46499529463743], - [-0.3874675990655111, 39.46473447410197], - [-0.38729151201114187, 39.46447779671916], - [-0.38710506985499543, 39.46422551575136], - [-0.3869084566682113, 39.46397788012027], - [-0.3867018665513634, 39.46373513416147], - [-0.3864855034426428, 39.46349751738353], - [-0.38625958091636264, 39.463265264231765], - [-0.3860243219719901, 39.4630386038572], - [-0.3857799588139098, 39.46281775989053], - [-0.3855267326221398, 39.46260295022168], - [-0.3852648933142251, 39.46239438678503], - [-0.3849946992985444, 39.46219227535045], - [-0.38471641721927496, 39.46199681532048], - [-0.3844303216932651, 39.4618081995337], - [-0.3841366950390765, 39.46162661407475], - [-0.38383582699846114, 39.46145223809086], - [-0.38352801445054896, 39.461285243615244], - [-0.38321356111902705, 39.46112579539757], - [-0.38289277727259896, 39.46097405074161], - [-0.3825659794190192, 39.46083015935015], - [-0.38223348999300305, 39.460694263177494], - [-0.38189563703832, 39.46056649628954], - [-0.38155275388438203, 39.46044698473169], - [-0.3812051788176456, 39.460335846404604], - [-0.3808532547481496, 39.460233190948024], - [-0.38049732887151716, 39.460139119632764], - [-0.3801377523267535, 39.46005372526087], - [-0.3797748798501746, 39.4599770920742], - [-0.37940906942580827, 39.45990929567137], - [-0.37904068193260887, 39.45985040293338], - [-0.3786700807888337, 39.45980047195755], - [-0.37829763159392754, 39.45975955200041], - [-0.37792370176826995, 39.459727683429094], - [-0.377548660191135, 39.45970489768158], - [-0.3771728768372216, 39.45969121723573], - [-0.3767967224121093, 39.45968665558711], - [-0.376420567986997, 39.45969121723573], - [-0.3760447846330837, 39.45970489768158], - [-0.37566974305594875, 39.459727683429094], - [-0.37529581323029115, 39.45975955200041], - [-0.374923364035385, 39.45980047195755], - [-0.3745527628916098, 39.45985040293338], - [-0.37418437539841043, 39.45990929567137], - [-0.3738185649740441, 39.4599770920742], - [-0.3734556924974652, 39.46005372526087], - [-0.37309611595270153, 39.460139119632764], - [-0.3727401900760692, 39.460233190948024], - [-0.3723882660065731, 39.460335846404604], - [-0.3720406909398366, 39.46044698473169], - [-0.37169780778589867, 39.46056649628954], - [-0.37135995483121564, 39.460694263177494], - [-0.37102746540519943, 39.46083015935015], - [-0.37070066755161973, 39.46097405074161], - [-0.3703798837051917, 39.46112579539757], - [-0.37006543037366973, 39.461285243615244], - [-0.36975761782575756, 39.46145223809086], - [-0.36945674978514215, 39.46162661407475], - [-0.3691631231309537, 39.4618081995337], - [-0.36887702760494373, 39.46199681532048], - [-0.3685987455256743, 39.46219227535045], - [-0.3683285515099936, 39.46239438678503], - [-0.3680667122020788, 39.46260295022168], - [-0.3678134860103089, 39.46281775989053], - [-0.36756912285222865, 39.4630386038572], - [-0.36733386390785605, 39.463265264231765], - [-0.3671079413815759, 39.46349751738353], - [-0.36689157827285523, 39.46373513416147], - [-0.3666849881560075, 39.46397788012027], - [-0.36648837496922326, 39.46422551575136], - [-0.36630193281307677, 39.46447779671916], - [-0.3661258457587076, 39.46473447410197], - [-0.3659602876658677, 39.46499529463743], - [-0.36580542201101585, 39.4652600009723], - [-0.36566140172562844, 39.46552833191621], - [-0.36552836904488933, 39.46580002269933], - [-0.36540645536690847, 39.46607480523338], - [-0.3652957811226102, 39.46635240837626], - [-0.3651964556564221, 39.466632558199244], - [-0.3651085771178826, 39.46691497825739], - [-0.36503223236427684, 39.46719938986212], - [-0.3649674968743997, 39.46748551235623], - [-0.36491443467353135, 39.46777306339072], - [-0.3648730982697033, 39.4680617592034], - [-0.36484352860131875, 39.468351314898825], - [-0.3648257549961817, 39.468641444729435], - [-0.3648197951419775, 39.46893186237752], - [-0.3648256550682358, 39.46922228123774], - [-0.36484332913979683, 39.46951241469996], - [-0.36487280006178874, 39.46980197643214], - [-0.3649140388961145, 39.4700906806629], - [-0.3649670050894331, 39.470378242463575], - [-0.36503164651261094, 39.47066437802948], - [-0.36510789951160605, 39.47094880496003], - [-0.36519568896973703, 39.47123124253753], - [-0.3652949283812784, 39.47151141200427], - [-0.3654055199363102, 39.47178903683776], - [-0.3655273546167417, 39.47206384302373], - [-0.3656603123034154, 39.47233555932666], - [-0.3658042618941889, 39.47260391755761], - [-0.3659590614328777, 39.47286865283905], - [-0.36612455824893564, 39.47312950386634], - [-0.36630058910773555, 39.473386213165945], - [-0.3664869803713034, 39.47363852734952], - [-0.3666835481693497, 39.473886197364294], - [-0.3668900985804288, 39.47412897873896], - [-0.3671064278230507, 39.47436663182521], - [-0.36733232245655584, 39.4745989220344], - [-0.36756755959155735, 39.4748256200693], - [-0.3678119071097421, 39.47504650215058], - [-0.36806512389281565, 39.475261350237865], - [-0.3683269600603651, 39.47546995224517], - [-0.368597157216405, 39.47567210225041], - [-0.3688754487043649, 39.47586760069882], - [-0.3691615598702644, 39.476056254600195], - [-0.36945520833381845, 39.47623787771947], - [-0.3697561042672037, 39.47641229076082], - [-0.37006395068121, 39.47657932154475], - [-0.3703784437184964, 39.476738805178286], - [-0.3706992729536587, 39.47689058421791], - [-0.3710261216998141, 39.477034508825156], - [-0.3713586673213972, 39.4771704369146], - [-0.3716965815528607, 39.477298234294395], - [-0.372039530822961, 39.47741777479881], - [-0.37238717658431136, 39.477528940412945], - [-0.37273917564787346, 39.47763162138934], - [-0.3730951805220569, 39.4777257163565], - [-0.3734548397560893, 39.47781113241903], - [-0.37381779828731776, 39.477887785249465], - [-0.37418369779209626, 39.47795559917164], - [-0.37455217703991045, 39.47801450723546], - [-0.3749228722503898, 39.478064451283075], - [-0.37529541745285083, 39.4781053820064], - [-0.37566944484801623, 39.4781372589958], - [-0.37604458517154965, 39.47816005078006], - [-0.37642046805904505, 39.478173734857535], - [-0.3767967224121093, 39.47817829771828] + [-0.3767967224121093, 39.477903066051326], + [-0.37716177489791164, 39.47789863903635], + [-0.3775264669817148, 39.47788536236202], + [-0.37789043861774285, 39.477863249135886], + [-0.37825333047231247, 39.47783232118945], + [-0.37861478427899564, 39.47779260905657], + [-0.37897444319272194, 39.47774415194336], + [-0.3793319521424701, 39.477686997689354], + [-0.379686958182198, 39.47762120272026], + [-0.3800391108396624, 39.47754683199218], + [-0.3803880624627833, 39.47746395892743], + [-0.38073346856320767, 39.477372665341946], + [-0.38107498815673313, 39.47727304136445], + [-0.38141228410025274, 39.47716518534734], + [-0.38174502342488703, 39.477049203769525], + [-0.38207287766497294, 39.47692521113114], + [-0.3823955231825837, 39.47679332984047], + [-0.382712641487257, 39.476653690092895], + [-0.3830239195506159, 39.476506429742294], + [-0.3833290501155698, 39.47635169416476], + [-0.38362773199978956, 39.476189636114974], + [-0.3839196703931562, 39.476020415575285], + [-0.384204577148889, 39.47584419959757], + [-0.384482171068065, 39.47566116213819], + [-0.38475217817724733, 39.47547148388615], + [-0.3850143319989503, 39.47527535208451], + [-0.3852683738146716, 39.475072960345436], + [-0.38551405292023305, 39.47486450845887], + [-0.3857511268731777, 39.47465020219519], + [-0.3859793617319791, 39.47443025310193], + [-0.38619853228682693, 39.47420487829473], + [-0.3864084222817614, 39.47397430024297], + [-0.3866088246279377, 39.47373874654993], + [-0.38679954160781144, 39.473498449727984], + [-0.3869803850700424, 39.473253646969006], + [-0.38715117661492787, 39.47300457991003], + [-0.3873117477701807, 39.47275149439463], + [-0.3874619401568817, 39.472494640230124], + [-0.38760160564544305, 39.47223427094089], + [-0.3877306065014306, 39.47197064351796], + [-0.38784881552110156, 39.47170401816535], + [-0.38795611615652636, 39.471434658042995], + [-0.388052402630173, 39.471162829007035], + [-0.38813758003884125, 39.470888799347264], + [-0.38821156444684746, 39.47061283952225], + [-0.3882742829683686, 39.47033522189236], + [-0.38832567383886696, 39.47005622045089], + [-0.38836568647552727, 39.46977611055353], + [-0.3883942815266472, 39.46949516864664], + [-0.38841143090993646, 39.46921367199437], + [-0.38841711783968763, 39.468931898404946], + [-0.38841133684279433, 39.46865012595656], + [-0.388394093763603, 39.46836863272291], + [-0.38836540575759587, 39.468087696498706], + [-0.3883253012739137, 39.46780759452571], + [-0.388273820026737, 39.46752860321897], + [-0.38821101295555654, 39.46725099789422], + [-0.38813694217437494, 39.46697505249616], + [-0.38805168090989084, 39.46670103932823], + [-0.38795531342872824, 39.466429228783916], + [-0.3878479349537872, 39.466159889080025], + [-0.3877296515697967, 39.465893285992124], + [-0.3876005801181681, 39.46562968259227], + [-0.38746084808125314, 39.46536933898968], + [-0.387310593456122, 39.46511251207401], + [-0.3871499646179889, 39.4648594552621], + [-0.3869791201734212, 39.464610418247986], + [-0.38679822880347675, 39.46436564675666], + [-0.38660746909692834, 39.46412538230179], + [-0.38640702937373866, 39.46388986194746], + [-0.3861971074989624, 39.46365931807452], + [-0.38597791068725934, 39.46343397815133], + [-0.38574965529821315, 39.463214064509614], + [-0.38551256662265765, 39.462999794125096], + [-0.3852668786602229, 39.46279137840372], + [-0.38501283388831986, 39.46258902297312], + [-0.3847506830227932, 39.462392927479954], + [-0.38448068477047886, 39.4622032853931], + [-0.3842031055739085, 39.46202028381288], + [-0.3839182193484155, 39.461844103286715], + [-0.38362630721189955, 39.46167491763103], + [-0.3833276572075175, 39.461512893760066], + [-0.3830225640195731, 39.461358191521256], + [-0.3827113286828857, 39.46121096353771], + [-0.3823942582859232, 39.4610713550578], + [-0.38207166566799283, 39.46093950381199], + [-0.3817438691107857, 39.4608155398771], + [-0.38141119202458107, 39.46069958554812], + [-0.38107396262941506, 39.460591755217656], + [-0.38073251363153116, 39.460492155263246], + [-0.3803871818954278, 39.46040088394246], + [-0.38003830811182515, 39.46031803129619], + [-0.37968623646187927, 39.460243679059744], + [-0.37933131427797057, 39.460177900582494], + [-0.37897389170140144, 39.46012076075544], + [-0.37861432133733863, 39.46007231594736], + [-0.3782529579073385, 39.46003261394923], + [-0.3778901578997956, 39.460001693927154], + [-0.37752627921865994, 39.45997958638372], + [-0.3771616808307642, 39.45996631312801], + [-0.3767967224121093, 39.45996188725407], + [-0.3764317639934545, 39.45996631312801], + [-0.37606716560555875, 39.45997958638372], + [-0.3757032869244231, 39.460001693927154], + [-0.37534048691688027, 39.46003261394923], + [-0.37497912348688, 39.46007231594736], + [-0.37461955312281725, 39.46012076075544], + [-0.37426213054624824, 39.460177900582494], + [-0.3739072083623394, 39.460243679059744], + [-0.37355513671239354, 39.46031803129619], + [-0.3732062629287909, 39.46040088394246], + [-0.3728609311926875, 39.460492155263246], + [-0.3725194821948037, 39.460591755217656], + [-0.3721822527996376, 39.46069958554812], + [-0.3718495757134329, 39.4608155398771], + [-0.3715217791562259, 39.46093950381199], + [-0.3711991865382955, 39.4610713550578], + [-0.37088211614133304, 39.46121096353771], + [-0.37057088080464556, 39.461358191521256], + [-0.3702657876167012, 39.461512893760066], + [-0.36996713761231914, 39.46167491763103], + [-0.36967522547580317, 39.461844103286715], + [-0.3693903392503102, 39.46202028381288], + [-0.36911276005373983, 39.4622032853931], + [-0.3688427618014255, 39.462392927479954], + [-0.36858061093589883, 39.46258902297312], + [-0.3683265661639958, 39.46279137840372], + [-0.368080878201561, 39.462999794125096], + [-0.3678437895260056, 39.463214064509614], + [-0.36761553413695935, 39.46343397815133], + [-0.3673963373252563, 39.46365931807452], + [-0.36718641545048, 39.46388986194746], + [-0.36698597572729036, 39.46412538230179], + [-0.36679521602074194, 39.46436564675666], + [-0.3666143246507975, 39.464610418247986], + [-0.36644348020622974, 39.4648594552621], + [-0.3662828513680967, 39.46511251207401], + [-0.36613259674296555, 39.46536933898968], + [-0.3659928647060505, 39.46562968259227], + [-0.365863793254422, 39.465893285992124], + [-0.3657455098704314, 39.466159889080025], + [-0.3656381313954904, 39.466429228783916], + [-0.36554176391432786, 39.46670103932823], + [-0.3654565026498437, 39.46697505249616], + [-0.3653824318686622, 39.46725099789422], + [-0.3653196247974817, 39.46752860321897], + [-0.36526814355030496, 39.46780759452571], + [-0.3652280390666228, 39.468087696498706], + [-0.3651993510606157, 39.46836863272291], + [-0.36518210798142436, 39.46865012595656], + [-0.36517632698453106, 39.468931898404946], + [-0.36518201391428223, 39.46921367199437], + [-0.3651991632975715, 39.46949516864664], + [-0.3652277583486915, 39.46977611055353], + [-0.3652677709853517, 39.47005622045089], + [-0.3653191618558501, 39.47033522189236], + [-0.36538188037737124, 39.47061283952225], + [-0.36545586478537745, 39.470888799347264], + [-0.3655410421940457, 39.471162829007035], + [-0.36563732866769233, 39.471434658042995], + [-0.3657446293031171, 39.47170401816535], + [-0.3658628383227881, 39.47197064351796], + [-0.36599183917877565, 39.47223427094089], + [-0.366131504667337, 39.472494640230124], + [-0.366281697054038, 39.47275149439463], + [-0.3664422682092908, 39.47300457991003], + [-0.36661305975417624, 39.473253646969006], + [-0.36679390321640726, 39.473498449727984], + [-0.366984620196281, 39.47373874654993], + [-0.3671850225424573, 39.47397430024297], + [-0.36739491253739176, 39.47420487829473], + [-0.3676140830922396, 39.47443025310193], + [-0.367842317951041, 39.47465020219519], + [-0.36807939190398564, 39.47486450845887], + [-0.3683250710095471, 39.475072960345436], + [-0.3685791128252684, 39.47527535208451], + [-0.36884126664697137, 39.47547148388615], + [-0.3691112737561537, 39.47566116213819], + [-0.3693888676753297, 39.47584419959757], + [-0.3696737744310625, 39.476020415575285], + [-0.36996571282442914, 39.476189636114974], + [-0.3702643947086489, 39.47635169416476], + [-0.3705695252736028, 39.476506429742294], + [-0.3708808033369617, 39.476653690092895], + [-0.37119792164163506, 39.47679332984047], + [-0.3715205671592458, 39.47692521113114], + [-0.3718484213993317, 39.477049203769525], + [-0.37218116072396595, 39.47716518534734], + [-0.37251845666748556, 39.47727304136445], + [-0.37285997626101103, 39.477372665341946], + [-0.37320538236143536, 39.47746395892743], + [-0.3735543339845563, 39.47754683199218], + [-0.3739064866420207, 39.47762120272026], + [-0.3742614926817486, 39.477686997689354], + [-0.37461900163149675, 39.47774415194336], + [-0.37497866054522294, 39.47779260905657], + [-0.3753401143519061, 39.47783232118945], + [-0.3757030062064758, 39.477863249135886], + [-0.3760669778425038, 39.47788536236202], + [-0.37643166992630706, 39.47789863903635], + [-0.3767967224121093, 39.477903066051326] ] ] } diff --git a/packages/turf-point-to-line-distance/test/out/city-segment-inside3.geojson b/packages/turf-point-to-line-distance/test/out/city-segment-inside3.geojson index dcb644fcb..5865a831b 100644 --- a/packages/turf-point-to-line-distance/test/out/city-segment-inside3.geojson +++ b/packages/turf-point-to-line-distance/test/out/city-segment-inside3.geojson @@ -27,207 +27,207 @@ "type": "Polygon", "coordinates": [ [ - [-3.592529296875, 40.605582910383504], - [-3.5938440544139856, 40.60556722235348], - [-3.5951575125965687, 40.605520173767665], - [-3.5964683733559686, 40.605441811123505], - [-3.597775341203348, 40.60533221186543], - [-3.5990771245135305, 40.605191484308044], - [-3.600372436806821, 40.60501976752856], - [-3.601659998025631, 40.60481723122884], - [-3.6029385358046238, 40.604584075566926], - [-3.604206786733098, 40.60432053095845], - [-3.605463497608343, 40.604026857847906], - [-3.606707426678687, 40.60370334645031], - [-3.607937344875007, 40.60335031646313], - [-3.6091520370294443, 40.602968116749146], - [-3.610350303080111, 40.6025571249903], - [-3.6115309592605747, 40.60211774731297], - [-3.6126928392729187, 40.601650417885196], - [-3.61383479544321, 40.601155598485896], - [-3.614955699858219, 40.60063377804687], - [-3.6160544454822467, 40.600085472167954], - [-3.6171299472529337, 40.59951122260566], - [-3.6181811431549877, 40.59891159673597], - [-3.6192069952707184, 40.598287186991826], - [-3.620206490806364, 40.597638610275794], - [-3.6211786430931734, 40.5969665073485], - [-3.6221224925622564, 40.59627154219359], - [-3.62303710769223, 40.59555440135971], - [-3.6239215859287293, 40.59481579328012], - [-3.624775054574868, 40.59405644757084], - [-3.6255966716517785, 40.59327711430781], - [-3.6263856267283776, 40.59247856328397], - [-3.6271411417195525, 40.59166158324677], - [-3.6278624716519694, 40.590826981117225], - [-3.6285489053967837, 40.58997558119087], - [-3.6291997663685125, 40.589108224321805], - [-3.629814413189403, 40.58822576709038], - [-3.6303922403186597, 40.58732908095545], - [-3.6309326786459146, 40.58641905139212], - [-3.631435196048372, 40.58549657701566], - [-3.631899297911103, 40.58456256869258], - [-3.632324527609994, 40.58361794863984], - [-3.6327104669568784, 40.58266364951283], - [-3.633056736606463, 40.581700613483285], - [-3.6333629964246392, 40.58072979130795], - [-3.6336289458178617, 40.579752141388845], - [-3.633854324023283, 40.57876862882624], - [-3.6340389103593895, 40.5777802244651], - [-3.6341825244369135, 40.57678790393604], - [-3.634285026329847, 40.57579264669172], - [-3.6343463167064023, 40.57479543503969], - [-3.6343663369198382, 40.57379725317253], - [-3.634345069059075, 40.57279908619629], - [-3.634282535959082, 40.571801919158275], - [-3.6341788011710547, 40.57080673607496], - [-3.6340339688924486, 40.569814518961216], - [-3.6338481838569523, 40.56882624686161], - [-3.633621631184546, 40.56784289488476], - [-3.6333545361918245, 40.566865433241865], - [-3.633047164162788, 40.56589482629016], - [-3.6326998200803673, 40.56493203158229], - [-3.632312848318964, 40.563977998922596], - [-3.631886632298339, 40.5630336694312], - [-3.6314215940992156, 40.562099974616785], - [-3.6309181940410014, 40.56117783545903], - [-3.6303769302220634, 40.5602681615015], - [-3.6297983380230363, 40.55937184995603], - [-3.629182989573671, 40.558489784819415], - [-3.628531493183772, 40.55762283600307], - [-3.6278444927387987, 40.55677185847698], - [-3.6271226670607457, 40.555937691428205], - [-3.6263667292349435, 40.555121157435224], - [-3.625577425903461, 40.5543230616587], - [-3.6247555365258237, 40.55354419104947], - [-3.6239018726077634, 40.55278531357455], - [-3.6230172768988047, 40.55204717746201], - [-3.622102622559447, 40.5513305104652], - [-3.621158812298803, 40.55063601914738], - [-3.620186777483524, 40.54996438818718], - [-3.6191874772189, 40.549316279705586], - [-3.618161897403039, 40.54869233261533], - [-3.617111049755068, 40.5480931619931], - [-3.6160359708182797, 40.54751935847517], - [-3.6149377209392415, 40.54697148767721], - [-3.6138173832238336, 40.54645008963864], - [-3.612676062471256, 40.54595567829228], - [-3.6115148840870392, 40.54548874095954], - [-3.61033499297611, 40.54504973787191], - [-3.6091375524170073, 40.5446391017191], - [-3.6079237429183273, 40.54425723722406], - [-3.6066947610585176, 40.543904520745784], - [-3.605451818310144, 40.54358129990976], - [-3.6041961398497664, 40.54328789326677], - [-3.6029289633545827, 40.54302458998017], - [-3.6016515377870078, 40.54279164954209], - [-3.600365122168345, 40.54258930151876], - [-3.5990709843427693, 40.54241774532518], - [-3.5977703997327755, 40.54227715002945], - [-3.5964646500873334, 40.54216765418682], - [-3.5951550222239286, 40.54208936570374], - [-3.593842806765714, 40.542042361731966], - [-3.592529296875, 40.542026688592884], - [-3.5912157869842867, 40.542042361731966], - [-3.589903571526072, 40.54208936570374], - [-3.588593943662667, 40.54216765418682], - [-3.5872881940172245, 40.54227715002945], - [-3.5859876094072307, 40.54241774532518], - [-3.584693471581655, 40.54258930151876], - [-3.5834070559629927, 40.54279164954209], - [-3.5821296303954173, 40.54302458998017], - [-3.580862453900234, 40.54328789326677], - [-3.579606775439856, 40.54358129990976], - [-3.5783638326914824, 40.543904520745784], - [-3.577134850831673, 40.54425723722406], - [-3.5759210413329927, 40.5446391017191], - [-3.57472360077389, 40.54504973787191], - [-3.5735437096629608, 40.54548874095954], - [-3.572382531278744, 40.54595567829228], - [-3.5712412105261677, 40.54645008963864], - [-3.570120872810759, 40.54697148767721], - [-3.569022622931721, 40.54751935847517], - [-3.5679475439949324, 40.5480931619931], - [-3.566896696346961, 40.54869233261533], - [-3.5658711165311012, 40.549316279705586], - [-3.5648718162664763, 40.54996438818718], - [-3.563899781451197, 40.55063601914738], - [-3.5629559711905534, 40.5513305104652], - [-3.5620413168511953, 40.55204717746201], - [-3.561156721142236, 40.55278531357455], - [-3.5603030572241763, 40.55354419104947], - [-3.559481167846539, 40.5543230616587], - [-3.5586918645150574, 40.555121157435224], - [-3.5579359266892543, 40.555937691428205], - [-3.5572141010112013, 40.55677185847698], - [-3.5565271005662282, 40.55762283600307], - [-3.5558756041763293, 40.558489784819415], - [-3.555260255726964, 40.55937184995603], - [-3.5546816635279366, 40.5602681615015], - [-3.554140399708998, 40.56117783545903], - [-3.5536369996507844, 40.562099974616785], - [-3.5531719614516613, 40.5630336694312], - [-3.5527457454310367, 40.563977998922596], - [-3.5523587736696327, 40.56493203158229], - [-3.552011429587212, 40.56589482629016], - [-3.551704057558176, 40.566865433241865], - [-3.5514369625654547, 40.56784289488476], - [-3.5512104098930486, 40.56882624686161], - [-3.5510246248575523, 40.569814518961216], - [-3.5508797925789466, 40.57080673607496], - [-3.5507760577909195, 40.571801919158275], - [-3.5507135246909254, 40.57279908619629], - [-3.550692256830162, 40.57379725317253], - [-3.550712277043598, 40.57479543503969], - [-3.5507735674201535, 40.57579264669172], - [-3.5508760693130865, 40.57678790393604], - [-3.5510196833906114, 40.5777802244651], - [-3.5512042697267177, 40.57876862882624], - [-3.5514296479321383, 40.579752141388845], - [-3.5516955973253603, 40.58072979130795], - [-3.5520018571435363, 40.581700613483285], - [-3.5523481267931216, 40.58266364951283], - [-3.552734066140007, 40.58361794863984], - [-3.553159295838897, 40.58456256869258], - [-3.5536233977016285, 40.58549657701566], - [-3.5541259151040854, 40.58641905139212], - [-3.5546663534313403, 40.58732908095545], - [-3.5552441805605977, 40.58822576709038], - [-3.5558588273814884, 40.589108224321805], - [-3.5565096883532163, 40.58997558119087], - [-3.557196122098031, 40.590826981117225], - [-3.557917452030448, 40.59166158324677], - [-3.5586729670216224, 40.59247856328397], - [-3.5594619220982224, 40.59327711430781], - [-3.5602835391751326, 40.59405644757084], - [-3.561137007821271, 40.59481579328012], - [-3.56202148605777, 40.59555440135971], - [-3.562936101187744, 40.59627154219359], - [-3.563879950656827, 40.5969665073485], - [-3.5648521029436364, 40.597638610275794], - [-3.5658515984792816, 40.598287186991826], - [-3.5668774505950123, 40.59891159673597], - [-3.5679286464970663, 40.59951122260566], - [-3.5690041482677537, 40.600085472167954], - [-3.570102893891781, 40.60063377804687], - [-3.5712237983067903, 40.601155598485896], - [-3.572365754477082, 40.601650417885196], - [-3.5735276344894253, 40.60211774731297], - [-3.5747082906698893, 40.6025571249903], - [-3.5759065567205566, 40.602968116749146], - [-3.5771212488749935, 40.60335031646313], - [-3.5783511670713133, 40.60370334645031], - [-3.579595096141657, 40.604026857847906], - [-3.580851807016902, 40.60432053095845], - [-3.5821200579453767, 40.604584075566926], - [-3.5833985957243693, 40.60481723122884], - [-3.5846861569431785, 40.60501976752856], - [-3.58598146923647, 40.605191484308044], - [-3.5872832525466523, 40.60533221186543], - [-3.588590220394032, 40.605441811123505], - [-3.5899010811534318, 40.605520173767665], - [-3.5912145393360144, 40.60556722235348], - [-3.592529296875, 40.605582910383504] + [-3.592529296875, 40.60525484040387], + [-3.593830474774089, 40.605239314409665], + [-3.5951303667562624, 40.60519275177097], + [-3.5964276881808104, 40.60511519850428], + [-3.5977211569581566, 40.60500673125301], + [-3.5990094948221962, 40.604867457211455], + [-3.600291428598792, 40.604697514018355], + [-3.601565691469119, 40.604497069620365], + [-3.602831024226608, 40.60426632210533], + [-3.6040861765262022, 40.60400549950575], + [-3.6053299081246797, 40.603714859572506], + [-3.6065609901107925, 40.603394689519085], + [-3.607778206123972, 40.60304530573659], + [-3.6089803535603875, 40.602667053479905], + [-3.610166244765143, 40.602260306525054], + [-3.611334708209402, 40.601825466798516], + [-3.612484589651283, 40.601362963978474], + [-3.6136147532793332, 40.60087325506861], + [-3.614724082837454, 40.600356823944885], + [-3.6158114827301495, 40.59981418087565], + [-3.6168758791069813, 40.59924586201564], + [-3.6179162209251676, 40.59865242887438], + [-3.61893148098924, 40.59803446775947], + [-3.6199206569667477, 40.59739258919535], + [-3.6208827723789834, 40.59672742731812], + [-3.621816877565753, 40.596039639247124], + [-3.6227220506232305, 40.59532990443361], + [-3.6235973983139735, 40.5945989239876], + [-3.6244420569481948, 40.59384741998316], + [-3.625255193235426, 40.59307613474322], + [-3.6260360051057385, 40.592285830104174], + [-3.6267837224997006, 40.59147728666145], + [-3.6274976081263244, 40.590651302996605], + [-3.628176958188229, 40.58980869488654], + [-3.6288211030733506, 40.58895029449607], + [-3.6294294080124914, 40.588076949554164], + [-3.630001273702106, 40.58718952251506], + [-3.6305361368916955, 40.58628888970484], + [-3.631033470935269, 40.585375940454526], + [-3.6314927863063278, 40.5844515762203], + [-3.631913631075899, 40.58351670969206], + [-3.6322955913531527, 40.58257226389081], + [-3.6326382916881976, 40.58161917125618], + [-3.63294139543668, 40.58065837272466], + [-3.6332046050858438, 40.57969081679965], + [-3.63342766254176, 40.57871745861413], + [-3.633610349377466, 40.57773925898708], + [-3.633752487041796, 40.57675718347427], + [-3.633853937028723, 40.575772201414686], + [-3.633914601007062, 40.57478528497327], + [-3.6339344209104665, 40.57379740818112], + [-3.6339133789876064, 40.57280954597402], + [-3.6338514978125573, 40.57182267323018], + [-3.6337488402553837, 40.570837763808264], + [-3.6336055094129893, 40.56985578958654], + [-3.6334216485003274, 40.56887771950425], + [-3.6331974407021055, 40.56790451860589], + [-3.6329331089851546, 40.566937147089725], + [-3.6326289158716913, 40.565976559360934], + [-3.632285163173693, 40.565023703091], + [-3.6319021916887086, 40.56407951828358], + [-3.6314803808574005, 40.56314493634827], + [-3.6310201483832025, 40.562220879182945], + [-3.6305219498144736, 40.56130825826562], + [-3.6299862780895977, 40.56040797375671], + [-3.6294136630454874, 40.559520913612644], + [-3.6288046708899997, 40.558647952711546], + [-3.628159903638816, 40.55778995199201], + [-3.6274799985173263, 40.556947757605705], + [-3.626765627328168, 40.556122200084644], + [-3.6260174957850153, 40.55531409352397], + [-3.625236342813321, 40.55452423478103], + [-3.62442293981869, 40.55375340269152], + [-3.623578089923631, 40.55300235730347], + [-3.6227026271734344, 40.552271839129844], + [-3.621797415711981, 40.55156256842034], + [-3.6208633489282818, 40.55087524445336], + [-3.6199013485746065, 40.55021054484856], + [-3.6189123638570737, 40.54956912490089], + [-3.6178973704995783, 40.54895161693651], + [-3.616857369782007, 40.548358629691485], + [-3.6157933875536648, 40.54779074771367], + [-3.6147064732228844, 40.5472485307884], + [-3.6135976987238143, 40.54673251338862], + [-3.61246815746139, 40.5462432041499], + [-3.6113189632355196, 40.54578108537087], + [-3.6101512491455314, 40.5453466125396], + [-3.6089661664759483, 40.5449402138863], + [-3.607764883564687, 40.544562289962826], + [-3.6065485846547616, 40.54421321324946], + [-3.6053184687306117, 40.5438933277892], + [-3.6040757483401995, 40.54360294885], + [-3.602821648403996, 40.54334236261532], + [-3.6015574050120227, 40.5431118259032], + [-3.600284264210103, 40.542911565914224], + [-3.599003480776514, 40.54274178000844], + [-3.597716316990196, 40.542602635511756], + [-3.5964240413917357, 40.542494269551675], + [-3.5951279275382984, 40.54241678892272], + [-3.5938292527537268, 40.54237026998165], + [-3.592529296875, 40.542354758572515], + [-3.5912293409962737, 40.54237026998165], + [-3.589930666211702, 40.54241678892272], + [-3.5886345523582652, 40.542494269551675], + [-3.5873422767598044, 40.542602635511756], + [-3.5860551129734866, 40.54274178000844], + [-3.5847743295398975, 40.542911565914224], + [-3.583501188737978, 40.5431118259032], + [-3.5822369453460046, 40.54334236261532], + [-3.580982845409801, 40.54360294885], + [-3.5797401250193883, 40.5438933277892], + [-3.5785100090952384, 40.54421321324946], + [-3.577293710185313, 40.544562289962826], + [-3.576092427274052, 40.5449402138863], + [-3.57490734460447, 40.5453466125396], + [-3.57373963051448, 40.54578108537087], + [-3.57259043628861, 40.5462432041499], + [-3.571460895026186, 40.54673251338862], + [-3.570352120527116, 40.5472485307884], + [-3.5692652061963357, 40.54779074771367], + [-3.568201223967993, 40.548358629691485], + [-3.5671612232504217, 40.54895161693651], + [-3.5661462298929263, 40.54956912490089], + [-3.5651572451753935, 40.55021054484856], + [-3.5641952448217187, 40.55087524445336], + [-3.5632611780380192, 40.55156256842034], + [-3.562355966576565, 40.552271839129844], + [-3.561480503826369, 40.55300235730347], + [-3.56063565393131, 40.55375340269152], + [-3.5598222509366795, 40.55452423478103], + [-3.559041097964985, 40.55531409352397], + [-3.558292966421833, 40.556122200084644], + [-3.557578595232674, 40.556947757605705], + [-3.5568986901111845, 40.55778995199201], + [-3.5562539228599994, 40.558647952711546], + [-3.555644930704513, 40.559520913612644], + [-3.5550723156604023, 40.56040797375671], + [-3.554536643935527, 40.56130825826562], + [-3.554038445366798, 40.562220879182945], + [-3.5535782128926, 40.56314493634827], + [-3.5531564020612922, 40.56407951828358], + [-3.552773430576307, 40.565023703091], + [-3.552429677878309, 40.565976559360934], + [-3.5521254847648454, 40.566937147089725], + [-3.551861153047895, 40.56790451860589], + [-3.5516369452496726, 40.56887771950425], + [-3.551453084337011, 40.56985578958654], + [-3.5513097534946167, 40.570837763808264], + [-3.5512070959374427, 40.57182267323018], + [-3.551145214762394, 40.57280954597402], + [-3.5511241728395335, 40.57379740818112], + [-3.551143992742938, 40.57478528497327], + [-3.5512046567212785, 40.575772201414686], + [-3.551306106708204, 40.57675718347427], + [-3.5514482443725344, 40.57773925898708], + [-3.5516309312082406, 40.57871745861413], + [-3.5518539886641562, 40.57969081679965], + [-3.55211719831332, 40.58065837272466], + [-3.552420302061803, 40.58161917125618], + [-3.5527630023968477, 40.58257226389081], + [-3.5531449626741014, 40.58351670969206], + [-3.5535658074436727, 40.5844515762203], + [-3.554025122814731, 40.585375940454526], + [-3.554522456858304, 40.58628888970484], + [-3.555057320047894, 40.58718952251506], + [-3.555629185737508, 40.588076949554164], + [-3.55623749067665, 40.58895029449607], + [-3.556881635561771, 40.58980869488654], + [-3.557560985623676, 40.590651302996605], + [-3.5582748712502994, 40.59147728666145], + [-3.5590225886442615, 40.592285830104174], + [-3.559803400514574, 40.59307613474322], + [-3.5606165368018057, 40.59384741998316], + [-3.561461195436027, 40.5945989239876], + [-3.56233654312677, 40.59532990443361], + [-3.5632417161842476, 40.596039639247124], + [-3.5641758213710166, 40.59672742731812], + [-3.5651379367832527, 40.59739258919535], + [-3.56612711276076, 40.59803446775947], + [-3.567142372824833, 40.59865242887438], + [-3.568182714643019, 40.59924586201564], + [-3.569247111019852, 40.59981418087565], + [-3.5703345109125464, 40.600356823944885], + [-3.571443840470667, 40.60087325506861], + [-3.572574004098717, 40.601362963978474], + [-3.5737238855405975, 40.601825466798516], + [-3.5748923489848576, 40.602260306525054], + [-3.5760782401896125, 40.602667053479905], + [-3.577280387626028, 40.60304530573659], + [-3.5784976036392075, 40.603394689519085], + [-3.5797286856253203, 40.603714859572506], + [-3.580972417223798, 40.60400549950575], + [-3.582227569523392, 40.60426632210533], + [-3.583492902280881, 40.604497069620365], + [-3.5847671651512085, 40.604697514018355], + [-3.586049098927804, 40.604867457211455], + [-3.587337436791844, 40.60500673125301], + [-3.5886309055691896, 40.60511519850428], + [-3.589928226993738, 40.60519275177097], + [-3.591228118975911, 40.605239314409665], + [-3.592529296875, 40.60525484040387] ] ] } diff --git a/packages/turf-point-to-line-distance/test/out/city-segment-obtuse1.geojson b/packages/turf-point-to-line-distance/test/out/city-segment-obtuse1.geojson index a3db56726..d3d6c02a6 100644 --- a/packages/turf-point-to-line-distance/test/out/city-segment-obtuse1.geojson +++ b/packages/turf-point-to-line-distance/test/out/city-segment-obtuse1.geojson @@ -31,7 +31,7 @@ [-6.03130830955381, 37.383152442203745], [-6.03232310462096, 37.38311440268895], [-6.033335893681851, 37.3830510452534], - [-6.0343456762183685, 37.38296243248732], + [-6.034345676218368, 37.38296243248732], [-6.035351454691617, 37.38284865193013], [-6.036352235530356, 37.382709815983816], [-6.037347030115435, 37.382546061801406], @@ -42,85 +42,85 @@ [-6.042197077091976, 37.38136003111692], [-6.04313559305344, 37.38105101361256], [-6.044061422490312, 37.38071871650848], - [-6.044973651039865, 37.38036346804896], + [-6.044973651039864, 37.38036346804896], [-6.04587137781173, 37.37998561914491], [-6.046753716279467, 37.379585543026245], [-6.047619795157733, 37.379163634872214], - [-6.04846875926421, 37.378720311420025], - [-6.049299770365408, 37.37825601055217], - [-6.050112008005509, 37.3777711908627], + [-6.0484687592642095, 37.378720311420025], + [-6.0492997703654074, 37.37825601055217], + [-6.050112008005508, 37.3777711908627], [-6.05090467031743, 37.37726633120325], [-6.051676974815305, 37.376741930208844], - [-6.052428159167573, 37.37619850580421], + [-6.0524281591675715, 37.37619850580421], [-6.053157481949942, 37.375636594691116], [-6.053864223377462, 37.375056751817056], [-6.054547686014986, 37.374459549825964], [-6.055207195465312, 37.3738455784915], [-6.055842101034343, 37.373215444133365], - [-6.056451776372602, 37.372569769017396], - [-6.05703562009246, 37.37190919073983], + [-6.056451776372601, 37.372569769017396], + [-6.057035620092459, 37.371909190739814], [-6.057593056360492, 37.371234361596535], - [-6.058123535464374, 37.37054594793782], - [-6.058626534353744, 37.36984462950922], - [-6.059101557154549, 37.36913109877935], - [-6.059548135656323, 37.36840606025507], - [-6.0599658297719685, 37.3676702297849], + [-6.058123535464373, 37.37054594793782], + [-6.058626534353743, 37.36984462950922], + [-6.0591015571545475, 37.36913109877934], + [-6.059548135656322, 37.36840606025506], + [-6.059965829771967, 37.3676702297849], [-6.060354227969559, 37.3669243338513], - [-6.060712947675787, 37.3661691088525], - [-6.061041635650622, 37.365405300374626], - [-6.061339968332868, 37.36463366245482], - [-6.061607652156258, 37.36385495683615], - [-6.061844423835801, 37.36306995221488], + [-6.060712947675786, 37.3661691088525], + [-6.061041635650621, 37.365405300374626], + [-6.0613399683328675, 37.36463366245482], + [-6.061607652156257, 37.36385495683615], + [-6.0618444238358, 37.36306995221488], [-6.062050050624106, 37.362279423481134], [-6.062224330537456, 37.36148415095337], [-6.0623670925514, 37.36068491960772], - [-6.062478196765716, 37.3598825183027], - [-6.0625575345385565, 37.359077739000305], + [-6.062478196765714, 37.3598825183027], + [-6.062557534538556, 37.359077739000305], [-6.062605028589718, 37.35827137598412], - [-6.062620633072877, 37.3574642250751], - [-6.062604333616798, 37.35665708284616], - [-6.062556147335455, 37.35585074583599], + [-6.062620633072876, 37.3574642250751], + [-6.062604333616796, 37.35665708284616], + [-6.062556147335454, 37.35585074583599], [-6.062476122807084, 37.35504600976288], [-6.062364340022205, 37.354243668739834], - [-6.062220910300662, 37.353444514490924], - [-6.062045976177818, 37.352649335570426], - [-6.061839711259985, 37.35185891658501], - [-6.061602320049291, 37.35107403742004], - [-6.061334037738125, 37.3502954724705], + [-6.0622209103006615, 37.353444514490924], + [-6.062045976177816, 37.352649335570426], + [-6.061839711259984, 37.35185891658501], + [-6.06160232004929, 37.35107403742004], + [-6.061334037738124, 37.3502954724705], [-6.061035129973439, 37.349523989877525], - [-6.060705892591087, 37.34876035077115], - [-6.060346651320524, 37.348005308520094], - [-6.059957761460153, 37.34725960798927], - [-6.059539607523658, 37.34652398480574], - [-6.059092602857662, 37.345799164633895], - [-6.058617189231142, 37.34508586246052], - [-6.058113836396972, 37.34438478189046], - [-6.057583041626067, 37.34369661445363], - [-6.057025329214581, 37.34302203892382], - [-6.056441249964655, 37.34236172065045], + [-6.060705892591085, 37.34876035077115], + [-6.060346651320522, 37.348005308520094], + [-6.0599577614601525, 37.34725960798927], + [-6.059539607523658, 37.346523984805756], + [-6.059092602857661, 37.3457991646339], + [-6.05861718923114, 37.34508586246052], + [-6.058113836396971, 37.34438478189046], + [-6.057583041626066, 37.34369661445363], + [-6.05702532921458, 37.34302203892383], + [-6.056441249964653, 37.34236172065045], [-6.0558313806392405, 37.34171631090328], - [-6.05519632339155, 37.34108644623126], - [-6.054536705169668, 37.34047274783587], - [-6.053853177096964, 37.33987582095966], - [-6.053146413828883, 37.33929625429056], - [-6.052417112886771, 37.33873461938242], - [-6.0516659939693875, 37.338191470092696], + [-6.055196323391549, 37.34108644623126], + [-6.054536705169667, 37.34047274783587], + [-6.053853177096963, 37.33987582095966], + [-6.053146413828881, 37.33929625429056], + [-6.05241711288677, 37.33873461938242], + [-6.051665993969386, 37.338191470092696], [-6.050893798242781, 37.33766734203739], [-6.050101287609245, 37.33716275206408], - [-6.049289243956044, 37.33667819774345], - [-6.048458468384681, 37.33621415687984], - [-6.047609780421451, 37.33577108704121], - [-6.04674401721003, 37.33534942510912], + [-6.049289243956043, 37.33667819774345], + [-6.0484584683846805, 37.33621415687984], + [-6.047609780421449, 37.33577108704121], + [-6.046744017210029, 37.33534942510912], [-6.045862032686948, 37.33494958684908], - [-6.044964696740686, 37.33457196650159], + [-6.044964696740685, 37.33457196650159], [-6.044052894355279, 37.33421693639459], [-6.043127524739219, 37.33388484657723], [-6.042189500440534, 37.33357602447572], - [-6.041239746448892, 37.33329077457146], + [-6.041239746448891, 37.33329077457146], [-6.040279199285616, 37.33302937810159], - [-6.039308806082496, 37.33279209278262], + [-6.039308806082495, 37.33279209278262], [-6.038329523650277, 37.33257915255698], - [-6.037342317537764, 37.332390767363115], + [-6.037342317537762, 37.332390767363115], [-6.036348161082416, 37.33222712292911], [-6.035348034453405, 37.3320883805901], [-6.03434292368801, 37.331974677129715], @@ -130,13 +130,13 @@ [-6.030292510986328, 37.331772121595634], [-6.029277407392067, 37.33178479693063], [-6.028263304555397, 37.33182281043939], - [-6.02725120225032, 37.33188612464563], + [-6.027251202250321, 37.33188612464563], [-6.026242098284645, 37.331974677129715], [-6.025236987519251, 37.3320883805901], [-6.024236860890239, 37.33222712292911], - [-6.023242704434892, 37.332390767363115], + [-6.023242704434893, 37.332390767363115], [-6.022255498322378, 37.33257915255698], - [-6.021276215890159, 37.33279209278262], + [-6.02127621589016, 37.33279209278262], [-6.020305822687039, 37.33302937810159], [-6.019345275523763, 37.33329077457146], [-6.018395521532121, 37.33357602447572], @@ -147,70 +147,70 @@ [-6.013841004762625, 37.33534942510912], [-6.012975241551205, 37.33577108704121], [-6.012126553587974, 37.33621415687984], - [-6.011295778016612, 37.33667819774345], - [-6.01048373436341, 37.33716275206408], - [-6.009691223729873, 37.33766734203739], + [-6.0112957780166125, 37.33667819774345], + [-6.010483734363411, 37.33716275206408], + [-6.009691223729875, 37.33766734203739], [-6.008919028003269, 37.338191470092696], - [-6.008167909085884, 37.33873461938242], + [-6.008167909085885, 37.33873461938242], [-6.007438608143773, 37.33929625429056], - [-6.0067318448756915, 37.33987582095966], + [-6.006731844875692, 37.33987582095966], [-6.006048316802987, 37.34047274783587], - [-6.005388698581105, 37.34108644623126], - [-6.004753641333414, 37.34171631090328], - [-6.004143772008001, 37.34236172065045], - [-6.003559692758074, 37.34302203892382], + [-6.005388698581106, 37.34108644623126], + [-6.004753641333415, 37.34171631090328], + [-6.004143772008002, 37.34236172065045], + [-6.003559692758074, 37.34302203892383], [-6.003001980346588, 37.34369661445363], - [-6.002471185575684, 37.34438478189046], + [-6.0024711855756845, 37.34438478189046], [-6.001967832741514, 37.34508586246052], - [-6.001492419114993, 37.345799164633895], - [-6.001045414448996, 37.34652398480574], + [-6.001492419114993, 37.3457991646339], + [-6.001045414448998, 37.346523984805756], [-6.000627260512502, 37.34725960798927], [-6.000238370652132, 37.348005308520094], [-5.9998791293815685, 37.34876035077115], - [-5.999549891999216, 37.349523989877525], + [-5.999549891999217, 37.349523989877525], [-5.99925098423453, 37.3502954724705], - [-5.998982701923365, 37.35107403742004], - [-5.9987453107126685, 37.35185891658501], - [-5.998539045794837, 37.352649335570426], + [-5.9989827019233655, 37.35107403742004], + [-5.99874531071267, 37.35185891658501], + [-5.998539045794839, 37.352649335570426], [-5.998364111671993, 37.353444514490924], - [-5.99822068195045, 37.354243668739834], - [-5.99810889916557, 37.35504600976288], + [-5.9982206819504515, 37.354243668739834], + [-5.9981088991655716, 37.35504600976288], [-5.998028874637201, 37.35585074583599], - [-5.997980688355858, 37.35665708284616], + [-5.997980688355859, 37.35665708284616], [-5.997964388899779, 37.3574642250751], - [-5.997979993382937, 37.35827137598412], + [-5.997979993382938, 37.35827137598412], [-5.998027487434099, 37.359077739000305], - [-5.99810682520694, 37.3598825183027], - [-5.998217929421254, 37.36068491960772], - [-5.998360691435198, 37.36148415095337], - [-5.9985349713485485, 37.362279423481134], + [-5.998106825206941, 37.3598825183027], + [-5.998217929421255, 37.36068491960772], + [-5.9983606914352, 37.36148415095337], + [-5.998534971348549, 37.362279423481134], [-5.9987405981368545, 37.36306995221488], [-5.998977369816397, 37.36385495683615], - [-5.999245053639787, 37.36463366245482], - [-5.999543386322033, 37.365405300374626], - [-5.999872074296868, 37.3661691088525], - [-6.0002307940030954, 37.3669243338513], + [-5.999245053639788, 37.36463366245482], + [-5.999543386322034, 37.365405300374626], + [-5.999872074296869, 37.3661691088525], + [-6.000230794003096, 37.3669243338513], [-6.000619192200688, 37.3676702297849], - [-6.001036886316332, 37.36840606025507], - [-6.001483464818107, 37.36913109877935], - [-6.001958487618912, 37.36984462950922], - [-6.002461486508281, 37.37054594793782], - [-6.002991965612162, 37.371234361596535], - [-6.003549401880195, 37.37190919073983], - [-6.004133245600054, 37.372569769017396], + [-6.001036886316333, 37.36840606025506], + [-6.001483464818108, 37.36913109877934], + [-6.0019584876189125, 37.36984462950922], + [-6.002461486508283, 37.37054594793782], + [-6.002991965612163, 37.371234361596535], + [-6.003549401880195, 37.371909190739814], + [-6.0041332456000545, 37.372569769017396], [-6.004742920938312, 37.373215444133365], [-6.005377826507343, 37.3738455784915], [-6.006037335957668, 37.374459549825964], [-6.006720798595192, 37.375056751817056], - [-6.007427540022713, 37.375636594691116], - [-6.008156862805083, 37.37619850580421], - [-6.008908047157349, 37.376741930208844], + [-6.0074275400227135, 37.375636594691116], + [-6.008156862805084, 37.37619850580421], + [-6.00890804715735, 37.376741930208844], [-6.0096803516552235, 37.37726633120325], [-6.010473013967147, 37.3777711908627], - [-6.011285251607247, 37.37825601055217], - [-6.012116262708445, 37.378720311420025], + [-6.011285251607249, 37.37825601055217], + [-6.012116262708446, 37.378720311420025], [-6.012965226814923, 37.379163634872214], - [-6.013831305693188, 37.379585543026245], + [-6.013831305693189, 37.379585543026245], [-6.014713644160925, 37.37998561914491], [-6.01561137093279, 37.38036346804896], [-6.016523599482343, 37.38071871650848], diff --git a/packages/turf-point-to-line-distance/test/out/city-segment-obtuse2.geojson b/packages/turf-point-to-line-distance/test/out/city-segment-obtuse2.geojson index 54b3b25cf..d8544570b 100644 --- a/packages/turf-point-to-line-distance/test/out/city-segment-obtuse2.geojson +++ b/packages/turf-point-to-line-distance/test/out/city-segment-obtuse2.geojson @@ -30,87 +30,87 @@ [-6.025829315185546, 37.43919034471164], [-6.027022538664795, 37.439175455478455], [-6.028214583153766, 37.43913080249053], - [-6.029404270831329, 37.4390564298682], + [-6.029404270831328, 37.4390564298682], [-6.030590426213467, 37.438952411096736], [-6.031771877318906, 37.438818848953474], [-6.032947456831202, 37.43865587540591], [-6.03411600325615, 37.438463651480795], [-6.035276362073334, 37.438242367104564], - [-6.036427386880658, 37.43799224091489], + [-6.036427386880657, 37.43799224091489], [-6.037567940530723, 37.437713520043985], [-6.038696896257897, 37.437406479873545], [-6.039813138794942, 37.4370714237617], [-6.040915565478098, 37.43670868274233], - [-6.04200308733949, 37.43631861519681], + [-6.042003087339489, 37.43631861519681], [-6.0430746301857825, 37.435901606498845], [-6.044129135661999, 37.43545806863238], - [-6.045165562299424, 37.43498843978332], + [-6.045165562299424, 37.434988439783304], [-6.0461828865465685, 37.434493183905204], - [-6.0471801037821455, 37.4339727902595], - [-6.0481562293090505, 37.43342777293063], - [-6.049110299328371, 37.432858670316705], + [-6.047180103782144, 37.43397279025949], + [-6.04815622930905, 37.43342777293063], + [-6.04911029932837, 37.432858670316705], [-6.050041371892426, 37.43226604459602], [-6.050948527835923, 37.431650481170145], [-6.051830871684267, 37.431012588083995], - [-6.052687532538163, 37.43035299542358], - [-6.053517664933593, 37.42967235469195], + [-6.052687532538162, 37.43035299542358], + [-6.053517664933592, 37.42967235469195], [-6.054320449676364, 37.428971338164004], - [-6.055095094650356, 37.42825063822083], - [-6.055840835598698, 37.427510966664165], - [-6.05655693687711, 37.42675305401172], - [-6.057242692178652, 37.425977648774094], + [-6.055095094650355, 37.42825063822083], + [-6.055840835598697, 37.427510966664165], + [-6.05655693687711, 37.426753054011705], + [-6.057242692178651, 37.425977648774094], [-6.057897425229177, 37.42518551671394], [-6.058520490452821, 37.42437744008814], - [-6.059111273606855, 37.423554216873775], + [-6.059111273606854, 37.423554216873775], [-6.059669192385302, 37.42271665997863], - [-6.060193696990736, 37.42186559643703], + [-6.060193696990734, 37.42186559643703], [-6.060684270673682, 37.421001866591816], - [-6.061140430239141, 37.420126323263275], + [-6.061140430239141, 37.42012632326326], [-6.061561726519708, 37.41923983090584], [-6.061947744814865, 37.41834326475341], [-6.062298105296017, 37.41743750995409], - [-6.0626124633768885, 37.416523460695394], - [-6.062890510048928, 37.4156020193204], - [-6.06313197218143, 37.41467409543624], - [-6.063336612786068, 37.413740605015334], + [-6.062612463376887, 37.416523460695394], + [-6.062890510048926, 37.4156020193204], + [-6.063131972181429, 37.41467409543624], + [-6.063336612786067, 37.413740605015334], [-6.063504231245609, 37.41280246949063], [-6.063634663506621, 37.41186061484546], [-6.063727782235971, 37.410915970699115], - [-6.063783496941013, 37.40996946938892], - [-6.063801754053343, 37.409022045049824], - [-6.063782536976084, 37.40807463269228], - [-6.063725866094653, 37.407128167279446], + [-6.063783496941012, 37.40996946938892], + [-6.063801754053342, 37.409022045049824], + [-6.063782536976082, 37.40807463269228], + [-6.063725866094652, 37.407128167279446], [-6.06363179875104, 37.4061835828046], [-6.063500429181638, 37.40524181136959], - [-6.063331888418703, 37.40430378226528], - [-6.063126344155575, 37.403370421055044], + [-6.063331888418702, 37.40430378226528], + [-6.063126344155573, 37.403370421055044], [-6.062884000575809, 37.40244264866187], [-6.062605098146403, 37.40152138046032], - [-6.062289913375344, 37.40060752537409], - [-6.061938758533746, 37.39970198497998], - [-6.061551981342863, 37.3988056526193], - [-6.061129964626304, 37.3979194125175], + [-6.062289913375343, 37.40060752537409], + [-6.061938758533745, 37.39970198497998], + [-6.061551981342862, 37.3988056526193], + [-6.0611299646263035, 37.39791941251752], [-6.060673125927819, 37.39704413891295], - [-6.06018191709504, 37.39618069519561], - [-6.059656823829615, 37.39532993305653], + [-6.060181917095039, 37.39618069519561], + [-6.059656823829613, 37.39532993305653], [-6.059098365204186, 37.394492691649084], [-6.058507093146716, 37.3936697967625], [-6.057883591892659, 37.3928620600088], - [-6.057228477405559, 37.39207027802373], - [-6.05654239676664, 37.391295231682626], + [-6.057228477405558, 37.39207027802373], + [-6.0565423967666385, 37.391295231682626], [-6.055826027534007, 37.3905376853317], [-6.0550800770720965, 37.38979838603595], - [-6.0543052818520495, 37.389078062843936], + [-6.054305281852048, 37.389078062843936], [-6.053502406723686, 37.38837742607055], - [-6.0526722441598455, 37.38769716659812], + [-6.052672244159845, 37.38769716659812], [-6.051815613473786, 37.38703795519694], - [-6.050933360010466, 37.38640044186537], + [-6.050933360010464, 37.38640044186537], [-6.050026354312475, 37.385785255190704], - [-6.049095491261466, 37.385193001731004], + [-6.049095491261464, 37.385193001731004], [-6.048141689195878, 37.384624265418694], - [-6.047165889005906, 37.38407960698643], + [-6.047165889005906, 37.38407960698644], [-6.046169053206509, 37.383559563415936], - [-6.045152164989438, 37.383064647410045], + [-6.045152164989438, 37.38306464741005], [-6.044116227255172, 37.3825953468889], [-6.043062261625723, 37.38215212451027], [-6.041991307439279, 37.38173541721498], @@ -119,7 +119,7 @@ [-6.038687151076536, 37.38064836064622], [-6.037558954245232, 37.38034155426768], [-6.036419194955824, 37.38006304780211], - [-6.035268996838969, 37.37981311578506], + [-6.035268996838968, 37.37981311578506], [-6.034109493779491, 37.379592004582406], [-6.032941828802199, 37.379399932148395], [-6.031767152948839, 37.37923708781159], @@ -135,70 +135,70 @@ [-6.019891477422254, 37.37923708781159], [-6.018716801568893, 37.379399932148395], [-6.017549136591602, 37.379592004582406], - [-6.016389633532124, 37.37981311578506], + [-6.016389633532126, 37.37981311578506], [-6.015239435415268, 37.38006304780211], - [-6.01409967612586, 37.38034155426768], + [-6.014099676125862, 37.38034155426768], [-6.012971479294556, 37.38064836064622], [-6.011855957193574, 37.38098316450227], [-6.010754209643445, 37.381345635797494], [-6.009667322931814, 37.38173541721498], [-6.00859636874537, 37.38215212451027], [-6.007542403115921, 37.3825953468889], - [-6.006506465381655, 37.383064647410045], + [-6.006506465381655, 37.38306464741005], [-6.0054895771645835, 37.383559563415936], - [-6.004492741365187, 37.38407960698643], + [-6.004492741365187, 37.38407960698644], [-6.0035169411752145, 37.384624265418694], [-6.002563139109628, 37.385193001731004], [-6.001632276058617, 37.385785255190704], [-6.000725270360628, 37.38640044186537], [-5.999843016897308, 37.38703795519694], - [-5.9989863862112465, 37.38769716659812], + [-5.998986386211247, 37.38769716659812], [-5.998156223647406, 37.38837742607055], - [-5.997353348519043, 37.389078062843936], + [-5.997353348519044, 37.389078062843936], [-5.9965785532989955, 37.38979838603595], - [-5.995832602837086, 37.3905376853317], + [-5.995832602837087, 37.3905376853317], [-5.9951162336044534, 37.391295231682626], - [-5.994430152965533, 37.39207027802373], + [-5.994430152965535, 37.39207027802373], [-5.993775038478433, 37.3928620600088], [-5.993151537224376, 37.3936697967625], [-5.992560265166906, 37.394492691649084], - [-5.992001806541479, 37.39532993305653], - [-5.991476713276053, 37.39618069519561], + [-5.99200180654148, 37.39532993305653], + [-5.991476713276054, 37.39618069519561], [-5.990985504443273, 37.39704413891295], - [-5.9905286657447885, 37.3979194125175], + [-5.99052866574479, 37.39791941251752], [-5.99010664902823, 37.3988056526193], - [-5.989719871837346, 37.39970198497998], - [-5.989368716995748, 37.40060752537409], + [-5.989719871837347, 37.39970198497998], + [-5.98936871699575, 37.40060752537409], [-5.989053532224689, 37.40152138046032], [-5.988774629795283, 37.40244264866187], - [-5.988532286215518, 37.403370421055044], + [-5.988532286215519, 37.403370421055044], [-5.988326741952391, 37.40430378226528], - [-5.988158201189454, 37.40524181136959], - [-5.988026831620052, 37.4061835828046], - [-5.98793276427644, 37.407128167279446], + [-5.988158201189456, 37.40524181136959], + [-5.9880268316200524, 37.4061835828046], + [-5.987932764276441, 37.407128167279446], [-5.98787609339501, 37.40807463269228], [-5.987856876317751, 37.409022045049824], [-5.98787513343008, 37.40996946938892], - [-5.987930848135122, 37.410915970699115], - [-5.988023966864471, 37.41186061484546], - [-5.9881543991254835, 37.41280246949063], - [-5.988322017585026, 37.413740605015334], - [-5.988526658189662, 37.41467409543624], - [-5.988768120322166, 37.4156020193204], + [-5.9879308481351226, 37.410915970699115], + [-5.988023966864472, 37.41186061484546], + [-5.988154399125484, 37.41280246949063], + [-5.988322017585027, 37.413740605015334], + [-5.988526658189664, 37.41467409543624], + [-5.988768120322167, 37.4156020193204], [-5.989046166994205, 37.416523460695394], [-5.989360525075075, 37.41743750995409], [-5.989710885556227, 37.41834326475341], [-5.990096903851385, 37.41923983090584], - [-5.990518200131952, 37.420126323263275], - [-5.99097435969741, 37.421001866591816], + [-5.990518200131953, 37.42012632326326], + [-5.990974359697412, 37.421001866591816], [-5.991464933380358, 37.42186559643703], - [-5.99198943798579, 37.42271665997863], + [-5.991989437985791, 37.42271665997863], [-5.992547356764239, 37.423554216873775], - [-5.993138139918271, 37.42437744008814], + [-5.993138139918273, 37.42437744008814], [-5.993761205141915, 37.42518551671394], [-5.994415938192442, 37.425977648774094], - [-5.995101693493983, 37.42675305401172], - [-5.995817794772394, 37.427510966664165], + [-5.995101693493983, 37.426753054011705], + [-5.995817794772396, 37.427510966664165], [-5.996563535720737, 37.42825063822083], [-5.997338180694729, 37.428971338164004], [-5.998140965437501, 37.42967235469195], @@ -206,25 +206,25 @@ [-5.999827758686825, 37.431012588083995], [-6.00071010253517, 37.431650481170145], [-6.001617258478667, 37.43226604459602], - [-6.002548331042723, 37.432858670316705], + [-6.002548331042724, 37.432858670316705], [-6.003502401062043, 37.43342777293063], - [-6.004478526588947, 37.4339727902595], + [-6.004478526588948, 37.43397279025949], [-6.005475743824523, 37.434493183905204], - [-6.006493068071668, 37.43498843978332], + [-6.006493068071668, 37.434988439783304], [-6.007529494709093, 37.43545806863238], [-6.0085840001853095, 37.435901606498845], [-6.009655543031603, 37.43631861519681], - [-6.010743064892995, 37.43670868274233], + [-6.010743064892996, 37.43670868274233], [-6.0118454915761514, 37.4370714237617], [-6.012961734113197, 37.437406479873545], [-6.014090689840369, 37.437713520043985], - [-6.015231243490434, 37.43799224091489], + [-6.015231243490436, 37.43799224091489], [-6.016382268297759, 37.438242367104564], [-6.017542627114943, 37.438463651480795], [-6.0187111735398915, 37.43865587540591], [-6.019886753052187, 37.438818848953474], [-6.021068204157626, 37.438952411096736], - [-6.0222543595397635, 37.4390564298682], + [-6.022254359539764, 37.4390564298682], [-6.023444047217326, 37.43913080249053], [-6.024636091706297, 37.439175455478455], [-6.025829315185546, 37.43919034471164] diff --git a/packages/turf-point-to-line-distance/test/out/distances.json b/packages/turf-point-to-line-distance/test/out/distances.json index 6be35e82b..1cd86c6aa 100644 --- a/packages/turf-point-to-line-distance/test/out/distances.json +++ b/packages/turf-point-to-line-distance/test/out/distances.json @@ -1,22 +1,22 @@ { - "city-line1": 1.0299686758, - "city-line2": 3.6186172981, - "city-segment-inside1": 1.1489389115, - "city-segment-inside2": 1.0280898152, - "city-segment-inside3": 3.5335695907, + "city-line1": 0.9993988759, + "city-line2": 3.5827706171, + "city-segment-inside1": 1.1444315439, + "city-segment-inside2": 0.9974854079, + "city-segment-inside3": 3.497089823, "city-segment-obtuse1": 2.8573246363, "city-segment-obtuse2": 3.3538913334, "city-segment-projected1": 3.5886611693, "city-segment-projected2": 4.163469898, - "issue-1156": 189.6618028794, - "line-fiji": 27.1266612008, - "line-resolute-bay": 425.0745081528, - "line1": 23.4224834672, - "line2": 188.015686924, - "segment-fiji": 27.6668301762, + "issue-1156": 189.0688049313, + "line-fiji": 26.8418623324, + "line-resolute-bay": 424.8707545895, + "line1": 25.6934928869, + "line2": 188.0655411712, + "segment-fiji": 27.3835094108, "segment1": 69.0934195756, "segment1a": 69.0934195756, "segment2": 69.0934195756, "segment3": 69.0828960461, - "segment4": 332.8803863574 + "segment4": 340.7276874254 } diff --git a/packages/turf-point-to-line-distance/test/out/issue-1156.geojson b/packages/turf-point-to-line-distance/test/out/issue-1156.geojson index 9bb9d7dfc..60984fc41 100644 --- a/packages/turf-point-to-line-distance/test/out/issue-1156.geojson +++ b/packages/turf-point-to-line-distance/test/out/issue-1156.geojson @@ -33,207 +33,207 @@ "type": "Polygon", "coordinates": [ [ - [11.028348, 41.00170566721549], - [11.02827700886751, 41.00170482554991], - [11.02820608780013, 41.001702301383844], - [11.028135306793807, 41.001698097208546], - [11.028064735706222, 41.001692217173336], - [11.027994444187819, 41.00168466708156], - [11.027924501613064, 41.001675454384824], - [11.027854977011954, 41.00166458817562], - [11.027785939001863, 41.00165207917843], - [11.027717455719817, 41.00163793973901], - [11.027649594755225, 41.00162218381236], - [11.027582423083171, 41.00160482694883], - [11.027516006998276, 41.001585886278804], - [11.027450412049278, 41.00156538049577], - [11.027385702974316, 41.00154332983794], - [11.02732194363703, 41.001519756068184], - [11.027259196963524, 41.00149468245259], - [11.027197524880242, 41.00146813373746], - [11.027136988252854, 41.00144013612497], - [11.02707764682617, 41.001410717247204], - [11.02701955916517, 41.00137990613891], - [11.026962782597213, 41.00134773320887], - [11.026907373155424, 41.001314230209864], - [11.026853385523424, 41.001279430207305], - [11.026800872981335, 41.0012433675466], - [11.02674988735321, 41.00120607781931], - [11.026700478955878, 41.00116759782794], - [11.026652696549288, 41.00112796554963], - [11.026606587288397, 41.00108722009871], - [11.026562196676629, 41.00104540168805], - [11.02651956852097, 41.001002551589366], - [11.026478744888745, 41.000958712092505], - [11.026439766066112, 41.00091392646371], - [11.0264026705183, 41.000868238902825], - [11.026367494851664, 41.00082169449983], - [11.026334273777577, 41.00077433919017], - [11.026303040078172, 41.00072621970953], - [11.026273824574002, 41.00067738354764], - [11.02624665609365, 41.00062787890144], - [11.026221561445281, 41.000577754627486], - [11.026198565390201, 41.00052706019374], - [11.026177690618448, 41.00047584563077], - [11.0261589577264, 41.00042416148227], - [11.026142385196481, 41.000372058755346], - [11.026127989378933, 41.000319588870006], - [11.0261157844757, 41.00026680360851], - [11.026105782526429, 41.00021375506425], - [11.026097993396617, 41.00016049559027], - [11.026092424767892, 41.00010707774772], - [11.026089082130442, 41.00005355425388], - [11.026087968777636, 40.99999997793016], - [11.026089085802786, 40.999946401649986], - [11.026092432098084, 40.999892878286616], - [11.026098004355733, 40.99983946066096], - [11.026105797071214, 40.999786201489435], - [11.026115802548752, 40.999733153331974], - [11.02612801090893, 40.999680368540126], - [11.02614241009845, 40.99962789920543], - [11.026158985902066, 40.99957579710793], - [11.026177721956612, 40.9995241136652], - [11.026198599767191, 40.999472899881525], - [11.026221598725423, 40.99942220629756], - [11.026246696129817, 40.99937208294048], - [11.026273867208193, 40.99932257927467], - [11.026303085142123, 40.99927374415279], - [11.026334321093445, 40.99922562576766], - [11.026367544232713, 40.99917827160471], - [11.026402721769646, 40.9991317283951], - [11.02643981898549, 40.99908604206956], - [11.02647879926731, 40.99904125771318], - [11.026519624144107, 40.998997419520826], - [11.026562253324824, 40.99895457075355], - [11.026606644738084, 40.998912753695954], - [11.026652754573739, 40.99887200961443], - [11.026700537326096, 40.998832378716436], - [11.026749945838839, 40.99879390011083], - [11.026800931351556, 40.998756611769316], - [11.026853443547875, 40.99872055048893], - [11.02690743060511, 40.99868575185576], - [11.026962839245407, 40.99865225020982], - [11.02701961478831, 40.9986200786112], - [11.027077701204732, 40.99858926880739], - [11.027137041172233, 40.998559851202046], - [11.027197576131588, 40.998531854824904], - [11.027259246344572, 40.99850530730317], - [11.027321990952899, 40.998480234834275], - [11.027385748038267, 40.99845666216004], - [11.027450454683466, 40.99843461254221], - [11.027516047034444, 40.99841410773956], - [11.027582460363313, 40.99839516798641], - [11.027649629132217, 40.99837781197265], - [11.027717487057982, 40.99836205682531], - [11.027785967177529, 40.99834791809166], - [11.027855001913922, 40.9983354097239], - [11.027924523143062, 40.99832454406533], - [11.027994462260875, 40.998315331838235], - [11.028064750251007, 40.99830778213326], - [11.028135317752923, 40.99830190240051], - [11.028206095130324, 40.9982976984421], - [11.028277012539853, 40.998295174406515], - [11.028348, 40.99829433278449], - [11.028418987460148, 40.998295174406515], - [11.028489904869677, 40.9982976984421], - [11.028560682247077, 40.99830190240051], - [11.028631249748994, 40.99830778213326], - [11.028701537739126, 40.998315331838235], - [11.028771476856939, 40.99832454406533], - [11.028840998086078, 40.9983354097239], - [11.028910032822472, 40.99834791809166], - [11.028978512942018, 40.99836205682531], - [11.029046370867784, 40.99837781197265], - [11.029113539636688, 40.99839516798641], - [11.029179952965556, 40.99841410773956], - [11.029245545316535, 40.99843461254221], - [11.029310251961734, 40.99845666216004], - [11.029374009047102, 40.998480234834275], - [11.029436753655428, 40.99850530730317], - [11.029498423868413, 40.998531854824904], - [11.029558958827767, 40.998559851202046], - [11.029618298795269, 40.99858926880739], - [11.02967638521169, 40.9986200786112], - [11.029733160754592, 40.99865225020982], - [11.02978856939489, 40.99868575185576], - [11.029842556452126, 40.99872055048893], - [11.029895068648445, 40.998756611769316], - [11.029946054161162, 40.99879390011083], - [11.029995462673904, 40.998832378716436], - [11.030043245426262, 40.99887200961443], - [11.030089355261916, 40.998912753695954], - [11.030133746675176, 40.99895457075355], - [11.030176375855893, 40.998997419520826], - [11.030217200732691, 40.99904125771318], - [11.03025618101451, 40.99908604206956], - [11.030293278230355, 40.9991317283951], - [11.030328455767288, 40.99917827160471], - [11.030361678906555, 40.99922562576766], - [11.030392914857877, 40.99927374415279], - [11.030422132791807, 40.99932257927467], - [11.03044930387018, 40.99937208294048], - [11.030474401274578, 40.99942220629756], - [11.03049740023281, 40.999472899881525], - [11.030518278043388, 40.9995241136652], - [11.030537014097934, 40.99957579710793], - [11.030553589901551, 40.99962789920543], - [11.03056798909107, 40.999680368540126], - [11.030580197451249, 40.999733153331974], - [11.030590202928787, 40.999786201489435], - [11.030597995644268, 40.99983946066096], - [11.030603567901917, 40.999892878286616], - [11.030606914197215, 40.999946401649986], - [11.030608031222364, 40.99999997793016], - [11.030606917869559, 41.00005355425388], - [11.030603575232108, 41.00010707774772], - [11.030598006603382, 41.00016049559027], - [11.030590217473572, 41.00021375506425], - [11.030580215524301, 41.00026680360851], - [11.030568010621067, 41.000319588870006], - [11.03055361480352, 41.000372058755346], - [11.0305370422736, 41.00042416148227], - [11.030518309381552, 41.00047584563077], - [11.0304974346098, 41.00052706019374], - [11.03047443855472, 41.000577754627486], - [11.030449343906351, 41.00062787890144], - [11.030422175425999, 41.00067738354764], - [11.030392959921828, 41.00072621970953], - [11.030361726222424, 41.00077433919017], - [11.030328505148336, 41.00082169449983], - [11.030293329481701, 41.000868238902825], - [11.030256233933889, 41.00091392646371], - [11.030217255111255, 41.000958712092505], - [11.030176431479031, 41.001002551589366], - [11.030133803323372, 41.00104540168805], - [11.030089412711604, 41.00108722009871], - [11.030043303450713, 41.00112796554963], - [11.029995521044123, 41.00116759782794], - [11.02994611264679, 41.00120607781931], - [11.029895127018666, 41.0012433675466], - [11.029842614476577, 41.001279430207305], - [11.029788626844576, 41.001314230209864], - [11.029733217402788, 41.00134773320887], - [11.02967644083483, 41.00137990613891], - [11.02961835317383, 41.001410717247204], - [11.029559011747146, 41.00144013612497], - [11.029498475119759, 41.00146813373746], - [11.029436803036477, 41.00149468245259], - [11.02937405636297, 41.001519756068184], - [11.029310297025685, 41.00154332983794], - [11.029245587950722, 41.00156538049577], - [11.029179993001724, 41.001585886278804], - [11.02911357691683, 41.00160482694883], - [11.029046405244776, 41.00162218381236], - [11.028978544280184, 41.00163793973901], - [11.028910060998138, 41.00165207917843], - [11.028841022988047, 41.00166458817562], - [11.028771498386936, 41.001675454384824], - [11.028701555812182, 41.00168466708156], - [11.028631264293779, 41.001692217173336], - [11.02856069320619, 41.001698097208546], - [11.02848991219987, 41.001702301383844], - [11.02841899113249, 41.00170482554991], - [11.028348, 41.00170566721549] + [11.028348, 41.0017003342642], + [11.028277230834616, 41.00169949523024], + [11.028206531515254, 41.00169697895645], + [11.028135971818989, 41.001692787926295], + [11.028065621385055, 41.00168692627613], + [11.027995549646116, 41.00167939979112], + [11.027925825759704, 41.0016702158996], + [11.02785651853996, 41.00165938366561], + [11.027787696389709, 41.00164691378012], + [11.02771942723291, 41.00163281855028], + [11.027651778447632, 41.00161711188745], + [11.02758481679953, 41.00159980929333], + [11.027518608375937, 41.001580927844756], + [11.027453218520622, 41.001560486176786], + [11.027388711769305, 41.00153850446432], + [11.027325151785929, 41.001515004402194], + [11.027262601299839, 41.00149000918372], + [11.027201122043847, 41.00146354347787], + [11.02714077469331, 41.001435633404824], + [11.027081618806228, 41.00140630651031], + [11.027023712764466, 41.00137559173829], + [11.026967113716129, 41.00134351940245], + [11.026911877519144, 41.00131012115626], + [11.026858058686155, 41.001275429961765], + [11.026805710330695, 41.001239480056995], + [11.026754884114778, 41.00120230692219], + [11.026705630197913, 41.00116394724479], + [11.0266579971876, 41.001124438883195], + [11.026612032091357, 41.001083820829436], + [11.026567780270343, 41.001042133170614], + [11.026525285394584, 41.00099941704943], + [11.02648458939988, 41.0009557146235], + [11.026445732446435, 41.000911069023736], + [11.02640875287923, 41.000865524311834], + [11.02637368719017, 41.00081912543677], + [11.02634056998211, 41.00077191819035], + [11.026309433934703, 41.00072394916212], + [11.026280309772153, 41.000675265693346], + [11.026253226232916, 41.00062591583025], + [11.026228210041356, 41.00057594827664], + [11.026205285881383, 41.0005254123458], + [11.026184476372103, 41.00047435791185], + [11.02616580204552, 41.00042283536049], + [11.02614928132629, 41.000370895539305], + [11.026134930513553, 41.00031858970754], + [11.026122763764869, 41.000265969485554], + [11.026112793082268, 41.00021308680384], + [11.026105028300417, 41.000159993851796], + [11.02609947707695, 41.0001067430262], + [11.026096144884914, 41.00005338687949], + [11.026095035007401, 40.99999997806796], + [11.026096148534329, 40.999946569299695], + [11.026099484361378, 40.999893213282654], + [11.02610503919111, 40.99983996267259], + [11.026112807536244, 40.999786870021104], + [11.026122781725087, 40.999733987723786], + [11.026134951909128, 40.99968136796851], + [11.026149306072785, 40.999629062683944], + [11.026165830045276, 40.999577123488265], + [11.02618450751461, 40.99952560163826], + [11.026205320043744, 40.99947454797874], + [11.026228247088746, 40.99942401289238], + [11.02625326601912, 40.999374046249926], + [11.026280352140157, 40.99932469736109], + [11.026309478717302, 40.999276014925826], + [11.026340617002566, 40.99922804698627], + [11.026373736262912, 40.99918084087941], + [11.026408803810591, 40.99913444319027], + [11.026445785035417, 40.999088899706], + [11.026484643438932, 40.99904425537072], + [11.026525340670442, 40.99900055424114], + [11.026567836564858, 40.998957839443044], + [11.026612089182363, 40.99891615312887], + [11.026658054849777, 40.99887553643594], + [11.026705688203704, 40.99883602944604], + [11.026754942235257, 40.99879767114576], + [11.026805768336484, 40.998760499388084], + [11.026858116348336, 40.99872455085501], + [11.02691193461015, 40.99868986102135], + [11.026967170010643, 40.998656464119776], + [11.027023768040324, 40.998624393107036], + [11.027081672845283, 40.99859367963135], + [11.02714082728229, 40.998564354001324], + [11.027201172975209, 40.998536445155935], + [11.02726265037258, 40.998509980636], + [11.02732519880638, 40.99848498655709], + [11.027388756551902, 40.99846148758363], + [11.027453260888628, 40.998439506904674], + [11.027518648162143, 40.998419066210964], + [11.027584853846918, 40.99840018567355], + [11.027651812609992, 40.998382883923895], + [11.027719458375417, 40.9983671780355], + [11.027787724389459, 40.99835308350702], + [11.027856543286457, 40.99834061424704], + [11.027925847155277, 40.99832978256025], + [11.02799556760633, 40.99832059913543], + [11.02806563583903, 40.99831307303482], + [11.02813598270968, 40.998307211685216], + [11.028206538799681, 40.9983030208706], + [11.02827723448403, 40.99830050472647], + [11.028348, 40.99829966573579], + [11.028418765515971, 40.99830050472647], + [11.02848946120032, 40.9983030208706], + [11.02856001729032, 40.998307211685216], + [11.028630364160971, 40.99831307303482], + [11.02870043239367, 40.99832059913543], + [11.028770152844723, 40.99832978256025], + [11.028839456713543, 40.99834061424704], + [11.028908275610542, 40.99835308350702], + [11.028976541624584, 40.9983671780355], + [11.029044187390008, 40.998382883923895], + [11.029111146153083, 40.99840018567355], + [11.029177351837857, 40.998419066210964], + [11.029242739111373, 40.998439506904674], + [11.029307243448098, 40.99846148758363], + [11.02937080119362, 40.99848498655709], + [11.029433349627421, 40.998509980636], + [11.029494827024791, 40.998536445155935], + [11.02955517271771, 40.998564354001324], + [11.029614327154718, 40.99859367963135], + [11.029672231959676, 40.998624393107036], + [11.029728829989358, 40.998656464119776], + [11.029784065389851, 40.99868986102135], + [11.029837883651664, 40.99872455085501], + [11.029890231663515, 40.998760499388084], + [11.029941057764743, 40.99879767114576], + [11.029990311796297, 40.99883602944604], + [11.030037945150223, 40.99887553643594], + [11.030083910817638, 40.99891615312887], + [11.03012816343514, 40.998957839443044], + [11.030170659329558, 40.99900055424114], + [11.030211356561068, 40.99904425537072], + [11.030250214964584, 40.999088899706], + [11.03028719618941, 40.99913444319027], + [11.030322263737089, 40.99918084087941], + [11.030355382997435, 40.99922804698627], + [11.030386521282699, 40.999276014925826], + [11.030415647859844, 40.99932469736109], + [11.03044273398088, 40.999374046249926], + [11.030467752911255, 40.99942401289238], + [11.030490679956257, 40.99947454797874], + [11.03051149248539, 40.99952560163826], + [11.030530169954725, 40.999577123488265], + [11.030546693927215, 40.999629062683944], + [11.030561048090872, 40.99968136796851], + [11.030573218274913, 40.999733987723786], + [11.030583192463757, 40.999786870021104], + [11.03059096080889, 40.99983996267259], + [11.030596515638623, 40.999893213282654], + [11.030599851465672, 40.999946569299695], + [11.0306009649926, 40.99999997806796], + [11.030599855115087, 41.00005338687949], + [11.03059652292305, 41.0001067430262], + [11.030590971699583, 41.000159993851796], + [11.030583206917733, 41.00021308680384], + [11.030573236235131, 41.000265969485554], + [11.030561069486447, 41.00031858970754], + [11.03054671867371, 41.000370895539305], + [11.03053019795448, 41.00042283536049], + [11.030511523627897, 41.00047435791185], + [11.030490714118615, 41.0005254123458], + [11.030467789958644, 41.00057594827664], + [11.030442773767085, 41.00062591583025], + [11.030415690227848, 41.000675265693346], + [11.030386566065298, 41.00072394916212], + [11.03035543001789, 41.00077191819035], + [11.030322312809831, 41.00081912543677], + [11.030287247120771, 41.000865524311834], + [11.030250267553566, 41.000911069023736], + [11.03021141060012, 41.0009557146235], + [11.030170714605417, 41.00099941704943], + [11.030128219729658, 41.001042133170614], + [11.030083967908643, 41.001083820829436], + [11.0300380028124, 41.001124438883195], + [11.029990369802087, 41.00116394724479], + [11.029941115885222, 41.00120230692219], + [11.029890289669305, 41.001239480056995], + [11.029837941313845, 41.001275429961765], + [11.029784122480857, 41.00131012115626], + [11.029728886283872, 41.00134351940245], + [11.029672287235535, 41.00137559173829], + [11.029614381193772, 41.00140630651031], + [11.02955522530669, 41.001435633404824], + [11.029494877956154, 41.00146354347787], + [11.029433398700162, 41.00149000918372], + [11.029370848214072, 41.001515004402194], + [11.029307288230696, 41.00153850446432], + [11.029242781479379, 41.001560486176786], + [11.029177391624064, 41.001580927844756], + [11.02911118320047, 41.00159980929333], + [11.029044221552368, 41.00161711188745], + [11.02897657276709, 41.00163281855028], + [11.028908303610292, 41.00164691378012], + [11.028839481460041, 41.00165938366561], + [11.028770174240297, 41.0016702158996], + [11.028700450353885, 41.00167939979112], + [11.028630378614945, 41.00168692627613], + [11.028560028181012, 41.001692787926295], + [11.028489468484747, 41.00169697895645], + [11.028418769165384, 41.00169949523024], + [11.028348, 41.0017003342642] ] ] } diff --git a/packages/turf-point-to-line-distance/test/out/line-fiji.geojson b/packages/turf-point-to-line-distance/test/out/line-fiji.geojson index 8ae6591cf..6a7e8aa32 100644 --- a/packages/turf-point-to-line-distance/test/out/line-fiji.geojson +++ b/packages/turf-point-to-line-distance/test/out/line-fiji.geojson @@ -43,207 +43,207 @@ "type": "Polygon", "coordinates": [ [ - [-180.46142578124994, -17.237716136273125], - [-180.4694489667334, -17.23783635318522], - [-180.47746426577237, -17.23819688575123], - [-180.48546379958304, -17.23879737957517], - [-180.49343970469613, -17.239637244379622], - [-180.5013841405959, -17.240715654579297], - [-180.50928929733868, -17.24203155008315], - [-180.51714740314276, -17.2435836373245], - [-180.5249507319425, -17.245370390518072], - [-180.5326916109009, -17.247390053142794], - [-180.5403624278719, -17.249640639649073], - [-180.54795563880714, -17.252119937388876], - [-180.55546377509896, -17.254825508766803], - [-180.56287945085356, -17.257754693610256], - [-180.57019537008736, -17.260904611756388], - [-180.57740433383952, -17.2642721658535], - [-180.5844992471944, -17.267854044374246], - [-180.59147312620675, -17.27164672483778], - [-180.59831910472406, -17.275646477238002], - [-180.6050304410982, -17.2798493676745], - [-180.61160052478164, -17.284251262182945], - [-180.61802288280035, -17.288847830761267], - [-180.62429118609856, -17.293634551587918], - [-180.63039925574822, -17.29860671542819], - [-180.63634106901807, -17.303759430224503], - [-180.64211076529563, -17.309087625866365], - [-180.647702651857, -17.314586059135436], - [-180.6531112094788, -17.320249318821176], - [-180.65833109788596, -17.326071831002103], - [-180.66335716103123, -17.332047864487798], - [-180.66818443220012, -17.338171536416453], - [-180.67280813893683, -17.344436818002666], - [-180.6772237077857, -17.350837540430064], - [-180.68142676884412, -17.35736740088313], - [-180.68541316012127, -17.364019968712544], - [-180.68917893169947, -17.370788691728084], - [-180.69272034969245, -17.377666902613203], - [-180.6960338999977, -17.384647825455055], - [-180.6991162918379, -17.391724582383755], - [-180.70196446108855, -17.39889020031458], - [-180.70457557338736, -17.406137617786484], - [-180.7069470270228, -17.413459691890523], - [-180.70907645559822, -17.420849205281385], - [-180.7109617304682, -17.428298873265348], - [-180.71260096294532, -17.435801350957743], - [-180.71399250627363, -17.443349240503025], - [-180.71513495736733, -17.450935098350467], - [-180.71602715831207, -17.458551442578326], - [-180.716668197627, -17.466190760259444], - [-180.71705741128588, -17.47384551486101], - [-180.71719438349587, -17.48150815367129], - [-180.71707894723272, -17.48917111524603], - [-180.71671118453085, -17.49682683686723], - [-180.7160914265288, -17.50446776200696], - [-180.71522025326772, -17.51208634778879], - [-180.71409849324436, -17.51967507243959], - [-180.71272722271718, -17.527226442724167], - [-180.7111077647666, -17.53473300135552], - [-180.7092416881095, -17.542187334373207], - [-180.70713080566836, -17.54958207848257], - [-180.70477717289668, -17.556909928347487], - [-180.70218308586146, -17.564163643829236], - [-180.69935107908398, -17.57133605716445], - [-180.69628392314095, -17.578420080074682], - [-180.69298462202767, -17.58540871080065], - [-180.68945641028614, -17.592295041053934], - [-180.68570274989912, -17.599072262879186], - [-180.68172732695456, -17.605733675419824], - [-180.67753404808178, -17.612272691580447], - [-180.6731270366641, -17.618682844579105], - [-180.66851062883006, -17.624957794382837], - [-180.66368936922768, -17.63109133401984], - [-180.65866800658554, -17.637077395761892], - [-180.653451489065, -17.642910057170653], - [-180.64804495940717, -17.64858354700163], - [-180.64245374988099, -17.654092250959817], - [-180.63668337703524, -17.659430717301007], - [-180.63073953626102, -17.664593662273052], - [-180.62462809616972, -17.669575975391442], - [-180.61835509279175, -17.674372724543744], - [-180.6119267236015, -17.678979160917613], - [-180.60534934137596, -17.683390723747305], - [-180.59862944789083, -17.687603044873697], - [-180.591773687463, -17.691611953113128], - [-180.58478884034344, -17.6954134784305], - [-180.5776818159696, -17.699003855912256], - [-180.57045964608236, -17.70237952953516], - [-180.5631294777152, -17.705537155726866], - [-180.55569856606348, -17.70847360671458], - [-180.5481742672399, -17.71118597365835], - [-180.54056403092468, -17.713671569565623], - [-180.53287539291765, -17.71592793198409], - [-180.5251159675996, -17.71795282546992], - [-180.51729344031196, -17.719744243828863], - [-180.509415559661, -17.721300412127803], - [-180.50149012975658, -17.722619788474688], - [-180.4935250023914, -17.723701065564917], - [-180.48552806917135, -17.724543171992632], - [-180.47750725360277, -17.725145273325467], - [-180.4694705031472, -17.72550677294161], - [-180.46142578124994, -17.725627312628383], - [-180.45338105935272, -17.72550677294161], - [-180.44534430889715, -17.725145273325467], - [-180.43732349332856, -17.724543171992632], - [-180.4293265601085, -17.723701065564917], - [-180.42136143274334, -17.722619788474688], - [-180.41343600283892, -17.721300412127803], - [-180.40555812218798, -17.719744243828863], - [-180.39773559490033, -17.71795282546992], - [-180.38997616958227, -17.71592793198409], - [-180.38228753157523, -17.713671569565623], - [-180.37467729526003, -17.71118597365835], - [-180.36715299643643, -17.70847360671458], - [-180.35972208478472, -17.705537155726866], - [-180.35239191641756, -17.70237952953516], - [-180.3451697465303, -17.699003855912256], - [-180.33806272215648, -17.6954134784305], - [-180.33107787503693, -17.691611953113128], - [-180.32422211460909, -17.687603044873697], - [-180.31750222112396, -17.683390723747305], - [-180.31092483889842, -17.678979160917613], - [-180.3044964697082, -17.674372724543744], - [-180.2982234663302, -17.669575975391442], - [-180.29211202623895, -17.664593662273052], - [-180.28616818546473, -17.659430717301007], - [-180.28039781261896, -17.654092250959817], - [-180.27480660309277, -17.64858354700163], - [-180.26940007343492, -17.642910057170653], - [-180.26418355591437, -17.637077395761892], - [-180.25916219327223, -17.63109133401984], - [-180.25434093366985, -17.624957794382837], - [-180.2497245258358, -17.618682844579105], - [-180.24531751441813, -17.61227269158045], - [-180.24112423554536, -17.605733675419824], - [-180.2371488126008, -17.599072262879186], - [-180.23339515221377, -17.592295041053934], - [-180.22986694047225, -17.58540871080065], - [-180.22656763935902, -17.578420080074682], - [-180.22350048341593, -17.57133605716445], - [-180.22066847663845, -17.564163643829236], - [-180.21807438960323, -17.556909928347487], - [-180.21572075683156, -17.54958207848257], - [-180.21360987439041, -17.542187334373207], - [-180.2117437977333, -17.53473300135552], - [-180.21012433978277, -17.527226442724167], - [-180.2087530692556, -17.51967507243959], - [-180.2076313092322, -17.51208634778879], - [-180.20676013597114, -17.50446776200696], - [-180.20614037796906, -17.49682683686723], - [-180.20577261526725, -17.48917111524603], - [-180.20565717900405, -17.48150815367129], - [-180.20579415121404, -17.47384551486101], - [-180.20618336487294, -17.466190760259444], - [-180.20682440418784, -17.458551442578326], - [-180.20771660513262, -17.450935098350467], - [-180.2088590562263, -17.443349240503025], - [-180.2102505995546, -17.435801350957743], - [-180.21188983203172, -17.428298873265348], - [-180.2137751069017, -17.420849205281385], - [-180.2159045354771, -17.413459691890523], - [-180.21827598911258, -17.406137617786484], - [-180.22088710141136, -17.39889020031458], - [-180.22373527066202, -17.391724582383755], - [-180.22681766250224, -17.384647825455055], - [-180.23013121280746, -17.377666902613203], - [-180.23367263080044, -17.370788691728084], - [-180.23743840237864, -17.364019968712544], - [-180.24142479365582, -17.35736740088313], - [-180.2456278547142, -17.350837540430064], - [-180.25004342356308, -17.344436818002666], - [-180.2546671302998, -17.338171536416453], - [-180.2594944014687, -17.332047864487798], - [-180.26452046461395, -17.326071831002103], - [-180.26974035302112, -17.320249318821176], - [-180.2751489106429, -17.314586059135436], - [-180.28074079720432, -17.309087625866365], - [-180.28651049348184, -17.303759430224503], - [-180.2924523067517, -17.29860671542819], - [-180.29856037640135, -17.293634551587918], - [-180.30482867969957, -17.288847830761267], - [-180.31125103771828, -17.284251262182945], - [-180.31782112140172, -17.2798493676745], - [-180.32453245777586, -17.275646477238002], - [-180.33137843629316, -17.27164672483778], - [-180.33835231530554, -17.267854044374246], - [-180.3454472286604, -17.2642721658535], - [-180.35265619241258, -17.260904611756388], - [-180.35997211164639, -17.257754693610256], - [-180.36738778740096, -17.254825508766803], - [-180.37489592369278, -17.252119937388876], - [-180.382489134628, -17.249640639649073], - [-180.390159951599, -17.247390053142794], - [-180.3979008305574, -17.245370390518072], - [-180.40570415935716, -17.2435836373245], - [-180.41356226516123, -17.24203155008315], - [-180.42146742190405, -17.240715654579297], - [-180.4294118578038, -17.239637244379622], - [-180.43738776291687, -17.23879737957517], - [-180.44538729672755, -17.23819688575123], - [-180.4534025957665, -17.23783635318522], - [-180.46142578124994, -17.237716136273125] + [-180.46142578124994, -17.24027739049296], + [-180.46936484304584, -17.24039634692233], + [-180.4772961007639, -17.240753099274404], + [-180.48521175790825, -17.241347296854684], + [-180.49310403313993, -17.242178355550998], + [-180.50096516783762, -17.2432454584011], + [-180.50878743363776, -17.2445475563866], + [-180.51656313994596, -17.246083369452435], + [-180.5242846414141, -17.247851387751002], + [-180.5319443453747, -17.24984987310968], + [-180.5395347192272, -17.25207686072057], + [-180.54704829776773, -17.254530161050656], + [-180.5544776904568, -17.25720736197078], + [-180.56181558861732, -17.26010583110138], + [-180.56905477255665, -17.263222718372816], + [-180.57618811860564, -17.26655495879789], + [-180.58320860606855, -17.270099275454], + [-180.59010932407656, -17.273852182672133], + [-180.59688347833938, -17.277809989429688], + [-180.60352439778754, -17.28196880294405], + [-180.61002554109984, -17.28632453246341], + [-180.61638050310924, -17.29087289325147], + [-180.62258302108154, -17.295609410762097], + [-180.62862698086013, -17.30052942500019], + [-180.6345064228718, -17.30562809506453], + [-180.64021554798677, -17.31090040386846], + [-180.64574872322848, -17.31634116303384], + [-180.65110048732615, -17.32194501795376], + [-180.65626555610586, -17.327706453019193], + [-180.6612388277143, -17.333619797004644], + [-180.66601538766997, -17.339679228607753], + [-180.67059051373707, -17.345878782137515], + [-180.6749596806168, -17.352212353345852], + [-180.67911856445195, -17.358673705396864], + [-180.68306304713923, -17.3652564749682], + [-180.68678922044626, -17.371954178478635], + [-180.69029338992738, -17.37876021843602], + [-180.69357207863587, -17.38566788989942], + [-180.6966220306271, -17.39267038704937], + [-180.6994402142502, -17.399760809859895], + [-180.70202382522356, -17.40693217086583], + [-180.70437028949195, -17.414177402019096], + [-180.70647726586128, -17.421489361627128], + [-180.70834264840795, -17.4288608413669], + [-180.70996456866118, -17.436284573367722], + [-180.71134139755404, -17.443753237355878], + [-180.71247174714253, -17.451259467854303], + [-180.71335447208938, -17.4587958614302], + [-180.71398867091125, -17.466354983983535], + [-180.71437368698753, -17.47392937806933], + [-180.71450910932907, -17.48151157024661], + [-180.71439477310608, -17.48909407844673], + [-180.7140307599337, -17.496669419353903], + [-180.7134173979149, -17.50423011579066], + [-180.71255526143932, -17.51176870410091], + [-180.71144517073955, -17.519277741523396], + [-180.71008819120246, -17.52674981354816], + [-180.70848563243777, -17.53417754124877], + [-180.70663904710324, -17.54155358858299], + [-180.70455022948727, -17.54887066965465], + [-180.70222121385032, -17.556121555929458], + [-180.69965427252583, -17.56329908339754], + [-180.69685191378213, -17.57039615967548], + [-180.6938168794475, -17.577405771040844], + [-180.69055214229977, -17.584320989392026], + [-180.68706090322274, -17.59113497912635], + [-180.68334658813214, -17.597841003929634], + [-180.67941284467355, -17.604432433470258], + [-180.6752635386954, -17.610902749990853], + [-180.67090275049986, -17.617245554791143], + [-180.66633477087558, -17.623454574595147], + [-180.66156409691553, -17.6295236677963], + [-180.65659542762396, -17.635446830574185], + [-180.65143365931672, -17.641218202876548], + [-180.64608388081916, -17.64683207426044], + [-180.64055136846628, -17.65228288958661], + [-180.6348415809101, -17.657565254561117], + [-180.62896015373897, -17.662673941118666], + [-180.6229128939145, -17.667603892641896], + [-180.61670577403117, -17.67235022901138], + [-180.61034492640488, -17.67690825148108], + [-180.60383663699537, -17.681273447374124], + [-180.59718733917003, -17.685441494594166], + [-180.5904036073139, -17.68940826594752], + [-180.58349215029324, -17.693169833271646], + [-180.57645980477912, -17.696722471365664], + [-180.56931352843753, -17.700062661718786], + [-180.5620603929937, -17.703187096032774], + [-180.55470757717652, -17.7060926795348], + [-180.54726235955184, -17.708776534077124], + [-180.53973211125097, -17.711236001020456], + [-180.5321242886019, -17.713468643897947], + [-180.52444642567184, -17.71547225085697], + [-180.5167061267279, -17.717244836876183], + [-180.50891105862408, -17.718784645755537], + [-180.50106894312256, -17.7200901518771], + [-180.4931875491574, -17.721160061734853], + [-180.48527468504858, -17.721993315231938], + [-180.47733819067463, -17.72258908674385], + [-180.46938592961206, -17.72294678594654], + [-180.46142578124994, -17.723066058408545], + [-180.45346563288786, -17.72294678594654], + [-180.4455133718253, -17.72258908674385], + [-180.43757687745133, -17.721993315231938], + [-180.42966401334252, -17.721160061734853], + [-180.42178261937735, -17.7200901518771], + [-180.41394050387584, -17.718784645755537], + [-180.406145435772, -17.717244836876183], + [-180.3984051368281, -17.71547225085697], + [-180.39072727389805, -17.713468643897947], + [-180.38311945124894, -17.711236001020456], + [-180.37558920294808, -17.708776534077124], + [-180.3681439853234, -17.7060926795348], + [-180.36079116950623, -17.703187096032774], + [-180.35353803406238, -17.700062661718786], + [-180.34639175772085, -17.696722471365664], + [-180.33935941220668, -17.693169833271646], + [-180.332447955186, -17.68940826594752], + [-180.32566422332988, -17.685441494594166], + [-180.31901492550455, -17.681273447374124], + [-180.31250663609504, -17.67690825148108], + [-180.30614578846874, -17.67235022901138], + [-180.2999386685854, -17.667603892641896], + [-180.29389140876094, -17.662673941118666], + [-180.28800998158982, -17.657565254561117], + [-180.28230019403364, -17.65228288958661], + [-180.27676768168078, -17.64683207426044], + [-180.2714179031832, -17.641218202876548], + [-180.26625613487596, -17.635446830574185], + [-180.2612874655844, -17.6295236677963], + [-180.25651679162434, -17.623454574595147], + [-180.25194881200005, -17.617245554791143], + [-180.24758802380455, -17.610902749990853], + [-180.24343871782636, -17.604432433470258], + [-180.23950497436778, -17.59784100392964], + [-180.23579065927717, -17.59113497912635], + [-180.23229942020015, -17.58432098939203], + [-180.22903468305242, -17.577405771040844], + [-180.2259996487178, -17.57039615967548], + [-180.22319728997408, -17.56329908339754], + [-180.2206303486496, -17.556121555929458], + [-180.21830133301265, -17.54887066965465], + [-180.21621251539668, -17.54155358858299], + [-180.21436593006214, -17.53417754124877], + [-180.21276337129748, -17.52674981354816], + [-180.21140639176036, -17.519277741523396], + [-180.2102963010606, -17.51176870410091], + [-180.20943416458502, -17.50423011579066], + [-180.2088208025662, -17.496669419353903], + [-180.2084567893939, -17.48909407844673], + [-180.20834245317084, -17.48151157024661], + [-180.20847787551241, -17.47392937806933], + [-180.20886289158867, -17.466354983983535], + [-180.20949709041054, -17.4587958614302], + [-180.21037981535738, -17.451259467854303], + [-180.21151016494588, -17.443753237355878], + [-180.21288699383874, -17.436284573367722], + [-180.21450891409197, -17.4288608413669], + [-180.21637429663866, -17.421489361627128], + [-180.21848127300797, -17.414177402019096], + [-180.22082773727638, -17.40693217086583], + [-180.22341134824973, -17.399760809859895], + [-180.2262295318728, -17.39267038704937], + [-180.22927948386405, -17.38566788989942], + [-180.23255817257254, -17.37876021843602], + [-180.23606234205369, -17.371954178478635], + [-180.2397885153607, -17.365256474968202], + [-180.243732998048, -17.358673705396864], + [-180.2478918818831, -17.352212353345852], + [-180.25226104876285, -17.345878782137515], + [-180.25683617482994, -17.339679228607753], + [-180.26161273478564, -17.333619797004644], + [-180.26658600639405, -17.327706453019193], + [-180.27175107517377, -17.32194501795376], + [-180.27710283927144, -17.31634116303384], + [-180.28263601451314, -17.31090040386846], + [-180.28834513962812, -17.30562809506453], + [-180.29422458163978, -17.30052942500019], + [-180.30026854141838, -17.295609410762097], + [-180.30647105939067, -17.29087289325147], + [-180.3128260214001, -17.28632453246341], + [-180.31932716471238, -17.28196880294405], + [-180.32596808416054, -17.277809989429688], + [-180.33274223842335, -17.273852182672133], + [-180.3396429564314, -17.270099275454], + [-180.34666344389427, -17.26655495879789], + [-180.35379678994326, -17.263222718372816], + [-180.3610359738826, -17.26010583110138], + [-180.36837387204312, -17.25720736197078], + [-180.37580326473218, -17.254530161050656], + [-180.38331684327272, -17.25207686072057], + [-180.3909072171252, -17.24984987310968], + [-180.39856692108583, -17.247851387751002], + [-180.40628842255396, -17.246083369452435], + [-180.41406412886215, -17.2445475563866], + [-180.4218863946623, -17.2432454584011], + [-180.42974752936, -17.242178355550998], + [-180.43763980459167, -17.241347296854684], + [-180.445555461736, -17.240753099274404], + [-180.45348671945408, -17.24039634692233], + [-180.46142578124994, -17.24027739049296] ] ] } diff --git a/packages/turf-point-to-line-distance/test/out/line-resolute-bay.geojson b/packages/turf-point-to-line-distance/test/out/line-resolute-bay.geojson index ec7b5fae7..35527d386 100644 --- a/packages/turf-point-to-line-distance/test/out/line-resolute-bay.geojson +++ b/packages/turf-point-to-line-distance/test/out/line-resolute-bay.geojson @@ -32,207 +32,207 @@ "type": "Polygon", "coordinates": [ [ - [-7.734374999999999, 76.58896947044825], - [-8.565720507947528, 76.58459589000853], - [-9.394827295761186, 76.57148785002632], - [-10.219476075449865, 76.54968332729258], - [-11.037486004363705, 76.51924519552904], - [-11.84673287728093, 76.48026060483248], - [-12.645166127698092, 76.43284013407973], - [-13.430824314781718, 76.37711673635576], - [-14.20184882941389, 76.31324450168619], - [-14.956495617204236, 76.2413972645798], - [-15.693144784629656, 76.1617670860392], - [-16.410308023018505, 76.07456264076048], - [-17.106633850627155, 75.98000754025617], - [-17.78091073277376, 75.87833862169754], - [-18.432068191742072, 75.76980423050766], - [-19.059176060507465, 75.6546625223105], - [-19.661442066530345, 75.53317980691935], - [-20.23820795383663, 75.40562895380798], - [-20.788944363835387, 75.27228787510721], - [-21.31324469872945, 75.13343809876127], - [-21.81081818716753, 74.98936344117884], - [-22.281482361356233, 74.84034878562716], - [-22.725155139636392, 74.68667896981177], - [-23.141846689939516, 74.52863778361052], - [-23.531651228861485, 74.36650707580992], - [-23.89473888946148, 74.2005659669334], - [-24.23134776925473, 74.03109016384366], - [-24.54177624897226, 73.85835137072439], - [-24.82637565306844, 73.68261679027025], - [-25.08554330505635, 73.50414870840613], - [-25.319716014775356, 73.32320415557626], - [-25.529364020754848, 73.14003463755945], - [-25.714985398936903, 72.95488592883842], - [-25.87710093909102, 72.76799792174856], - [-26.016249482168575, 72.57960452492307], - [-26.13298370544275, 72.3899336049125], - [-26.22786633738183, 72.19920696526381], - [-26.301466780616792, 72.00764035777823], - [-26.354358118905267, 71.81544352111393], - [-26.387114482480417, 71.62282024234528], - [-26.40030874544185, 71.42996843752687], - [-26.39451052874422, 71.23708024772989], - [-26.370284482735656, 71.04434214741563], - [-26.32818882397663, 70.85193506238261], - [-26.268774102130145, 70.66003449486858], - [-26.192582173975108, 70.46881065370478], - [-26.100145362984772, 70.2784285877081], - [-25.991985784376972, 70.08904832075665], - [-25.86861481703755, 69.9008249872283], - [-25.730532705206485, 69.71390896669094], - [-25.578228274272597, 69.52844601691696], - [-25.412178746426935, 69.34457740445973], - [-25.23284964326189, 69.16244003217145], - [-25.04069476366529, 68.98216656316824], - [-24.836156226539764, 68.80388554085711], - [-24.61966456897227, 68.62772150473242], - [-24.391638891493066, 68.45379510173196], - [-24.152487042990312, 68.2822231930106], - [-23.902605838695827, 68.11311895604857], - [-23.642381305430064, 67.94659198206155], - [-23.37218894899185, 67.78274836872042], - [-23.092394039211445, 67.62169080822358], - [-22.80335190875219, 67.46351867079295], - [-22.505408262256058, 67.30832808368798], - [-22.198899492884177, 67.15621200585004], - [-21.884153003709763, 67.00726029830433], - [-21.561487531783296, 66.86155979045813], - [-21.231213473010975, 66.71919434244082], - [-20.893633206271847, 66.58024490363863], - [-20.54904141545152, 66.44478956757952], - [-20.197725408291483, 66.31290362332571], - [-19.839965431149245, 66.18465960353197], - [-19.47603497893564, 66.06012732932675], - [-19.106201099646402, 65.93937395217114], - [-18.73072469303663, 65.82246399284824], - [-18.349860803101453, 65.70945937773172], - [-17.96385890412679, 65.60041947247876], - [-17.572963180160126, 65.49540111328758], - [-17.177412797827383, 65.3944586358556], - [-16.77744217248646, 65.29764390216832], - [-16.373281227764707, 65.205006325245], - [-15.965155648575195, 65.11659289196024], - [-15.55328712774873, 65.03244818405646], - [-15.137893606453373, 64.95261439745575], - [-14.719189508603641, 64.87713135997429], - [-14.297385969487049, 64.8060365475368], - [-13.872691058857152, 64.73936509898316], - [-13.445309998760438, 64.67714982955293], - [-13.015445376379827, 64.61942124312901], - [-12.583297352190083, 64.56620754331533], - [-12.14906386373068, 64.5175346434181], - [-11.712940825311085, 64.47342617539529], - [-11.275122323969624, 64.43390349783279], - [-10.8358008120136, 64.3989857030009], - [-10.395167296472561, 64.36868962303974], - [-9.953411525800593, 64.34302983531603], - [-9.510722174166295, 64.32201866698973], - [-9.067287023671575, 64.3056661988227], - [-8.623293144842146, 64.2939802682576], - [-8.178927075733814, 64.28696647178896], - [-7.734375, 64.28462816664452], - [-7.289822924266181, 64.28696647178896], - [-6.845456855157856, 64.2939802682576], - [-6.401462976328421, 64.3056661988227], - [-5.958027825833712, 64.32201866698973], - [-5.515338474199408, 64.34302983531603], - [-5.0735827035274355, 64.36868962303974], - [-4.632949187986407, 64.3989857030009], - [-4.1936276760303715, 64.43390349783279], - [-3.755809174688923, 64.47342617539529], - [-3.319686136269315, 64.5175346434181], - [-2.885452647809921, 64.56620754331533], - [-2.453304623620177, 64.61942124312901], - [-2.023440001239565, 64.67714982955293], - [-1.5960589411428492, 64.73936509898316], - [-1.171364030512957, 64.8060365475368], - [-0.7495604913963594, 64.87713135997429], - [-0.33085639354664187, 64.95261439745573], - [0.08453712774872568, 65.03244818405646], - [0.4964056485751929, 65.11659289196024], - [0.904531227764706, 65.205006325245], - [1.308692172486462, 65.29764390216832], - [1.7086627978273798, 65.3944586358556], - [2.1042131801601265, 65.49540111328758], - [2.4951089041267913, 65.60041947247876], - [2.8811108031014516, 65.70945937773172], - [3.2619746930366276, 65.82246399284824], - [3.6374510996464045, 65.93937395217114], - [4.00728497893564, 66.06012732932675], - [4.371215431149242, 66.18465960353197], - [4.728975408291485, 66.31290362332571], - [5.080291415451518, 66.44478956757952], - [5.424883206271845, 66.58024490363863], - [5.762463473010976, 66.71919434244082], - [6.092737531783276, 66.86155979045813], - [6.41540300370976, 67.00726029830433], - [6.730149492884181, 67.15621200585002], - [7.036658262256069, 67.30832808368801], - [7.3346019087521945, 67.46351867079295], - [7.6236440392114275, 67.62169080822356], - [7.9034389489918535, 67.78274836872042], - [8.173631305430066, 67.94659198206155], - [8.433855838695827, 68.11311895604857], - [8.683737042990295, 68.2822231930106], - [8.922888891493065, 68.45379510173196], - [9.150914568972269, 68.62772150473242], - [9.367406226539766, 68.80388554085711], - [9.57194476366529, 68.98216656316824], - [9.76409964326188, 69.16244003217142], - [9.94342874642694, 69.34457740445973], - [10.109478274272595, 69.52844601691696], - [10.261782705206485, 69.71390896669094], - [10.39986481703757, 69.90082498722833], - [10.523235784376979, 70.08904832075665], - [10.63139536298477, 70.2784285877081], - [10.723832173975111, 70.46881065370478], - [10.800024102130147, 70.66003449486858], - [10.859438823976632, 70.85193506238261], - [10.901534482735663, 71.04434214741563], - [10.92576052874422, 71.23708024772989], - [10.931558745441855, 71.42996843752687], - [10.918364482480424, 71.62282024234528], - [10.885608118905262, 71.81544352111393], - [10.832716780616781, 72.00764035777821], - [10.759116337381815, 72.1992069652638], - [10.664233705442753, 72.3899336049125], - [10.547499482168583, 72.57960452492307], - [10.408350939091015, 72.76799792174856], - [10.246235398936895, 72.9548859288384], - [10.060614020754857, 73.14003463755945], - [9.850966014775356, 73.32320415557626], - [9.616793305056357, 73.50414870840613], - [9.35762565306844, 73.68261679027025], - [9.073026248972264, 73.85835137072436], - [8.762597769254748, 74.03109016384366], - [8.425988889461488, 74.2005659669334], - [8.062901228861481, 74.36650707580992], - [7.673096689939509, 74.52863778361052], - [7.25640513963641, 74.68667896981177], - [6.812732361356233, 74.84034878562716], - [6.342068187167544, 74.98936344117884], - [5.84449469872944, 75.13343809876127], - [5.320194363835403, 75.27228787510721], - [4.769457953836645, 75.40562895380798], - [4.192692066530346, 75.53317980691935], - [3.5904260605074683, 75.6546625223105], - [2.963318191742083, 75.76980423050766], - [2.3121607327737674, 75.87833862169751], - [1.6378838506271571, 75.98000754025617], - [0.941558023018506, 76.07456264076048], - [0.2243947846296636, 76.1617670860392], - [-0.5122543827957498, 76.2413972645798], - [-1.2669011705860918, 76.31324450168619], - [-2.03792568521828, 76.37711673635576], - [-2.8235838723019038, 76.43284013407973], - [-3.62201712271906, 76.48026060483248], - [-4.431263995636284, 76.51924519552904], - [-5.249273924550138, 76.54968332729258], - [-6.073922704238814, 76.57148785002632], - [-6.903029492052469, 76.58459589000853], - [-7.734374999999999, 76.58896947044825] + [-7.734374999999999, 76.58602051286941], + [-8.565144421331702, 76.581649963564], + [-9.39367789597315, 76.5685510004748], + [-10.217758869539182, 76.5467615511381], + [-11.03520915451126, 76.51634440809259], + [-11.843907086027288, 76.47738660965338], + [-12.641804490235188, 76.42999859411563], + [-13.426942142522716, 76.37431314739187], + [-14.19746344970851, 76.31048416829415], + [-14.95162615449696, 76.23868527888972], + [-15.687811928559064, 76.15910830950726], + [-16.404533788936927, 76.07196168903313], + [-17.100441337800245, 75.9774687711547], + [-17.77432388512998, 75.87586612627433], + [-18.425111565519206, 75.76740182706286], + [-19.051874602525142, 75.65233375320389], + [-19.653820906145185, 75.53092793797006], + [-20.23029221094424, 75.40345697604236], + [-20.780758974606012, 75.27019850859514], + [-21.30481426012385, 75.13143379826914], + [-21.802166820700865, 74.98744640336622], + [-22.272633596069, 74.83852095751867], + [-22.716131813804385, 74.68494205828752], + [-23.13267087070847, 74.52699326567465], + [-23.522344148726436, 74.36495620941619], + [-23.88532089831963, 74.1991098021686], + [-24.221838300637035, 74.02972955429269], + [-24.532193798994204, 73.85708698486327], + [-24.81673777062464, 73.68144912275741], + [-25.075866591808243, 73.50307809116204], + [-25.310016133536717, 73.32223076856289], + [-25.51965571095902, 73.13915851918941], + [-25.705282497964156, 72.9541069859596], + [-25.867416408339263, 72.76731593916529], + [-26.006595436860078, 72.57901917442733], + [-26.123371447270163, 72.38944445380996], + [-26.21830638920464, 72.19881348438844], + [-26.291968922522372, 72.00734192899687], + [-26.344931425046383, 71.81523944432878], + [-26.377767358189985, 71.6227097420068], + [-26.3910489642081, 71.42995066867377], + [-26.385345268702284, 71.23715430157571], + [-26.36122036239749, 71.04450705650301], + [-26.31923193697851, 70.85218980532848], + [-26.25993005082756, 70.66037800072363], + [-26.183856101757662, 70.4692418059512], + [-26.091541985221046, 70.27894622791919], + [-25.9835094179309, 70.08965125194186], + [-25.860269408323543, 69.90151197688661], + [-25.72232185677262, 69.71467874959397], + [-25.57015526991903, 69.52929729764357], + [-25.40424657488068, 69.34550885970135], + [-25.225061020440684, 69.16345031282765], + [-25.033052153572207, 68.98325429625004], + [-24.82866186083601, 68.80504933121458], + [-24.612320465281737, 68.62895993662265], + [-24.384446870494035, 68.4551067402413], + [-24.145448744352457, 68.28360658534494], + [-23.895722735921858, 68.11457263270424], + [-23.63565471966039, 67.94811445788801], + [-23.3656200618311, 67.7843381438856], + [-23.085983904633974, 67.62334636909146], + [-22.797101464142315, 67.46523849072247], + [-22.49931833863697, 67.31011062376118], + [-22.192970824387114, 67.15805571553719], + [-21.878386236333377, 67.00916361607294], + [-21.555883231490167, 66.86352114433164], + [-21.225772133206036, 66.7212121505131], + [-20.888355254705555, 66.58231757454918], + [-20.543927220587435, 66.44691550095408], + [-20.192775285176197, 66.31508121018659], + [-19.835179646820013, 66.18688722668173], + [-19.471413757398977, 66.06240336370901], + [-19.101744626458718, 65.94169676521116], + [-18.72643311951596, 65.82483194477652], + [-18.345734250197395, 65.71187082189282], + [-17.959897465973864, 65.60287275562763], + [-17.569166927338056, 65.4978945758756], + [-17.173781780350154, 65.39699061230765], + [-16.773976422540343, 65.30021272115302], + [-16.36998076221399, 65.20761030993899], + [-15.962020471253071, 65.11923036030801], + [-15.550317231549254, 65.03511744902674], + [-15.135088975239386, 64.95531376729525], + [-14.71655011894423, 64.87985913845965], + [-14.29491179223713, 64.80879103422565], + [-13.870382060590558, 64.7421445894642], + [-13.443166143067252, 64.67995261569638], + [-13.01346662503737, 64.62224561333706], + [-12.581483666216398, 64.56905178277314], + [-12.14741520432847, 64.52039703434588], + [-11.711457154709219, 64.476304997301], + [-11.273803606168695, 64.4367970277661], + [-10.834647013441227, 64.40189221580822], + [-10.394178386553552, 64.37160739162026], + [-9.952587477446391, 64.34595713087894], + [-9.510062964187535, 64.32495375931235], + [-9.066792633117016, 64.30860735650953], + [-8.622963559266646, 64.29692575900012], + [-8.178762285397463, 64.28991456262607], + [-7.734375, 64.28757712422336], + [-7.289987714602533, 64.28991456262607], + [-6.845786440733357, 64.29692575900012], + [-6.40195736688298, 64.30860735650953], + [-5.958687035812476, 64.32495375931234], + [-5.516162522553611, 64.34595713087894], + [-5.074571613446442, 64.37160739162026], + [-4.634102986558781, 64.40189221580822], + [-4.1949463938313, 64.4367970277661], + [-3.7572928452907877, 64.476304997301], + [-3.321334795671528, 64.52039703434588], + [-2.8872663337836033, 64.56905178277314], + [-2.455283374962631, 64.62224561333706], + [-2.0255838569327484, 64.67995261569638], + [-1.5983679394094443, 64.7421445894642], + [-1.173838207762878, 64.80879103422565], + [-0.7521998810557695, 64.87985913845965], + [-0.33366102476061926, 64.95531376729525], + [0.08156723154925342, 65.03511744902674], + [0.49327047125306617, 65.11923036030801], + [0.9012307622139913, 65.20761030993899], + [1.305226422540347, 65.30021272115302], + [1.7050317803501491, 65.39699061230765], + [2.100416927338057, 65.4978945758756], + [2.4911474659738655, 65.60287275562763], + [2.876984250197395, 65.71187082189282], + [3.2576831195159492, 65.82483194477652], + [3.6329946264587196, 65.94169676521116], + [4.002663757398979, 66.06240336370901], + [4.366429646820011, 66.18688722668173], + [4.7240252851761975, 66.31508121018659], + [5.075177220587435, 66.44691550095408], + [5.419605254705557, 66.58231757454918], + [5.757022133206036, 66.7212121505131], + [6.087133231490147, 66.86352114433163], + [6.4096362363333785, 67.00916361607294], + [6.7242208243871175, 67.15805571553719], + [7.030568338636973, 67.31011062376118], + [7.32835146414232, 67.46523849072247], + [7.617233904633974, 67.62334636909146], + [7.896870061831097, 67.7843381438856], + [8.166904719660394, 67.94811445788801], + [8.42697273592186, 68.11457263270424], + [8.676698744352455, 68.28360658534494], + [8.915696870494015, 68.45510674024129], + [9.143570465281739, 68.62895993662265], + [9.359911860836013, 68.80504933121458], + [9.564302153572209, 68.98325429625004], + [9.756311020440668, 69.16345031282762], + [9.93549657488068, 69.34550885970135], + [10.101405269919033, 69.52929729764357], + [10.253571856772629, 69.71467874959399], + [10.391519408323544, 69.90151197688661], + [10.514759417930899, 70.08965125194186], + [10.622791985221047, 70.27894622791919], + [10.715106101757662, 70.4692418059512], + [10.791180050827563, 70.66037800072363], + [10.850481936978513, 70.85218980532848], + [10.892470362397502, 71.04450705650301], + [10.916595268702286, 71.23715430157571], + [10.922298964208107, 71.42995066867377], + [10.909017358189985, 71.6227097420068], + [10.87618142504638, 71.81523944432878], + [10.823218922522384, 72.00734192899687], + [10.749556389204642, 72.19881348438844], + [10.654621447270172, 72.38944445380996], + [10.537845436860067, 72.5790191744273], + [10.398666408339263, 72.76731593916529], + [10.236532497964165, 72.9541069859596], + [10.050905710959007, 73.13915851918938], + [9.841266133536719, 73.32223076856289], + [9.607116591808248, 73.50307809116204], + [9.34798777062464, 73.68144912275741], + [9.063443798994196, 73.85708698486324], + [8.753088300637033, 74.02972955429266], + [8.416570898319637, 74.1991098021686], + [8.05359414872643, 74.36495620941619], + [7.663920870708464, 74.52699326567465], + [7.247381813804389, 74.68494205828752], + [6.803883596069004, 74.83852095751867], + [6.333416820700874, 74.98744640336622], + [5.836064260123846, 75.13143379826914], + [5.3120089746060275, 75.27019850859514], + [4.7615422109442616, 75.40345697604236], + [4.185070906145185, 75.53092793797006], + [3.5831246025251478, 75.65233375320389], + [2.9563615655192175, 75.76740182706286], + [2.3055738851299945, 75.87586612627433], + [1.6316913378002462, 75.9774687711547], + [0.9357837889369279, 76.07196168903313], + [0.21906192855907122, 76.15910830950726], + [-0.5171238455030263, 76.23868527888972], + [-1.2712865502914739, 76.31048416829415], + [-2.041807857477285, 76.37431314739187], + [-2.8269455097648057, 76.42999859411563], + [-3.6248429139727043, 76.47738660965338], + [-4.433540845488731, 76.51634440809256], + [-5.2509911304608226, 76.5467615511381], + [-6.075072104026851, 76.5685510004748], + [-6.903605578668295, 76.581649963564], + [-7.734374999999999, 76.58602051286941] ] ] } diff --git a/packages/turf-point-to-line-distance/test/out/line1.geojson b/packages/turf-point-to-line-distance/test/out/line1.geojson index a72646bf9..e42a955a8 100644 --- a/packages/turf-point-to-line-distance/test/out/line1.geojson +++ b/packages/turf-point-to-line-distance/test/out/line1.geojson @@ -39,207 +39,207 @@ "type": "Polygon", "coordinates": [ [ - [-47.08740234375, 32.607552757551154], - [-47.10004279529611, 32.607384853786485], - [-47.11267063079758, 32.60688131008067], - [-47.125273247229835, 32.606042629025275], - [-47.13783806759333, 32.60486964769641], - [-47.15035255388805, 32.60336353679045], - [-47.1628042200425, 32.60152579941582], - [-47.175180644782266, 32.599358269541646], - [-47.18746948442292, 32.596863110105645], - [-47.19965848557271, 32.594042810783066], - [-47.211735497730245, 32.59090018541944], - [-47.22368848576261, 32.58743836913025], - [-47.23550554224979, 32.58366081507059], - [-47.247174899681085, 32.579571290878874], - [-47.258684942489836, 32.5751738747986], - [-47.27002421891281, 32.570472951482586], - [-47.28118145266096, 32.565473207484615], - [-47.29214555438853, 32.56017962644375], - [-47.30290563294781, 32.55459748396667], - [-47.3134510064173, 32.54873234221409], - [-47.32377121289113, 32.542590044197325], - [-47.33385602101826, 32.5361767077917], - [-47.34369544028022, 32.529498719473224], - [-47.35327973099639, 32.52256272778623], - [-47.36259941404675, 32.51537563654874], - [-47.37164528030169, 32.50794459780371], - [-47.38040839974975, 32.50027700452373], - [-47.38888013031382, 32.49238048307762], - [-47.39705212634748, 32.48426288546703], - [-47.40491634680305, 32.475932281341954], - [-47.412465063063756, 32.46739694980377], - [-47.41969086643281, 32.458665371004905], - [-47.42658667527254, 32.44974621755442], - [-47.433145741787406, 32.44064834573878], - [-47.43936165844511, 32.43138078656739], - [-47.445228364030335, 32.421952736652585], - [-47.450740149326585, 32.41237354893395], - [-47.4558916624216, 32.40265272325683], - [-47.46067791363254, 32.39279989681508], - [-47.46509428004764, 32.38282483446831], - [-47.469136509681384, 32.37273741894368], - [-47.47280072524092, 32.36254764093269], - [-47.47608342750157, 32.352265589093165], - [-47.478981498290196, 32.34190143996702], - [-47.481492203075256, 32.33146544782402], - [-47.483613193163045, 32.32096793444212], - [-47.485342507499986, 32.31041927883478], - [-47.48667857408129, 32.29982990693572], - [-47.48762021096667, 32.28921028125157], - [-47.488166626904324, 32.27857089049278], - [-47.48831742156476, 32.26792223919314], - [-47.488072585386284, 32.25727483732836], - [-47.48743249903458, 32.24663918994387], - [-47.48639793247912, 32.23602578680198], - [-47.4849700436894, 32.225445092058806], - [-47.483150376954335, 32.21490753398054], - [-47.48094086082884, 32.20442349470959], - [-47.47834380571136, 32.19400330008974], - [-47.47536190105696, 32.18365720956086], - [-47.4719982122306, 32.17339540613199], - [-47.46825617700552, 32.16322798644281], - [-47.464139601712205, 32.15316495092261], - [-47.45965265704316, 32.14321619405611], - [-47.454799873519626, 32.13339149476495], - [-47.44958613662602, 32.123700506913984], - [-47.444016681618464, 32.114152749950996], - [-47.438097088013926, 32.10475759968847], - [-47.43183327376663, 32.09552427923559], - [-47.4252314891386, 32.08646185008917], - [-47.41829831027164, 32.07757920339088], - [-47.411040632467625, 32.06888505135919], - [-47.40346566318502, 32.060387918903366], - [-47.39558091475882, 32.05209613542702], - [-47.38739419685198, 32.04401782682853], - [-47.378913608645945, 32.03616090770529], - [-47.370147530778596, 32.02853307376859], - [-47.36110461703744, 32.02114179447594], - [-47.351793785816675, 32.01399430588688], - [-47.34222421134609, 32.0070976037489], - [-47.33240531470075, 32.00045843681896], - [-47.32234675459947, 31.994083300426666], - [-47.31205841800134, 31.987978430284613], - [-47.301550410508504, 31.982149796550793], - [-47.29083304658433, 31.976603098148587], - [-47.279916839595735, 31.971343757348823], - [-47.26881249168865, 31.966376914618607], - [-47.25753088350543, 31.96170742374114], - [-47.24608306375366, 31.95733984721081], - [-47.23448023863495, 31.953278451907174], - [-47.222733761143346, 31.949527205051567], - [-47.21085512024209, 31.946089770449706], - [-47.19885592992836, 31.942969505023378], - [-47.1867479181949, 31.940169455634017], - [-47.17454291589806, 31.937692356200937], - [-47.162252845541296, 31.935540625116506], - [-47.14988970998381, 31.93371636296032], - [-47.13746558108327, 31.932221350514443], - [-47.12499258828221, 31.931057047081236], - [-47.112482907147616, 31.930224589105027], - [-47.099948747872574, 31.929724789099087], - [-47.08740234375, 31.929558134878377], - [-47.07485593962742, 31.929724789099087], - [-47.06232178035238, 31.930224589105027], - [-47.04981209921778, 31.931057047081236], - [-47.03733910641674, 31.932221350514443], - [-47.02491497751618, 31.93371636296032], - [-47.0125518419587, 31.935540625116506], - [-47.000261771601934, 31.937692356200937], - [-46.988056769305096, 31.940169455634017], - [-46.975948757571636, 31.942969505023378], - [-46.963949567257906, 31.946089770449706], - [-46.95207092635665, 31.949527205051567], - [-46.94032444886504, 31.953278451907174], - [-46.928721623746334, 31.95733984721081], - [-46.91727380399456, 31.96170742374114], - [-46.90599219581134, 31.966376914618607], - [-46.89488784790426, 31.971343757348823], - [-46.88397164091566, 31.976603098148587], - [-46.87325427699149, 31.982149796550793], - [-46.86274626949865, 31.987978430284613], - [-46.85245793290052, 31.994083300426666], - [-46.84239937279924, 32.00045843681896], - [-46.8325804761539, 32.0070976037489], - [-46.82301090168332, 32.01399430588688], - [-46.81370007046255, 32.02114179447594], - [-46.8046571567214, 32.02853307376859], - [-46.79589107885405, 32.03616090770529], - [-46.787410490648014, 32.04401782682853], - [-46.779223772741176, 32.05209613542702], - [-46.771339024314976, 32.060387918903366], - [-46.76376405503237, 32.06888505135919], - [-46.756506377228355, 32.07757920339088], - [-46.74957319836139, 32.08646185008917], - [-46.74297141373337, 32.09552427923559], - [-46.73670759948607, 32.10475759968847], - [-46.73078800588153, 32.114152749950996], - [-46.725218550873976, 32.123700506913984], - [-46.72000481398037, 32.13339149476495], - [-46.715152030456835, 32.14321619405611], - [-46.71066508578779, 32.15316495092261], - [-46.70654851049447, 32.16322798644281], - [-46.70280647526939, 32.17339540613199], - [-46.699442786443036, 32.18365720956086], - [-46.69646088178863, 32.19400330008974], - [-46.693863826671155, 32.20442349470959], - [-46.691654310545665, 32.21490753398054], - [-46.68983464381059, 32.225445092058806], - [-46.68840675502087, 32.23602578680198], - [-46.68737218846541, 32.24663918994387], - [-46.686732102113716, 32.25727483732836], - [-46.686487265935234, 32.26792223919314], - [-46.68663806059567, 32.27857089049278], - [-46.687184476533325, 32.28921028125157], - [-46.688126113418704, 32.29982990693572], - [-46.68946218000001, 32.31041927883478], - [-46.69119149433695, 32.32096793444212], - [-46.69331248442474, 32.33146544782402], - [-46.6958231892098, 32.34190143996702], - [-46.69872125999842, 32.352265589093165], - [-46.70200396225907, 32.36254764093269], - [-46.70566817781861, 32.37273741894368], - [-46.709710407452356, 32.38282483446831], - [-46.714126773867456, 32.39279989681508], - [-46.71891302507839, 32.40265272325683], - [-46.72406453817341, 32.41237354893395], - [-46.72957632346966, 32.421952736652585], - [-46.735443029054885, 32.43138078656739], - [-46.74165894571259, 32.44064834573878], - [-46.748218012227454, 32.44974621755442], - [-46.75511382106719, 32.458665371004905], - [-46.76233962443624, 32.46739694980377], - [-46.769888340696944, 32.475932281341954], - [-46.77775256115251, 32.48426288546703], - [-46.78592455718617, 32.49238048307762], - [-46.794396287750246, 32.50027700452373], - [-46.8031594071983, 32.50794459780371], - [-46.812205273453245, 32.51537563654874], - [-46.8215249565036, 32.52256272778623], - [-46.831109247219786, 32.529498719473224], - [-46.84094866648173, 32.5361767077917], - [-46.85103347460886, 32.542590044197325], - [-46.86135368108269, 32.54873234221409], - [-46.87189905455218, 32.55459748396667], - [-46.88265913311146, 32.56017962644375], - [-46.89362323483903, 32.565473207484615], - [-46.90478046858718, 32.570472951482586], - [-46.91611974501016, 32.5751738747986], - [-46.92762978781891, 32.579571290878874], - [-46.9392991452502, 32.58366081507059], - [-46.951116201737385, 32.58743836913025], - [-46.96306918976975, 32.59090018541944], - [-46.97514620192728, 32.594042810783066], - [-46.98733520307707, 32.596863110105645], - [-46.99962404271773, 32.599358269541646], - [-47.01200046745749, 32.60152579941582], - [-47.024452133611945, 32.60336353679045], - [-47.036966619906664, 32.60486964769641], - [-47.04953144027016, 32.606042629025275], - [-47.06213405670242, 32.60688131008067], - [-47.07476189220389, 32.607384853786485], - [-47.08740234375, 32.607552757551154] + [-47.08740234375, 32.64042143641672], + [-47.10127346855645, 32.64023718553941], + [-47.1151307337655, 32.63968461701659], + [-47.12896029414532, 32.63876428298469], + [-47.14274833317819, 32.63747710303488], + [-47.15648107737497, 32.63582436325957], + [-47.170144810538716, 32.63380771491907], + [-47.183725887960335, 32.63142917273005], + [-47.1972107505298, 32.62869111277777], + [-47.21058593874617, 32.6255962700546], + [-47.22383810661004, 32.62214773562774], + [-47.2369540353822, 32.61834895343951], + [-47.24992064719261, 32.614203716743894], + [-47.2627250184837, 32.60971616418371], + [-47.27535439327286, 32.60489077551288], + [-47.28779619621873, 32.5997323669689], + [-47.30003804547644, 32.594246086300906], + [-47.31206776532763, 32.58843740745918], + [-47.32387339857072, 32.582312124952296], + [-47.33544321865799, 32.57587634787837], + [-47.34676574156614, 32.56913649363756], + [-47.35782973738728, 32.562099281332834], + [-47.36862424162818, 32.55477172486682], + [-47.37913856620556, 32.54716112574254], + [-47.389362310126124, 32.53927506557631], + [-47.39928536984024, 32.53112139833146], + [-47.40889794925877, 32.522708242281404], + [-47.418190569423096, 32.51404397171159], + [-47.42715407781894, 32.5051372083692], + [-47.435779657324865, 32.495996812670704], + [-47.44405883478733, 32.486631874676576], + [-47.4519834892142, 32.47705170484363], + [-47.45954585957953, 32.467265824565054], + [-47.46673855223298, 32.45728395650843], + [-47.47355454790741, 32.44711601476262], + [-47.47998720831924, 32.43677209480404], + [-47.48603028235637, 32.426262463293305], + [-47.491677911849166, 32.41559754771321], + [-47.49692463692049, 32.40478792585926], + [-47.501765400911324, 32.3938443151939], + [-47.50619555487912, 32.382777562075724], + [-47.51021086166647, 32.37159863087521], + [-47.51380749953822, 32.36031859298811], + [-47.516982065385704, 32.34894861575826], + [-47.51973157749738, 32.33749995132124], + [-47.52205347789533, 32.32598392538018], + [-47.523945634238004, 32.314411925925484], + [-47.52540634128973, 32.302795391909946], + [-47.52643432195813, 32.291145801890494], + [-47.527028727901055, 32.279474662648305], + [-47.527189139705015, 32.267793497798536], + [-47.52691556663752, 32.25611383640092], + [-47.52620844597631, 32.24444720158274], + [-47.52506864191862, 32.232805099184986], + [-47.52349744407429, 32.221199006443236], + [-47.52149656554652, 32.20964036071381], + [-47.519068140605015, 32.19814054825641], + [-47.51621472195602, 32.18671089308372], + [-47.51293927761438, 32.175362645888825], + [-47.509245187383236, 32.1641069730608], + [-47.50513623894676, 32.15295494579877], + [-47.50061662358228, 32.141917529334776], + [-47.49569093149786, 32.13100557227531], + [-47.490364146802094, 32.120229796071406], + [-47.48464164211274, 32.10960078462706], + [-47.47852917281149, 32.099128974055326], + [-47.47203287095196, 32.08882464259141], + [-47.465159238828626, 32.0786979006721], + [-47.4579151422142, 32.0687586811899], + [-47.45030780327351, 32.05901672993129], + [-47.44234479316204, 32.049481596206924], + [-47.43403402431709, 32.040162623682534], + [-47.425383742450315, 32.03106894141818], + [-47.41640251825003, 32.022209455124106], + [-47.40709923880201, 32.01359283864043], + [-47.39748309873765, 32.00522752564826], + [-47.38756359111834, 31.997121701619253], + [-47.37735049806526, 31.989283296010594], + [-47.366853881143726, 31.981719974712057], + [-47.35608407151116, 31.974439132751378], + [-47.345051659838354, 31.967447887264438], + [-47.3337674860131, 31.960753070735862], + [-47.32224262863601, 31.95436122451588], + [-47.310488394317794, 31.948278592618774], + [-47.29851630678787, 31.942511115808177], + [-47.28633809582377, 31.937064425974036], + [-47.27396568601127, 31.931943840805847], + [-47.26141118534481, 31.927154358766767], + [-47.24868687367816, 31.92270065437247], + [-47.23580519103519, 31.918587073778745], + [-47.22277872579048, 31.914817630681487], + [-47.209620202729816, 31.911396002532292], + [-47.196342471000484, 31.908325527072844], + [-47.18295849196127, 31.905609199190867], + [-47.16948132694214, 31.903249668100138], + [-47.155924124923665, 31.901249234846965], + [-47.14230011014614, 31.899609850144977], + [-47.12862256965839, 31.898333112540147], + [-47.11490484081644, 31.897420266907393], + [-47.10116029874187, 31.896872203279983], + [-47.08740234375, 31.896689456012815], + [-47.073644388758126, 31.896872203279983], + [-47.05989984668355, 31.897420266907393], + [-47.0461821178416, 31.898333112540147], + [-47.032504577353855, 31.899609850144977], + [-47.01888056257633, 31.901249234846965], + [-47.00532336055785, 31.903249668100138], + [-46.99184619553872, 31.905609199190867], + [-46.97846221649951, 31.908325527072844], + [-46.96518448477018, 31.911396002532292], + [-46.952025961709516, 31.914817630681487], + [-46.9389994964648, 31.918587073778745], + [-46.92611781382183, 31.92270065437247], + [-46.91339350215518, 31.927154358766767], + [-46.90083900148872, 31.931943840805847], + [-46.88846659167622, 31.937064425974036], + [-46.87628838071213, 31.942511115808177], + [-46.864316293182206, 31.948278592618774], + [-46.85256205886398, 31.95436122451588], + [-46.84103720148689, 31.960753070735862], + [-46.82975302766164, 31.967447887264438], + [-46.81872061598883, 31.974439132751378], + [-46.80795080635627, 31.981719974712057], + [-46.79745418943473, 31.989283296010594], + [-46.787241096381656, 31.99712170161924], + [-46.77732158876234, 32.00522752564826], + [-46.76770544869798, 32.01359283864043], + [-46.758402169249976, 32.022209455124106], + [-46.74942094504968, 32.03106894141818], + [-46.7407706631829, 32.040162623682534], + [-46.73245989433795, 32.049481596206924], + [-46.72449688422648, 32.05901672993129], + [-46.716889545285795, 32.0687586811899], + [-46.70964544867137, 32.0786979006721], + [-46.70277181654803, 32.08882464259141], + [-46.696275514688516, 32.099128974055326], + [-46.690163045387266, 32.10960078462706], + [-46.6844405406979, 32.120229796071406], + [-46.67911375600213, 32.13100557227531], + [-46.67418806391771, 32.141917529334776], + [-46.66966844855323, 32.15295494579877], + [-46.66555950011676, 32.1641069730608], + [-46.661865409885614, 32.175362645888825], + [-46.658589965543975, 32.18671089308372], + [-46.65573654689498, 32.19814054825641], + [-46.65330812195347, 32.20964036071381], + [-46.651307243425705, 32.221199006443236], + [-46.64973604558137, 32.232805099184986], + [-46.64859624152369, 32.24444720158274], + [-46.64788912086248, 32.25611383640092], + [-46.64761554779498, 32.267793497798536], + [-46.64777595959894, 32.279474662648305], + [-46.648370365541865, 32.291145801890494], + [-46.64939834621026, 32.302795391909946], + [-46.65085905326199, 32.314411925925484], + [-46.652751209604666, 32.32598392538018], + [-46.65507311000261, 32.33749995132124], + [-46.65782262211429, 32.34894861575826], + [-46.660997187961776, 32.36031859298811], + [-46.66459382583352, 32.37159863087521], + [-46.66860913262087, 32.382777562075724], + [-46.67303928658867, 32.3938443151939], + [-46.6778800505795, 32.40478792585926], + [-46.68312677565083, 32.41559754771321], + [-46.688774405143626, 32.426262463293305], + [-46.694817479180756, 32.43677209480404], + [-46.70125013959258, 32.44711601476262], + [-46.70806613526701, 32.45728395650843], + [-46.71525882792047, 32.467265824565054], + [-46.72282119828579, 32.47705170484363], + [-46.730745852712666, 32.486631874676576], + [-46.73902503017513, 32.495996812670704], + [-46.74765060968105, 32.5051372083692], + [-46.7566141180769, 32.51404397171159], + [-46.76590673824122, 32.522708242281404], + [-46.77551931765975, 32.53112139833146], + [-46.78544237737387, 32.53927506557632], + [-46.79566612129443, 32.54716112574254], + [-46.80618044587181, 32.55477172486682], + [-46.8169749501127, 32.562099281332834], + [-46.828038945933855, 32.56913649363756], + [-46.839361468842, 32.57587634787837], + [-46.850931288929274, 32.582312124952296], + [-46.86273692217236, 32.58843740745918], + [-46.87476664202355, 32.594246086300906], + [-46.887008491281264, 32.5997323669689], + [-46.89945029422713, 32.60489077551288], + [-46.91207966901629, 32.60971616418371], + [-46.92488404030738, 32.614203716743894], + [-46.937850652117795, 32.61834895343951], + [-46.950966580889954, 32.62214773562774], + [-46.96421874875382, 32.6255962700546], + [-46.977593936970194, 32.62869111277777], + [-46.99107879953966, 32.63142917273005], + [-47.004659876961284, 32.63380771491907], + [-47.01832361012502, 32.63582436325957], + [-47.0320563543218, 32.63747710303488], + [-47.04584439335467, 32.63876428298469], + [-47.059673953734496, 32.63968461701659], + [-47.07353121894354, 32.64023718553941], + [-47.08740234375, 32.64042143641672] ] ] } diff --git a/packages/turf-point-to-line-distance/test/out/line2.geojson b/packages/turf-point-to-line-distance/test/out/line2.geojson index 9a6873c76..b29276c9b 100644 --- a/packages/turf-point-to-line-distance/test/out/line2.geojson +++ b/packages/turf-point-to-line-distance/test/out/line2.geojson @@ -32,207 +32,207 @@ "type": "Polygon", "coordinates": [ [ - [-0.54931640625, 2.4379125045090944], - [-0.6024680811718864, 2.4370776021100875], - [-0.6555671499469493, 2.434573721965201], - [-0.7085610593959559, 2.430403344391717], - [-0.7613973622143863, 2.424570600455717], - [-0.8140237697587477, 2.417081267781545], - [-0.866388204651997, 2.4079427646921445], - [-0.9184388531483708, 2.397164142687321], - [-0.970124217198431, 2.384756077268992], - [-1.0213931661557571, 2.370730857124428], - [-1.0721949880674704, 2.3551023716804385], - [-1.1224794404916256, 2.337886097043359], - [-1.1721968007854822, 2.3190990803415485], - [-1.2212979158097326, 2.298759922488963], - [-1.269734250994938, 2.276888759390121], - [-1.3174579387176804, 2.2535072416085202], - [-1.3644218259352834, 2.228638512522269], - [-1.4105795210293786, 2.202307184992278], - [-1.4558854398100847, 2.1745393165699713], - [-1.500294850634117, 2.1453623832729596], - [-1.5437639185917544, 2.114805251958577], - [-1.5862497487192546, 2.082898151326555], - [-1.6277104281949808, 2.04967264158345], - [-1.6681050674792408, 2.015161582802671], - [-1.7073938403595912, 1.9793991020151571], - [-1.7455380228650963, 1.9424205590668708], - [-1.7825000310148233, 1.9042625112803346], - [-1.818243457367611, 1.864962676958419], - [-1.8527331063419108, 1.8245598977695254], - [-1.8859350282762557, 1.78309410005416], - [-1.9178165522026267, 1.7406062550937038], - [-1.9483463173067053, 1.6971383383829115], - [-1.977494303050669, 1.6527332879483547], - [-2.0052318579358133, 1.6074349617556527], - [-2.031531726883911, 1.5612880942488854], - [-2.0563680772177406, 1.5143382520661188], - [-2.0797165232227717, 1.4666317889754177], - [-2.101554149273413, 1.4182158000761445], - [-2.1218595315086817, 1.3691380753107218], - [-2.1406127580435057, 1.319447052332355], - [-2.1577954477031747, 1.269191768774503], - [-2.1733907672697352, 1.2184218139681504], - [-2.1873834472303373, 1.1671872801531338], - [-2.199759796018695, 1.1155387132299794], - [-2.21050771274196, 1.0635270630988625], - [-2.219616698386366, 1.011203633632418], - [-2.2270778654960517, 0.9586200323292603], - [-2.2328839463204524, 0.9058281196951382], - [-2.237029299426619, 0.8528799583987133], - [-2.239509914773756, 0.7998277622490026], - [-2.2403234172481623, 0.7467238450415469], - [-2.239469068657671, 0.6936205693203679], - [-2.236947768185504, 0.640570295102784], - [-2.232762051304362, 0.5876253286141169], - [-2.226916087152384, 0.5348378710792969], - [-2.2194156743734683, 0.4822599676183073], - [-2.210268235425294, 0.42994345629235675], - [-2.1994828093592407, 0.3779399173475685], - [-2.1870700430772785, 0.326300622702901], - [-2.173042181071763, 0.27507648572886534], - [-2.1574130536550222, 0.2243180113634987], - [-2.1401980636865137, 0.17407524661189558], - [-2.1214141718063315, 0.1243977314754103], - [-2.1010798801848076, 0.07533445035646162], - [-2.0792152147990253, 0.026933783984650184], - [-2.0558417062481027, -0.020756538090360082], - [-2.0309823691202302, -0.06768948439401304], - [-2.004661679925627, -0.11381876776520426], - [-1.9769055536107423, -0.1590988908932702], - [-1.9477413186703028, -0.2034851911094607], - [-1.9171976908750947, -0.2469338843891599], - [-1.8853047456346876, -0.2894021085215684], - [-1.8520938890157033, -0.3308479654040562], - [-1.8175978274376363, -0.3712305624189564], - [-1.7818505360696901, -0.4105100528511453], - [-1.7448872259535837, -0.4486476753054216], - [-1.7067443098788158, -0.48560579208335736], - [-1.6674593670384001, -0.5213479264800894], - [-1.627071106494681, -0.5558387989622965], - [-1.5856193294864103, -0.589044362189471], - [-1.543144890609887, -0.6209318348415435], - [-1.4996896579085575, -0.6514697342168717], - [-1.4552964719070818, -0.6806279075656702], - [-1.4100091036274884, -0.7083775621250551], - [-1.3638722116266215, -0.7346912938230417], - [-1.3169312980956502, -0.7595431146200674], - [-1.269232664063968, -0.7829084784578952], - [-1.2208233637512975, -0.8047643057871081], - [-1.1717511581132978, -0.8250890066458043], - [-1.122064467627401, -0.8438625022635657], - [-1.0718123243669102, -0.8610662451663147], - [-1.0210443234127835, -0.8766832377592036], - [-0.9698105736536442, -0.8906980493663565], - [-0.918161648025814, -0.9030968317079119], - [-0.8661485332461469, -0.9138673327965587], - [-0.8138225790914895, -0.9229989092375023], - [-0.7612354472794202, -0.9304825369176022], - [-0.7084390600057546, -0.9363108200712463], - [-0.6554855481949545, -0.9404779987123931], - [-0.6024271995201526, -0.9429799544240963], - [-0.5493164062500002, -0.943814214498735], - [-0.49620561297984705, -0.9429799544240963], - [-0.44314726430504586, -0.9404779987123931], - [-0.39019375249424504, -0.9363108200712463], - [-0.33739736522058117, -0.9304825369176023], - [-0.2848102334085111, -0.9229989092375024], - [-0.23248427925385282, -0.9138673327965585], - [-0.18047116447418723, -0.9030968317079123], - [-0.12882223884635546, -0.8906980493663565], - [-0.07758848908721784, -0.8766832377592041], - [-0.026820488133089387, -0.8610662451663147], - [0.023431655127400253, -0.8438625022635661], - [0.07311834561329729, -0.8250890066458045], - [0.1221905512512972, -0.8047643057871084], - [0.1705998515639674, -0.7829084784578955], - [0.21829848559564907, -0.7595431146200677], - [0.2652393991266209, -0.7346912938230419], - [0.3113762911274874, -0.7083775621250554], - [0.3566636594070814, -0.6806279075656703], - [0.4010568454085569, -0.651469734216872], - [0.4445120781098864, -0.6209318348415437], - [0.48698651698641043, -0.5890443621894709], - [0.5284382939946805, -0.5558387989622966], - [0.5688265545384, -0.5213479264800898], - [0.6081114973788152, -0.4856057920833575], - [0.6462544134535833, -0.448647675305422], - [0.6832177235696894, -0.4105100528511463], - [0.7189650149376363, -0.3712305624189564], - [0.7534610765157032, -0.3308479654040562], - [0.7866719331346874, -0.2894021085215688], - [0.8185648783750944, -0.24693388438916028], - [0.8491085061703024, -0.2034851911094611], - [0.8782727411107418, -0.15909889089327137], - [0.9060288674256267, -0.11381876776520466], - [0.9323495566202291, -0.06768948439401472], - [0.9572088937481023, -0.02075653809036028], - [0.9805824022990252, 0.026933783984649882], - [1.0024470676848078, 0.07533445035646191], - [1.0227813593063315, 0.12439773147541022], - [1.0415652511865132, 0.17407524661189416], - [1.0587802411550222, 0.2243180113634984], - [1.074409368571763, 0.2750764857288646], - [1.0884372305772783, 0.3263006227029003], - [1.1008499968592407, 0.37793991734756704], - [1.1116354229252934, 0.4299434562923548], - [1.1207828618734683, 0.4822599676183073], - [1.128283274652384, 0.5348378710792979], - [1.1341292388043618, 0.5876253286141175], - [1.1383149556855034, 0.6405702951027824], - [1.140836256157671, 0.6936205693203678], - [1.141690604748162, 0.7467238450415465], - [1.1408771022737556, 0.7998277622490033], - [1.1383964869266194, 0.8528799583987136], - [1.1342511338204528, 0.9058281196951369], - [1.1284450529960521, 0.9586200323292603], - [1.1209838858863657, 1.0112036336324175], - [1.1118749002419597, 1.063527063098862], - [1.101126983518695, 1.11553871322998], - [1.0887506347303377, 1.167187280153132], - [1.074757954769735, 1.2184218139681502], - [1.0591626352031749, 1.2691917687745027], - [1.041979945543506, 1.3194470523323543], - [1.0232267190086815, 1.3691380753107225], - [1.0029213367734133, 1.4182158000761431], - [0.981083710722772, 1.4666317889754175], - [0.9577352647177413, 1.5143382520661186], - [0.9328989143839114, 1.5612880942488845], - [0.9065990454358133, 1.607434961755653], - [0.8788614905506698, 1.652733287948354], - [0.849713504806706, 1.6971383383829102], - [0.8191837397026267, 1.7406062550937034], - [0.7873022157762563, 1.7830941000541594], - [0.7541002938419107, 1.8245598977695257], - [0.7196106448676116, 1.8649626769584182], - [0.6838672185148245, 1.9042625112803335], - [0.6469052103650966, 1.94242055906687], - [0.6087610278595906, 1.9793991020151573], - [0.5694722549792406, 2.015161582802672], - [0.5290776156949819, 2.049672641583449], - [0.48761693621925506, 2.082898151326555], - [0.4451311060917546, 2.1148052519585767], - [0.40166203813411594, 2.1453623832729605], - [0.3572526273100854, 2.1745393165699705], - [0.31194670852937956, 2.2023071849922777], - [0.2657890134352834, 2.228638512522269], - [0.21882512621768077, 2.2535072416085202], - [0.1711014384949387, 2.27688875939012], - [0.12266510330973357, 2.2987599224889625], - [0.07356398828548202, 2.3190990803415485], - [0.023846627991625662, 2.337886097043359], - [-0.026437824432529247, 2.3551023716804385], - [-0.07723964634424221, 2.370730857124428], - [-0.12850859530156805, 2.3847560772689915], - [-0.18019395935162935, 2.397164142687321], - [-0.23224460784800297, 2.4079427646921445], - [-0.28460904274125187, 2.4170812677815445], - [-0.337235450285613, 2.424570600455717], - [-0.3900717531040446, 2.430403344391717], - [-0.44306566255305085, 2.434573721965201], - [-0.49616473132811356, 2.4370776021100875], - [-0.54931640625, 2.4379125045090944] + [-0.54931640625, 2.438360853906383], + [-0.6024821884823875, 2.4375257299107815], + [-0.6555953505408664, 2.435021185197018], + [-0.7086033252337368, 2.4308497007448677], + [-0.761453651273227, 2.4250154087237794], + [-0.8140940260763635, 2.4175240883011684], + [-0.8664723583848871, 2.4083831597811085], + [-0.918536820644496, 2.3976016770804933], + [-0.9702359010842001, 2.3851903185517114], + [-1.0215184554372008, 2.3711613761628683], + [-1.0723337582454635, 2.3555287430484935], + [-1.1226315536909959, 2.3383078994456], + [-1.1723621058978269, 2.3195158970318257], + [-1.2214762486497537, 2.2991713416841977], + [-1.2699254344700748, 2.2772943746788754], + [-1.3176617830108166, 2.253906652353926], + [-1.3646381287002864, 2.2290313242588917], + [-1.4108080675992076, 2.202693009816532], + [-1.456126003417198, 2.174917773523682], + [-1.500547192642893, 2.1457330987196923], + [-1.5440277887426304, 2.115167859952363], + [-1.5865248853842704, 2.083252293972651], + [-1.6279965586444112, 2.050017969390782], + [-1.6684019081589907, 2.0154977550276216], + [-1.7077010971790092, 1.9797257869963656], + [-1.7458553914948676, 1.9427374345507415], + [-1.7828271971945877, 1.9045692647369301], + [-1.8185800972229471, 1.865259005887463], + [-1.8530788867103243, 1.8248455099962235], + [-1.8862896070418036, 1.7833687140145786], + [-1.9181795786388027, 1.7408696001094466], + [-1.9487174324272176, 1.697390154924848], + [-1.977873139967725, 1.6529733278891745], + [-2.005618042225537, 1.6076629886110247], + [-2.031924876958512, 1.561503883407013], + [-2.0567678047040507, 1.514541591005499], + [-2.0801224333467685, 1.4668224774706196], + [-2.101965841250349, 1.4183936503914378], + [-2.1222765989384387, 1.3693029123813978], + [-2.141034789310789, 1.3195987139335887], + [-2.1582220263821714, 1.269330105677625], + [-2.173821472532861, 1.218546690084201], + [-2.187817854260684, 1.167298572663593], + [-2.2001974764258145, 1.115636312704563], + [-2.210948234980604, 1.0636108736002996], + [-2.220059628177812, 1.0112735728081306], + [-2.2275227662516404, 0.9586760314898738], + [-2.233330379566971, 0.9058701238797664], + [-2.237476825233159, 0.8529079264269721], + [-2.239958092179682, 0.7998416667597138], + [-2.2407718046918226, 0.746723672518107], + [-2.239917224405487, 0.6936063201027682], + [-2.2373952507610753, 0.6405419833862738], + [-2.2332084199172253, 0.5875829824345153], + [-2.227360902126057, 0.5347815322849735], + [-2.2198584975724227, 0.4821896918288493], + [-2.2107086306804984, 0.4298593128439665], + [-2.1999203428919025, 0.3778419892252343], + [-2.1875042839204264, 0.3261890064593969], + [-2.1734727014893136, 0.27495129139065133], + [-2.1578394295579604, 0.2241793623235951], + [-2.1406198750458287, 0.17392327950982253], + [-2.1218310030623404, 0.12423259606429113], + [-2.1014913206525128, 0.07515630935739893], + [-2.0796208590691254, 0.026742812928496708], + [-2.0562411545833075, -0.0209601510337049], + [-2.031375227846508, -0.06790553859863824], + [-2.00504756181802, -0.11404705034439946], + [-1.9772840782733807, -0.1593391769067504], + [-1.9481121129102656, -0.20373724378242755], + [-1.9175603890697397, -0.24719745534301005], + [-1.8856589900920955, -0.28967693801605165], + [-1.8524393303278728, -0.33113378259067083], + [-1.817934124826067, -0.3715270856053604], + [-1.7821773577230051, -0.41081698977634795], + [-1.745204249356825, -0.4489647234255117], + [-1.7070512221340721, -0.48593263886750815], + [-1.6677558651764175, -0.5216842497165739], + [-1.6273568977771038, -0.55618426707423], + [-1.5858941316983335, -0.5893986345599906], + [-1.5434084323423756, -0.6212945621481215], + [-1.499941678830813, -0.6518405587744457], + [-1.4555367230279406, -0.6810064636782679], + [-1.4102373475459393, -0.7087634764455751], + [-1.3640882227710518, -0.7350841857208448], + [-1.3171348629515216, -0.7599425965560174], + [-1.269423581389651, -0.7833141563664898], + [-1.2210014447817956, -0.8051757794653138], + [-1.1719162267516028, -0.8255058701482164], + [-1.1222163606232458, -0.8442843443034946], + [-1.0719508914826847, -0.8614926495223957], + [-1.0211694275764018, -0.8771137836871207], + [-0.9699220910981681, -0.8911323120152603], + [-0.918259468415645, -0.9035343825411044], + [-0.8662325597896272, -0.9143077400160166], + [-0.8138927286397571, -0.9234417382117981], + [-0.7612916504113916, -0.930927350612784], + [-0.7084812610991171, -0.9367571794842229], + [-0.6555137054830764, -0.9409254633063813], + [-0.6024412851348326, -0.9434280825656705], + [-0.5493164062500002, -0.9442625638960237], + [-0.496191527365167, -0.9434280825656705], + [-0.44311910701692403, -0.9409254633063813], + [-0.3901515514008824, -0.9367571794842229], + [-0.33734116208860965, -0.9309273506127842], + [-0.2847400838602433, -0.9234417382117984], + [-0.23240025271037248, -0.9143077400160162], + [-0.18037334408435624, -0.9035343825411047], + [-0.1287107214018318, -0.8911323120152603], + [-0.0774633849235993, -0.8771137836871211], + [-0.026681921017314945, -0.8614926495223957], + [0.023583548123245292, -0.8442843443034947], + [0.07328341425160229, -0.8255058701482166], + [0.12236863228179506, -0.805175779465314], + [0.17079076888965078, -0.7833141563664899], + [0.21850205045152063, -0.7599425965560179], + [0.26545541027105135, -0.7350841857208449], + [0.31160453504593866, -0.7087634764455758], + [0.35690391052794, -0.681006463678268], + [0.4013088663308128, -0.651840558774446], + [0.44477561984237557, -0.6212945621481217], + [0.4872613191983335, -0.5893986345599904], + [0.5287240852771032, -0.5561842670742302], + [0.5691230526764172, -0.5216842497165743], + [0.608418409634072, -0.48593263886750837], + [0.6465714368568244, -0.4489647234255121], + [0.683544545223004, -0.41081698977634895], + [0.7193013123260671, -0.3715270856053602], + [0.7538065178278723, -0.33113378259067106], + [0.7870261775920951, -0.28967693801605204], + [0.8189275765697395, -0.24719745534301044], + [0.8494793004102653, -0.20373724378242794], + [0.8786512657733799, -0.1593391769067516], + [0.9064147493180198, -0.11404705034439985], + [0.9327424153465073, -0.06790553859863992], + [0.9576083420833074, -0.020960151033705195], + [0.9809880465691253, 0.026742812928496413], + [1.0028585081525125, 0.07515630935739923], + [1.0231981905623404, 0.12423259606429103], + [1.041987062545828, 0.17392327950982114], + [1.0592066170579602, 0.2241793623235947], + [1.0748398889893134, 0.27495129139065055], + [1.0888714714204262, 0.32618900645939625], + [1.1012875303919023, 0.3778419892252328], + [1.1120758181804982, 0.42985931284396467], + [1.1212256850724227, 0.4821896918288493], + [1.1287280896260568, 0.5347815322849746], + [1.1345756074172253, 0.5875829824345161], + [1.1387624382610755, 0.6405419833862721], + [1.141284411905487, 0.6936063201027682], + [1.1421389921918226, 0.7467236725181067], + [1.1413252796796816, 0.7998416667597144], + [1.1388440127331594, 0.8529079264269723], + [1.134697567066971, 0.9058701238797653], + [1.1288899537516401, 0.9586760314898736], + [1.121426815677812, 1.0112735728081301], + [1.112315422480604, 1.0636108736002992], + [1.1015646639258143, 1.1156363127045634], + [1.089185041760684, 1.1672985726635914], + [1.075188660032861, 1.218546690084201], + [1.0595892138821716, 1.2693301056776245], + [1.042401976810789, 1.319598713933588], + [1.0236437864384382, 1.3693029123813987], + [1.0033330287503495, 1.418393650391436], + [0.9814896208467687, 1.466822477470619], + [0.9581349922040512, 1.5145415910054987], + [0.9332920644585123, 1.561503883407012], + [0.906985229725537, 1.6076629886110254], + [0.8792403274677255, 1.6529733278891738], + [0.8500846199272186, 1.6973901549248465], + [0.8195467661388028, 1.740869600109446], + [0.7876567945418037, 1.783368714014578], + [0.754446074210324, 1.8248455099962237], + [0.7199472847229478, 1.8652590058874616], + [0.6841943846945886, 1.9045692647369288], + [0.6472225789948679, 1.9427374345507409], + [0.6090682846790086, 1.9797257869963665], + [0.5697690956589903, 2.0154977550276216], + [0.5293637461444122, 2.0500179693907814], + [0.48789207288427056, 2.0832522939726505], + [0.4453949762426306, 2.1151678599523627], + [0.4019143801428921, 2.145733098719693], + [0.35749319091719867, 2.1749177735236813], + [0.3121752550992088, 2.2026930098165316], + [0.2660053162002864, 2.2290313242588917], + [0.21902897051081688, 2.2539066523539257], + [0.17129262197007514, 2.277294374678875], + [0.12284343614975474, 2.299171341684197], + [0.07372929339782681, 2.3195158970318257], + [0.023998741190995595, 2.3383078994456], + [-0.026299054254536065, 2.3555287430484935], + [-0.07711435706279837, 2.3711613761628683], + [-0.12839691141579898, 2.3851903185517114], + [-0.180095991855504, 2.3976016770804933], + [-0.23216045411511282, 2.4083831597811085], + [-0.28453878642363617, 2.4175240883011675], + [-0.33717916122677233, 2.425015408723779], + [-0.39002948726626374, 2.4308497007448677], + [-0.44303746195913385, 2.435021185197018], + [-0.49615062401761245, 2.4375257299107815], + [-0.54931640625, 2.438360853906383] ] ] } diff --git a/packages/turf-point-to-line-distance/test/out/segment-fiji.geojson b/packages/turf-point-to-line-distance/test/out/segment-fiji.geojson index 229eb2ecc..dd96308be 100644 --- a/packages/turf-point-to-line-distance/test/out/segment-fiji.geojson +++ b/packages/turf-point-to-line-distance/test/out/segment-fiji.geojson @@ -30,207 +30,207 @@ "type": "Polygon", "coordinates": [ [ - [-180.46142578124994, -17.232858286679544], - [-180.469608515055, -17.232980894213192], - [-180.47778320621822, -17.23334859630332], - [-180.48594181990782, -17.233961031534516], - [-180.4940763369049, -17.234817597937823], - [-180.50217876139166, -17.235917453575404], - [-180.5102411287182, -17.237259517358385], - [-180.51825551314045, -17.238842470096998], - [-180.5262140355218, -17.240664755782156], - [-180.53410887099207, -17.24272458309719], - [-180.54193225655584, -17.24501992715844], - [-180.54967649864335, -17.247548531482927], - [-180.55733398059746, -17.250307910181498], - [-180.56489717008887, -17.253295350375165], - [-180.57235862645325, -17.25650791483263], - [-180.5797110079432, -17.259942444826336], - [-180.58694707888802, -17.263595563204532], - [-180.5940597167552, -17.267463677676407], - [-180.60104191910634, -17.271542984307253], - [-180.607886810441, -17.27582947122046], - [-180.61458764892237, -17.28031892250277], - [-180.6211378329781, -17.285006922309204], - [-180.62753090776985, -17.28988885916387], - [-180.63376057152558, -17.294959930452542], - [-180.63982068172857, -17.300215147102815], - [-180.64570526115673, -17.305649338447502], - [-180.65140850376707, -17.31125715726664], - [-180.65692478041882, -17.31703308500338], - [-180.66224864443, -17.322971437148908], - [-180.667374836962, -17.329066368791157], - [-180.67229829222688, -17.335311880322312], - [-180.67701414251155, -17.341701823299495], - [-180.6815177230149, -17.348229906453177], - [-180.685804576492, -17.354889701837614], - [-180.68987045770115, -17.361674651117465], - [-180.6937113376492, -17.36857807198459], - [-180.69732340763036, -17.37559316469895], - [-180.70070308305498, -17.38271301874728], - [-180.70384700706342, -17.3899306196133], - [-180.706752053922, -17.397238855652912], - [-180.7094153321968, -17.404630525067713], - [-180.71183418770184, -17.41209834297028], - [-180.71400620621884, -17.419634948534284], - [-180.71592921598506, -17.427232912222628], - [-180.7176012899464, -17.43488474308656], - [-180.71902074777356, -17.442582896128716], - [-180.72018615763795, -17.450319779722992], - [-180.7210963377464, -17.458087763083963], - [-180.721750357631, -17.465879183778593], - [-180.72214753919457, -17.473686355272967], - [-180.7222874575076, -17.481501574506538], - [-180.72216994135772, -17.489317129486626], - [-180.7217950735492, -17.497125306895583], - [-180.7211631909522, -17.504918399703175], - [-180.72027488430115, -17.512688714776743], - [-180.71913099774198, -17.520428580481482], - [-180.71773262812786, -17.528130354263503], - [-180.716081124064, -17.535786430207956], - [-180.7141780847019, -17.543389246564846], - [-180.71202535828328, -17.550931293235003], - [-180.70962504043524, -17.55840511920867], - [-180.70697947221748, -17.565803339949376], - [-180.7040912379232, -17.57311864471562], - [-180.70096316263525, -17.580343803813005], - [-180.69759830953967, -17.587471675769567], - [-180.69399997699867, -17.594495214427056], - [-180.69017169538586, -17.60140747594094], - [-180.68611722368587, -17.608201625682135], - [-180.68184054586254, -17.614870945033402], - [-180.677345866997, -17.621408838073506], - [-180.67263760920144, -17.627808838142315], - [-180.66772040731064, -17.63406461428022], - [-180.66259910435582, -17.640169977535187], - [-180.65727874682545, -17.646118887131024], - [-180.65176457971677, -17.65190545649058], - [-180.64606204138335, -17.657523959107582], - [-180.6401767581835, -17.66296883426119], - [-180.63411453893482, -17.668234692567264], - [-180.62788136917982, -17.673316321360666], - [-180.62148340526892, -17.678208689903027], - [-180.61492696826662, -17.682906954410562], - [-180.60821853768618, -17.68740646289674], - [-180.60136474506032, -17.691702759824736], - [-180.59437236735306, -17.695791590564877], - [-180.5872483202205, -17.699668905652405], - [-180.57999965112688, -17.703330864841078], - [-180.5726335323227, -17.706773840948475], - [-180.56515725369272, -17.709994423488883], - [-180.55757821548085, -17.712989422089997], - [-180.54990392089888, -17.715755869689904], - [-180.54214196862847, -17.718291025510855], - [-180.53430004522136, -17.72059237780693], - [-180.5263859174088, -17.722657646382423], - [-180.51840742432574, -17.724484784878587], - [-180.51037246965944, -17.726071982826085], - [-180.5022890137298, -17.727417667461175], - [-180.49416506551034, -17.728520505303575], - [-180.4860086745978, -17.729379403494452], - [-180.47782792313902, -17.729993510893028], - [-180.4696309177234, -17.730362218930736], - [-180.46142578124994, -17.73048516222196], - [-180.4532206447765, -17.730362218930736], - [-180.4450236393609, -17.729993510893028], - [-180.43684288790212, -17.729379403494452], - [-180.42868649698963, -17.728520505303575], - [-180.4205625487701, -17.727417667461175], - [-180.41247909284047, -17.726071982826085], - [-180.40444413817417, -17.724484784878587], - [-180.39646564509113, -17.722657646382423], - [-180.3885515172786, -17.72059237780693], - [-180.38070959387144, -17.718291025510855], - [-180.37294764160103, -17.715755869689904], - [-180.3652733470191, -17.712989422089997], - [-180.3576943088072, -17.709994423488883], - [-180.35021803017722, -17.706773840948475], - [-180.34285191137303, -17.703330864841078], - [-180.3356032422794, -17.699668905652405], - [-180.32847919514685, -17.695791590564877], - [-180.3214868174396, -17.691702759824736], - [-180.31463302481373, -17.68740646289674], - [-180.3079245942333, -17.682906954410562], - [-180.301368157231, -17.678208689903027], - [-180.2949701933201, -17.673316321360666], - [-180.2887370235651, -17.668234692567264], - [-180.28267480431643, -17.66296883426119], - [-180.27678952111657, -17.657523959107582], - [-180.27108698278315, -17.65190545649058], - [-180.26557281567446, -17.646118887131024], - [-180.2602524581441, -17.640169977535187], - [-180.2551311551893, -17.63406461428022], - [-180.25021395329847, -17.627808838142315], - [-180.2455056955029, -17.621408838073506], - [-180.24101101663737, -17.614870945033402], - [-180.23673433881405, -17.608201625682135], - [-180.23267986711406, -17.60140747594094], - [-180.22885158550125, -17.594495214427056], - [-180.22525325296024, -17.587471675769567], - [-180.22188839986467, -17.580343803813005], - [-180.21876032457672, -17.57311864471562], - [-180.21587209028243, -17.565803339949376], - [-180.21322652206467, -17.55840511920867], - [-180.21082620421663, -17.550931293235003], - [-180.20867347779802, -17.543389246564846], - [-180.2067704384359, -17.535786430207956], - [-180.20511893437205, -17.528130354263503], - [-180.20372056475793, -17.520428580481482], - [-180.20257667819877, -17.512688714776736], - [-180.2016883715477, -17.504918399703175], - [-180.2010564889507, -17.497125306895583], - [-180.2006816211422, -17.489317129486626], - [-180.2005641049923, -17.481501574506538], - [-180.20070402330535, -17.473686355272967], - [-180.2011012048689, -17.465879183778593], - [-180.20175522475355, -17.458087763083963], - [-180.20266540486196, -17.450319779722992], - [-180.20383081472636, -17.442582896128716], - [-180.20525027255354, -17.43488474308656], - [-180.20692234651486, -17.427232912222628], - [-180.20884535628107, -17.419634948534284], - [-180.21101737479808, -17.41209834297028], - [-180.2134362303031, -17.404630525067713], - [-180.2160995085779, -17.397238855652912], - [-180.2190045554365, -17.3899306196133], - [-180.22214847944494, -17.38271301874728], - [-180.22552815486955, -17.37559316469895], - [-180.2291402248507, -17.36857807198459], - [-180.23298110479877, -17.361674651117465], - [-180.23704698600793, -17.354889701837614], - [-180.241333839485, -17.348229906453177], - [-180.24583741998842, -17.341701823299495], - [-180.25055327027303, -17.335311880322312], - [-180.2554767255379, -17.329066368791157], - [-180.2606029180699, -17.322971437148908], - [-180.2659267820811, -17.31703308500338], - [-180.27144305873284, -17.31125715726664], - [-180.27714630134318, -17.305649338447502], - [-180.28303088077135, -17.300215147102815], - [-180.28909099097433, -17.294959930452542], - [-180.29532065473006, -17.28988885916387], - [-180.30171372952182, -17.285006922309204], - [-180.30826391357755, -17.28031892250277], - [-180.31496475205893, -17.27582947122046], - [-180.32180964339358, -17.271542984307253], - [-180.32879184574472, -17.267463677676407], - [-180.3359044836119, -17.263595563204532], - [-180.34314055455673, -17.259942444826336], - [-180.35049293604666, -17.25650791483263], - [-180.35795439241105, -17.253295350375165], - [-180.36551758190245, -17.250307910181498], - [-180.37317506385656, -17.247548531482927], - [-180.38091930594408, -17.24501992715844], - [-180.38874269150784, -17.24272458309719], - [-180.3966375269781, -17.240664755782156], - [-180.4045960493595, -17.238842470096998], - [-180.4126104337817, -17.237259517358385], - [-180.42067280110825, -17.235917453575404], - [-180.42877522559502, -17.234817597937823], - [-180.4369097425921, -17.233961031534516], - [-180.4450683562817, -17.23334859630332], - [-180.45324304744491, -17.232980894213192], - [-180.46142578124994, -17.232858286679544] + [-180.46142578124994, -17.23540624801723], + [-180.46952483237501, -17.23552760167609], + [-180.47761592278025, -17.235891543369423], + [-180.48569109947775, -17.236497715363342], + [-180.4937424249357, -17.23734552182086], + [-180.501761984789, -17.23843412938069], + [-180.50974189552787, -17.239762467966873], + [-180.5176743121582, -17.2413292318284], + [-180.52555143582603, -17.243132880807917], + [-180.53336552139947, -17.245171641838336], + [-180.54110888500074, -17.247443510665875], + [-180.5487739114812, -17.24994625379808], + [-180.55635306183302, -17.252677410674877], + [-180.56383888052986, -17.255634296060727], + [-180.57122400279005, -17.258814002655587], + [-180.57850116175555, -17.262213403922342], + [-180.5856631955797, -17.265829157127957], + [-180.59270305441729, -17.269657706595638], + [-180.59961380731016, -17.273695287164852], + [-180.60638864896217, -17.277937927856087], + [-180.6130209063964, -17.282381455736832], + [-180.6195040454895, -17.287021499985233], + [-180.6258316773753, -17.29185349614758], + [-180.63199756471298, -17.296872690585673], + [-180.63799562781298, -17.302074145109835], + [-180.643819950615, -17.30745274179331], + [-180.64946478651217, -17.31300318796344], + [-180.6549245640158, -17.318720021364967], + [-180.66019389225502, -17.324597615490614], + [-180.66526756630634, -17.330630185073826], + [-180.67014057234698, -17.336811791738587], + [-180.6748080926277, -17.34313634980093], + [-180.6792655102598, -17.34959763221663], + [-180.6835084138112, -17.356189276669397], + [-180.6875326017075, -17.362904791793945], + [-180.69133408643285, -17.369737563527767], + [-180.69490909852692, -17.376680861585793], + [-180.69825409037318, -17.383727846051606], + [-180.70136573977518, -17.390871574079004], + [-180.70424095331632, -17.39810500669736], + [-180.70687686949995, -17.405421015714435], + [-180.70927086166645, -17.4128123907098], + [-180.71142054068346, -17.420271846112332], + [-180.7133237574071, -17.427792028354794], + [-180.71497860491021, -17.43536552309865], + [-180.7163834204768, -17.442984862522174], + [-180.71753678735783, -17.45064253266464], + [-180.71843753628855, -17.458330980819607], + [-180.71908474676403, -17.46604262296995], + [-180.7194777480714, -17.47376985125757], + [-180.7196161200776, -17.481505041480204], + [-180.719499693771, -17.489240560608305], + [-180.71912855155648, -17.496968774314336], + [-180.718503027302, -17.504682054507228], + [-180.71762370613754, -17.51237278686458], + [-180.71649142400517, -17.520033378355], + [-180.7151072669601, -17.527656264743346], + [-180.71347257022373, -17.535233918071288], + [-180.71158891698838, -17.542758854105784], + [-180.70945813697452, -17.55022363974808], + [-180.70708230474185, -17.557620900395776], + [-180.7044637377547, -17.564943327250706], + [-180.70160499420416, -17.572183684565132], + [-180.69850887058766, -17.57933481681919], + [-180.69517839904856, -17.58638965582217], + [-180.69161684447806, -17.593341227730566], + [-180.68782770138117, -17.600182659975836], + [-180.68381469051047, -17.60690718809476], + [-180.67958175526974, -17.613508162455528], + [-180.6751330578914, -17.619979054872772], + [-180.67047297539057, -17.62631346510466], + [-180.6656060953004, -17.632505127225578], + [-180.6605372111913, -17.638547915867807], + [-180.65527131797964, -17.644435852325806], + [-180.64981360702984, -17.650163110516864], + [-180.64416946105413, -17.655724022792004], + [-180.63834444881553, -17.661113085591097], + [-180.63234431963897, -17.666324964936454], + [-180.62617499773577, -17.671354501759115], + [-180.61984257634742, -17.676196717052438], + [-180.61335331171412, -17.680846816847545], + [-180.6067136168743, -17.68530019700555], + [-180.59993005530114, -17.68955244782152], + [-180.5930093343832, -17.693599358435446], + [-180.58595829875412, -17.697436921045583], + [-180.5787839234803, -17.70106133491977], + [-180.57149330711206, -17.704469010200576], + [-180.5640936646056, -17.70765657150025], + [-180.5565923201233, -17.710620861281754], + [-180.54899669972, -17.713358943022282], + [-180.54131432392217, -17.715868104156016], + [-180.53355280020827, -17.71814585879301], + [-180.52571981539754, -17.72018995021127], + [-180.5178231279559, -17.721998353119545], + [-180.50987056022618, -17.723569275688337], + [-180.50186999059147, -17.724901161347063], + [-180.49382934557931, -17.72599269034539], + [-180.48575659191545, -17.72684278107725], + [-180.47765972853483, -17.727450591165933], + [-180.4695467785595, -17.727815518309338], + [-180.46142578124994, -17.72793720088427], + [-180.4533047839404, -17.727815518309338], + [-180.44519183396508, -17.727450591165933], + [-180.43709497058447, -17.72684278107725], + [-180.4290222169206, -17.72599269034539], + [-180.42098157190844, -17.724901161347063], + [-180.41298100227374, -17.723569275688337], + [-180.40502843454402, -17.721998353119545], + [-180.39713174710238, -17.72018995021127], + [-180.38929876229165, -17.71814585879301], + [-180.38153723857775, -17.715868104156016], + [-180.37385486277992, -17.713358943022282], + [-180.36625924237663, -17.710620861281754], + [-180.35875789789432, -17.70765657150025], + [-180.35135825538785, -17.704469010200576], + [-180.34406763901964, -17.70106133491977], + [-180.33689326374585, -17.697436921045583], + [-180.32984222811672, -17.693599358435446], + [-180.32292150719877, -17.68955244782152], + [-180.31613794562563, -17.68530019700555], + [-180.3094982507858, -17.680846816847545], + [-180.3030089861525, -17.676196717052438], + [-180.29667656476414, -17.671354501759115], + [-180.29050724286094, -17.666324964936454], + [-180.28450711368438, -17.661113085591097], + [-180.27868210144578, -17.655724022792004], + [-180.27303795547007, -17.650163110516864], + [-180.26758024452027, -17.644435852325806], + [-180.26231435130867, -17.638547915867807], + [-180.2572454671995, -17.632505127225578], + [-180.25237858710935, -17.62631346510466], + [-180.2477185046085, -17.619979054872772], + [-180.24326980723018, -17.613508162455528], + [-180.23903687198944, -17.60690718809476], + [-180.23502386111875, -17.600182659975836], + [-180.23123471802185, -17.593341227730566], + [-180.22767316345136, -17.58638965582217], + [-180.22434269191226, -17.57933481681919], + [-180.22124656829575, -17.572183684565132], + [-180.2183878247452, -17.564943327250706], + [-180.21576925775807, -17.557620900395776], + [-180.2133934255254, -17.55022363974808], + [-180.21126264551154, -17.542758854105784], + [-180.20937899227619, -17.535233918071288], + [-180.2077442955398, -17.527656264743346], + [-180.20636013849474, -17.520033378355], + [-180.20522785636237, -17.51237278686458], + [-180.20434853519794, -17.504682054507228], + [-180.20372301094343, -17.496968774314336], + [-180.2033518687289, -17.489240560608305], + [-180.2032354424223, -17.481505041480204], + [-180.20337381442852, -17.47376985125757], + [-180.2037668157359, -17.46604262296995], + [-180.20441402621137, -17.458330980819607], + [-180.20531477514209, -17.45064253266464], + [-180.2064681420231, -17.442984862522174], + [-180.2078729575897, -17.435365523098653], + [-180.20952780509282, -17.427792028354794], + [-180.21143102181645, -17.420271846112332], + [-180.21358070083346, -17.4128123907098], + [-180.21597469299996, -17.405421015714435], + [-180.2186106091836, -17.39810500669736], + [-180.22148582272473, -17.390871574079004], + [-180.22459747212673, -17.383727846051606], + [-180.227942463973, -17.376680861585793], + [-180.23151747606707, -17.369737563527767], + [-180.23531896079243, -17.362904791793945], + [-180.2393431486887, -17.356189276669397], + [-180.24358605224012, -17.34959763221663], + [-180.24804346987221, -17.34313634980093], + [-180.25271099015293, -17.336811791738587], + [-180.25758399619357, -17.330630185073826], + [-180.2626576702449, -17.324597615490614], + [-180.2679269984841, -17.318720021364967], + [-180.27338677598775, -17.31300318796344], + [-180.2790316118849, -17.30745274179331], + [-180.28485593468693, -17.302074145109835], + [-180.29085399778694, -17.296872690585673], + [-180.29701988512463, -17.29185349614758], + [-180.30334751701042, -17.287021499985233], + [-180.30983065610351, -17.282381455736832], + [-180.31646291353775, -17.277937927856087], + [-180.32323775518975, -17.273695287164852], + [-180.33014850808263, -17.269657706595638], + [-180.33718836692023, -17.265829157127957], + [-180.34435040074436, -17.262213403922342], + [-180.3516275597099, -17.258814002655587], + [-180.35901268197006, -17.255634296060727], + [-180.3664985006669, -17.252677410674877], + [-180.37407765101872, -17.24994625379808], + [-180.38174267749918, -17.247443510665875], + [-180.38948604110044, -17.245171641838336], + [-180.39730012667388, -17.243132880807917], + [-180.40517725034172, -17.2413292318284], + [-180.41310966697205, -17.239762467966873], + [-180.42108957771092, -17.23843412938069], + [-180.4291091375642, -17.23734552182086], + [-180.43716046302217, -17.236497715363342], + [-180.44523563971967, -17.235891543369423], + [-180.4533267301249, -17.23552760167609], + [-180.46142578124994, -17.23540624801723] ] ] } diff --git a/packages/turf-point-to-line-distance/test/out/segment3.geojson b/packages/turf-point-to-line-distance/test/out/segment3.geojson index b672c57f6..403245630 100644 --- a/packages/turf-point-to-line-distance/test/out/segment3.geojson +++ b/packages/turf-point-to-line-distance/test/out/segment3.geojson @@ -31,207 +31,207 @@ "type": "Polygon", "coordinates": [ [ - [1, 1.999847691290931], - [0.9685764874430625, 1.9993541264432926], - [0.9371840332951916, 1.997873919879187], - [0.9058536650349519, 1.9954085350477568], + [1, 1.9998476912909309], + [0.9685764874430625, 1.9993541264432921], + [0.9371840332951916, 1.9978739198791862], + [0.9058536650349519, 1.9954085350477562], [0.874616348312366, 1.991960409407136], [0.8435029561157432, 1.9875329519906195], - [0.8125442380357036, 1.9821305400029625], - [0.7817707896585676, 1.9757585144504501], - [0.7512130221211076, 1.9684231748094276], - [0.7209011318584189, 1.9601317727389935], - [0.6908650705763909, 1.9508925048445724], - [0.6611345154799443, 1.9407145045001086], - [0.6317388397878306, 1.9296078327375863], - [0.6027070835643898, 1.9175834682135804], - [0.5740679248982208, 1.9046532962634997], - [0.5458496514572312, 1.8908300970551286], - [0.5180801324490232, 1.8761275328540077], - [0.49078679101500916, 1.8605601344140912], - [0.463996577086073, 1.8441432865080307], - [0.4377359407269737, 1.8268932126122723], - [0.41203080599603503, 1.8088269587630355], - [0.3869065453460029, 1.7899623766000277], - [0.36238795459124085, 1.770318105615576], - [0.33849922846572456, 1.7499135546276183], - [0.3152639367955386, 1.728768882495744], - [0.29270500130883276, 1.7069049781001975], - [0.27084467310540133, 1.6843434396044605], - [0.2497045108072653, 1.6611065530226878], - [0.22930535941082208, 1.6372172701139156], - [0.20966732986031236, 1.612699185625586], - [0.19080977936152832, 1.587576513909505], - [0.17275129245384035, 1.5618740649339116], - [0.15550966285779, 1.535617219715883], - [0.139101876114643, 1.5088319051987862], - [0.12354409303344192, 1.4815445685999669], - [0.10885163396025664, 1.4537821512543279], - [0.09503896388346555, 1.4255720619798602], - [0.08211967838805939, 1.396942149991581], - [0.07010649047109185, 1.3679206773907133], - [0.05901121822957687, 1.3385362912562797], - [0.04884477343125615, 1.308817995366589], - [0.03961715097783889, 1.2787951215783995], - [0.031337419269473525, 1.2484973008917966], - [0.024013711478360483, 1.2179544342290651], - [0.01765321773861088, 1.1871966629560535], - [0.012262178258604726, 1.1562543391747098], - [0.007845877361295363, 1.125157995815647], - [0.00440863845709035, 1.0939383165597265], - [0.00195381995312102, 1.0626261056177748], - [0.00048381210190497076, 1.0312522573976357], - [3.47916135590972e-8, 0.9998477260878444], - [0.0005029362793394656, 0.9684434951872459], - [0.0019919928679793743, 0.937070547009919], - [0.00446570952653457, 0.9057598321947592], - [0.007921621452867735, 0.8745422392490729], - [0.012356296577131056, 0.8434485641554709], - [0.017765339003324776, 0.8125094800713093], - [0.024143393385636473, 0.7817555071498272], - [0.03148415023543767, 0.7512169825120282], - [0.039780352154024826, 0.720924030398219], - [0.04902380098540153, 0.6909065325279682], - [0.059205365882624414, 0.6611940986970768], - [0.07031499228043453, 0.6318160376399443], - [0.08234171176611792, 0.6028013281855016], - [0.09527365283974915, 0.574178590734637], - [0.10909805255417744, 0.5459760590867668], - [0.1238012690243323, 0.5182215526429194], - [0.1393687947946289, 0.490942449012379], - [0.15578527105246504, 0.46416565704960444], - [0.1730345026750093, 0.43791759034776473], - [0.19109947409569192, 0.41222414121485096], - [0.20996236597601953, 0.3871106551579085], - [0.22960457266754283, 0.3626019059005008], - [0.25000672044803063, 0.33872207095804324], - [0.27114868651511476, 0.3154947077951678], - [0.2930096187199024, 0.29294273058875], - [0.31556795602226506, 0.2710883876197179], - [0.3388014496487772, 0.24995323931616348], - [0.36268718493349533, 0.22955813696971455], - [0.38720160382104024, 0.2099232021464999], - [0.41232052801070596, 0.19106780681339688], - [0.4380191827195972, 0.1730105541995929], - [0.4642722210420949, 0.15576926041279945], - [0.4910537488822565, 0.1393609368287404], - [0.518337350435083, 0.12380177327180858], - [0.5460961141919407, 0.1091071220040136], - [0.5743026594447855, 0.09529148253856687], - [0.602929163263236, 0.08236848729364331], - [0.6319473879179615, 0.07035088810103346], - [0.6613287087232728, 0.05925054358355448], - [0.691044142271325, 0.049078407414217005], - [0.7210643750297743, 0.03984451746927034], - [0.751359792274334, 0.031557985886334565], - [0.781900507327191, 0.024226990037923855], - [0.8126563910718726, 0.017858764429716407], - [0.8435971017147775, 0.01245959353199432], - [0.8746921147632691, 0.008034805551705269], - [0.9059107531899299, 0.00458876715163455], - [0.9372222177523374, 0.002124879122190291], - [0.9685956174375103, 0.0006455730103189741], - [0.9999999999999999, 0.0001523087090687537], - [1.03140438256249, 0.0006455730103189741], - [1.0627777822476625, 0.002124879122190291], - [1.0940892468100702, 0.00458876715163455], - [1.1253078852367304, 0.008034805551705269], - [1.1564028982852224, 0.01245959353199432], - [1.1873436089281277, 0.017858764429716407], - [1.2180994926728084, 0.024226990037923658], - [1.2486402077256664, 0.031557985886334565], - [1.2789356249702253, 0.03984451746927014], - [1.3089558577286753, 0.049078407414217005], - [1.338671291276727, 0.05925054358355448], - [1.3680526120820382, 0.07035088810103327], - [1.397070836736764, 0.08236848729364331], - [1.4256973405552142, 0.09529148253856667], - [1.4539038858080588, 0.10910712200401329], - [1.481662649564917, 0.12380177327180848], - [1.508946251117743, 0.13936093682873998], - [1.5357277789579051, 0.15576926041279934], - [1.5619808172804028, 0.17301055419959285], - [1.5876794719892937, 0.19106780681339677], - [1.6127983961789598, 0.20992320214650012], - [1.6373128150665046, 0.22955813696971436], - [1.6611985503512228, 0.24995323931616314], - [1.684432043977735, 0.27108838761971776], - [1.7069903812800977, 0.2929427305887497], - [1.7288513134848846, 0.3154947077951672], - [1.7499932795519695, 0.33872207095804335], - [1.7703954273324574, 0.3626019059005006], - [1.7900376340239803, 0.38711065515790827], - [1.8089005259043083, 0.41222414121485074], - [1.8269654973249905, 0.43791759034776445], - [1.8442147289475346, 0.4641656570496037], - [1.860631205205371, 0.49094244901237877], - [1.8761987309756671, 0.5182215526429184], - [1.8909019474458224, 0.5459760590867667], - [1.9047263471602505, 0.5741785907346367], - [1.917658288233882, 0.6028013281855018], - [1.9296850077195653, 0.6318160376399443], - [1.9407946341173754, 0.6611940986970761], - [1.9509761990145986, 0.6909065325279681], - [1.960219647845975, 0.7209240303982185], - [1.968515849764562, 0.7512169825120277], - [1.9758566066143635, 0.7817555071498264], - [1.9822346609966752, 0.8125094800713084], - [1.987643703422869, 0.8434485641554709], + [0.8125442380357036, 1.982130540002962], + [0.7817707896585678, 1.9757585144504493], + [0.7512130221211079, 1.9684231748094274], + [0.720901131858419, 1.960131772738993], + [0.6908650705763909, 1.9508925048445718], + [0.6611345154799444, 1.9407145045001086], + [0.6317388397878309, 1.9296078327375863], + [0.6027070835643901, 1.9175834682135797], + [0.574067924898221, 1.9046532962634994], + [0.5458496514572314, 1.8908300970551284], + [0.5180801324490233, 1.8761275328540072], + [0.4907867910150093, 1.8605601344140907], + [0.4639965770860733, 1.8441432865080298], + [0.4377359407269739, 1.8268932126122714], + [0.4120308059960352, 1.8088269587630355], + [0.3869065453460031, 1.7899623766000274], + [0.3623879545912411, 1.7703181056155757], + [0.33849922846572483, 1.749913554627618], + [0.31526393679553893, 1.7287688824957437], + [0.29270500130883303, 1.706904978100197], + [0.2708446731054016, 1.6843434396044605], + [0.2497045108072656, 1.6611065530226876], + [0.2293053594108224, 1.6372172701139152], + [0.20966732986031264, 1.612699185625586], + [0.19080977936152865, 1.5875765139095044], + [0.17275129245384074, 1.561874064933911], + [0.1555096628577904, 1.5356172197158828], + [0.1391018761146433, 1.5088319051987862], + [0.12354409303344221, 1.4815445685999664], + [0.10885163396025704, 1.4537821512543276], + [0.09503896388346597, 1.42557206197986], + [0.08211967838805978, 1.3969421499915808], + [0.07010649047109206, 1.3679206773907133], + [0.059011218229577264, 1.3385362912562797], + [0.04884477343125654, 1.3088179953665888], + [0.039617150977839286, 1.2787951215783993], + [0.03133741926947393, 1.2484973008917966], + [0.02401371147836088, 1.217954434229065], + [0.01765321773861128, 1.1871966629560535], + [0.012262178258605124, 1.1562543391747098], + [0.00784587736129576, 1.1251579958156466], + [0.0044086384570907475, 1.0939383165597265], + [0.0019538199531214176, 1.0626261056177748], + [0.00048381210190536834, 1.0312522573976357], + [3.4791613956666536e-8, 0.9998477260878444], + [0.0005029362793398631, 0.9684434951872459], + [0.001991992867979772, 0.937070547009919], + [0.0044657095265349675, 0.9057598321947592], + [0.007921621452868132, 0.8745422392490729], + [0.012356296577131455, 0.8434485641554709], + [0.017765339003325175, 0.8125094800713095], + [0.024143393385636872, 0.7817555071498272], + [0.03148415023543807, 0.7512169825120283], + [0.03978035215402522, 0.7209240303982191], + [0.04902380098540174, 0.6909065325279683], + [0.05920536588262482, 0.6611940986970771], + [0.07031499228043472, 0.6318160376399445], + [0.08234171176611832, 0.6028013281855018], + [0.09527365283974953, 0.5741785907346371], + [0.10909805255417786, 0.545976059086767], + [0.12380126902433272, 0.5182215526429196], + [0.1393687947946292, 0.4909424490123792], + [0.15578527105246542, 0.46416565704960455], + [0.17303450267500964, 0.43791759034776495], + [0.19109947409569225, 0.4122241412148512], + [0.20996236597601992, 0.38711065515790877], + [0.2296045726675431, 0.36260190590050106], + [0.25000672044803096, 0.33872207095804346], + [0.2711486865151151, 0.31549470779516814], + [0.2930096187199026, 0.2929427305887503], + [0.3155679560222654, 0.27108838761971815], + [0.33880144964877745, 0.24995323931616376], + [0.3626871849334956, 0.22955813696971483], + [0.3872016038210406, 0.20992320214650032], + [0.4123205280107062, 0.19106780681339716], + [0.43801918271959744, 0.17301055419959332], + [0.46427222104209515, 0.15576926041279984], + [0.4910537488822567, 0.1393609368287407], + [0.5183373504350832, 0.12380177327180888], + [0.5460961141919409, 0.10910712200401398], + [0.5743026594447858, 0.09529148253856706], + [0.6029291632632362, 0.08236848729364371], + [0.6319473879179616, 0.07035088810103365], + [0.6613287087232729, 0.05925054358355488], + [0.6910441422713254, 0.0490784074142174], + [0.7210643750297743, 0.03984451746927074], + [0.7513597922743341, 0.03155798588633497], + [0.7819005073271911, 0.024226990037924254], + [0.8126563910718728, 0.017858764429716806], + [0.8435971017147775, 0.012459593531994719], + [0.8746921147632691, 0.008034805551705666], + [0.9059107531899301, 0.004588767151634947], + [0.9372222177523374, 0.0021248791221906886], + [0.9685956174375103, 0.0006455730103193716], + [0.9999999999999999, 0.00015230870906915127], + [1.03140438256249, 0.0006455730103193716], + [1.0627777822476625, 0.0021248791221906886], + [1.0940892468100702, 0.004588767151634947], + [1.1253078852367304, 0.008034805551705666], + [1.1564028982852224, 0.012459593531994719], + [1.1873436089281277, 0.017858764429716806], + [1.2180994926728084, 0.024226990037924057], + [1.2486402077256664, 0.03155798588633497], + [1.2789356249702248, 0.039844517469270535], + [1.3089558577286753, 0.0490784074142174], + [1.338671291276727, 0.05925054358355488], + [1.368052612082038, 0.07035088810103365], + [1.3970708367367635, 0.08236848729364371], + [1.4256973405552142, 0.09529148253856706], + [1.4539038858080586, 0.10910712200401368], + [1.4816626495649166, 0.12380177327180877], + [1.5089462511177427, 0.1393609368287404], + [1.5357277789579047, 0.15576926041279973], + [1.5619808172804022, 0.17301055419959313], + [1.5876794719892935, 0.19106780681339705], + [1.6127983961789596, 0.2099232021465004], + [1.6373128150665042, 0.22955813696971475], + [1.6611985503512223, 0.24995323931616348], + [1.6844320439777343, 0.27108838761971804], + [1.706990381280097, 0.29294273058875], + [1.7288513134848846, 0.31549470779516753], + [1.7499932795519693, 0.3387220709580436], + [1.7703954273324567, 0.36260190590050084], + [1.79003763402398, 0.3871106551579085], + [1.8089005259043074, 0.41222414121485096], + [1.8269654973249903, 0.43791759034776473], + [1.8442147289475344, 0.46416565704960394], + [1.8606312052053708, 0.490942449012379], + [1.8761987309756667, 0.5182215526429186], + [1.8909019474458222, 0.5459760590867668], + [1.9047263471602505, 0.574178590734637], + [1.917658288233882, 0.602801328185502], + [1.9296850077195653, 0.6318160376399444], + [1.9407946341173747, 0.6611940986970761], + [1.950976199014598, 0.6909065325279681], + [1.9602196478459746, 0.7209240303982185], + [1.9685158497645618, 0.7512169825120278], + [1.9758566066143628, 0.7817555071498264], + [1.9822346609966746, 0.8125094800713084], + [1.9876437034228687, 0.8434485641554709], [1.992078378547132, 0.8745422392490737], [1.9955342904734654, 0.9057598321947595], - [1.9980080071320208, 0.937070547009918], - [1.9994970637206608, 0.9684434951872459], - [1.9999999652083866, 0.9998477260878441], + [1.9980080071320199, 0.937070547009918], + [1.99949706372066, 0.9684434951872459], + [1.999999965208386, 0.9998477260878441], [1.9995161878980947, 1.0312522573976362], [1.998046180046879, 1.062626105617775], - [1.9955913615429097, 1.0939383165597256], - [1.9921541226387047, 1.125157995815647], + [1.9955913615429095, 1.0939383165597256], + [1.9921541226387043, 1.1251579958156466], [1.9877378217413952, 1.1562543391747095], - [1.9823467822613894, 1.187196662956053], + [1.9823467822613885, 1.187196662956053], [1.9759862885216393, 1.2179544342290656], - [1.968662580730527, 1.2484973008917957], + [1.968662580730526, 1.2484973008917954], [1.9603828490221609, 1.2787951215783993], - [1.9511552265687442, 1.3088179953665888], - [1.940988781770423, 1.3385362912562793], - [1.9298935095289078, 1.3679206773907138], - [1.917880321611941, 1.3969421499915802], + [1.9511552265687435, 1.3088179953665888], + [1.9409887817704228, 1.338536291256279], + [1.9298935095289076, 1.3679206773907135], + [1.9178803216119407, 1.39694214999158], [1.9049610361165343, 1.42557206197986], - [1.8911483660397435, 1.4537821512543276], - [1.8764559069665585, 1.481544568599966], - [1.8608981238853568, 1.5088319051987866], - [1.8444903371422101, 1.5356172197158826], - [1.82724870754616, 1.5618740649339105], - [1.8091902206384718, 1.5875765139095044], - [1.7903326701396878, 1.612699185625586], - [1.770694640589178, 1.6372172701139156], - [1.7502954891927351, 1.6611065530226874], + [1.8911483660397432, 1.4537821512543274], + [1.8764559069665578, 1.481544568599966], + [1.8608981238853566, 1.5088319051987862], + [1.8444903371422101, 1.5356172197158822], + [1.8272487075461599, 1.5618740649339105], + [1.8091902206384716, 1.5875765139095044], + [1.7903326701396876, 1.6126991856255855], + [1.7706946405891775, 1.6372172701139154], + [1.750295489192735, 1.661106553022687], [1.7291553268945992, 1.68434343960446], - [1.7072949986911676, 1.706904978100197], - [1.6847360632044612, 1.7287688824957443], - [1.6615007715342753, 1.7499135546276188], - [1.6376120454087597, 1.7703181056155757], - [1.6130934546539972, 1.7899623766000277], + [1.707294998691167, 1.7069049781001968], + [1.6847360632044608, 1.728768882495744], + [1.661500771534275, 1.7499135546276183], + [1.6376120454087597, 1.770318105615575], + [1.6130934546539972, 1.7899623766000272], [1.587969194003965, 1.8088269587630355], - [1.562264059273026, 1.8268932126122723], - [1.5360034229139274, 1.8441432865080298], - [1.5092132089849917, 1.8605601344140907], - [1.4819198675509768, 1.8761275328540077], - [1.4541503485427691, 1.8908300970551286], - [1.4259320751017797, 1.9046532962634994], - [1.3972929164356107, 1.91758346821358], - [1.3682611602121693, 1.9296078327375863], - [1.3388654845200558, 1.9407145045001086], - [1.3091349294236092, 1.9508925048445724], + [1.5622640592730255, 1.826893212612272], + [1.5360034229139272, 1.8441432865080298], + [1.5092132089849915, 1.8605601344140903], + [1.4819198675509768, 1.8761275328540072], + [1.454150348542769, 1.8908300970551284], + [1.4259320751017792, 1.904653296263499], + [1.3972929164356105, 1.9175834682135797], + [1.368261160212169, 1.9296078327375863], + [1.3388654845200556, 1.9407145045001086], + [1.3091349294236092, 1.9508925048445718], [1.2790988681415816, 1.960131772738993], - [1.248786977878893, 1.9684231748094276], - [1.2182292103414323, 1.9757585144504501], - [1.1874557619642967, 1.9821305400029625], + [1.248786977878893, 1.9684231748094274], + [1.2182292103414323, 1.9757585144504493], + [1.1874557619642963, 1.982130540002962], [1.156497043884257, 1.9875329519906195], [1.1253836516876345, 1.991960409407136], - [1.0941463349650475, 1.9954085350477568], - [1.0628159667048085, 1.997873919879187], - [1.0314235125569375, 1.9993541264432926], - [1, 1.999847691290931] + [1.0941463349650475, 1.9954085350477562], + [1.0628159667048083, 1.9978739198791862], + [1.0314235125569375, 1.9993541264432921], + [1, 1.9998476912909309] ] ] } diff --git a/packages/turf-point-to-line-distance/test/out/segment4.geojson b/packages/turf-point-to-line-distance/test/out/segment4.geojson index effc7434b..cf7d7b7e0 100644 --- a/packages/turf-point-to-line-distance/test/out/segment4.geojson +++ b/packages/turf-point-to-line-distance/test/out/segment4.geojson @@ -31,207 +31,207 @@ "type": "Polygon", "coordinates": [ [ - [-48.076171875, 20.271510755848283], - [-48.23730341318302, 20.26907099799104], - [-48.398262019066536, 20.261754362201202], - [-48.55887500317104, 20.249568757940395], - [-48.71897016095242, 20.232527354710772], - [-48.878376013512714, 20.210648562698935], - [-49.03692204621561, 20.183956005766856], - [-49.194438944529786, 20.152478486878216], - [-49.35075882644129, 20.116249946072926], - [-49.50571547079857, 20.075309411125872], - [-49.65914454097993, 20.029700941048162], - [-49.810883803303234, 19.979473562610572], - [-49.96077333963059, 19.924681200088497], - [-50.1086557536575, 19.865382598446423], - [-50.25437637041431, 19.801641240196748], - [-50.39778342854906, 19.733525256183192], - [-50.53872826500405, 19.661107330552635], - [-50.67706549174233, 19.58446460019109], - [-50.81265316422577, 19.503678548909672], - [-50.945352941392684, 19.418834896674717], - [-51.075030236928384, 19.33002348418252], - [-51.20155436166856, 19.237338153084018], - [-51.32479865702009, 19.14087662216751], - [-51.44464061932853, 19.04074035980868], - [-51.56096201516426, 18.93703445299674], - [-51.67364898754062, 18.829867473243265], - [-51.7825921531169, 18.71935133967686], - [-51.887686690475974, 18.60560117962159], - [-51.988832419601714, 18.488735186950944], - [-52.08593387271293, 18.36887447850127], - [-52.178900356640874, 18.24614294882043], - [-52.267646006963304, 18.120667123517414], - [-52.35208983413262, 17.992576011468504], - [-52.432155761855746, 17.862000956124405], - [-52.50777265800161, 17.729075486150997], - [-52.57887435832693, 17.593935165624327], - [-52.6453996833225, 17.4567174439879], - [-52.70729244849164, 17.31756150596764], - [-52.764501468378235, 17.176608121627236], - [-52.81698055466559, 17.033999496733628], - [-52.86468850866808, 16.889879123589917], - [-52.907589108535916, 16.74439163248049], - [-52.9456510914901, 16.597682643861024], - [-52.978848131398095, 16.44989862141434], - [-53.00715881199349, 16.301186726081802], - [-53.030566596032926, 16.151694671169178], - [-53.04905979067294, 16.001570578615848], - [-53.06263150933648, 15.850962836506698], - [-53.07127963032532, 15.700019957897029], - [-53.075006752420244, 15.548890441013082], - [-53.073820147694796, 15.397722630883056], - [-53.06773171175307, 15.246664582447007], - [-53.05675791158487, 15.095863925188281], - [-53.04091973121514, 14.945467729323795], - [-53.02024261530733, 14.79562237358644], - [-52.99475641086397, 14.646473414629169], - [-52.964495307150365, 14.49816545807745], - [-52.92949777395153, 14.350842031254894], - [-52.88980649825616, 14.204645457605237], - [-52.845468319446226, 14.05971673283321], - [-52.796534163055945, 13.916195402786677], - [-52.74305897315017, 13.774219443102936], - [-52.68510164335861, 13.633925140642994], - [-52.62272494659088, 13.495446976739203], - [-52.5559954634453, 13.358917512283567], - [-52.48498350931501, 13.22446727468638], - [-52.409763060185256, 13.092224646737503], - [-52.33041167710814, 12.962315757405703], - [-52.24701042933423, 12.834864374614526], - [-52.159643816074684, 12.709991800036708], - [-52.068399686863025, 12.58781676595263], - [-51.97336916048269, 12.468455334221877], - [-51.87464654242393, 12.352020797420675], - [-51.77232924083284, 12.238623582201495], - [-51.66651768091525, 12.128371154934626], - [-51.55731521775931, 12.021367929694966], - [-51.44482804754304, 11.917715178660286], - [-51.32916511709571, 11.817510944990438], - [-51.21043803178646, 11.720849958259343], - [-51.088760961718116, 11.627823552514283], - [-50.96425054621001, 11.538519587038712], - [-50.837025796559765, 11.453022369896795], - [-50.70720799708133, 11.371412584338719], - [-50.574920604423646, 11.293767218146948], - [-50.44028914518259, 11.220159496003683], - [-50.303441111827205, 11.150658814959764], - [-50.16450585696964, 11.085330683084567], - [-50.02361448601713, 11.024236661375298], - [-49.88089974825339, 10.967434309002483], - [-49.73649592640528, 10.914977131966342], - [-49.590538724759774, 10.866914535236017], - [-49.44316515590474, 10.823291778440607], - [-49.294513426175, 10.784149935177368], - [-49.144722819893964, 10.749525855998362], - [-48.99393358250738, 10.71945213513247], - [-48.84228680271402, 10.693957080994776], - [-48.689924293703655, 10.673064690530152], - [-48.536988473618685, 10.656794627432303], - [-48.383622245361096, 10.645162204273742], - [-48.22996887587009, 10.63817836857604], - [-48.076171875, 10.635849692843383], - [-47.922374874129915, 10.63817836857604], - [-47.768721504638926, 10.645162204273742], - [-47.615355276381315, 10.656794627432303], - [-47.462419456296374, 10.673064690530152], - [-47.31005694728599, 10.693957080994776], - [-47.158410167492626, 10.71945213513247], - [-47.00762093010604, 10.749525855998362], - [-46.857830323825006, 10.784149935177368], - [-46.70917859409528, 10.823291778440607], - [-46.561805025240226, 10.866914535236017], - [-46.41584782359473, 10.914977131966342], - [-46.27144400174662, 10.967434309002483], - [-46.128729263982876, 11.024236661375298], - [-45.987837893030374, 11.085330683084567], - [-45.8489026381728, 11.150658814959762], - [-45.712054604817425, 11.220159496003683], - [-45.577423145576375, 11.293767218146945], - [-45.44513575291868, 11.371412584338719], - [-45.31531795344026, 11.453022369896793], - [-45.188093203790004, 11.538519587038712], - [-45.063582788281884, 11.627823552514283], - [-44.941905718213555, 11.720849958259343], - [-44.8231786329043, 11.817510944990438], - [-44.70751570245698, 11.917715178660286], - [-44.595028532240704, 12.021367929694966], - [-44.485826069084766, 12.128371154934626], - [-44.38001450916717, 12.238623582201495], - [-44.27769720757608, 12.352020797420675], - [-44.178974589517324, 12.468455334221877], - [-44.08394406313699, 12.58781676595263], - [-43.99269993392532, 12.709991800036708], - [-43.905333320665775, 12.834864374614522], - [-43.821932072891876, 12.962315757405703], - [-43.74258068981477, 13.092224646737495], - [-43.667360240685, 13.224467274686377], - [-43.596348286554715, 13.358917512283567], - [-43.529618803409136, 13.495446976739203], - [-43.46724210664141, 13.633925140642994], - [-43.409284776849844, 13.77421944310293], - [-43.35580958694407, 13.916195402786677], - [-43.30687543055379, 14.059716732833209], - [-43.26253725174385, 14.204645457605237], - [-43.22284597604848, 14.350842031254892], - [-43.18784844284965, 14.498165458077445], - [-43.157587339136036, 14.646473414629169], - [-43.132101134692675, 14.795622373586442], - [-43.111424018784874, 14.945467729323795], - [-43.09558583841513, 15.095863925188276], - [-43.084612038246945, 15.246664582447007], - [-43.07852360230522, 15.397722630883056], - [-43.07733699757976, 15.548890441013086], - [-43.08106411967469, 15.70001995789703], - [-43.08971224066354, 15.850962836506696], - [-43.10328395932707, 16.001570578615848], - [-43.12177715396709, 16.151694671169174], - [-43.14518493800652, 16.301186726081802], - [-43.17349561860191, 16.44989862141435], - [-43.206692658509915, 16.59768264386102], - [-43.2447546414641, 16.74439163248049], - [-43.28765524133193, 16.889879123589917], - [-43.33536319533441, 17.033999496733628], - [-43.38784228162178, 17.17660812162724], - [-43.44505130150837, 17.317561505967635], - [-43.506944066677505, 17.4567174439879], - [-43.57346939167308, 17.593935165624327], - [-43.6445710919984, 17.729075486150993], - [-43.72018798814427, 17.862000956124405], - [-43.80025391586738, 17.9925760114685], - [-43.88469774303671, 18.12066712351741], - [-43.97344339335914, 18.24614294882043], - [-44.06640987728708, 18.36887447850127], - [-44.1635113303983, 18.488735186950944], - [-44.26465705952403, 18.60560117962159], - [-44.369751596883106, 18.719351339676855], - [-44.478694762459384, 18.829867473243265], - [-44.59138173483576, 18.937034452996745], - [-44.70770313067148, 19.040740359808684], - [-44.82754509297992, 19.140876622167504], - [-44.95078938833145, 19.237338153084018], - [-45.07731351307162, 19.33002348418252], - [-45.20699080860733, 19.418834896674717], - [-45.339690585774235, 19.503678548909672], - [-45.475278258257674, 19.584464600191087], - [-45.61361548499595, 19.661107330552635], - [-45.75456032145095, 19.733525256183192], - [-45.8979673795857, 19.801641240196744], - [-46.0436879963425, 19.86538259844642], - [-46.19157041036942, 19.924681200088497], - [-46.34145994669678, 19.979473562610572], - [-46.49319920902008, 20.029700941048162], - [-46.646628279201444, 20.075309411125872], - [-46.80158492355872, 20.116249946072926], - [-46.95790480547023, 20.152478486878216], - [-47.1154217037844, 20.183956005766856], - [-47.2739677364873, 20.210648562698935], - [-47.43337358904758, 20.232527354710772], - [-47.59346874682896, 20.249568757940395], - [-47.75408173093347, 20.261754362201202], - [-47.915040336816986, 20.26907099799104], - [-48.076171875, 20.271510755848283] + [-48.076171875, 20.385085986545974], + [-48.24121373148589, 20.382587020538292], + [-48.40607804834933, 20.375092831500616], + [-48.570587537633166, 20.362611542355154], + [-48.734565413965605, 20.345156677872723], + [-48.89783564399486, 20.322747144571107], + [-49.06022319360827, 20.295407202667537], + [-49.221554272220345, 20.26316643017937], + [-49.38165657343407, 20.226059679292504], + [-49.540359511403665, 20.18412702514188], + [-49.69749445225518, 20.13741370717204], + [-49.85289493995344, 20.085970063268174], + [-50.006396916039996, 20.029851456869004], + [-50.157838932704884, 19.969118197292435], + [-50.30706235869757, 19.903835453522767], + [-50.45391157762597, 19.83407316172425], + [-50.598234178238826, 19.759905926760144], + [-50.7398811363339, 19.68141291800882], + [-50.87870698798338, 19.598677759778948], + [-51.014569993816814, 19.51178841663417], + [-51.14733229415095, 19.420837073944526], + [-51.27686005480537, 19.32592001398626], + [-51.40302360349036, 19.22713748791452], + [-51.52569755670126, 19.12459358393442], + [-51.644760937098624, 19.018396091994855], + [-51.76009728139784, 18.908656365327094], + [-51.871594738833444, 18.795489179145836], + [-51.979146160302626, 18.679012586824825], + [-52.08264917832937, 18.55934777385202], + [-52.182006278024836, 18.436618909860883], + [-52.27712485924993, 18.31095299902511], + [-52.367917290214905, 18.182479729093348], + [-52.45430095277478, 18.05133131932943], + [-52.53619827970133, 17.91764236761125], + [-52.61353678423081, 17.78154969692906], + [-52.686249082201364, 17.6431922015106], + [-52.75427290710628, 17.50271069278718], + [-52.81755111839816, 17.360247745401075], + [-52.87603170338466, 17.21594754344104], + [-52.929667773059904, 17.069955727078867], + [-52.97841755221535, 16.92241923976654], + [-53.02224436417227, 16.773486176140292], + [-53.06111661047297, 16.623305630764825], + [-53.09500774586052, 16.472027547838646], + [-53.123896248869045, 16.319802571969404], + [-53.147765588334316, 16.166781900116813], + [-53.16660418612344, 16.01311713478999], + [-53.18040537636747, 15.858960138576114], + [-53.18916736146651, 15.704462890067862], + [-53.19289316512047, 15.54977734124876], + [-53.191590582621906, 15.395055276387788], + [-53.18527212862962, 15.240448172487719], + [-53.17395498262442, 15.086107061325611], + [-53.15766093222928, 14.932182393118635], + [-53.13641631455885, 14.778823901844126], + [-53.11025195574441, 14.62618047223891], + [-53.0792031087627, 14.474400008500474], + [-53.04330938967932, 14.32362930471022], + [-53.0026147124005, 14.174013916998012], + [-52.95716722201038, 14.025698037466432], + [-52.90701922675526, 13.878824369893353], + [-52.852227128721616, 13.73353400723213], + [-52.792851353240366, 13.58996631092996], + [-52.728956277037206, 13.448258792086785], + [-52.66061015513689, 13.308546994479375], + [-52.58788504651843, 13.170964379477992], + [-52.510856738508835, 13.035642212885984], + [-52.42960466989454, 12.902709453736158], + [-52.344211852722324, 12.772292645081345], + [-52.254764792756234, 12.64451580682035], + [-52.16135340855153, 12.519500330604476], + [-52.064070949104014, 12.39736487687383], + [-51.96301391003057, 12.278225274076597], + [-51.85828194823587, 12.162194420128504], + [-51.74997779502045, 12.049382186173597], + [-51.638207167586586, 11.93989532271111], + [-51.52307867890111, 11.8338373681569], + [-51.404703745877576, 11.73130855991104], + [-51.283196495844635, 11.6324057480063], + [-51.15867367127304, 11.537222311414803], + [-51.031254532739595, 11.44584807709247], + [-50.90106076011367, 11.35836924184276], + [-50.76821635195908, 11.274868297082545], + [-50.63284752315266, 11.195423956594], + [-50.495082600729376, 11.120111087346793], + [-50.35505191797273, 11.049000643474834], + [-50.21288770677894, 10.982159603491233], + [-50.068723988332295, 10.919650910824036], + [-49.92269646213929, 10.8615334177536], + [-49.77494239347846, 10.807861832830383], + [-49.625600499332066, 10.758686671849066], + [-49.47481083287577, 10.714054212451837], + [-49.32271466661053, 10.674006452429802], + [-49.16945437423037, 10.638581071787385], + [-49.015173311327025, 10.607811398629767], + [-48.86001569504066, 10.581726378928495], + [-48.70412648277236, 10.560350550214677], + [-48.54765125008035, 10.543704019243547], + [-48.39073606788764, 10.531802443667877], + [-48.23352737913276, 10.524657017751245], + [-48.076171875, 10.522274462145697], + [-47.91881637086725, 10.524657017751245], + [-47.76160768211238, 10.531802443667877], + [-47.60469249991965, 10.543704019243547], + [-47.448217267227655, 10.560350550214677], + [-47.292328054959356, 10.581726378928495], + [-47.13717043867299, 10.607811398629769], + [-46.982889375769645, 10.638581071787383], + [-46.82962908338948, 10.674006452429802], + [-46.67753291712425, 10.714054212451833], + [-46.526743250667934, 10.758686671849066], + [-46.37740135652155, 10.807861832830383], + [-46.22964728786072, 10.8615334177536], + [-46.08361976166772, 10.919650910824034], + [-45.93945604322107, 10.982159603491233], + [-45.79729183202729, 11.049000643474834], + [-45.65726114927064, 11.120111087346793], + [-45.519496226847345, 11.195423956593997], + [-45.38412739804093, 11.274868297082545], + [-45.25128298988634, 11.35836924184276], + [-45.12108921726042, 11.445848077092467], + [-44.99367007872697, 11.537222311414803], + [-44.869147254155365, 11.6324057480063], + [-44.74764000412244, 11.73130855991104], + [-44.6292650710989, 11.8338373681569], + [-44.51413658241343, 11.93989532271111], + [-44.40236595497955, 12.049382186173595], + [-44.29406180176414, 12.162194420128504], + [-44.189329839969446, 12.278225274076597], + [-44.088272800896, 12.39736487687383], + [-43.99099034144849, 12.519500330604474], + [-43.897578957243766, 12.644515806820348], + [-43.80813189727768, 12.77229264508134], + [-43.72273908010548, 12.902709453736156], + [-43.641487011491165, 13.035642212885977], + [-43.56445870348158, 13.170964379477992], + [-43.49173359486313, 13.308546994479375], + [-43.42338747296281, 13.448258792086785], + [-43.35949239675965, 13.58996631092996], + [-43.30011662127839, 13.733534007232125], + [-43.24532452324475, 13.878824369893351], + [-43.19517652798963, 14.02569803746643], + [-43.149729037599506, 14.17401391699801], + [-43.1090343603207, 14.323629304710217], + [-43.073140641237316, 14.474400008500469], + [-43.0420917942556, 14.62618047223891], + [-43.015927435441164, 14.778823901844127], + [-42.99468281777074, 14.932182393118637], + [-42.97838876737559, 15.086107061325604], + [-42.967071621370394, 15.240448172487719], + [-42.96075316737811, 15.395055276387788], + [-42.95945058487954, 15.549777341248761], + [-42.963176388533505, 15.704462890067862], + [-42.97193837363253, 15.858960138576112], + [-42.98573956387657, 16.01311713478999], + [-43.0045781616657, 16.16678190011681], + [-43.02844750113097, 16.3198025719694], + [-43.05733600413949, 16.472027547838646], + [-43.091227139527035, 16.623305630764822], + [-43.13009938582773, 16.773486176140292], + [-43.17392619778467, 16.92241923976654], + [-43.222675976940096, 17.069955727078867], + [-43.27631204661534, 17.215947543441043], + [-43.33479263160186, 17.36024774540107], + [-43.39807084289373, 17.50271069278718], + [-43.46609466779865, 17.6431922015106], + [-43.5388069657692, 17.78154969692906], + [-43.61614547029869, 17.91764236761125], + [-43.698042797225234, 18.051331319329424], + [-43.784426459785095, 18.18247972909334], + [-43.87521889075008, 18.310952999025105], + [-43.97033747197518, 18.43661890986088], + [-44.06969457167064, 18.55934777385202], + [-44.17319758969739, 18.679012586824825], + [-44.28074901116656, 18.795489179145832], + [-44.392246468602174, 18.908656365327094], + [-44.50758281290139, 19.018396091994855], + [-44.626646193298754, 19.12459358393442], + [-44.749320146509646, 19.22713748791451], + [-44.87548369519464, 19.32592001398626], + [-45.00501145584906, 19.420837073944526], + [-45.1377737561832, 19.51178841663417], + [-45.27363676201663, 19.598677759778948], + [-45.412462613666115, 19.68141291800882], + [-45.55410957176119, 19.759905926760144], + [-45.698432172374034, 19.83407316172425], + [-45.84528139130244, 19.903835453522763], + [-45.994504817295116, 19.969118197292428], + [-46.14594683396001, 20.029851456869004], + [-46.29944881004656, 20.085970063268174], + [-46.454849297744836, 20.13741370717204], + [-46.611984238596335, 20.18412702514188], + [-46.77068717656594, 20.226059679292504], + [-46.93078947777967, 20.26316643017937], + [-47.092120556391734, 20.295407202667537], + [-47.25450810600514, 20.322747144571107], + [-47.41777833603441, 20.345156677872723], + [-47.58175621236685, 20.362611542355154], + [-47.746265701650685, 20.375092831500616], + [-47.91113001851412, 20.382587020538292], + [-48.076171875, 20.385085986545974] ] ] } diff --git a/packages/turf-point-to-polygon-distance/LICENSE b/packages/turf-point-to-polygon-distance/LICENSE new file mode 100644 index 000000000..96ce51b76 --- /dev/null +++ b/packages/turf-point-to-polygon-distance/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2017 TurfJS + +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-to-polygon-distance/README.md b/packages/turf-point-to-polygon-distance/README.md new file mode 100644 index 000000000..e2d9584cd --- /dev/null +++ b/packages/turf-point-to-polygon-distance/README.md @@ -0,0 +1,61 @@ +# @turf/point-to-polygon-distance + + + +## pointToPolygonDistance + +Calculates the distance from a point to the edges of a polygon or multi-polygon. +Returns negative values for points inside the polygon. +Handles polygons with holes and multi-polygons. +A hole is treated as the exterior of the polygon. + +### Parameters + +* `point` **([Feature][1]<[Point][2]> | [Point][2] | [Position][3])** Input point +* `polygonOrMultiPolygon` **([Feature][1]<([Polygon][4] | [MultiPolygon][5])> | [Polygon][4] | [MultiPolygon][5])** Input polygon or multipolygon +* `options` **[Object][6]** Optional parameters (optional, default `{}`) + + * `options.units` **Units** Units of the result e.g. "kilometers", "miles", "meters" + * `options.method` **(`"geodesic"` | `"planar"`)** Method of the result + + + +* Throws **[Error][7]** If input geometries are invalid + +Returns **[number][8]** Distance in meters (negative values for points inside the polygon) + +[1]: https://tools.ietf.org/html/rfc7946#section-3.2 + +[2]: https://tools.ietf.org/html/rfc7946#section-3.1.2 + +[3]: https://developer.mozilla.org/docs/Web/API/Position + +[4]: https://tools.ietf.org/html/rfc7946#section-3.1.6 + +[5]: https://tools.ietf.org/html/rfc7946#section-3.1.7 + +[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object + +[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error + +[8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number + + + +--- + +This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. + +### Installation + +Install this single module individually: + +```sh +$ npm install @turf/point-to-polygon-distance +``` + +Or install the all-encompassing @turf/turf module that includes all modules as functions: + +```sh +$ npm install @turf/turf +``` diff --git a/packages/turf-point-to-polygon-distance/bench.ts b/packages/turf-point-to-polygon-distance/bench.ts new file mode 100644 index 000000000..585a73bb1 --- /dev/null +++ b/packages/turf-point-to-polygon-distance/bench.ts @@ -0,0 +1,65 @@ +import fs from "fs"; +import path from "path"; +import { fileURLToPath } from "url"; +import { loadJsonFileSync } from "load-json-file"; +import Benchmark from "benchmark"; +import { pointToPolygonDistance } from "./index.js"; +import { featureCollection } from "@turf/helpers"; +import { + Feature, + GeoJsonProperties, + MultiPolygon, + Point, + Polygon, +} from "geojson"; + +const __dirname = path.dirname(fileURLToPath(import.meta.url)); +const fixturesPath = path.join(__dirname, "test_fixtures") + path.sep; + +const fixtures = fs.readdirSync(fixturesPath).map((filename) => { + return { + filename, + name: path.parse(filename).name, + geojson: loadJsonFileSync(fixturesPath + filename), + }; +}); + +/** + * Benchmark Results + * + * long-lines-poly - pointA x 154,135 ops/sec Β±0.36% (96 runs sampled) + * long-lines-poly - pointB x 167,645 ops/sec Β±0.30% (98 runs sampled) + * long-lines-poly - pointC x 164,454 ops/sec Β±0.25% (100 runs sampled) + * multi-polygon - outer x 16,604 ops/sec Β±0.22% (97 runs sampled) + * multi-polygon - inner1 x 16,428 ops/sec Β±0.20% (99 runs sampled) + * multi-polygon - inner2 x 16,329 ops/sec Β±0.19% (100 runs sampled) + * multi-polygon - inner3-close-to-hole x 16,409 ops/sec Β±0.26% (99 runs sampled) + * multi-polygon - in-hole-close-to-poly-in-hole x 16,589 ops/sec Β±0.27% (101 runs sampled) + * multi-polygon - in-hole-close-to-hole-border x 16,251 ops/sec Β±0.26% (98 runs sampled) + * multi-polygon - in-poly-in-hole x 16,763 ops/sec Β±0.50% (98 runs sampled) + * simple-polygon - outer x 118,008 ops/sec Β±0.17% (101 runs sampled) + * simple-polygon - inner x 121,173 ops/sec Β±0.17% (99 runs sampled) + **/ +const suite = new Benchmark.Suite("turf-point-to-polygon-distance"); + +for (const { name, geojson } of fixtures) { + // @ts-expect-error geojson + const fc = featureCollection(geojson?.features || []); + const points = fc.features.filter( + (f): f is Feature => f.geometry.type === "Point" + ); + const polygon = fc.features.find((f) => + ["Polygon", "MultiPolygon"].includes(f.geometry.type) + ) as Feature; + if (!polygon) { + throw new Error(`No polygon found in the feature collection in ${name}`); + } + for (const point of points) { + const caseName = `${name} - ${point.properties?.name || "unnamed point"}`; + suite.add(caseName, () => { + pointToPolygonDistance(point, polygon); + }); + } +} +// @ts-expect-error benchmark +suite.on("cycle", (e) => console.log(String(e.target))).run(); diff --git a/packages/turf-point-to-polygon-distance/index.ts b/packages/turf-point-to-polygon-distance/index.ts new file mode 100644 index 000000000..1a674d5b7 --- /dev/null +++ b/packages/turf-point-to-polygon-distance/index.ts @@ -0,0 +1,90 @@ +import { booleanPointInPolygon } from "@turf/boolean-point-in-polygon"; +import { + Feature, + Point, + Polygon, + MultiPolygon, + LineString, + Position, +} from "geojson"; +import { pointToLineDistance } from "@turf/point-to-line-distance"; +import { polygonToLine } from "@turf/polygon-to-line"; +import { getGeom } from "@turf/invariant"; +import { flattenEach } from "@turf/meta"; +import { polygon, Units } from "@turf/helpers"; + +/** + * Calculates the distance from a point to the edges of a polygon or multi-polygon. + * Returns negative values for points inside the polygon. + * Handles polygons with holes and multi-polygons. + * A hole is treated as the exterior of the polygon. + * + * @param {Feature | Point | Position} point Input point + * @param {Feature | Polygon | MultiPolygon} polygonOrMultiPolygon Input polygon or multipolygon + * @param {Object} options Optional parameters + * @param {Units} options.units Units of the result e.g. "kilometers", "miles", "meters" + * @param {"geodesic" | "planar"} options.method Method of the result + * @returns {number} Distance in meters (negative values for points inside the polygon) + * @throws {Error} If input geometries are invalid + */ +export function pointToPolygonDistance( + point: Feature | Point | Position, + polygonOrMultiPolygon: + | Feature + | Polygon + | MultiPolygon, + options: { + units?: Units; + method?: "geodesic" | "planar"; + } = {} +): number { + const method = options.method ?? "geodesic"; + const units = options.units ?? "kilometers"; + // Input validation + if (!point) throw new Error("point is required"); + if (!polygonOrMultiPolygon) + throw new Error("polygon or multi-polygon is required"); + + const geom = getGeom(polygonOrMultiPolygon); + + if (geom.type === "MultiPolygon") { + const distances = geom.coordinates.map((coords) => + pointToPolygonDistance(point, polygon(coords), { method, units }) + ); + return ( + Math.min(...distances.map(Math.abs)) * + (booleanPointInPolygon(point, polygonOrMultiPolygon) ? -1 : 1) + ); + } + + if (geom.coordinates.length > 1) { + // Has holes + const [exteriorDistance, ...interiorDistances] = geom.coordinates.map( + (coords) => + pointToPolygonDistance(point, polygon([coords]), { method, units }) + ); + if (exteriorDistance >= 0) return exteriorDistance; + // point is inside the exterior polygon shape + const smallestInteriorDistance = Math.min(...interiorDistances); + // point is inside one of the holes? + if (smallestInteriorDistance < 0) return Math.abs(smallestInteriorDistance); + // find which is closer, the distance to the hole or the distance to the edge of the exterior + return Math.min(smallestInteriorDistance, Math.abs(exteriorDistance)); + } + // The actual distance operation - on a normal, hole-less polygon in meters + const lines = polygonToLine(geom); + let minDistance = Infinity; + flattenEach(lines, (feature) => { + minDistance = Math.min( + minDistance, + pointToLineDistance(point, feature as Feature, { + method, + units, + }) + ); + }); + + return booleanPointInPolygon(point, geom) ? -minDistance : minDistance; +} + +export default pointToPolygonDistance; diff --git a/packages/turf-point-to-polygon-distance/package.json b/packages/turf-point-to-polygon-distance/package.json new file mode 100644 index 000000000..f286c269a --- /dev/null +++ b/packages/turf-point-to-polygon-distance/package.json @@ -0,0 +1,79 @@ +{ + "name": "@turf/point-to-polygon-distance", + "version": "7.2.0", + "description": "Calculates the distance from a point to the edges of a polygon or multi-polygon.", + "author": "Turf Authors", + "contributors": [ + "Marc <@pachacamac>" + ], + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf/issues" + }, + "homepage": "https://github.com/Turfjs/turf", + "repository": { + "type": "git", + "url": "git://github.com/Turfjs/turf.git" + }, + "funding": "https://opencollective.com/turf", + "publishConfig": { + "access": "public" + }, + "keywords": [ + "turf", + "gis", + "point", + "polygon", + "distance" + ], + "type": "module", + "main": "dist/cjs/index.cjs", + "module": "dist/esm/index.js", + "types": "dist/esm/index.d.ts", + "exports": { + "./package.json": "./package.json", + ".": { + "import": { + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.cts", + "default": "./dist/cjs/index.cjs" + } + } + }, + "sideEffects": false, + "files": [ + "dist" + ], + "scripts": { + "bench": "tsx bench.ts", + "build": "tsup --config ../../tsup.config.ts", + "docs": "tsx ../../scripts/generate-readmes.ts", + "test": "npm-run-all --npm-path npm test:*", + "test:tape": "tsx test.ts" + }, + "devDependencies": { + "@types/benchmark": "^2.1.5", + "@types/tape": "^5.8.1", + "benchmark": "^2.1.4", + "load-json-file": "^7.0.1", + "npm-run-all": "^4.1.5", + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" + }, + "dependencies": { + "@turf/boolean-point-in-polygon": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/meta": "workspace:*", + "@turf/point-to-line-distance": "workspace:*", + "@turf/polygon-to-line": "workspace:*", + "@types/geojson": "^7946.0.10", + "tslib": "^2.8.1" + } +} diff --git a/packages/turf-point-to-polygon-distance/test.ts b/packages/turf-point-to-polygon-distance/test.ts new file mode 100644 index 000000000..19d56a908 --- /dev/null +++ b/packages/turf-point-to-polygon-distance/test.ts @@ -0,0 +1,62 @@ +import fs from "fs"; +import test from "tape"; +import path from "path"; +import { fileURLToPath } from "url"; +import { loadJsonFileSync } from "load-json-file"; +import { point } from "@turf/helpers"; +import { polygon } from "@turf/helpers"; +import { pointToPolygonDistance } from "./index.js"; +import { featureCollection } from "@turf/helpers"; +import { + Feature, + GeoJsonProperties, + MultiPolygon, + Point, + Polygon, +} from "geojson"; + +const __dirname = path.dirname(fileURLToPath(import.meta.url)); + +const fixturesPath = path.join(__dirname, "test_fixtures") + path.sep; + +const fixtures = fs.readdirSync(fixturesPath).map((filename) => { + return { + filename, + name: path.parse(filename).name, + geojson: loadJsonFileSync(fixturesPath + filename), + }; +}); + +test("turf-point-to-polygon-distance", (t) => { + for (const { name, geojson } of fixtures) { + // @ts-expect-error geojson + const fc = featureCollection(geojson?.features || []); + const points: Feature[] = fc.features.filter( + (f): f is Feature => f.geometry.type === "Point" + ); + const polygon = fc.features.find((f) => + ["Polygon", "MultiPolygon"].includes(f.geometry.type) + ) as Feature; + if (!polygon) + throw new Error(`No polygon found in the feature collection in ${name}`); + for (const point of points) { + const expectedDistance = point.properties?.expected_distance; + const units = point.properties?.units; + const distance = pointToPolygonDistance(point, polygon, { units }); + t.equal(distance, expectedDistance, name, { + message: `${name} - ${point.properties?.name}`, + }); + } + } + // Handle Errors + t.throws( + // @ts-expect-error invalid geometry + () => pointToPolygonDistance(polygon([]), polygon([])), + "throws - invalid geometry" + ); + t.throws( + () => pointToPolygonDistance(point([0, 0]), polygon([])), + "throws - empty coordinates" + ); + t.end(); +}); diff --git a/packages/turf-point-to-polygon-distance/test_fixtures/long-lines-poly.geojson b/packages/turf-point-to-polygon-distance/test_fixtures/long-lines-poly.geojson new file mode 100644 index 000000000..4268549b9 --- /dev/null +++ b/packages/turf-point-to-polygon-distance/test_fixtures/long-lines-poly.geojson @@ -0,0 +1,56 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "coordinates": [ + [ + [3.3657268318160334, 25.76155695292222], + [46.65471569612228, -18.814141655384176], + [28.889827996699864, 25.16583746201097], + [3.3657268318160334, 25.76155695292222] + ] + ], + "type": "Polygon" + } + }, + { + "type": "Feature", + "properties": { + "name": "pointA", + "expected_distance": 720.8195022016121, + "units": "miles" + }, + "geometry": { + "coordinates": [-3.848091969075085, 17.75559032718766], + "type": "Point" + } + }, + { + "type": "Feature", + "properties": { + "name": "pointB", + "expected_distance": 174.26575299684424, + "units": "miles" + }, + "geometry": { + "coordinates": [20.161990331199632, 5.93692849667535], + "type": "Point" + } + }, + { + "type": "Feature", + "properties": { + "name": "pointC", + "expected_distance": 1422.4933025064167, + "units": "miles" + }, + "geometry": { + "coordinates": [15.761757321831652, -16.46137822158427], + "type": "Point" + } + } + ] +} diff --git a/packages/turf-point-to-polygon-distance/test_fixtures/multi-polygon.geojson b/packages/turf-point-to-polygon-distance/test_fixtures/multi-polygon.geojson new file mode 100644 index 000000000..27704bfd3 --- /dev/null +++ b/packages/turf-point-to-polygon-distance/test_fixtures/multi-polygon.geojson @@ -0,0 +1,143 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "name": "outer", + "expected_distance": 22.10311139107688, + "units": "meters" + }, + "geometry": { + "coordinates": [13.403019116525968, 52.4749917692433], + "type": "Point" + } + }, + { + "type": "Feature", + "properties": { + "name": "inner1", + "expected_distance": -0.18712846397492156, + "units": "kilometers" + }, + "geometry": { + "coordinates": [13.399915241855979, 52.472957280225245], + "type": "Point" + } + }, + { + "type": "Feature", + "properties": { + "name": "inner2", + "expected_distance": -0.2539006541753242, + "units": "kilometers" + }, + "geometry": { + "coordinates": [13.396946319940724, 52.47723165382479], + "type": "Point" + } + }, + { + "type": "Feature", + "properties": { + "name": "inner3-close-to-hole", + "expected_distance": -16.135385380792886, + "units": "meters" + }, + "geometry": { + "coordinates": [13.403283336358811, 52.47790995176382], + "type": "Point" + } + }, + { + "type": "Feature", + "properties": { + "name": "in-hole-close-to-poly-in-hole", + "expected_distance": 16.36078019912375, + "units": "meters" + }, + "geometry": { + "coordinates": [13.403043879952975, 52.47832947539942], + "type": "Point" + } + }, + { + "type": "Feature", + "properties": { + "name": "in-hole-close-to-hole-border", + "expected_distance": 6.627508849855802, + "units": "meters" + }, + "geometry": { + "coordinates": [13.40253783003243, 52.47852394247576], + "type": "Point" + } + }, + { + "type": "Feature", + "properties": { + "name": "in-poly-in-hole", + "expected_distance": -5.519191580154778, + "units": "meters" + }, + "geometry": { + "coordinates": [13.403378284487616, 52.47824096630322], + "type": "Point" + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "coordinates": [ + [ + [ + [13.391148572399459, 52.47422924057807], + [13.39059601479363, 52.473247558678], + [13.392253687611202, 52.47097558229518], + [13.416658315199754, 52.47162072331574], + [13.415415060587122, 52.475379182951684], + [13.391148572399459, 52.47422924057807] + ] + ], + [ + [ + [13.391747176472563, 52.47470604959969], + [13.415276921185495, 52.475771839318895], + [13.415230874718247, 52.476444956368084], + [13.410948553273812, 52.477258292397494], + [13.406574138894086, 52.479333633450835], + [13.3941415927641, 52.47961407743651], + [13.392161594676793, 52.47734242974954], + [13.392576012880966, 52.475743792551725], + [13.391747176472563, 52.47470604959969] + ], + [ + [13.402432150152691, 52.478581408896446], + [13.402365252169176, 52.4782640275981], + [13.402520173815134, 52.47815680366921], + [13.402967334020701, 52.478034568071365], + [13.403537727352841, 52.47807316882296], + [13.403643355748358, 52.47818468191565], + [13.403882780109853, 52.47820827118747], + [13.403777151715332, 52.478392695967955], + [13.403474350316174, 52.47848061913734], + [13.403372242867533, 52.478600709036584], + [13.402432150152691, 52.478581408896446] + ] + ], + [ + [ + [13.403245369174186, 52.478248303401074], + [13.403353680211723, 52.478162544659085], + [13.403550445261601, 52.47824170658075], + [13.40335909576305, 52.47830327686577], + [13.403245369174186, 52.478248303401074] + ] + ] + ], + "type": "MultiPolygon" + } + } + ] +} diff --git a/packages/turf-point-to-polygon-distance/test_fixtures/simple-polygon.geojson b/packages/turf-point-to-polygon-distance/test_fixtures/simple-polygon.geojson new file mode 100644 index 000000000..088401656 --- /dev/null +++ b/packages/turf-point-to-polygon-distance/test_fixtures/simple-polygon.geojson @@ -0,0 +1,45 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "name": "outer", + "expected_distance": 0.0020673867731590976, + "units": "kilometers" + }, + "geometry": { + "coordinates": [13.40811681056141, 52.52027359015821], + "type": "Point" + } + }, + { + "type": "Feature", + "properties": { + "name": "inner", + "expected_distance": -7.980019325365333, + "units": "meters" + }, + "geometry": { + "coordinates": [13.408017009112001, 52.52035996357455], + "type": "Point" + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "coordinates": [ + [ + [13.407833971095158, 52.52015934998451], + [13.40823074294758, 52.52035304587994], + [13.40819208895536, 52.52053359735595], + [13.407789632692584, 52.520343361105404], + [13.407833971095158, 52.52015934998451] + ] + ], + "type": "Polygon" + } + } + ] +} diff --git a/packages/turf-point-to-polygon-distance/tsconfig.json b/packages/turf-point-to-polygon-distance/tsconfig.json new file mode 100644 index 000000000..563bf8644 --- /dev/null +++ b/packages/turf-point-to-polygon-distance/tsconfig.json @@ -0,0 +1,3 @@ +{ + "extends": "../../tsconfig.shared.json" +} diff --git a/packages/turf-points-within-polygon/index.ts b/packages/turf-points-within-polygon/index.ts index 05c6d66b7..6679457b0 100644 --- a/packages/turf-points-within-polygon/index.ts +++ b/packages/turf-points-within-polygon/index.ts @@ -15,7 +15,7 @@ import { geomEach, featureEach, coordEach } from "@turf/meta"; /** * Finds {@link Points} or {@link MultiPoint} coordinate positions that fall within {@link (Multi)Polygon(s)}. * - * @name pointsWithinPolygon + * @function * @param {Feature|FeatureCollection} points Point(s) or MultiPoint(s) as input search * @param {FeatureCollection|Geometry|Feature} polygons (Multi)Polygon(s) to check if points are within * @returns {FeatureCollection} Point(s) or MultiPoint(s) with positions that land within at least one polygon. The geometry type will match what was passsed in diff --git a/packages/turf-points-within-polygon/package.json b/packages/turf-points-within-polygon/package.json index 191650ea8..b30ff4b84 100644 --- a/packages/turf-points-within-polygon/package.json +++ b/packages/turf-points-within-polygon/package.json @@ -1,7 +1,7 @@ { "name": "@turf/points-within-polygon", - "version": "7.0.0", - "description": "turf points-within-polygon module", + "version": "7.2.0", + "description": "Finds points that fall within polygon(s).", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -54,19 +54,19 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/boolean-point-in-polygon": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/boolean-point-in-polygon": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-polygon-smooth/README.md b/packages/turf-polygon-smooth/README.md index f028a5a5e..5600c63b2 100644 --- a/packages/turf-polygon-smooth/README.md +++ b/packages/turf-polygon-smooth/README.md @@ -31,7 +31,7 @@ Returns **[FeatureCollection][4]<([Polygon][1] | [MultiPolygon][2])>** FeatureCo [2]: https://tools.ietf.org/html/rfc7946#section-3.1.7 -[3]: http://graphics.cs.ucdavis.edu/education/CAGDNotes/Chaikins-Algorithm/Chaikins-Algorithm.html +[3]: https://www.cs.unc.edu/~dm/UNC/COMP258/LECTURES/Chaikins-Algorithm.pdf [4]: https://tools.ietf.org/html/rfc7946#section-3.3 diff --git a/packages/turf-polygon-smooth/index.ts b/packages/turf-polygon-smooth/index.ts index 9f8003e84..5c0ea49cf 100644 --- a/packages/turf-polygon-smooth/index.ts +++ b/packages/turf-polygon-smooth/index.ts @@ -9,10 +9,10 @@ import { featureCollection, multiPolygon, polygon } from "@turf/helpers"; import { coordEach, geomEach } from "@turf/meta"; /** - * Smooths a {@link Polygon} or {@link MultiPolygon}. Based on [Chaikin's algorithm](http://graphics.cs.ucdavis.edu/education/CAGDNotes/Chaikins-Algorithm/Chaikins-Algorithm.html). + * Smooths a {@link Polygon} or {@link MultiPolygon}. Based on [Chaikin's algorithm](https://www.cs.unc.edu/~dm/UNC/COMP258/LECTURES/Chaikins-Algorithm.pdf). * Warning: may create degenerate polygons. * - * @name polygonSmooth + * @function * @param {FeatureCollection|Feature|Polygon|MultiPolygon} inputPolys (Multi)Polygon(s) to smooth * @param {Object} [options={}] Optional parameters * @param {string} [options.iterations=1] The number of times to smooth the polygon. A higher value means a smoother polygon. diff --git a/packages/turf-polygon-smooth/package.json b/packages/turf-polygon-smooth/package.json index 8b6ed3c07..c187b458c 100644 --- a/packages/turf-polygon-smooth/package.json +++ b/packages/turf-polygon-smooth/package.json @@ -1,7 +1,7 @@ { "name": "@turf/polygon-smooth", - "version": "7.0.0", - "description": "turf polygon smooth module", + "version": "7.2.0", + "description": "Smooths a Polygon or MultiPolygon, based on Chaikin's algorithm.", "author": "Turf Authors", "contributors": [ "Rowan Winsemius <@rowanwins>" @@ -55,21 +55,21 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", - "glob": "^10.3.10", + "glob": "^11.0.2", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-polygon-tangents/index.ts b/packages/turf-polygon-tangents/index.ts index 32b7a8665..7e27783ca 100644 --- a/packages/turf-polygon-tangents/index.ts +++ b/packages/turf-polygon-tangents/index.ts @@ -16,7 +16,7 @@ import { nearestPoint } from "@turf/nearest-point"; /** * Finds the tangents of a {@link Polygon|(Multi)Polygon} from a {@link Point}. * - * @name polygonTangents + * @function * @param {Coord} pt to calculate the tangent points from * @param {Feature} polygon to get tangents from * @returns {FeatureCollection} Feature Collection containing the two tangent points diff --git a/packages/turf-polygon-tangents/package.json b/packages/turf-polygon-tangents/package.json index 62aa9e5cb..1042cff97 100644 --- a/packages/turf-polygon-tangents/package.json +++ b/packages/turf-polygon-tangents/package.json @@ -1,7 +1,7 @@ { "name": "@turf/polygon-tangents", - "version": "7.0.0", - "description": "turf polygon tangents module", + "version": "7.2.0", + "description": "Finds the tangents of a polygon from a point.", "author": "Turf Authors", "contributors": [ "Rowan Winsemius <@rowanwins>", @@ -58,24 +58,24 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/bbox": "workspace:^", - "@turf/boolean-within": "workspace:^", - "@turf/explode": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/nearest-point": "workspace:^", + "@turf/bbox": "workspace:*", + "@turf/boolean-within": "workspace:*", + "@turf/explode": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/nearest-point": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-polygon-to-line/index.ts b/packages/turf-polygon-to-line/index.ts index fb9b07845..618e6187e 100644 --- a/packages/turf-polygon-to-line/index.ts +++ b/packages/turf-polygon-to-line/index.ts @@ -14,7 +14,7 @@ import { getGeom } from "@turf/invariant"; * Converts a {@link Polygon} to {@link LineString|(Multi)LineString} or {@link MultiPolygon} to a * {@link FeatureCollection} of {@link LineString|(Multi)LineString}. * - * @name polygonToLine + * @function * @param {Feature} poly Feature to convert * @param {Object} [options={}] Optional parameters * @param {Object} [options.properties={}] translates GeoJSON properties to Feature diff --git a/packages/turf-polygon-to-line/package.json b/packages/turf-polygon-to-line/package.json index f5c376e09..3078675ed 100644 --- a/packages/turf-polygon-to-line/package.json +++ b/packages/turf-polygon-to-line/package.json @@ -1,7 +1,7 @@ { "name": "@turf/polygon-to-line", - "version": "7.0.0", - "description": "turf polygon-to-line module", + "version": "7.2.0", + "description": "Converts a polygon to a line string.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -53,20 +53,20 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-polygonize/index.ts b/packages/turf-polygonize/index.ts index 30f4e7529..ae3f007ea 100644 --- a/packages/turf-polygonize/index.ts +++ b/packages/turf-polygonize/index.ts @@ -22,7 +22,7 @@ import { EdgeRing } from "./lib/EdgeRing.js"; * - Dangles: edges which have one or both ends which are not incident on another edge endpoint. * - Cut Edges (bridges): edges that are connected at both ends but which do not form part of a polygon. * - * @name polygonize + * @function * @param {FeatureCollection|Geometry|Feature} geoJson Lines in order to polygonize * @returns {FeatureCollection} Polygons created * @throws {Error} if geoJson is invalid. diff --git a/packages/turf-polygonize/package.json b/packages/turf-polygonize/package.json index c740d4284..98ecb8c1e 100644 --- a/packages/turf-polygonize/package.json +++ b/packages/turf-polygonize/package.json @@ -1,7 +1,7 @@ { "name": "@turf/polygonize", - "version": "7.0.0", - "description": "turf polygonize module", + "version": "7.2.0", + "description": "Polygonizes a set of lines that represents edges in a planar graph.", "author": "Turf Authors", "contributors": [ "Nicolas Cisco <@nickcis>", @@ -57,23 +57,23 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/boolean-point-in-polygon": "workspace:^", - "@turf/envelope": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/boolean-point-in-polygon": "workspace:*", + "@turf/envelope": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-projection/README.md b/packages/turf-projection/README.md index 1c5985895..c6cd94327 100644 --- a/packages/turf-projection/README.md +++ b/packages/turf-projection/README.md @@ -9,7 +9,7 @@ Converts a WGS84 GeoJSON object into Mercator (EPSG:900913) projection ### Parameters * `geojson` **([GeoJSON][1] | [Position][2])** WGS84 GeoJSON object -* `options` **[Object][3]?** Optional parameters +* `options` **[Object][3]?** Optional parameters (optional, default `{}`) * `options.mutate` **[boolean][4]** allows GeoJSON input to be mutated (significant performance increase if true) (optional, default `false`) @@ -32,7 +32,7 @@ Converts a Mercator (EPSG:900913) GeoJSON object into WGS84 projection ### Parameters * `geojson` **([GeoJSON][1] | [Position][2])** Mercator GeoJSON object -* `options` **[Object][3]?** Optional parameters +* `options` **[Object][3]?** Optional parameters (optional, default `{}`) * `options.mutate` **[boolean][4]** allows GeoJSON input to be mutated (significant performance increase if true) (optional, default `false`) diff --git a/packages/turf-projection/index.ts b/packages/turf-projection/index.ts index d9f9bd3a8..232ff0c99 100644 --- a/packages/turf-projection/index.ts +++ b/packages/turf-projection/index.ts @@ -6,7 +6,7 @@ import { clone } from "@turf/clone"; /** * Converts a WGS84 GeoJSON object into Mercator (EPSG:900913) projection * - * @name toMercator + * @function * @param {GeoJSON|Position} geojson WGS84 GeoJSON object * @param {Object} [options] Optional parameters * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true) @@ -28,7 +28,7 @@ function toMercator( /** * Converts a Mercator (EPSG:900913) GeoJSON object into WGS84 projection * - * @name toWgs84 + * @function * @param {GeoJSON|Position} geojson Mercator GeoJSON object * @param {Object} [options] Optional parameters * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true) diff --git a/packages/turf-projection/package.json b/packages/turf-projection/package.json index 0349d6254..c8945ad78 100644 --- a/packages/turf-projection/package.json +++ b/packages/turf-projection/package.json @@ -1,7 +1,7 @@ { "name": "@turf/projection", - "version": "7.0.0", - "description": "turf projection module", + "version": "7.2.0", + "description": "Provides tools for conversion between geographic coordinates and projected coordinates.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>" @@ -64,24 +64,24 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/truncate": "workspace:^", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", "proj4": "^2.9.2", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/clone": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/clone": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-quadrat-analysis/README.md b/packages/turf-quadrat-analysis/README.md index d4802e36e..a3486f854 100644 --- a/packages/turf-quadrat-analysis/README.md +++ b/packages/turf-quadrat-analysis/README.md @@ -34,8 +34,8 @@ which is simply the area of the study area divided by the number of features. * `pointFeatureSet` **[FeatureCollection][1]<[Point][2]>** point set to study * `options` **[Object][3]** optional parameters (optional, default `{}`) - * `options.studyBbox` **bbox?** bbox representing the study area - * `options.confidenceLevel` **[number][4]** a confidence level. + * `options.studyBbox` **\[[number][4], [number][4], [number][4], [number][4]]?** bbox representing the study area + * `options.confidenceLevel` **(`20` | `15` | `10` | `5` | `2` | `1`)** a confidence level. The unit is percentage . 5 means 95%, value must be in [K\_TABLE][5] (optional, default `20`) ### Examples @@ -46,7 +46,7 @@ var dataset = turf.randomPoint(100, { bbox: bbox }); var result = turf.quadratAnalysis(dataset); ``` -Returns **[Object][3]** result [QuadratAnalysisResult][6] +Returns **[QuadratAnalysisResult][6]** result ## K\_TABLE @@ -56,18 +56,18 @@ Type: [Object][3] ### Properties -* `20` **[number][4]** -* `15` **[number][4]** -* `10` **[number][4]** -* `5` **[number][4]** -* `2` **[number][4]** -* `1` **[number][4]** +* `20` **[number][4]** 1.07275 +* `15` **[number][4]** 1.13795 +* `10` **[number][4]** 1.22385 +* `5` **[number][4]** 1.3581 +* `2` **[number][4]** 1.51743 +* `1` **[number][4]** 1.62762 ## QuadratAnalysisResult the return type of the quadratAnalysis -Type: [Object][3] +Type: [object][3] ### Properties diff --git a/packages/turf-quadrat-analysis/index.ts b/packages/turf-quadrat-analysis/index.ts index e3c98701c..984493402 100644 --- a/packages/turf-quadrat-analysis/index.ts +++ b/packages/turf-quadrat-analysis/index.ts @@ -39,13 +39,13 @@ interface QuadratAnalysisResult { * which is simply the area of the study area divided by the number of features. * * - * @name quadratAnalysis + * @function * @param {FeatureCollection} pointFeatureSet point set to study * @param {Object} [options={}] optional parameters - * @param {bbox} [options.studyBbox] bbox representing the study area - * @param {number} [options.confidenceLevel=20] a confidence level. + * @param {[number, number, number, number]} [options.studyBbox] bbox representing the study area + * @param {20 | 15 | 10 | 5 | 2 | 1} [options.confidenceLevel=20] a confidence level. * The unit is percentage . 5 means 95%, value must be in {@link K_TABLE} - * @returns {Object} result {@link QuadratAnalysisResult} + * @returns {QuadratAnalysisResult} result * @example * * var bbox = [-65, 40, -63, 42]; @@ -160,13 +160,15 @@ function quadratAnalysis( /** * the confidence level - * @type {Object} K_TABLE - * @property {number} 20 - * @property {number} 15 - * @property {number} 10 - * @property {number} 5 - * @property {number} 2 - * @property {number} 1 + * + * @constant + * @type {Object} + * @property {number} 20 1.07275 + * @property {number} 15 1.13795 + * @property {number} 10 1.22385 + * @property {number} 5 1.3581 + * @property {number} 2 1.51743 + * @property {number} 1 1.62762 */ const K_TABLE = { 20: 1.07275, @@ -179,11 +181,12 @@ const K_TABLE = { /** * the return type of the quadratAnalysis - * @typedef {Object} QuadratAnalysisResult + * + * @typedef {object} QuadratAnalysisResult * @property {number} criticalValue * @property {number} maxAbsoluteDifference * @property {boolean} isRandom - * @property {Array.} observedDistribution the cumulative distribution of observed features, + * @property {Array} observedDistribution the cumulative distribution of observed features, * the index represents the number of features in the quadrat. */ diff --git a/packages/turf-quadrat-analysis/package.json b/packages/turf-quadrat-analysis/package.json index c35cbdb76..639517fb8 100644 --- a/packages/turf-quadrat-analysis/package.json +++ b/packages/turf-quadrat-analysis/package.json @@ -1,7 +1,7 @@ { "name": "@turf/quadrat-analysis", - "version": "7.0.0", - "description": "turf quadrat-analysis module", + "version": "7.2.0", + "description": "Quadrat analysis lays a set of equal-size areas(quadrat) over the study area and counts the number of features in each quadrat and creates a frequency table.", "author": "Turf Authors", "contributors": [ "Haoming Zhuang <@zhuang-hao-ming>" @@ -52,29 +52,29 @@ "test:tape": "tsx test.ts" }, "devDependencies": { - "@turf/nearest-neighbor-analysis": "workspace:^", + "@turf/nearest-neighbor-analysis": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/area": "workspace:^", - "@turf/bbox": "workspace:^", - "@turf/bbox-polygon": "workspace:^", - "@turf/centroid": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/point-grid": "workspace:^", - "@turf/random": "workspace:^", - "@turf/square-grid": "workspace:^", + "@turf/area": "workspace:*", + "@turf/bbox": "workspace:*", + "@turf/bbox-polygon": "workspace:*", + "@turf/centroid": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/point-grid": "workspace:*", + "@turf/random": "workspace:*", + "@turf/square-grid": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-random/README.md b/packages/turf-random/README.md index 53af241fe..eb715a24c 100644 --- a/packages/turf-random/README.md +++ b/packages/turf-random/README.md @@ -4,11 +4,11 @@ ## randomPosition -Returns a random position within a [box][1]. +Returns a random position within a [bounding box][1]. ### Parameters -* `bbox` **[Array][2]<[number][3]>** a bounding box inside of which positions are placed. (optional, default `[-180,-90,180,90]`) +* `bbox` **[BBox][1]** a bounding box inside of which positions are placed. (optional, default `[-180,-90,180,90]`) ### Examples @@ -17,20 +17,20 @@ var position = turf.randomPosition([-180, -90, 180, 90]) // => position ``` -* Throws **[Error][4]** if bbox is invalid +* Throws **[Error][2]** if bbox is invalid -Returns **[Array][2]<[number][3]>** Position \[longitude, latitude] +Returns **[Position][3]** Position \[longitude, latitude] ## randomPoint -Returns a random [point][5]. +Returns a random [point][4]. ### Parameters -* `count` **[number][3]** how many geometries will be generated (optional, default `1`) +* `count` **[number][5]** how many geometries will be generated (optional, default `1`) * `options` **[Object][6]** Optional parameters (optional, default `{}`) - * `options.bbox` **[Array][2]<[number][3]>** a bounding box inside of which geometries are placed. (optional, default `[-180,-90,180,90]`) + * `options.bbox` **[BBox][1]** a bounding box inside of which geometries are placed. (optional, default `[-180,-90,180,90]`) ### Examples @@ -39,7 +39,7 @@ var points = turf.randomPoint(25, {bbox: [-180, -90, 180, 90]}) // => points ``` -* Throws **[Error][4]** if bbox is invalid +* Throws **[Error][2]** if bbox is invalid Returns **[FeatureCollection][7]<[Point][8]>** GeoJSON FeatureCollection of points @@ -49,12 +49,12 @@ Returns a random [polygon][9]. ### Parameters -* `count` **[number][3]** how many geometries will be generated (optional, default `1`) +* `count` **[number][5]** how many geometries will be generated (optional, default `1`) * `options` **[Object][6]** Optional parameters (optional, default `{}`) - * `options.bbox` **[Array][2]<[number][3]>** a bounding box inside of which geometries are placed. (optional, default `[-180,-90,180,90]`) - * `options.num_vertices` **[number][3]** is how many coordinates each LineString will contain. (optional, default `10`) - * `options.max_radial_length` **[number][3]** is the maximum number of decimal degrees latitude or longitude that a + * `options.bbox` **[BBox][1]** a bounding box inside of which geometries are placed. (optional, default `[-180,-90,180,90]`) + * `options.num_vertices` **[number][5]** is how many coordinates each LineString will contain. (optional, default `10`) + * `options.max_radial_length` **[number][5]** is the maximum number of decimal degrees latitude or longitude that a vertex can reach out of the center of the Polygon. (optional, default `10`) ### Examples @@ -64,24 +64,24 @@ var polygons = turf.randomPolygon(25, {bbox: [-180, -90, 180, 90]}) // => polygons ``` -* Throws **[Error][4]** if bbox is invalid +* Throws **[Error][2]** if bbox is invalid Returns **[FeatureCollection][7]<[Polygon][10]>** GeoJSON FeatureCollection of polygons ## randomLineString -Returns a random [linestring][11]. +Returns a random [LineString][11]. ### Parameters -* `count` **[number][3]** how many geometries will be generated (optional, default `1`) +* `count` **[number][5]** how many geometries will be generated (optional, default `1`) * `options` **[Object][6]** Optional parameters (optional, default `{}`) - * `options.bbox` **[Array][2]<[number][3]>** a bounding box inside of which geometries are placed. (optional, default `[-180,-90,180,90]`) - * `options.num_vertices` **[number][3]** is how many coordinates each LineString will contain. (optional, default `10`) - * `options.max_length` **[number][3]** is the maximum number of decimal degrees that a + * `options.bbox` **[BBox][1]** a bounding box inside of which geometries are placed. (optional, default `[-180,-90,180,90]`) + * `options.num_vertices` **[number][5]** is how many coordinates each LineString will contain. (optional, default `10`) + * `options.max_length` **[number][5]** is the maximum number of decimal degrees that a vertex can be from its predecessor (optional, default `0.0001`) - * `options.max_rotation` **[number][3]** is the maximum number of radians that a + * `options.max_rotation` **[number][5]** is the maximum number of radians that a line segment can turn from the previous segment. (optional, default `Math.PI/8`) ### Examples @@ -91,19 +91,19 @@ var lineStrings = turf.randomLineString(25, {bbox: [-180, -90, 180, 90]}) // => lineStrings ``` -* Throws **[Error][4]** if bbox is invalid +* Throws **[Error][2]** if bbox is invalid -Returns **[FeatureCollection][7]<[LineString][12]>** GeoJSON FeatureCollection of linestrings +Returns **[FeatureCollection][7]<[LineString][11]>** GeoJSON FeatureCollection of linestrings -[1]: bounding +[1]: https://tools.ietf.org/html/rfc7946#section-5 -[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array +[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error -[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number +[3]: https://developer.mozilla.org/docs/Web/API/Position -[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error +[4]: point -[5]: point +[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object @@ -115,9 +115,7 @@ Returns **[FeatureCollection][7]<[LineString][12]>** GeoJSON FeatureCollection o [10]: https://tools.ietf.org/html/rfc7946#section-3.1.6 -[11]: linestring - -[12]: https://tools.ietf.org/html/rfc7946#section-3.1.4 +[11]: https://tools.ietf.org/html/rfc7946#section-3.1.4 diff --git a/packages/turf-random/bench.ts b/packages/turf-random/bench.ts index f5ddaa89d..64f3d440a 100644 --- a/packages/turf-random/bench.ts +++ b/packages/turf-random/bench.ts @@ -1,15 +1,16 @@ -// I don't think this bench test does anything? There is no entry point into -// the module called random() that takes a string? +import Benchmark, { Event } from "benchmark"; +import { randomPolygon } from "./index.js"; -import { random } from "./index.js"; -import Benchmark from "benchmark"; +let totalTime = 0.0; +const suite = new Benchmark.Suite("turf-random"); -var suite = new Benchmark.Suite("turf-random"); suite - .add("turf-random", function () { - random("point"); - }) - .on("cycle", function (event) { - console.log(String(event.target)); + .add("turf-random", () => randomPolygon(1, { num_vertices: 100000 }), { + onComplete: (e: Event) => + (totalTime = totalTime += e.target.times?.elapsed), }) + .on("cycle", (e: Event) => console.log(String(e.target))) + .on("complete", () => + console.log(`completed in ${totalTime.toFixed(2)} seconds`) + ) .run(); diff --git a/packages/turf-random/index.ts b/packages/turf-random/index.ts index 257e26c0f..f64391d46 100644 --- a/packages/turf-random/index.ts +++ b/packages/turf-random/index.ts @@ -17,11 +17,11 @@ import { } from "@turf/helpers"; /** - * Returns a random position within a {@link bounding box}. + * Returns a random position within a {@link BBox|bounding box}. * - * @name randomPosition - * @param {Array} [bbox=[-180, -90, 180, 90]] a bounding box inside of which positions are placed. - * @returns {Array} Position [longitude, latitude] + * @function + * @param {BBox} [bbox=[-180, -90, 180, 90]] a bounding box inside of which positions are placed. + * @returns {Position} Position [longitude, latitude] * @throws {Error} if bbox is invalid * @example * var position = turf.randomPosition([-180, -90, 180, 90]) @@ -56,10 +56,10 @@ function checkBBox(bbox?: BBox | { bbox: BBox }) { /** * Returns a random {@link point}. * - * @name randomPoint + * @function * @param {number} [count=1] how many geometries will be generated * @param {Object} [options={}] Optional parameters - * @param {Array} [options.bbox=[-180, -90, 180, 90]] a bounding box inside of which geometries are placed. + * @param {BBox} [options.bbox=[-180, -90, 180, 90]] a bounding box inside of which geometries are placed. * @returns {FeatureCollection} GeoJSON FeatureCollection of points * @throws {Error} if bbox is invalid * @example @@ -86,10 +86,10 @@ function randomPoint( /** * Returns a random {@link polygon}. * - * @name randomPolygon + * @function * @param {number} [count=1] how many geometries will be generated * @param {Object} [options={}] Optional parameters - * @param {Array} [options.bbox=[-180, -90, 180, 90]] a bounding box inside of which geometries are placed. + * @param {BBox} [options.bbox=[-180, -90, 180, 90]] a bounding box inside of which geometries are placed. * @param {number} [options.num_vertices=10] is how many coordinates each LineString will contain. * @param {number} [options.max_radial_length=10] is the maximum number of decimal degrees latitude or longitude that a * vertex can reach out of the center of the Polygon. @@ -145,16 +145,16 @@ function randomPolygon( const features = []; for (let i = 0; i < count; i++) { - let vertices: any[] = []; + let vertices: number[][] = []; const circleOffsets = [...Array(options.num_vertices + 1)].map(Math.random); // Sum Offsets - circleOffsets.forEach((cur: any, index: number, arr: any[]) => { + circleOffsets.forEach((cur, index, arr) => { arr[index] = index > 0 ? cur + arr[index - 1] : cur; }); // scaleOffsets - circleOffsets.forEach((cur: any) => { + circleOffsets.forEach((cur) => { cur = (cur * 2 * Math.PI) / circleOffsets[circleOffsets.length - 1]; const radialScaler = Math.random(); vertices.push([ @@ -165,21 +165,21 @@ function randomPolygon( vertices[vertices.length - 1] = vertices[0]; // close the ring // center the polygon around something - vertices = vertices.map( - vertexToCoordinate(randomPositionUnchecked(paddedBbox)) - ); + vertices = vertices + .reverse() // Make counter-clockwise to adhere to right hand rule. + .map(vertexToCoordinate(randomPositionUnchecked(paddedBbox))); features.push(polygon([vertices])); } return featureCollection(features); } /** - * Returns a random {@link linestring}. + * Returns a random {@link LineString}. * - * @name randomLineString + * @function * @param {number} [count=1] how many geometries will be generated * @param {Object} [options={}] Optional parameters - * @param {Array} [options.bbox=[-180, -90, 180, 90]] a bounding box inside of which geometries are placed. + * @param {BBox} [options.bbox=[-180, -90, 180, 90]] a bounding box inside of which geometries are placed. * @param {number} [options.num_vertices=10] is how many coordinates each LineString will contain. * @param {number} [options.max_length=0.0001] is the maximum number of decimal degrees that a * vertex can be from its predecessor diff --git a/packages/turf-random/package.json b/packages/turf-random/package.json index bf5b51603..14f5d5115 100644 --- a/packages/turf-random/package.json +++ b/packages/turf-random/package.json @@ -1,7 +1,7 @@ { "name": "@turf/random", - "version": "7.0.0", - "description": "turf random module", + "version": "7.2.0", + "description": "Generates random points, lines, or polygons for testing.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -50,18 +50,18 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", - "glob": "^10.3.10", + "glob": "^11.0.2", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/helpers": "workspace:^", + "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-rectangle-grid/README.md b/packages/turf-rectangle-grid/README.md index 9ad5c99ff..95540ea26 100644 --- a/packages/turf-rectangle-grid/README.md +++ b/packages/turf-rectangle-grid/README.md @@ -4,20 +4,22 @@ ## rectangleGrid -Creates a grid of rectangles from a bounding box, [Feature][1] or [FeatureCollection][2]. +Creates a grid of rectangular polygons with width and height consistent in degrees ### Parameters -* `bbox` **[Array][3]<[number][4]>** extent in \[minX, minY, maxX, maxY] order -* `cellWidth` **[number][4]** of each cell, in units -* `cellHeight` **[number][4]** of each cell, in units -* `options` **[Object][5]** Optional parameters (optional, default `{}`) +* `bbox` **[BBox][1]** extent of grid in \[minX, minY, maxX, maxY] order. If the grid does not fill the bbox perfectly, it is centered. +* `cellWidth` **[number][2]** width of each cell, in units +* `cellHeight` **[number][2]** height of each cell, in units +* `options` **[Object][3]** Optional parameters (optional, default `{}`) - * `options.units` **[string][6]** units ("degrees", "radians", "miles", "kilometers") that the given cellWidth - and cellHeight are expressed in. Converted at the southern border. (optional, default `'kilometers'`) - * `options.mask` **[Feature][1]<([Polygon][7] | [MultiPolygon][8])>?** if passed a Polygon or MultiPolygon, + * `options.units` **Units** the units of the cell width and height value. + Supports all valid Turf [Units][4]. + If you are looking for rectangles with equal width and height in linear units (e.g. kilometers) this is not the module for you. + The cellWidth and cellHeight is converted from units provided to degrees internally, so the width and height of resulting polygons will be consistent only in degrees. (optional, default `'kilometers'`) + * `options.mask` **[Feature][5]<([Polygon][6] | [MultiPolygon][7])>?** if passed a Polygon or MultiPolygon, the grid Points will be created only inside it - * `options.properties` **[Object][5]** passed to each point of the grid (optional, default `{}`) + * `options.properties` **[Object][3]** passed to each point of the grid (optional, default `{}`) ### Examples @@ -33,23 +35,23 @@ var rectangleGrid = turf.rectangleGrid(bbox, cellWidth, cellHeight, options); var addToMap = [rectangleGrid] ``` -Returns **[FeatureCollection][2]<[Polygon][7]>** a grid of polygons +Returns **[FeatureCollection][8]<[Polygon][6]>** a grid of polygons -[1]: https://tools.ietf.org/html/rfc7946#section-3.2 +[1]: https://tools.ietf.org/html/rfc7946#section-5 -[2]: https://tools.ietf.org/html/rfc7946#section-3.3 +[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number -[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array +[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number +[4]: https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/README_UNITS.md -[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object +[5]: https://tools.ietf.org/html/rfc7946#section-3.2 -[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[6]: https://tools.ietf.org/html/rfc7946#section-3.1.6 -[7]: https://tools.ietf.org/html/rfc7946#section-3.1.6 +[7]: https://tools.ietf.org/html/rfc7946#section-3.1.7 -[8]: https://tools.ietf.org/html/rfc7946#section-3.1.7 +[8]: https://tools.ietf.org/html/rfc7946#section-3.3 diff --git a/packages/turf-rectangle-grid/index.ts b/packages/turf-rectangle-grid/index.ts index 68492330a..15bbbfabb 100644 --- a/packages/turf-rectangle-grid/index.ts +++ b/packages/turf-rectangle-grid/index.ts @@ -14,15 +14,17 @@ import { Units, } from "@turf/helpers"; /** - * Creates a grid of rectangles from a bounding box, {@link Feature} or {@link FeatureCollection}. + * Creates a grid of rectangular polygons with width and height consistent in degrees * - * @name rectangleGrid - * @param {Array} bbox extent in [minX, minY, maxX, maxY] order - * @param {number} cellWidth of each cell, in units - * @param {number} cellHeight of each cell, in units + * @function + * @param {BBox} bbox extent of grid in [minX, minY, maxX, maxY] order. If the grid does not fill the bbox perfectly, it is centered. + * @param {number} cellWidth width of each cell, in units + * @param {number} cellHeight height of each cell, in units * @param {Object} [options={}] Optional parameters - * @param {string} [options.units='kilometers'] units ("degrees", "radians", "miles", "kilometers") that the given cellWidth - * and cellHeight are expressed in. Converted at the southern border. + * @param {Units} [options.units='kilometers'] the units of the cell width and height value. + * Supports all valid Turf {@link https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/README_UNITS.md Units}. + * If you are looking for rectangles with equal width and height in linear units (e.g. kilometers) this is not the module for you. + * The cellWidth and cellHeight is converted from units provided to degrees internally, so the width and height of resulting polygons will be consistent only in degrees. * @param {Feature} [options.mask] if passed a Polygon or MultiPolygon, * the grid Points will be created only inside it * @param {Object} [options.properties={}] passed to each point of the grid diff --git a/packages/turf-rectangle-grid/package.json b/packages/turf-rectangle-grid/package.json index dc1c3a6f9..5f748077e 100644 --- a/packages/turf-rectangle-grid/package.json +++ b/packages/turf-rectangle-grid/package.json @@ -1,7 +1,7 @@ { "name": "@turf/rectangle-grid", - "version": "7.0.0", - "description": "turf rectangle-grid module", + "version": "7.2.0", + "description": "Creates a grid of rectangular polygons with width and height consistent in degrees.", "author": "Turf Authors", "contributors": [ "Steve Bennett <@stevage>", @@ -55,24 +55,24 @@ "test:tape": "tsx test.ts" }, "devDependencies": { - "@turf/bbox-polygon": "workspace:^", - "@turf/truncate": "workspace:^", + "@turf/bbox-polygon": "workspace:*", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/boolean-intersects": "workspace:^", - "@turf/distance": "workspace:^", - "@turf/helpers": "workspace:^", + "@turf/boolean-intersects": "workspace:*", + "@turf/distance": "workspace:*", + "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-rewind/index.ts b/packages/turf-rewind/index.ts index f5a0226e9..4c7fffaee 100644 --- a/packages/turf-rewind/index.ts +++ b/packages/turf-rewind/index.ts @@ -19,7 +19,7 @@ import type { AllGeoJSON } from "@turf/helpers"; /** * Rewind {@link LineString|(Multi)LineString} or {@link Polygon|(Multi)Polygon} outer ring counterclockwise and inner rings clockwise (Uses {@link http://en.wikipedia.org/wiki/Shoelace_formula|Shoelace Formula}). * - * @name rewind + * @function * @param {GeoJSON} geojson input GeoJSON Polygon * @param {Object} [options={}] Optional parameters * @param {boolean} [options.reverse=false] enable reverse winding diff --git a/packages/turf-rewind/package.json b/packages/turf-rewind/package.json index d2b624d7d..a519ac4a0 100644 --- a/packages/turf-rewind/package.json +++ b/packages/turf-rewind/package.json @@ -1,7 +1,7 @@ { "name": "@turf/rewind", - "version": "7.0.0", - "description": "turf rewind module", + "version": "7.2.0", + "description": "Rewind using Shoelace Formula.", "author": "Turf Authors", "contributors": [ "Abel VΓ‘zquez Montoro <@AbelVM>", @@ -59,23 +59,23 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/boolean-clockwise": "workspace:^", - "@turf/clone": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/boolean-clockwise": "workspace:*", + "@turf/clone": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-rhumb-bearing/README.md b/packages/turf-rhumb-bearing/README.md index a8be86d3f..c69464d9d 100644 --- a/packages/turf-rhumb-bearing/README.md +++ b/packages/turf-rhumb-bearing/README.md @@ -11,7 +11,7 @@ i.e. the angle measured in degrees start the north line (0 degrees) * `start` **[Coord][2]** starting Point * `end` **[Coord][2]** ending Point -* `options` **[Object][3]?** Optional parameters +* `options` **[Object][3]?** Optional parameters (optional, default `{}`) * `options.final` **[boolean][4]** calculates the final bearing if true (optional, default `false`) diff --git a/packages/turf-rhumb-bearing/index.ts b/packages/turf-rhumb-bearing/index.ts index 16372c398..c3d48ccc9 100644 --- a/packages/turf-rhumb-bearing/index.ts +++ b/packages/turf-rhumb-bearing/index.ts @@ -6,7 +6,7 @@ import { getCoord } from "@turf/invariant"; * Takes two {@link Point|points} and finds the bearing angle between them along a Rhumb line * i.e. the angle measured in degrees start the north line (0 degrees) * - * @name rhumbBearing + * @function * @param {Coord} start starting Point * @param {Coord} end ending Point * @param {Object} [options] Optional parameters diff --git a/packages/turf-rhumb-bearing/package.json b/packages/turf-rhumb-bearing/package.json index fbf34b8a6..958dee0e1 100644 --- a/packages/turf-rhumb-bearing/package.json +++ b/packages/turf-rhumb-bearing/package.json @@ -1,7 +1,7 @@ { "name": "@turf/rhumb-bearing", - "version": "7.0.0", - "description": "turf rhumb-bearing module", + "version": "7.2.0", + "description": "Takes two points and finds the bearing angle between them along a Rhumb line.", "author": "Turf Authors", "contributors": [ "Chris Veness <@chrisveness>", @@ -57,21 +57,21 @@ "test:tape": "tsx test.ts" }, "devDependencies": { - "@turf/destination": "workspace:^", + "@turf/destination": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-rhumb-destination/README.md b/packages/turf-rhumb-destination/README.md index 001ad5d59..5774073c0 100644 --- a/packages/turf-rhumb-destination/README.md +++ b/packages/turf-rhumb-destination/README.md @@ -14,7 +14,7 @@ origin Point with the (varant) given bearing. * `bearing` **[number][3]** varant bearing angle ranging from -180 to 180 degrees from north * `options` **[Object][4]** Optional parameters (optional, default `{}`) - * `options.units` **[string][5]** can be degrees, radians, miles, or kilometers (optional, default `'kilometers'`) + * `options.units` **Units** Supports all valid Turf [Units][5] (optional, default `'kilometers'`) * `options.properties` **[Object][4]** translate properties to destination point (optional, default `{}`) ### Examples @@ -42,7 +42,7 @@ Returns **[Feature][6]<[Point][1]>** Destination point. [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[5]: https://turfjs.org/docs/api/types/Units [6]: https://tools.ietf.org/html/rfc7946#section-3.2 diff --git a/packages/turf-rhumb-destination/index.ts b/packages/turf-rhumb-destination/index.ts index a91cdf8dd..a47e18f69 100644 --- a/packages/turf-rhumb-destination/index.ts +++ b/packages/turf-rhumb-destination/index.ts @@ -14,12 +14,12 @@ import { getCoord } from "@turf/invariant"; * Returns the destination {@link Point} having travelled the given distance along a Rhumb line from the * origin Point with the (varant) given bearing. * - * @name rhumbDestination + * @function * @param {Coord} origin starting point * @param {number} distance distance from the starting point * @param {number} bearing varant bearing angle ranging from -180 to 180 degrees from north * @param {Object} [options={}] Optional parameters - * @param {string} [options.units='kilometers'] can be degrees, radians, miles, or kilometers + * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @param {Object} [options.properties={}] translate properties to destination point * @returns {Feature} Destination point. * @example diff --git a/packages/turf-rhumb-destination/package.json b/packages/turf-rhumb-destination/package.json index a74a8076c..be8a71106 100644 --- a/packages/turf-rhumb-destination/package.json +++ b/packages/turf-rhumb-destination/package.json @@ -1,7 +1,7 @@ { "name": "@turf/rhumb-destination", - "version": "7.0.0", - "description": "turf rhumb-destination module", + "version": "7.2.0", + "description": "Calculates the destination point having travelled the given distance along a Rhumb line.", "author": "Turf Authors", "contributors": [ "Chris Veness <@chrisveness>", @@ -61,22 +61,22 @@ "test:tape": "tsx test.ts" }, "devDependencies": { - "@turf/truncate": "workspace:^", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-rhumb-distance/README.md b/packages/turf-rhumb-distance/README.md index 17b630849..9e5ea1321 100644 --- a/packages/turf-rhumb-distance/README.md +++ b/packages/turf-rhumb-distance/README.md @@ -4,16 +4,15 @@ ## rhumbDistance -Calculates the distance along a rhumb line between two [points][1] in degrees, radians, -miles, or kilometers. +Calculates the distance along a rhumb line between two [points][1] in [Units][2] ### Parameters -* `from` **[Coord][2]** origin point -* `to` **[Coord][2]** destination point -* `options` **[Object][3]?** Optional parameters +* `from` **[Coord][3]** origin point +* `to` **[Coord][3]** destination point +* `options` **[Object][4]?** Optional parameters (optional, default `{}`) - * `options.units` **[string][4]** can be degrees, radians, miles, or kilometers (optional, default `"kilometers"`) + * `options.units` **Units** Supports all valid Turf [Units][2] (optional, default `'kilometers'`) ### Examples @@ -34,11 +33,11 @@ Returns **[number][5]** distance between the two points [1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 -[2]: https://tools.ietf.org/html/rfc7946#section-3.1.1 +[2]: https://turfjs.org/docs/api/types/Units -[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object +[3]: https://tools.ietf.org/html/rfc7946#section-3.1.1 -[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number diff --git a/packages/turf-rhumb-distance/index.ts b/packages/turf-rhumb-distance/index.ts index fe07ad145..a1f698daf 100644 --- a/packages/turf-rhumb-distance/index.ts +++ b/packages/turf-rhumb-distance/index.ts @@ -3,14 +3,13 @@ import { convertLength, Coord, earthRadius, Units } from "@turf/helpers"; import { getCoord } from "@turf/invariant"; /** - * Calculates the distance along a rhumb line between two {@link Point|points} in degrees, radians, - * miles, or kilometers. + * Calculates the distance along a rhumb line between two {@link Point|points} in {@link https://turfjs.org/docs/api/types/Units Units} * - * @name rhumbDistance + * @function * @param {Coord} from origin point * @param {Coord} to destination point * @param {Object} [options] Optional parameters - * @param {string} [options.units="kilometers"] can be degrees, radians, miles, or kilometers + * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @returns {number} distance between the two points * @example * var from = turf.point([-75.343, 39.984]); diff --git a/packages/turf-rhumb-distance/package.json b/packages/turf-rhumb-distance/package.json index 80d560334..d615cdf8b 100644 --- a/packages/turf-rhumb-distance/package.json +++ b/packages/turf-rhumb-distance/package.json @@ -1,7 +1,7 @@ { "name": "@turf/rhumb-distance", - "version": "7.0.0", - "description": "turf rhumb-distance module", + "version": "7.2.0", + "description": "Calculates the distance along a rhumb line between two points.", "author": "Turf Authors", "contributors": [ "Chris Veness <@chrisveness>", @@ -59,22 +59,22 @@ "test:tape": "tsx test.ts" }, "devDependencies": { - "@turf/distance": "workspace:^", + "@turf/distance": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-sample/README.md b/packages/turf-sample/README.md index d853c8b2c..49079f834 100644 --- a/packages/turf-sample/README.md +++ b/packages/turf-sample/README.md @@ -8,8 +8,9 @@ Takes a [FeatureCollection][1] and returns a FeatureCollection with given number ### Parameters -* `featurecollection` **[FeatureCollection][1]** set of input features +* `fc` **[FeatureCollection][1]\** * `num` **[number][3]** number of features to select +* `featurecollection` **[FeatureCollection][1]** set of input features ### Examples diff --git a/packages/turf-sample/index.ts b/packages/turf-sample/index.ts index c3b7284ea..e96bbcaa2 100644 --- a/packages/turf-sample/index.ts +++ b/packages/turf-sample/index.ts @@ -5,7 +5,7 @@ import { featureCollection } from "@turf/helpers"; /** * Takes a {@link FeatureCollection} and returns a FeatureCollection with given number of {@link Feature|features} at random. * - * @name sample + * @function * @param {FeatureCollection} featurecollection set of input features * @param {number} num number of features to select * @returns {FeatureCollection} a FeatureCollection with `n` features diff --git a/packages/turf-sample/package.json b/packages/turf-sample/package.json index 6e2581a14..b3d42fe46 100644 --- a/packages/turf-sample/package.json +++ b/packages/turf-sample/package.json @@ -1,7 +1,7 @@ { "name": "@turf/sample", - "version": "7.0.0", - "description": "turf sample module", + "version": "7.2.0", + "description": "Takes a FeatureCollection and returns a FeatureCollection with given number of features at random.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -52,17 +52,17 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/helpers": "workspace:^", + "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-sector/README.md b/packages/turf-sector/README.md index 6e86c0082..8d226c751 100644 --- a/packages/turf-sector/README.md +++ b/packages/turf-sector/README.md @@ -15,7 +15,7 @@ between (clockwise) bearing1 and bearing2; 0 bearing is North of center point, p * `bearing2` **[number][3]** angle, in decimal degrees, of the second radius of the sector * `options` **[Object][4]** Optional parameters (optional, default `{}`) - * `options.units` **[string][5]** miles, kilometers, degrees, or radians (optional, default `'kilometers'`) + * `options.units` **Units** Supports all valid Turf [Units][5] (optional, default `'kilometers'`) * `options.steps` **[number][3]** number of steps (optional, default `64`) * `options.properties` **Properties** Translate properties to Feature Polygon (optional, default `{}`) @@ -43,7 +43,7 @@ Returns **[Feature][6]<[Polygon][7]>** sector polygon [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[5]: https://turfjs.org/docs/api/types/Units [6]: https://tools.ietf.org/html/rfc7946#section-3.2 diff --git a/packages/turf-sector/index.ts b/packages/turf-sector/index.ts index e648cfb4d..c817ea4c4 100644 --- a/packages/turf-sector/index.ts +++ b/packages/turf-sector/index.ts @@ -9,13 +9,13 @@ import { getCoords } from "@turf/invariant"; * Creates a circular sector of a circle of given radius and center {@link Point}, * between (clockwise) bearing1 and bearing2; 0 bearing is North of center point, positive clockwise. * - * @name sector + * @function * @param {Coord} center center point * @param {number} radius radius of the circle * @param {number} bearing1 angle, in decimal degrees, of the first radius of the sector * @param {number} bearing2 angle, in decimal degrees, of the second radius of the sector * @param {Object} [options={}] Optional parameters - * @param {string} [options.units='kilometers'] miles, kilometers, degrees, or radians + * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @param {number} [options.steps=64] number of steps * @param {Properties} [options.properties={}] Translate properties to Feature Polygon * @returns {Feature} sector polygon diff --git a/packages/turf-sector/package.json b/packages/turf-sector/package.json index d0736fecb..fa813426b 100644 --- a/packages/turf-sector/package.json +++ b/packages/turf-sector/package.json @@ -1,7 +1,7 @@ { "name": "@turf/sector", - "version": "7.0.0", - "description": "turf sector module", + "version": "7.2.0", + "description": "Creates a circular sector of a circle.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -50,25 +50,25 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/truncate": "workspace:^", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/circle": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/line-arc": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/circle": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/line-arc": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-shortest-path/README.md b/packages/turf-shortest-path/README.md index 4875b1b76..227a03db3 100644 --- a/packages/turf-shortest-path/README.md +++ b/packages/turf-shortest-path/README.md @@ -5,17 +5,17 @@ ## shortestPath Returns the shortest [path][1] from [start][2] to [end][2] without colliding with -any [Feature][3] in [ obstacles][4] +any [Feature][3] in obstacles [FeatureCollection][4]<[Polygon][5]> ### Parameters -* `start` **[Coord][5]** point -* `end` **[Coord][5]** point -* `options` **[Object][6]** optional parameters (optional, default `{}`) +* `start` **[Coord][6]** point +* `end` **[Coord][6]** point +* `options` **[Object][7]** optional parameters (optional, default `{}`) - * `options.obstacles` **([Geometry][7] | [Feature][3] | [FeatureCollection][8]<[Polygon][9]>)?** areas which path cannot travel - * `options.units` **[string][10]** unit in which resolution & minimum distance will be expressed in; it can be degrees, radians, miles, kilometers, ... (optional, default `'kilometers'`) - * `options.resolution` **[number][11]** distance between matrix points on which the path will be calculated (optional, default `100`) + * `options.obstacles` **([Polygon][5] | [Feature][3]<[Polygon][5]> | [FeatureCollection][4]<[Polygon][5]>)?** areas which path cannot travel + * `options.units` **Units** unit in which resolution & minimum distance will be expressed in; Supports all valid Turf [Units][8]. (optional, default `'kilometers'`) + * `options.resolution` **[number][9]** distance between matrix points on which the path will be calculated (optional, default `100`) ### Examples @@ -23,7 +23,7 @@ any [Feature][3] in [ obstacles][4] var start = [-5, -6]; var end = [9, -6]; var options = { - obstacles: turf.polygon([[[0, -7], [5, -7], [5, -3], [0, -3], [0, -7]]]) + obstacles: turf.polygon([[[0, -7], [5, -7], [5, -3], [0, -3], [0, -7]]]).geometry }; var path = turf.shortestPath(start, end, options); @@ -40,21 +40,17 @@ Returns **[Feature][3]<[LineString][1]>** shortest path between start and end [3]: https://tools.ietf.org/html/rfc7946#section-3.2 -[4]: FeatureCollection +[4]: https://tools.ietf.org/html/rfc7946#section-3.3 -[5]: https://tools.ietf.org/html/rfc7946#section-3.1.1 +[5]: https://tools.ietf.org/html/rfc7946#section-3.1.6 -[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object +[6]: https://tools.ietf.org/html/rfc7946#section-3.1.1 -[7]: https://tools.ietf.org/html/rfc7946#section-3.1 +[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[8]: https://tools.ietf.org/html/rfc7946#section-3.3 +[8]: https://turfjs.org/docs/api/types/Units -[9]: https://tools.ietf.org/html/rfc7946#section-3.1.6 - -[10]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String - -[11]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number +[9]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number diff --git a/packages/turf-shortest-path/index.ts b/packages/turf-shortest-path/index.ts index 33908b2c8..353ad1094 100644 --- a/packages/turf-shortest-path/index.ts +++ b/packages/turf-shortest-path/index.ts @@ -27,21 +27,21 @@ import { Graph, GridNode, astar } from "./lib/javascript-astar.js"; /** * Returns the shortest {@link LineString|path} from {@link Point|start} to {@link Point|end} without colliding with - * any {@link Feature} in {@link FeatureCollection| obstacles} + * any {@link Feature} in obstacles {@link FeatureCollection}<{@link Polygon}> * - * @name shortestPath + * @function * @param {Coord} start point * @param {Coord} end point * @param {Object} [options={}] optional parameters - * @param {Geometry|Feature|FeatureCollection} [options.obstacles] areas which path cannot travel - * @param {string} [options.units='kilometers'] unit in which resolution & minimum distance will be expressed in; it can be degrees, radians, miles, kilometers, ... + * @param {Polygon|Feature|FeatureCollection} [options.obstacles] areas which path cannot travel + * @param {Units} [options.units='kilometers'] unit in which resolution & minimum distance will be expressed in; Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @param {number} [options.resolution=100] distance between matrix points on which the path will be calculated * @returns {Feature} shortest path between start and end * @example * var start = [-5, -6]; * var end = [9, -6]; * var options = { - * obstacles: turf.polygon([[[0, -7], [5, -7], [5, -3], [0, -3], [0, -7]]]) + * obstacles: turf.polygon([[[0, -7], [5, -7], [5, -3], [0, -3], [0, -7]]]).geometry * }; * * var path = turf.shortestPath(start, end, options); diff --git a/packages/turf-shortest-path/package.json b/packages/turf-shortest-path/package.json index e1fe95fd9..7d765e034 100644 --- a/packages/turf-shortest-path/package.json +++ b/packages/turf-shortest-path/package.json @@ -1,7 +1,7 @@ { "name": "@turf/shortest-path", - "version": "7.0.0", - "description": "turf shortest-path module", + "version": "7.2.0", + "description": "Returns the shortest path from start to end without colliding with any Feature in obstacles.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>", @@ -55,29 +55,29 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/truncate": "workspace:^", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/bbox": "workspace:^", - "@turf/bbox-polygon": "workspace:^", - "@turf/boolean-point-in-polygon": "workspace:^", - "@turf/clean-coords": "workspace:^", - "@turf/distance": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/meta": "workspace:^", - "@turf/transform-scale": "workspace:^", + "@turf/bbox": "workspace:*", + "@turf/bbox-polygon": "workspace:*", + "@turf/boolean-point-in-polygon": "workspace:*", + "@turf/clean-coords": "workspace:*", + "@turf/distance": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/meta": "workspace:*", + "@turf/transform-scale": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-simplify/README.md b/packages/turf-simplify/README.md index 42e533702..c8349ea97 100644 --- a/packages/turf-simplify/README.md +++ b/packages/turf-simplify/README.md @@ -4,22 +4,22 @@ ## simplify -Takes a [GeoJSON][1] object and returns a simplified version. Internally uses the 2d version of -[simplify-js][2] to perform simplification using the Ramer-Douglas-Peucker algorithm. +Simplifies the geometries in a GeoJSON object. Uses the 2d version of +[simplify-js][1]. ### Parameters -* `geojson` **[GeoJSON][1]** object to be simplified +* `geojson` **[GeoJSON][2]** GeoJSON object to be simplified * `options` **[Object][3]** Optional parameters (optional, default `{}`) - * `options.tolerance` **[number][4]** simplification tolerance (optional, default `1`) - * `options.highQuality` **[boolean][5]** whether or not to spend more time to create a higher-quality simplification with a different algorithm (optional, default `false`) - * `options.mutate` **[boolean][5]** allows GeoJSON input to be mutated (significant performance increase if true) (optional, default `false`) + * `options.tolerance` **[number][4]** Simplification tolerance (optional, default `1`) + * `options.highQuality` **[boolean][5]** Produce a higher-quality simplification using a slower algorithm (optional, default `false`) + * `options.mutate` **[boolean][5]** Allow GeoJSON input to be mutated (significant performance improvement if true) (optional, default `false`) ### Examples ```javascript -var geojson = turf.polygon([[ +const geojson = turf.polygon([[ [-70.603637, -33.399918], [-70.614624, -33.395332], [-70.639343, -33.392466], @@ -41,18 +41,18 @@ var geojson = turf.polygon([[ [-70.594711, -33.406224], [-70.603637, -33.399918] ]]); -var options = {tolerance: 0.01, highQuality: false}; -var simplified = turf.simplify(geojson, options); +const result0_01 = turf.simplify(geojson, {tolerance: 0.01 }); +const result0_005 = turf.simplify(geojson, {tolerance: 0.005 }); //addToMap -var addToMap = [geojson, simplified] +const addToMap = [geojson, result0_01, result0_005] ``` -Returns **[GeoJSON][1]** a simplified GeoJSON +Returns **[GeoJSON][2]** Simplified GeoJSON -[1]: https://tools.ietf.org/html/rfc7946#section-3 +[1]: https://mourner.github.io/simplify-js/ -[2]: http://mourner.github.io/simplify-js/ +[2]: https://tools.ietf.org/html/rfc7946#section-3 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object diff --git a/packages/turf-simplify/index.ts b/packages/turf-simplify/index.ts index ec2d26cd0..0efa19e46 100644 --- a/packages/turf-simplify/index.ts +++ b/packages/turf-simplify/index.ts @@ -6,19 +6,18 @@ import { AllGeoJSON, isObject } from "@turf/helpers"; import { simplify as simplifyJS } from "./lib/simplify.js"; /** - * Takes a {@link GeoJSON} object and returns a simplified version. Internally uses the 2d version of - * [simplify-js](http://mourner.github.io/simplify-js/) to perform simplification using the Ramer-Douglas-Peucker algorithm. + * Simplifies the geometries in a GeoJSON object. Uses the 2d version of + * [simplify-js](https://mourner.github.io/simplify-js/). * - * - * @name simplify - * @param {GeoJSON} geojson object to be simplified + * @function + * @param {GeoJSON} geojson GeoJSON object to be simplified * @param {Object} [options={}] Optional parameters - * @param {number} [options.tolerance=1] simplification tolerance - * @param {boolean} [options.highQuality=false] whether or not to spend more time to create a higher-quality simplification with a different algorithm - * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true) - * @returns {GeoJSON} a simplified GeoJSON + * @param {number} [options.tolerance=1] Simplification tolerance + * @param {boolean} [options.highQuality=false] Produce a higher-quality simplification using a slower algorithm + * @param {boolean} [options.mutate=false] Allow GeoJSON input to be mutated (significant performance improvement if true) + * @returns {GeoJSON} Simplified GeoJSON * @example - * var geojson = turf.polygon([[ + * const geojson = turf.polygon([[ * [-70.603637, -33.399918], * [-70.614624, -33.395332], * [-70.639343, -33.392466], @@ -40,11 +39,11 @@ import { simplify as simplifyJS } from "./lib/simplify.js"; * [-70.594711, -33.406224], * [-70.603637, -33.399918] * ]]); - * var options = {tolerance: 0.01, highQuality: false}; - * var simplified = turf.simplify(geojson, options); + * const result0_01 = turf.simplify(geojson, {tolerance: 0.01 }); + * const result0_005 = turf.simplify(geojson, {tolerance: 0.005 }); * * //addToMap - * var addToMap = [geojson, simplified] + * const addToMap = [geojson, result0_01, result0_005] */ function simplify( geojson: T, @@ -147,11 +146,20 @@ function simplifyPolygon( } let ringTolerance = tolerance; let simpleRing = simplifyJS(ring, ringTolerance, highQuality); - // remove 1 percent of tolerance until enough points to make a triangle - while (!checkValidity(simpleRing)) { + + // If simplified ring isn't valid (has been over simplified) reduce the + // tolerance by 1% and try again. + while (!checkValidity(simpleRing) && ringTolerance >= Number.EPSILON) { ringTolerance -= ringTolerance * 0.01; simpleRing = simplifyJS(ring, ringTolerance, highQuality); } + + // If ring wasn't able to be simplified in a valid way, return it unchanged. + if (!checkValidity(simpleRing)) { + return ring; + } + + // Close the ring if it wasn't already. if ( simpleRing[simpleRing.length - 1][0] !== simpleRing[0][0] || simpleRing[simpleRing.length - 1][1] !== simpleRing[0][1] diff --git a/packages/turf-simplify/package.json b/packages/turf-simplify/package.json index 4bb4d77f2..35b330819 100644 --- a/packages/turf-simplify/package.json +++ b/packages/turf-simplify/package.json @@ -1,7 +1,7 @@ { "name": "@turf/simplify", - "version": "7.0.0", - "description": "turf simplify module", + "version": "7.2.0", + "description": "Reduces the number of points in a shape while keeping its overall look.", "author": "Turf Authors", "contributors": [ "Vladimir Agafonkin <@mourner>", @@ -58,24 +58,24 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/truncate": "workspace:^", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/clean-coords": "workspace:^", - "@turf/clone": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/clean-coords": "workspace:*", + "@turf/clone": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-simplify/test.ts b/packages/turf-simplify/test.ts index e033c573a..feed0c2dd 100644 --- a/packages/turf-simplify/test.ts +++ b/packages/turf-simplify/test.ts @@ -214,3 +214,60 @@ test("simplify -- issue #918", (t) => { ); t.end(); }); + +test("simplify - issue 1788 - infinite loop", (t) => { + // For particularly small polygons simplify was getting stuck in an + // infinite loop. + + // https://github.com/Turfjs/turf/issues/1788#issue-521052548 + const poly1 = polygon([ + [ + [11.662180661499999, 50.1081498005], + [11.662192661499999, 50.108041800500004], + [11.6621866615, 50.1080958005], + [11.662180661499999, 50.1081498005], + ], + ]); + simplify(poly1, { + tolerance: 0.000001, + highQuality: true, + mutate: false, + }); + t.pass("issue 1788 test 1 didn't hang"); + + // https://github.com/Turfjs/turf/issues/1788#issuecomment-951109683 + const poly2 = polygon([ + [ + [4.0881641, 6.8121605], + [4.0881639, 6.8121607], + [4.0881638, 6.8121608], + [4.0881641, 6.8121605], + ], + ]); + simplify(poly2); + t.pass("issue 1788 test 2 didn't hang"); + + // https://github.com/Turfjs/turf/issues/1788#issuecomment-1362073785 + const poly3 = multiPolygon([ + [ + [ + [-10.06762725, -17.428977611], + [-10.067626613, -17.428977323], + [-10.067625943, -17.428976957], + [-10.06762725, -17.428977611], + ], + ], + [ + [ + [-10.067625943, -17.428976957], + [-10.067599027, -17.428963499], + [-10.067625941, -17.428976956], + [-10.067625943, -17.428976957], + ], + ], + ]); + simplify(poly3, { tolerance: 0.00001, highQuality: true }); + t.pass("issue 1788 test 3 didn't hang"); + + t.end(); +}); diff --git a/packages/turf-square-grid/README.md b/packages/turf-square-grid/README.md index 0a04b3535..28d11fbd0 100644 --- a/packages/turf-square-grid/README.md +++ b/packages/turf-square-grid/README.md @@ -4,16 +4,18 @@ ## squareGrid -Creates a square grid from a bounding box. +Creates a grid of square polygons with cell length consistent in degrees ### Parameters -* `bbox` **[Array][1]<[number][2]>** extent in \[minX, minY, maxX, maxY] order -* `cellSide` **[number][2]** of each cell, in units +* `bbox` **[BBox][1]** extent of grid in \[minX, minY, maxX, maxY] order. If the grid does not fill the bbox perfectly, it is centered. +* `cellSide` **[number][2]** length of each cell side. * `options` **[Object][3]** Optional parameters (optional, default `{}`) - * `options.units` **[string][4]** used in calculating cellSide, can be degrees, - radians, miles, or kilometers (optional, default `'kilometers'`) + * `options.units` **Units** the units of the cellSide value. + Supports all valid Turf [Units][4]. + If you are looking for squares with sides of equal lengths in linear units (e.g. kilometers) this is not the module for you. + The cellSide is converted from units provided to degrees internally, so the width and height of resulting polygons will be consistent only in degrees. (optional, default `'kilometers'`) * `options.mask` **[Feature][5]<([Polygon][6] | [MultiPolygon][7])>?** if passed a Polygon or MultiPolygon, the grid Points will be created only inside it * `options.properties` **[Object][3]** passed to each point of the grid (optional, default `{}`) @@ -31,15 +33,15 @@ var squareGrid = turf.squareGrid(bbox, cellSide, options); var addToMap = [squareGrid] ``` -Returns **[FeatureCollection][8]<[Polygon][6]>** grid a grid of polygons +Returns **[FeatureCollection][8]<[Polygon][6]>** a grid of polygons with equal width and height in degrees. -[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array +[1]: https://tools.ietf.org/html/rfc7946#section-5 [2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[4]: https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/README_UNITS.md [5]: https://tools.ietf.org/html/rfc7946#section-3.2 diff --git a/packages/turf-square-grid/index.ts b/packages/turf-square-grid/index.ts index e70a5e953..4cf2d1acc 100644 --- a/packages/turf-square-grid/index.ts +++ b/packages/turf-square-grid/index.ts @@ -10,18 +10,20 @@ import { Units } from "@turf/helpers"; import { rectangleGrid } from "@turf/rectangle-grid"; /** - * Creates a square grid from a bounding box. + * Creates a grid of square polygons with cell length consistent in degrees * - * @name squareGrid - * @param {Array} bbox extent in [minX, minY, maxX, maxY] order - * @param {number} cellSide of each cell, in units + * @function + * @param {BBox} bbox extent of grid in [minX, minY, maxX, maxY] order. If the grid does not fill the bbox perfectly, it is centered. + * @param {number} cellSide length of each cell side. * @param {Object} [options={}] Optional parameters - * @param {string} [options.units='kilometers'] used in calculating cellSide, can be degrees, - * radians, miles, or kilometers + * @param {Units} [options.units='kilometers'] the units of the cellSide value. + * Supports all valid Turf {@link https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/README_UNITS.md Units}. + * If you are looking for squares with sides of equal lengths in linear units (e.g. kilometers) this is not the module for you. + * The cellSide is converted from units provided to degrees internally, so the width and height of resulting polygons will be consistent only in degrees. * @param {Feature} [options.mask] if passed a Polygon or MultiPolygon, * the grid Points will be created only inside it * @param {Object} [options.properties={}] passed to each point of the grid - * @returns {FeatureCollection} grid a grid of polygons + * @returns {FeatureCollection} a grid of polygons with equal width and height in degrees. * @example * var bbox = [-95, 30 ,-85, 40]; * var cellSide = 50; diff --git a/packages/turf-square-grid/package.json b/packages/turf-square-grid/package.json index 9273c88b7..93778f4c8 100644 --- a/packages/turf-square-grid/package.json +++ b/packages/turf-square-grid/package.json @@ -1,7 +1,7 @@ { "name": "@turf/square-grid", - "version": "7.0.0", - "description": "turf square-grid module", + "version": "7.2.0", + "description": "Creates a square grid within a bounding box.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -52,22 +52,22 @@ "test:tape": "tsx test.ts" }, "devDependencies": { - "@turf/bbox-polygon": "workspace:^", - "@turf/truncate": "workspace:^", + "@turf/bbox-polygon": "workspace:*", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/rectangle-grid": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/rectangle-grid": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-square/index.ts b/packages/turf-square/index.ts index 1c477b528..7818261b9 100644 --- a/packages/turf-square/index.ts +++ b/packages/turf-square/index.ts @@ -5,7 +5,7 @@ import { BBox } from "geojson"; * Takes a bounding box and calculates the minimum square bounding box that * would contain the input. * - * @name square + * @function * @param {BBox} bbox extent in [west, south, east, north] order * @returns {BBox} a square surrounding `bbox` * @example diff --git a/packages/turf-square/package.json b/packages/turf-square/package.json index 8e2280865..2a3904487 100644 --- a/packages/turf-square/package.json +++ b/packages/turf-square/package.json @@ -1,7 +1,7 @@ { "name": "@turf/square", - "version": "7.0.0", - "description": "turf square module", + "version": "7.2.0", + "description": "Takes a bounding box and calculates the minimum square bounding box that would contain the input.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -52,18 +52,18 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/distance": "workspace:^", - "@turf/helpers": "workspace:^", + "@turf/distance": "workspace:*", + "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-standard-deviational-ellipse/index.ts b/packages/turf-standard-deviational-ellipse/index.ts index e73f4072e..a3c9204b5 100644 --- a/packages/turf-standard-deviational-ellipse/index.ts +++ b/packages/turf-standard-deviational-ellipse/index.ts @@ -50,7 +50,7 @@ declare interface StandardDeviationalEllipse extends Feature { * doi:{@link https://doi.org/10.1086/214336|10.1086/214336}. * * - * @name standardDeviationalEllipse + * @function * @param {FeatureCollection} points GeoJSON points * @param {Object} [options={}] Optional parameters * @param {string} [options.weight] the property name used to weight the center diff --git a/packages/turf-standard-deviational-ellipse/package.json b/packages/turf-standard-deviational-ellipse/package.json index 9199ae158..33d13ddfd 100644 --- a/packages/turf-standard-deviational-ellipse/package.json +++ b/packages/turf-standard-deviational-ellipse/package.json @@ -1,7 +1,7 @@ { "name": "@turf/standard-deviational-ellipse", - "version": "7.0.0", - "description": "turf standard-deviational-ellipse module", + "version": "7.2.0", + "description": "Takes a collection of features and returns a standard deviational ellipse.", "author": "Turf Authors", "contributors": [ "Moacir P. de SΓ‘ Pereira <@muziejus>" @@ -55,27 +55,27 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/random": "workspace:^", - "@turf/truncate": "workspace:^", + "@turf/random": "workspace:*", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/center-mean": "workspace:^", - "@turf/ellipse": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/meta": "workspace:^", - "@turf/points-within-polygon": "workspace:^", + "@turf/center-mean": "workspace:*", + "@turf/ellipse": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/meta": "workspace:*", + "@turf/points-within-polygon": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-standard-deviational-ellipse/test/in/mta-stations-unweighted.json b/packages/turf-standard-deviational-ellipse/test/in/mta-stations-unweighted.json index 5d075c8da..9137250ea 100644 --- a/packages/turf-standard-deviational-ellipse/test/in/mta-stations-unweighted.json +++ b/packages/turf-standard-deviational-ellipse/test/in/mta-stations-unweighted.json @@ -16,195 +16,71 @@ "type": "Polygon", "coordinates": [ [ - [-73.864013671875, 40.70892333984375], - [-73.864807128906193, 40.706298828125057], - [-73.865600585937386, 40.703674316406307], - [-73.86639404296875, 40.7012939453125], - [-73.867309570312443, 40.698730468750114], - [-73.8682861328125, 40.696289062500114], - [-73.86932373046875, 40.693725585937557], - [-73.87030029296875, 40.691284179687614], - [-73.871704101562386, 40.6881103515625], - [-73.873107910156193, 40.68487548828125], - [-73.87432861328125, 40.682495117187557], - [-73.875976562499943, 40.679321289062443], - [-73.877319335937443, 40.6768798828125], - [-73.8782958984375, 40.674926757812614], - [-73.87982177734375, 40.6724853515625], - [-73.88128662109375, 40.669921875000114], - [-73.88287353515625, 40.667480468750114], - [-73.88458251953125, 40.664916992187557], - [-73.88592529296875, 40.663085937500114], - [-73.88720703125, 40.66107177734375], - [-73.88909912109375, 40.658691406250114], - [-73.89111328125, 40.656127929687557], - [-73.8931884765625, 40.653686523437557], - [-73.895324707031193, 40.651123046875], - [-73.8975830078125, 40.648681640625], - [-73.900024414062386, 40.646301269531364], - [-73.902404785156193, 40.643920898437557], - [-73.9044189453125, 40.642089843750114], - [-73.9063720703125, 40.640502929687557], - [-73.909179687499886, 40.638305664062614], - [-73.9119873046875, 40.636108398437557], - [-73.914978027343693, 40.633911132812614], - [-73.91729736328125, 40.632324218750057], - [-73.919677734375, 40.63092041015625], - [-73.922973632812443, 40.629089355468807], - [-73.9263916015625, 40.62750244140625], - [-73.929870605468693, 40.625915527343693], - [-73.933471679687443, 40.624694824218807], - [-73.937194824218693, 40.62347412109375], - [-73.940917968749943, 40.62249755859375], - [-73.9447021484375, 40.621887207031364], - [-73.9486083984375, 40.621276855468807], - [-73.952392578125, 40.621093750000114], - [-73.956298828125, 40.621276855468807], - [-73.960205078124886, 40.621520996093864], - [-73.963989257812443, 40.622070312500114], - [-73.9677734375, 40.62310791015625], - [-73.97149658203125, 40.624328613281307], - [-73.97509765625, 40.625488281250114], - [-73.978576660156193, 40.6273193359375], - [-73.98187255859375, 40.629272460937557], - [-73.985107421875, 40.631530761718807], - [-73.988220214843693, 40.633728027343864], - [-73.991088867187443, 40.636474609375], - [-73.993774414062386, 40.6392822265625], - [-73.99639892578125, 40.642089843750114], - [-73.998229980468693, 40.644287109375], - [-73.99981689453125, 40.646728515625], - [-74.001403808593636, 40.648925781250057], - [-74.002990722656193, 40.6514892578125], - [-74.004821777343693, 40.654724121093693], - [-74.006103515625, 40.657287597656307], - [-74.00732421875, 40.65972900390625], - [-74.008728027343693, 40.663085937500114], - [-74.010009765625, 40.666503906250114], - [-74.01116943359375, 40.669921875000114], - [-74.01190185546875, 40.6724853515625], - [-74.0125732421875, 40.674926757812614], - [-74.013488769531193, 40.678283691406307], - [-74.01422119140625, 40.681701660156307], - [-74.0147705078125, 40.68487548828125], - [-74.015319824218693, 40.688293457031193], - [-74.01580810546875, 40.691528320312443], - [-74.01611328125, 40.694702148437557], - [-74.01641845703125, 40.6978759765625], - [-74.0164794921875, 40.700073242187614], - [-74.0166015625, 40.702514648437557], - [-74.016723632812443, 40.7047119140625], - [-74.016723632812443, 40.707092285156307], - [-74.016723632812443, 40.7100830078125], - [-74.0166015625, 40.713073730468864], - [-74.0164794921875, 40.715881347656307], - [-74.016174316406193, 40.718688964843807], - [-74.015991210937386, 40.7216796875], - [-74.015686035156193, 40.724914550781193], - [-74.015197753906193, 40.728515625000114], - [-74.0147705078125, 40.7310791015625], - [-74.014404296875, 40.73388671875], - [-74.013793945312443, 40.736511230468864], - [-74.013305664062443, 40.73907470703125], - [-74.01287841796875, 40.741088867187614], - [-74.0123291015625, 40.743713378906307], - [-74.011413574218636, 40.74688720703125], - [-74.010620117187443, 40.7501220703125], - [-74.009582519531193, 40.753295898437614], - [-74.00860595703125, 40.756530761718864], - [-74.00732421875, 40.760314941406307], - [-74.006103515625, 40.76348876953125], - [-74.005126953125, 40.76593017578125], - [-74.00408935546875, 40.768493652343807], - [-74.002990722656193, 40.770874023437443], - [-74.002197265625, 40.772888183593807], - [-74.0009765625, 40.77532958984375], - [-73.99951171875, 40.778503417968693], - [-73.99810791015625, 40.780883789062557], - [-73.997192382812443, 40.782897949218693], - [-73.99609375, 40.784729003906307], - [-73.994995117187443, 40.786499023437614], - [-73.993774414062386, 40.788513183593807], - [-73.992309570312443, 40.791076660156364], - [-73.990722656249886, 40.793518066406364], - [-73.988891601562443, 40.79608154296875], - [-73.98712158203125, 40.798522949218864], - [-73.98529052734375, 40.801086425781307], - [-73.983276367187443, 40.80352783203125], - [-73.9818115234375, 40.805480957031307], - [-73.980224609374943, 40.807312011718693], - [-73.977905273437443, 40.809692382812557], - [-73.976196289062443, 40.8115234375], - [-73.97442626953125, 40.813293457031307], - [-73.97198486328125, 40.815673828125114], - [-73.96929931640625, 40.818115234375057], - [-73.966674804687443, 40.82049560546875], - [-73.963806152343693, 40.822692871093807], - [-73.96087646484375, 40.82489013671875], - [-73.957885742187443, 40.826904296875114], - [-73.9547119140625, 40.828674316406193], - [-73.951416015624943, 40.830505371093807], - [-73.948913574218693, 40.831726074218693], - [-73.94622802734375, 40.8328857421875], - [-73.94268798828125, 40.834472656250057], - [-73.9390869140625, 40.835693359375114], - [-73.936279296875, 40.836486816406193], - [-73.93341064453125, 40.83709716796875], - [-73.92962646484375, 40.837890625], - [-73.92578125, 40.838500976562557], - [-73.921875, 40.838500976562557], - [-73.9180908203125, 40.838500976562557], - [-73.91522216796875, 40.838317871093807], - [-73.912292480468693, 40.837890625], - [-73.90948486328125, 40.8372802734375], - [-73.9066162109375, 40.83673095703125], - [-73.903808593749943, 40.835876464843864], - [-73.901123046875, 40.834899902343807], - [-73.897521972656193, 40.83331298828125], - [-73.894104003906193, 40.831481933593864], - [-73.891601562499943, 40.829895019531307], - [-73.8892822265625, 40.82830810546875], - [-73.886169433593693, 40.825927734375057], - [-73.883300781249943, 40.823303222656364], - [-73.880615234375, 40.8206787109375], - [-73.877990722656193, 40.817687988281307], - [-73.875671386718693, 40.814697265625114], - [-73.87347412109375, 40.8115234375], - [-73.87152099609375, 40.80828857421875], - [-73.8701171875, 40.805725097656364], - [-73.868713378906193, 40.803283691406364], - [-73.867126464843636, 40.7999267578125], - [-73.86572265625, 40.79669189453125], - [-73.8643798828125, 40.793090820312557], - [-73.86322021484375, 40.789672851562557], - [-73.86248779296875, 40.78729248046875], - [-73.8616943359375, 40.784729003906307], - [-73.860900878906193, 40.781311035156364], - [-73.860412597656193, 40.778686523437614], - [-73.85980224609375, 40.776306152343807], - [-73.85931396484375, 40.773071289062557], - [-73.858886718749943, 40.770690917968693], - [-73.85858154296875, 40.768127441406307], - [-73.8582763671875, 40.765075683593807], - [-73.857971191406136, 40.761901855468864], - [-73.85791015625, 40.759521484375057], - [-73.8577880859375, 40.757324218750114], - [-73.85772705078125, 40.754272460937614], - [-73.85772705078125, 40.75128173828125], - [-73.8577880859375, 40.748291015625057], - [-73.8577880859375, 40.745300292968864], - [-73.85809326171875, 40.741699218749943], - [-73.8582763671875, 40.73828125], - [-73.85858154296875, 40.735473632812557], - [-73.859008789062443, 40.732727050781193], - [-73.859497070312386, 40.7291259765625], - [-73.860229492187443, 40.725097656249943], - [-73.860717773437443, 40.72247314453125], - [-73.861083984374943, 40.720520019531193], - [-73.8616943359375, 40.7178955078125], - [-73.8623046875, 40.715270996093807], - [-73.86322021484375, 40.712097167968864], - [-73.864013671875, 40.70892333984375] + [-73.937242, 40.836186], + [-73.95061, 40.832464], + [-73.962925, 40.827467], + [-73.974045, 40.821573], + [-73.983949, 40.815099], + [-73.992697, 40.808283], + [-74.00039, 40.801291], + [-74.007142, 40.794228], + [-74.013069, 40.787155], + [-74.018273, 40.780095], + [-74.022843, 40.773051], + [-74.026852, 40.76601], + [-74.030356, 40.758945], + [-74.033397, 40.751824], + [-74.035999, 40.744608], + [-74.038172, 40.737256], + [-74.039907, 40.729722], + [-74.041179, 40.721963], + [-74.041939, 40.713935], + [-74.042117, 40.705603], + [-74.041611, 40.696944], + [-74.04029, 40.687956], + [-74.037986, 40.678674], + [-74.034501, 40.669186], + [-74.029617, 40.659656], + [-74.023121, 40.650342], + [-74.01485, 40.641608], + [-74.004753, 40.633898], + [-73.992947, 40.627687], + [-73.979755, 40.623387], + [-73.96568, 40.621247], + [-73.951317, 40.621297], + [-73.937242, 40.62335], + [-73.923915, 40.62707], + [-73.911634, 40.632063], + [-73.90054, 40.637951], + [-73.890654, 40.644418], + [-73.881917, 40.651226], + [-73.87423, 40.65821], + [-73.867477, 40.665265], + [-73.861546, 40.672331], + [-73.856334, 40.679384], + [-73.851753, 40.686421], + [-73.84773, 40.693457], + [-73.844209, 40.700516], + [-73.841151, 40.707632], + [-73.838529, 40.714843], + [-73.836335, 40.722192], + [-73.834577, 40.729722], + [-73.833281, 40.737479], + [-73.832495, 40.745506], + [-73.832291, 40.753837], + [-73.83277, 40.762497], + [-73.834065, 40.771488], + [-73.836343, 40.780774], + [-73.839806, 40.790268], + [-73.844672, 40.799806], + [-73.851158, 40.809129], + [-73.859428, 40.817876], + [-73.869536, 40.825598], + [-73.881366, 40.831822], + [-73.894592, 40.836133], + [-73.908711, 40.838281], + [-73.923121, 40.838237], + [-73.937242, 40.836186] ] ] } @@ -212,2368 +88,4733 @@ "features": [ { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.991069, 40.730054] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.991069, 40.730054] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-74.000192, 40.718803] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.000192, 40.718803] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.983848, 40.761727] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.983848, 40.761727] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.974999, 40.680862] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.974999, 40.680862] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.894885, 40.664714] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.894885, 40.664714] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.90087, 40.884667] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.90087, 40.884667] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.958066, 40.800581] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.958066, 40.800581] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.940858, 40.679918] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.940858, 40.679918] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.898788, 40.749719] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.898788, 40.749719] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.929018, 40.75196] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.929018, 40.75196] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.987409, 40.718306] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.987409, 40.718306] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.891657, 40.678028] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.891657, 40.678028] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.879625, 40.68152] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.879625, 40.68152] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.844435, 40.695165] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.844435, 40.695165] + } }, { "type": "Feature", - "properties": { "weight": 9 }, - "geometry": { "type": "Point", "coordinates": [-73.98177, 40.690648] } + "properties": { + "weight": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.98177, 40.690648] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.82758, 40.583268] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.82758, 40.583268] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.813651, 40.588091] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.813651, 40.588091] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.891752, 40.829987] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.891752, 40.829987] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.896617, 40.822142] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.896617, 40.822142] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.90074, 40.856092] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.90074, 40.856092] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.910136, 40.845899] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.910136, 40.845899] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.918432, 40.833768] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.918432, 40.833768] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.845624, 40.754621] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.845624, 40.754621] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.869527, 40.749144] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.869527, 40.749144] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.83003, 40.759599] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.83003, 40.759599] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.832569, 40.846809] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.832569, 40.846809] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.926138, 40.810476] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.926138, 40.810476] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.851221, 40.834254] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.851221, 40.834254] + } }, { "type": "Feature", - "properties": { "weight": 15 }, - "geometry": { "type": "Point", "coordinates": [-74.004131, 40.713064] } + "properties": { + "weight": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.004131, 40.713064] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.847035, 40.836488] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.847035, 40.836488] + } }, { "type": "Feature", - "properties": { "weight": 15 }, - "geometry": { "type": "Point", "coordinates": [-73.976713, 40.751807] } + "properties": { + "weight": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.976713, 40.751807] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.982076, 40.74608] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.982076, 40.74608] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.95107, 40.785671] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.95107, 40.785671] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.959873, 40.77362] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.959873, 40.77362] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.910383, 40.682851] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.910383, 40.682851] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.983109, 40.677315] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.983109, 40.677315] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.882034, 40.74237] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.882034, 40.74237] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.920785, 40.678822] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.920785, 40.678822] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.86748, 40.857192] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.86748, 40.857192] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.866134, 40.877839] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.866134, 40.877839] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.854315, 40.898286] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.854315, 40.898286] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.958099, 40.670765] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.958099, 40.670765] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.893066, 40.823976] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.893066, 40.823976] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.868356, 40.848768] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.868356, 40.848768] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.950079, 40.656659] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.950079, 40.656659] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.889404, 40.665517] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.889404, 40.665517] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.927384, 40.818303] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.927384, 40.818303] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.925691, 40.82823] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.925691, 40.82823] + } }, { "type": "Feature", - "properties": { "weight": 15 }, - "geometry": { "type": "Point", "coordinates": [-73.967967, 40.762526] } + "properties": { + "weight": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.967967, 40.762526] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.904097, 40.812117] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.904097, 40.812117] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.874515, 40.829521] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.874515, 40.829521] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.886282, 40.826525] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.886282, 40.826525] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.867617, 40.831509] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.867617, 40.831509] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.902984, 40.74563] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.902984, 40.74563] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.755404, 40.603995] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.755404, 40.603995] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.976336, 40.775519] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.976336, 40.775519] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.964602, 40.791618] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.964602, 40.791618] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.93956, 40.840718] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.93956, 40.840718] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.893509, 40.866977] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.893509, 40.866977] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.98459, 40.754184] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.98459, 40.754184] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.962031, 40.661633] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.962031, 40.661633] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.995348, 40.631478] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.995348, 40.631478] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.817012, 40.702898] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.817012, 40.702898] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.83037, 40.714034] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.83037, 40.714034] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.808004, 40.700382] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.808004, 40.700382] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.946054, 40.747768] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.946054, 40.747768] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.85286, 40.726505] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.85286, 40.726505] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.87722, 40.736813] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.87722, 40.736813] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.978171, 40.636118] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.978171, 40.636118] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.95999, 40.688889] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.95999, 40.688889] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.950312, 40.706126] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.950312, 40.706126] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.950247, 40.714072] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.950247, 40.714072] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.901916, 40.669145] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.901916, 40.669145] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.903958, 40.688866] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.903958, 40.688866] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.916638, 40.686415] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.916638, 40.686415] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.947354, 40.703844] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.947354, 40.703844] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.011515, 40.63497] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.011515, 40.63497] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.929861, 40.756442] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.929861, 40.756442] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.925822, 40.761431] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.925822, 40.761431] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.986768, 40.754611] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.986768, 40.754611] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.979188, 40.752768] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.979188, 40.752768] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.957624, 40.674771] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.957624, 40.674771] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.832162, 40.684331] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.832162, 40.684331] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-74.000308, 40.732254] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.000308, 40.732254] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.97192, 40.757106] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.97192, 40.757106] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.976217, 40.788644] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.976217, 40.788644] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.857362, 40.893143] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.857362, 40.893143] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.982208, 40.77344] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.982208, 40.77344] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.890549, 40.820947] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.890549, 40.820947] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.006277, 40.722853] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.006277, 40.722853] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.836321, 40.843863] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.836321, 40.843863] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.986599, 40.739864] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.986599, 40.739864] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.945264, 40.747022] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.945264, 40.747022] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.981929, 40.768247] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.981929, 40.768247] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.948916, 40.742215] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.948916, 40.742215] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.995657, 40.74408] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.995657, 40.74408] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.005367, 40.728251] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.005367, 40.728251] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.837683, 40.681711] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.837683, 40.681711] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.815832, 40.608402] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.815832, 40.608402] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.9685, 40.576311] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.9685, 40.576311] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.95358, 40.742625] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.95358, 40.742625] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.96387, 40.768141] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.96387, 40.768141] + } }, { "type": "Feature", - "properties": { "weight": 15 }, - "geometry": { "type": "Point", "coordinates": [-73.940163, 40.750635] } + "properties": { + "weight": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.940163, 40.750635] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.843852, 40.680428] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.843852, 40.680428] + } }, { "type": "Feature", - "properties": { "weight": 15 }, - "geometry": { "type": "Point", "coordinates": [-73.98995, 40.734673] } + "properties": { + "weight": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.98995, 40.734673] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.953522, 40.689627] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.953522, 40.689627] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.979735, 40.660035] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.979735, 40.660035] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.980251, 40.666244] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.980251, 40.666244] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.975775, 40.650781] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.975775, 40.650781] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.979721, 40.644272] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.979721, 40.644272] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.964357, 40.643904] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.964357, 40.643904] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.962882, 40.650493] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.962882, 40.650493] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.962694, 40.635141] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.962694, 40.635141] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.961453, 40.655073] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.961453, 40.655073] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.970956, 40.675294] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.970956, 40.675294] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.977549, 40.68442] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.977549, 40.68442] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.911945, 40.678339] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.911945, 40.678339] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.975374, 40.687118] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.975374, 40.687118] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.966795, 40.688094] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.966795, 40.688094] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.972852, 40.677102] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.972852, 40.677102] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.976783, 40.684488] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.976783, 40.684488] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.978809, 40.683665] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.978809, 40.683665] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.990151, 40.692403] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.990151, 40.692403] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.835918, 40.672096] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.835918, 40.672096] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.860495, 40.854363] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.860495, 40.854363] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.855359, 40.858984] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.855359, 40.858984] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.950426, 40.680438] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.950426, 40.680438] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.980406, 40.68831] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.980406, 40.68831] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.964222, 40.672032] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.964222, 40.672032] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.948847, 40.645123] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.948847, 40.645123] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.949455, 40.65086] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.949455, 40.65086] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.948299, 40.639991] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.948299, 40.639991] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.947541, 40.632842] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.947541, 40.632842] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.950728, 40.662772] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.950728, 40.662772] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.932932, 40.668978] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.932932, 40.668978] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.942159, 40.669481] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.942159, 40.669481] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.951183, 40.724479] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.951183, 40.724479] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.954425, 40.731266] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.954425, 40.731266] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.957832, 40.708383] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.957832, 40.708383] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.953488, 40.706889] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.953488, 40.706889] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.929848, 40.813223] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.929848, 40.813223] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.975248, 40.760086] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.975248, 40.760086] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.969072, 40.757468] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.969072, 40.757468] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.988698, 40.745453] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.988698, 40.745453] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.987936, 40.749644] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.987936, 40.749644] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.98168, 40.730974] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.98168, 40.730974] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.986228, 40.755983] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.986228, 40.755983] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.951423, 40.712774] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.951423, 40.712774] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.940496, 40.711576] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.940496, 40.711576] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.943943, 40.714575] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.943943, 40.714575] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.956664, 40.717173] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.956664, 40.717173] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.939792, 40.707391] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.939792, 40.707391] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.943815, 40.746305] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.943815, 40.746305] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.949599, 40.744128] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.949599, 40.744128] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.932851, 40.752763] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.932851, 40.752763] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.950359, 40.82655] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.950359, 40.82655] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.944889, 40.834041] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.944889, 40.834041] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.972322, 40.793919] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.972322, 40.793919] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.968378, 40.799446] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.968378, 40.799446] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.951822, 40.799074] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.951822, 40.799074] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.96137, 40.79606] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.96137, 40.79606] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.98197, 40.778453] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.98197, 40.778453] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.972097, 40.781346] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.972097, 40.781346] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.836923, 40.718044] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.836923, 40.718044] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.968828, 40.785823] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.968828, 40.785823] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.966847, 40.803966] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.966847, 40.803966] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.964109, 40.807722] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.964109, 40.807722] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.945495, 40.807753] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.945495, 40.807753] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.94077, 40.814229] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.94077, 40.814229] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.949625, 40.802097] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.949625, 40.802097] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.905227, 40.850409] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.905227, 40.850409] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.953676, 40.822007] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.953676, 40.822007] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.936244, 40.82042] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.936244, 40.82042] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.911793, 40.84848] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.911793, 40.84848] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.907684, 40.853453] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.907684, 40.853453] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.913399, 40.839305] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.913399, 40.839305] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.940132, 40.840555] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.940132, 40.840555] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.933595, 40.849504] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.933595, 40.849504] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.929411, 40.855225] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.929411, 40.855225] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.939703, 40.847391] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.939703, 40.847391] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.776012, 40.592942] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.776012, 40.592942] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.788521, 40.592374] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.788521, 40.592374] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.82052, 40.585385] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.82052, 40.585385] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.83559, 40.580955] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.83559, 40.580955] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.768174, 40.595398] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.768174, 40.595398] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.761352, 40.600066] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.761352, 40.600066] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.803289, 40.707571] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.803289, 40.707571] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.793474, 40.710517] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.793474, 40.710517] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.862699, 40.749865] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.862699, 40.749865] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.855333, 40.751729] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.855333, 40.751729] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.861618, 40.729763] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.861618, 40.729763] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.865049, 40.677044] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.865049, 40.677044] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.979917, 40.783933] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.979917, 40.783933] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.903096, 40.675344] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.903096, 40.675344] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.002905, 40.733422] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.002905, 40.733422] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.825797, 40.68595] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.825797, 40.68595] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.98769, 40.755477] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.98769, 40.755477] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.975957, 40.576033] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.975957, 40.576033] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.993365, 40.747214] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.993365, 40.747214] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.984264, 40.743069] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.984264, 40.743069] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.828121, 40.852461] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.828121, 40.852461] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.842951, 40.839892] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.842951, 40.839892] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.997871, 40.741039] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.997871, 40.741039] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.976041, 40.751431] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.976041, 40.751431] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.796923, 40.590927] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.796923, 40.590927] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-74.000495, 40.732337] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.000495, 40.732337] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.860087, 40.692426] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.860087, 40.692426] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.852051, 40.693703] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.852051, 40.693703] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.836793, 40.697114] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.836793, 40.697114] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.828349, 40.700481] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.828349, 40.700481] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.903934, 40.695518] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.903934, 40.695518] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.910975, 40.699471] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.910975, 40.699471] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.88411, 40.666314] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.88411, 40.666314] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.890358, 40.672709] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.890358, 40.672709] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.885194, 40.679777] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.885194, 40.679777] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.900562, 40.664057] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.900562, 40.664057] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.902448, 40.663589] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.902448, 40.663589] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.908958, 40.662617] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.908958, 40.662617] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.90185, 40.646653] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.90185, 40.646653] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.899547, 40.650468] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.899547, 40.650468] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.91633, 40.661529] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.91633, 40.661529] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.922521, 40.664766] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.922521, 40.664766] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.899277, 40.658914] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.899277, 40.658914] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.904289, 40.679366] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.904289, 40.679366] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.898526, 40.676998] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.898526, 40.676998] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.880749, 40.67413] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.880749, 40.67413] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.873929, 40.683152] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.873929, 40.683152] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.873321, 40.689616] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.873321, 40.689616] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.867287, 40.69129] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.867287, 40.69129] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.896402, 40.746324] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.896402, 40.746324] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.891205, 40.746867] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.891205, 40.746867] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.869432, 40.733097] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.869432, 40.733097] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.912178, 40.699454] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.912178, 40.699454] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.907581, 40.702918] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.907581, 40.702918] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.918232, 40.703692] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.918232, 40.703692] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.912548, 40.744149] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.912548, 40.744149] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.913521, 40.756316] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.913521, 40.756316] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.906065, 40.752824] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.906065, 40.752824] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.918435, 40.743132] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.918435, 40.743132] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.883697, 40.747658] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.883697, 40.747658] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.876612, 40.748408] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.876612, 40.748408] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.830301, 40.660476] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.830301, 40.660476] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.834057, 40.668234] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.834057, 40.668234] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.820692, 40.709161] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.820692, 40.709161] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.844516, 40.721594] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.844516, 40.721594] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.810832, 40.705417] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.810832, 40.705417] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.801096, 40.702067] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.801096, 40.702067] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.860214, 40.888028] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.860214, 40.888028] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.879158, 40.828584] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.879158, 40.828584] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.896434, 40.816103] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.896434, 40.816103] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.918095, 40.770036] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.918095, 40.770036] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.912034, 40.775035] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.912034, 40.775035] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.907701, 40.816437] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.907701, 40.816437] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.901777, 40.819487] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.901777, 40.819487] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.914041, 40.805368] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.914041, 40.805368] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.887693, 40.837195] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.887693, 40.837195] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.867234, 40.865483] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.867234, 40.865483] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.907656, 40.808719] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.907656, 40.808719] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.897174, 40.86776] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.897174, 40.86776] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.890064, 40.873411] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.890064, 40.873411] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.93647, 40.82388] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.93647, 40.82388] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.914684, 40.844434] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.914684, 40.844434] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.897749, 40.861295] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.897749, 40.861295] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.91779, 40.840074] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.91779, 40.840074] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.887137, 40.873243] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.887137, 40.873243] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.90983, 40.87456] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.90983, 40.87456] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.904834, 40.878855] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.904834, 40.878855] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.915278, 40.869443] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.915278, 40.869443] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.918819, 40.864614] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.918819, 40.864614] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.919899, 40.868071] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.919899, 40.868071] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.898583, 40.889248] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.898583, 40.889248] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.879961, 40.840207] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.879961, 40.840207] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.862509, 40.883887] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.862509, 40.883887] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.884654, 40.879749] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.884654, 40.879749] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.878854, 40.874811] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.878854, 40.874811] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.867053, 40.871258] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.867053, 40.871258] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.83859, 40.878663] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.83859, 40.878663] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.830834, 40.888299] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.830834, 40.888299] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.783817, 40.712645] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.783817, 40.712645] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.850619, 40.903125] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.850619, 40.903125] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.959244, 40.670342] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.959244, 40.670342] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.905261, 40.68286] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.905261, 40.68286] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.903117, 40.678456] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.903117, 40.678456] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.846384, 40.869525] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.846384, 40.869525] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.873346, 40.841863] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.873346, 40.841863] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.925536, 40.860531] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.925536, 40.860531] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.958372, 40.81558] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.958372, 40.81558] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.955827, 40.680595] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.955827, 40.680595] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.926722, 40.81833] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.926722, 40.81833] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.917791, 40.816029] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.917791, 40.816029] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.921399, 40.835536] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.921399, 40.835536] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.919239, 40.807565] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.919239, 40.807565] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.930996, 40.744586] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.930996, 40.744586] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.924015, 40.743781] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.924015, 40.743781] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.944087, 40.824766] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.944087, 40.824766] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.938208, 40.830134] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.938208, 40.830134] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.92565, 40.827904] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.92565, 40.827904] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.930728, 40.679363] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.930728, 40.679363] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.920526, 40.756987] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.920526, 40.756987] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.928508, 40.693172] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.928508, 40.693172] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.922156, 40.689583] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.922156, 40.689583] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.927242, 40.697873] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.927242, 40.697873] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.91972, 40.69866] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.91972, 40.69866] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.921479, 40.766778] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.921479, 40.766778] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.922913, 40.706606] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.922913, 40.706606] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.933147, 40.706151] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.933147, 40.706151] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.937138, 40.748917] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.937138, 40.748917] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.97697, 40.629754] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.97697, 40.629754] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.025509, 40.629741] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.025509, 40.629741] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.023376, 40.634966] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.023376, 40.634966] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.994658, 40.63626] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.994658, 40.63626] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.005351, 40.631385] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.005351, 40.631385] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.986829, 40.597703] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.986829, 40.597703] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.993676, 40.60195] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.993676, 40.60195] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.984521, 40.617108] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.984521, 40.617108] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.990453, 40.620686] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.990453, 40.620686] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.030876, 40.616621] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.030876, 40.616621] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.028397, 40.622686] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.028397, 40.622686] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.000582, 40.613158] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.000582, 40.613158] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.99884, 40.619258] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.99884, 40.619258] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.998174, 40.604676] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.998174, 40.604676] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.001592, 40.607735] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.001592, 40.607735] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.996857, 40.626224] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.996857, 40.626224] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.996353, 40.624841] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.996353, 40.624841] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.973376, 40.595924] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.973376, 40.595924] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.972355, 40.603258] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.972355, 40.603258] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.961353, 40.57771] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.961353, 40.57771] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.954057, 40.586547] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.954057, 40.586547] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.955811, 40.599308] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.955811, 40.599308] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.957608, 40.608638] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.957608, 40.608638] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.979084, 40.597235] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.979084, 40.597235] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.980373, 40.604058] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.980373, 40.604058] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.974592, 40.580738] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.974592, 40.580738] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.974265, 40.589449] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.974265, 40.589449] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.983765, 40.58884] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.983765, 40.58884] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.978188, 40.592465] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.978188, 40.592465] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.973002, 40.608842] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.973002, 40.608842] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.974048, 40.614356] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.974048, 40.614356] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.975256, 40.620731] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.975256, 40.620731] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.959243, 40.617397] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.959243, 40.617397] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.98178, 40.611455] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.98178, 40.611455] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.976069, 40.625017] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.976069, 40.625017] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.960693, 40.625022] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.960693, 40.625022] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.961517, 40.629208] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.961517, 40.629208] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.955078, 40.595321] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.955078, 40.595321] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.941937, 40.753739] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.941937, 40.753739] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.985984, 40.762455] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.985984, 40.762455] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.981697, 40.76297] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.981697, 40.76297] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.981331, 40.758641] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.981331, 40.758641] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.977368, 40.764085] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.977368, 40.764085] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.966089, 40.764618] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.966089, 40.764618] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.953234, 40.759171] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.953234, 40.759171] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.981648, 40.768249] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.981648, 40.768249] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.984209, 40.759801] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.984209, 40.759801] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.980729, 40.764565] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.980729, 40.764565] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.973347, 40.76481] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.973347, 40.76481] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.967375, 40.762708] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.967375, 40.762708] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.991056, 40.750373] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.991056, 40.750373] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.987495, 40.755289] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.987495, 40.755289] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.007623, 40.710162] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.007623, 40.710162] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.008584, 40.714111] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.008584, 40.714111] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.989735, 40.757307] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.989735, 40.757307] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.949066, 40.694618] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.949066, 40.694618] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.950234, 40.700376] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.950234, 40.700376] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.992765, 40.742954] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.992765, 40.742954] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.987771, 40.749789] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.987771, 40.749789] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.985036, 40.688408] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.985036, 40.688408] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.987218, 40.69247] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.987218, 40.69247] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.990177, 40.713855] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.990177, 40.713855] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.988078, 40.71868] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.988078, 40.71868] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.989938, 40.723401] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.989938, 40.723401] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.941377, 40.700404] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.941377, 40.700404] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.935623, 40.697195] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.935623, 40.697195] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.989778, 40.670271] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.989778, 40.670271] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.995891, 40.673641] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.995891, 40.673641] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.990756, 40.68611] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.990756, 40.68611] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.986056, 40.692255] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.986056, 40.692255] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.991818, 40.694196] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.991818, 40.694196] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.990538, 40.735872] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.990538, 40.735872] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.989344, 40.741302] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.989344, 40.741302] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.992872, 40.665413] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.992872, 40.665413] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.988301, 40.670846] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.988301, 40.670846] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.98575, 40.73269] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.98575, 40.73269] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.990669, 40.734763] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.990669, 40.734763] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.896548, 40.674541] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.896548, 40.674541] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.905316, 40.678333] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.905316, 40.678333] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.01788, 40.641361] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.01788, 40.641361] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.010006, 40.648938] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.010006, 40.648938] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-74.003548, 40.655143] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.003548, 40.655143] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.994448, 40.646484] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.994448, 40.646484] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.014033, 40.645068] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.014033, 40.645068] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.994202, 40.640912] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.994202, 40.640912] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.99809, 40.660396] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.99809, 40.660396] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.994946, 40.680273] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.994946, 40.680273] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-74.003738, 40.726227] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.003738, 40.726227] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.937969, 40.851694] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.937969, 40.851694] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.934179, 40.859021] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.934179, 40.859021] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.954797, 40.805058] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.954797, 40.805058] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.952247, 40.811071] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.952247, 40.811071] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.997702, 40.724328] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.997702, 40.724328] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.992507, 40.730464] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.992507, 40.730464] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.00657, 40.709415] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.00657, 40.709415] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.00881, 40.71305] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.00881, 40.71305] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-74.009266, 40.715478] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.009266, 40.715478] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.985063, 40.690544] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.985063, 40.690544] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.989997, 40.693218] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.989997, 40.693218] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.903879, 40.858407] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.903879, 40.858407] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.901033, 40.862802] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.901033, 40.862802] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.009744, 40.712563] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.009744, 40.712563] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-74.005229, 40.720824] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.005229, 40.720824] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.941514, 40.830517] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.941514, 40.830517] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.939892, 40.836012] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.939892, 40.836012] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.007938, 40.710022] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.007938, 40.710022] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.003406, 40.713233] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.003406, 40.713233] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.999826, 40.718173] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.999826, 40.718173] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.006985, 40.713272] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.006985, 40.713272] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.001826, 40.719465] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.001826, 40.719465] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.013168, 40.70173] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.013168, 40.70173] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.014007, 40.704913] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.014007, 40.704913] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.011861, 40.707557] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.011861, 40.707557] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.013007, 40.703142] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.013007, 40.703142] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.012974, 40.707744] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.012974, 40.707744] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.895898, 40.706225] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.895898, 40.706225] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.889577, 40.711431] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.889577, 40.711431] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.013783, 40.707512] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.013783, 40.707512] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.012188, 40.711835] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.012188, 40.711835] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.009508, 40.710367] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.009508, 40.710367] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.011055, 40.706476] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.011055, 40.706476] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.011131, 40.710512] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.011131, 40.710512] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.009099, 40.70682] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.009099, 40.70682] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.92727, 40.86549] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.92727, 40.86549] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.993752, 40.718266] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.993752, 40.718266] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.996203, 40.725296] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.996203, 40.725296] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.993806, 40.720246] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.993806, 40.720246] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.001054, 40.718814] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.001054, 40.718814] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.998041, 40.745905] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.998041, 40.745905] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.99339, 40.752287] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.99339, 40.752287] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.891298, 40.746539] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.891298, 40.746539] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-74.000201, 40.737825] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.000201, 40.737825] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.947534, 40.817905] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.947534, 40.817905] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.996208, 40.738227] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.996208, 40.738227] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.99775, 40.737741] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.99775, 40.737741] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.002578, 40.739776] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.002578, 40.739776] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-74.001689, 40.740893] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.001689, 40.740893] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.950426, 40.669938] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.950426, 40.669938] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.993085, 40.697465] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.993085, 40.697465] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.956848, 40.681379] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.956848, 40.681379] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.965837, 40.683262] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.965837, 40.683262] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.903075, 40.704412] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.903075, 40.704412] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.944249, 40.79502] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.944249, 40.79502] + } }, { "type": "Feature", - "properties": { "weight": 15 }, - "geometry": { "type": "Point", "coordinates": [-73.955588, 40.779491] } + "properties": { + "weight": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.955588, 40.779491] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.986884, 40.699742] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.986884, 40.699742] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.990531, 40.699336] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.990531, 40.699336] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.973945, 40.686113] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.973945, 40.686113] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.950589, 40.667883] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.950589, 40.667883] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.87875, 40.886037] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.87875, 40.886037] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.994659, 40.725914] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.994659, 40.725914] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.947478, 40.7906] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.947478, 40.7906] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.872106, 40.675376] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.872106, 40.675376] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.85147, 40.679843] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.85147, 40.679843] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.96379, 40.64094] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.96379, 40.64094] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.941616, 40.798629] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.941616, 40.798629] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.860816, 40.833225] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.860816, 40.833225] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.006886, 40.719318] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.006886, 40.719318] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.858992, 40.679371] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.858992, 40.679371] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.981962, 40.753821] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.981962, 40.753821] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.997141, 40.7223] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.997141, 40.7223] + } }, { "type": "Feature", - "properties": { "weight": 15 }, - "geometry": { "type": "Point", "coordinates": [-73.937594, 40.804138] } + "properties": { + "weight": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.937594, 40.804138] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.981235, 40.577281] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.981235, 40.577281] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-74.002197, 40.755446] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.002197, 40.755446] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.958361, 40.768802] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.958361, 40.768802] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.95177, 40.777861] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.95177, 40.777861] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.947066, 40.784236] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.947066, 40.784236] + } } ] } diff --git a/packages/turf-standard-deviational-ellipse/test/in/mta-stations-weighted.json b/packages/turf-standard-deviational-ellipse/test/in/mta-stations-weighted.json index 807ff1b28..755bec7b4 100644 --- a/packages/turf-standard-deviational-ellipse/test/in/mta-stations-weighted.json +++ b/packages/turf-standard-deviational-ellipse/test/in/mta-stations-weighted.json @@ -16,190 +16,71 @@ "type": "Polygon", "coordinates": [ [ - [-73.961791992187443, 40.650695800781364], - [-73.964294433593693, 40.650695800781364], - [-73.966796875, 40.650878906250114], - [-73.970092773437443, 40.65130615234375], - [-73.973388671875, 40.651672363281193], - [-73.97576904296875, 40.652099609375], - [-73.978210449218693, 40.652893066406307], - [-73.98138427734375, 40.653930664062614], - [-73.984497070312443, 40.655090332031364], - [-73.98760986328125, 40.65631103515625], - [-73.990478515625, 40.657897949218807], - [-73.993408203125, 40.65972900390625], - [-73.99542236328125, 40.66107177734375], - [-73.997314453125, 40.662719726562614], - [-73.999877929687386, 40.664916992187557], - [-74.002197265625, 40.667297363281364], - [-74.004516601562443, 40.669677734375057], - [-74.006591796875, 40.67230224609375], - [-74.008422851562443, 40.675109863281364], - [-74.01031494140625, 40.677917480468807], - [-74.011779785156193, 40.68072509765625], - [-74.013305664062443, 40.683715820312443], - [-74.01458740234375, 40.686706542968864], - [-74.015502929687443, 40.68890380859375], - [-74.01629638671875, 40.691284179687614], - [-74.01727294921875, 40.694274902343807], - [-74.01812744140625, 40.697326660156307], - [-74.0186767578125, 40.700500488281193], - [-74.019226074218693, 40.702697753906307], - [-74.01947021484375, 40.705078124999943], - [-74.019897460937443, 40.708129882812443], - [-74.020080566406193, 40.710327148437557], - [-74.02032470703125, 40.712707519531193], - [-74.0203857421875, 40.716308593750114], - [-74.0203857421875, 40.720092773437614], - [-74.02032470703125, 40.722900390625057], - [-74.020080566406193, 40.72589111328125], - [-74.019897460937443, 40.72930908203125], - [-74.019409179687443, 40.732727050781193], - [-74.01898193359375, 40.735473632812557], - [-74.01849365234375, 40.73809814453125], - [-74.01800537109375, 40.740722656250114], - [-74.017578124999943, 40.74267578125], - [-74.017028808593693, 40.744689941406364], - [-74.01641845703125, 40.7470703125], - [-74.015625, 40.75030517578125], - [-74.014404296875, 40.753906249999943], - [-74.013305664062443, 40.756896972656364], - [-74.01239013671875, 40.75927734375], - [-74.011413574218636, 40.761718749999943], - [-74.0103759765625, 40.764099121093807], - [-74.009216308593693, 40.76690673828125], - [-74.007873535156193, 40.769714355468864], - [-74.00677490234375, 40.771911621093807], - [-74.005615234375, 40.774108886718864], - [-74.00408935546875, 40.776672363281307], - [-74.00250244140625, 40.77947998046875], - [-74.001281738281193, 40.781494140625057], - [-73.999572753906193, 40.784118652343807], - [-73.997802734375, 40.786682128906364], - [-73.99627685546875, 40.788696289062557], - [-73.994506835937443, 40.791076660156364], - [-73.99249267578125, 40.793701171875057], - [-73.990905761718693, 40.79571533203125], - [-73.989196777343636, 40.797729492187614], - [-73.98748779296875, 40.79949951171875], - [-73.9857177734375, 40.801513671875057], - [-73.983825683593693, 40.803283691406364], - [-73.98187255859375, 40.805297851562557], - [-73.979919433593693, 40.80712890625], - [-73.9774169921875, 40.809326171875057], - [-73.97418212890625, 40.811889648437443], - [-73.97137451171875, 40.814086914062557], - [-73.9691162109375, 40.815673828125114], - [-73.966674804687443, 40.817321777343807], - [-73.964294433593693, 40.818908691406364], - [-73.961669921875, 40.82049560546875], - [-73.9591064453125, 40.821899414062557], - [-73.9564208984375, 40.823303222656364], - [-73.95440673828125, 40.824279785156193], - [-73.952270507812443, 40.825317382812557], - [-73.950073242187443, 40.826110839843807], - [-73.947875976562443, 40.826904296875114], - [-73.945678710937443, 40.827697753906364], - [-73.943420410156136, 40.8284912109375], - [-73.9403076171875, 40.82928466796875], - [-73.93798828125, 40.829895019531307], - [-73.93560791015625, 40.830322265625057], - [-73.932373046875, 40.830871582031307], - [-73.929199218749943, 40.831298828125114], - [-73.9259033203125, 40.831481933593864], - [-73.922607421874943, 40.831481933593864], - [-73.9193115234375, 40.831481933593864], - [-73.9158935546875, 40.831115722656364], - [-73.9127197265625, 40.830688476562557], - [-73.9102783203125, 40.830078125000057], - [-73.90777587890625, 40.829528808593807], - [-73.9053955078125, 40.828674316406193], - [-73.90301513671875, 40.827880859375114], - [-73.899902343749943, 40.826721191406364], - [-73.896972656249886, 40.8250732421875], - [-73.894775390624943, 40.82391357421875], - [-73.8927001953125, 40.822509765625114], - [-73.890014648437386, 40.8206787109375], - [-73.88739013671875, 40.818481445312557], - [-73.8848876953125, 40.8162841796875], - [-73.88262939453125, 40.813720703125057], - [-73.8809814453125, 40.811889648437443], - [-73.879516601562443, 40.809875488281307], - [-73.877502441406193, 40.807312011718693], - [-73.875671386718693, 40.80450439453125], - [-73.874084472656136, 40.801696777343807], - [-73.8726806640625, 40.798706054687614], - [-73.871398925781193, 40.79571533203125], - [-73.8704833984375, 40.793273925781307], - [-73.869689941406193, 40.791076660156364], - [-73.8687744140625, 40.7880859375], - [-73.867980957031136, 40.784912109375057], - [-73.867309570312443, 40.781921386718864], - [-73.866821289062443, 40.7789306640625], - [-73.86639404296875, 40.776489257812557], - [-73.8660888671875, 40.774291992187614], - [-73.86590576171875, 40.771911621093807], - [-73.865783691406193, 40.769714355468864], - [-73.865600585937386, 40.76593017578125], - [-73.865600585937386, 40.7623291015625], - [-73.86572265625, 40.75927734375], - [-73.86590576171875, 40.756530761718864], - [-73.8660888671875, 40.75372314453125], - [-73.8665771484375, 40.7501220703125], - [-73.867126464843636, 40.74688720703125], - [-73.867492675781193, 40.744079589843807], - [-73.867980957031136, 40.74212646484375], - [-73.86846923828125, 40.739501953125057], - [-73.86932373046875, 40.736328125000114], - [-73.8699951171875, 40.73388671875], - [-73.870727539062443, 40.731323242187557], - [-73.87152099609375, 40.728881835937614], - [-73.872314453125, 40.72650146484375], - [-73.873413085937443, 40.723510742187557], - [-73.87457275390625, 40.720520019531193], - [-73.875793457031193, 40.71771240234375], - [-73.8770751953125, 40.714904785156307], - [-73.878173828124943, 40.712707519531193], - [-73.8792724609375, 40.710510253906307], - [-73.8804931640625, 40.708312988281193], - [-73.881896972656193, 40.70550537109375], - [-73.883911132812386, 40.7022705078125], - [-73.885498046874943, 40.699890136718864], - [-73.88677978515625, 40.69769287109375], - [-73.88861083984375, 40.695129394531364], - [-73.890380859374943, 40.69268798828125], - [-73.89202880859375, 40.690673828125057], - [-73.893615722656193, 40.688720703125], - [-73.89520263671875, 40.686706542968864], - [-73.89691162109375, 40.6846923828125], - [-73.89862060546875, 40.682678222656307], - [-73.900390624999943, 40.680908203125], - [-73.902221679687386, 40.678894042968864], - [-73.90472412109375, 40.676513671875], - [-73.9071044921875, 40.674316406250114], - [-73.909179687499886, 40.6724853515625], - [-73.91180419921875, 40.670288085937557], - [-73.914611816406193, 40.6680908203125], - [-73.916870117187443, 40.666503906250114], - [-73.918701171874943, 40.665283203125057], - [-73.920593261718693, 40.66412353515625], - [-73.922424316406193, 40.662902832031364], - [-73.924316406249943, 40.661926269531364], - [-73.92626953125, 40.660705566406307], - [-73.928222656249943, 40.65972900390625], - [-73.9302978515625, 40.658691406250114], - [-73.932373046875, 40.657714843750114], - [-73.935180664062443, 40.656494140625], - [-73.937377929687443, 40.655517578125], - [-73.939575195312443, 40.654907226562443], - [-73.942626953124943, 40.653686523437557], - [-73.94488525390625, 40.653076171875057], - [-73.947204589843693, 40.652526855468807], - [-73.950378417968636, 40.65191650390625], - [-73.953613281249943, 40.6514892578125], - [-73.9569091796875, 40.650878906250114], - [-73.95928955078125, 40.650695800781364], - [-73.961791992187443, 40.650695800781364] + [-73.943062, 40.828517], + [-73.954059, 40.825539], + [-73.964297, 40.821839], + [-73.973743, 40.817592], + [-73.982408, 40.812939], + [-73.990332, 40.807982], + [-73.997572, 40.802794], + [-74.004185, 40.79742], + [-74.010229, 40.791885], + [-74.015753, 40.786199], + [-74.020799, 40.780359], + [-74.025399, 40.774353], + [-74.029572, 40.76816], + [-74.033324, 40.761758], + [-74.036647, 40.755117], + [-74.039516, 40.748211], + [-74.041886, 40.741012], + [-74.043691, 40.7335], + [-74.044837, 40.725667], + [-74.045205, 40.717524], + [-74.044648, 40.709112], + [-74.042995, 40.700515], + [-74.040065, 40.691868], + [-74.035686, 40.683373], + [-74.02973, 40.675291], + [-74.022154, 40.667927], + [-74.013031, 40.661598], + [-74.00257, 40.656579], + [-73.991101, 40.653056], + [-73.979028, 40.651095], + [-73.966766, 40.65064], + [-73.954682, 40.651541], + [-73.943062, 40.65359], + [-73.932093, 40.656568], + [-73.921879, 40.660265], + [-73.912452, 40.664507], + [-73.903802, 40.669155], + [-73.895887, 40.674106], + [-73.888653, 40.679288], + [-73.882042, 40.684655], + [-73.875998, 40.690183], + [-73.87047, 40.695863], + [-73.865417, 40.701696], + [-73.860808, 40.707696], + [-73.856623, 40.713883], + [-73.852857, 40.72028], + [-73.849517, 40.726915], + [-73.846629, 40.733817], + [-73.844238, 40.741012], + [-73.842411, 40.74852], + [-73.84124, 40.756351], + [-73.840847, 40.764493], + [-73.841378, 40.772906], + [-73.843007, 40.781506], + [-73.845916, 40.790158], + [-73.850278, 40.79866], + [-73.856222, 40.806752], + [-73.863796, 40.814126], + [-73.872926, 40.820467], + [-73.883402, 40.825498], + [-73.894896, 40.829032], + [-73.906999, 40.831002], + [-73.919294, 40.831463], + [-73.93141, 40.830566], + [-73.943062, 40.828517] ] ] } diff --git a/packages/turf-standard-deviational-ellipse/test/out/mta-stations-unweighted.json b/packages/turf-standard-deviational-ellipse/test/out/mta-stations-unweighted.json index 4f6d1d982..831bfbe7e 100644 --- a/packages/turf-standard-deviational-ellipse/test/out/mta-stations-unweighted.json +++ b/packages/turf-standard-deviational-ellipse/test/out/mta-stations-unweighted.json @@ -19,195 +19,71 @@ "type": "Polygon", "coordinates": [ [ - [-73.864013671875, 40.70892333984375], - [-73.8648071289062, 40.70629882812506], - [-73.86560058593739, 40.70367431640631], - [-73.86639404296875, 40.7012939453125], - [-73.86730957031244, 40.698730468750114], - [-73.8682861328125, 40.696289062500114], - [-73.86932373046875, 40.69372558593756], - [-73.87030029296875, 40.691284179687614], - [-73.87170410156239, 40.6881103515625], - [-73.8731079101562, 40.68487548828125], - [-73.87432861328125, 40.68249511718756], - [-73.87597656249994, 40.67932128906244], - [-73.87731933593744, 40.6768798828125], - [-73.8782958984375, 40.674926757812614], - [-73.87982177734375, 40.6724853515625], - [-73.88128662109375, 40.669921875000114], - [-73.88287353515625, 40.667480468750114], - [-73.88458251953125, 40.66491699218756], - [-73.88592529296875, 40.663085937500114], - [-73.88720703125, 40.66107177734375], - [-73.88909912109375, 40.658691406250114], - [-73.89111328125, 40.65612792968756], - [-73.8931884765625, 40.65368652343756], - [-73.8953247070312, 40.651123046875], - [-73.8975830078125, 40.648681640625], - [-73.90002441406239, 40.646301269531364], - [-73.9024047851562, 40.64392089843756], - [-73.9044189453125, 40.642089843750114], - [-73.9063720703125, 40.64050292968756], - [-73.90917968749989, 40.638305664062614], - [-73.9119873046875, 40.63610839843756], - [-73.9149780273437, 40.633911132812614], - [-73.91729736328125, 40.63232421875006], - [-73.919677734375, 40.63092041015625], - [-73.92297363281244, 40.62908935546881], - [-73.9263916015625, 40.62750244140625], - [-73.9298706054687, 40.62591552734369], - [-73.93347167968744, 40.62469482421881], - [-73.9371948242187, 40.62347412109375], - [-73.94091796874994, 40.62249755859375], - [-73.9447021484375, 40.621887207031364], - [-73.9486083984375, 40.62127685546881], - [-73.952392578125, 40.621093750000114], - [-73.956298828125, 40.62127685546881], - [-73.96020507812489, 40.621520996093864], - [-73.96398925781244, 40.622070312500114], - [-73.9677734375, 40.62310791015625], - [-73.97149658203125, 40.62432861328131], - [-73.97509765625, 40.625488281250114], - [-73.9785766601562, 40.6273193359375], - [-73.98187255859375, 40.62927246093756], - [-73.985107421875, 40.63153076171881], - [-73.9882202148437, 40.633728027343864], - [-73.99108886718744, 40.636474609375], - [-73.99377441406239, 40.6392822265625], - [-73.99639892578125, 40.642089843750114], - [-73.9982299804687, 40.644287109375], - [-73.99981689453125, 40.646728515625], - [-74.00140380859364, 40.64892578125006], - [-74.0029907226562, 40.6514892578125], - [-74.0048217773437, 40.65472412109369], - [-74.006103515625, 40.65728759765631], - [-74.00732421875, 40.65972900390625], - [-74.0087280273437, 40.663085937500114], - [-74.010009765625, 40.666503906250114], - [-74.01116943359375, 40.669921875000114], - [-74.01190185546875, 40.6724853515625], - [-74.0125732421875, 40.674926757812614], - [-74.0134887695312, 40.67828369140631], - [-74.01422119140625, 40.68170166015631], - [-74.0147705078125, 40.68487548828125], - [-74.0153198242187, 40.68829345703119], - [-74.01580810546875, 40.69152832031244], - [-74.01611328125, 40.69470214843756], - [-74.01641845703125, 40.6978759765625], - [-74.0164794921875, 40.700073242187614], - [-74.0166015625, 40.70251464843756], - [-74.01672363281244, 40.7047119140625], - [-74.01672363281244, 40.70709228515631], - [-74.01672363281244, 40.7100830078125], - [-74.0166015625, 40.713073730468864], - [-74.0164794921875, 40.71588134765631], - [-74.0161743164062, 40.71868896484381], - [-74.01599121093739, 40.7216796875], - [-74.0156860351562, 40.72491455078119], - [-74.0151977539062, 40.728515625000114], - [-74.0147705078125, 40.7310791015625], - [-74.014404296875, 40.73388671875], - [-74.01379394531244, 40.736511230468864], - [-74.01330566406244, 40.73907470703125], - [-74.01287841796875, 40.741088867187614], - [-74.0123291015625, 40.74371337890631], - [-74.01141357421864, 40.74688720703125], - [-74.01062011718744, 40.7501220703125], - [-74.0095825195312, 40.753295898437614], - [-74.00860595703125, 40.756530761718864], - [-74.00732421875, 40.76031494140631], - [-74.006103515625, 40.76348876953125], - [-74.005126953125, 40.76593017578125], - [-74.00408935546875, 40.76849365234381], - [-74.0029907226562, 40.77087402343744], - [-74.002197265625, 40.77288818359381], - [-74.0009765625, 40.77532958984375], - [-73.99951171875, 40.77850341796869], - [-73.99810791015625, 40.78088378906256], - [-73.99719238281244, 40.78289794921869], - [-73.99609375, 40.78472900390631], - [-73.99499511718744, 40.786499023437614], - [-73.99377441406239, 40.78851318359381], - [-73.99230957031244, 40.791076660156364], - [-73.99072265624989, 40.793518066406364], - [-73.98889160156244, 40.79608154296875], - [-73.98712158203125, 40.798522949218864], - [-73.98529052734375, 40.80108642578131], - [-73.98327636718744, 40.80352783203125], - [-73.9818115234375, 40.80548095703131], - [-73.98022460937494, 40.80731201171869], - [-73.97790527343744, 40.80969238281256], - [-73.97619628906244, 40.8115234375], - [-73.97442626953125, 40.81329345703131], - [-73.97198486328125, 40.815673828125114], - [-73.96929931640625, 40.81811523437506], - [-73.96667480468744, 40.82049560546875], - [-73.9638061523437, 40.82269287109381], - [-73.96087646484375, 40.82489013671875], - [-73.95788574218744, 40.826904296875114], - [-73.9547119140625, 40.82867431640619], - [-73.95141601562494, 40.83050537109381], - [-73.9489135742187, 40.83172607421869], - [-73.94622802734375, 40.8328857421875], - [-73.94268798828125, 40.83447265625006], - [-73.9390869140625, 40.835693359375114], - [-73.936279296875, 40.83648681640619], - [-73.93341064453125, 40.83709716796875], - [-73.92962646484375, 40.837890625], - [-73.92578125, 40.83850097656256], - [-73.921875, 40.83850097656256], - [-73.9180908203125, 40.83850097656256], - [-73.91522216796875, 40.83831787109381], - [-73.9122924804687, 40.837890625], - [-73.90948486328125, 40.8372802734375], - [-73.9066162109375, 40.83673095703125], - [-73.90380859374994, 40.835876464843864], - [-73.901123046875, 40.83489990234381], - [-73.8975219726562, 40.83331298828125], - [-73.8941040039062, 40.831481933593864], - [-73.89160156249994, 40.82989501953131], - [-73.8892822265625, 40.82830810546875], - [-73.8861694335937, 40.82592773437506], - [-73.88330078124994, 40.823303222656364], - [-73.880615234375, 40.8206787109375], - [-73.8779907226562, 40.81768798828131], - [-73.8756713867187, 40.814697265625114], - [-73.87347412109375, 40.8115234375], - [-73.87152099609375, 40.80828857421875], - [-73.8701171875, 40.805725097656364], - [-73.8687133789062, 40.803283691406364], - [-73.86712646484364, 40.7999267578125], - [-73.86572265625, 40.79669189453125], - [-73.8643798828125, 40.79309082031256], - [-73.86322021484375, 40.78967285156256], - [-73.86248779296875, 40.78729248046875], - [-73.8616943359375, 40.78472900390631], - [-73.8609008789062, 40.781311035156364], - [-73.8604125976562, 40.778686523437614], - [-73.85980224609375, 40.77630615234381], - [-73.85931396484375, 40.77307128906256], - [-73.85888671874994, 40.77069091796869], - [-73.85858154296875, 40.76812744140631], - [-73.8582763671875, 40.76507568359381], - [-73.85797119140614, 40.761901855468864], - [-73.85791015625, 40.75952148437506], - [-73.8577880859375, 40.757324218750114], - [-73.85772705078125, 40.754272460937614], - [-73.85772705078125, 40.75128173828125], - [-73.8577880859375, 40.74829101562506], - [-73.8577880859375, 40.745300292968864], - [-73.85809326171875, 40.74169921874994], - [-73.8582763671875, 40.73828125], - [-73.85858154296875, 40.73547363281256], - [-73.85900878906244, 40.73272705078119], - [-73.85949707031239, 40.7291259765625], - [-73.86022949218744, 40.72509765624994], - [-73.86071777343744, 40.72247314453125], - [-73.86108398437494, 40.72052001953119], - [-73.8616943359375, 40.7178955078125], - [-73.8623046875, 40.71527099609381], - [-73.86322021484375, 40.712097167968864], - [-73.864013671875, 40.70892333984375] + [-73.937242, 40.836186], + [-73.95061, 40.832464], + [-73.962925, 40.827467], + [-73.974045, 40.821573], + [-73.983949, 40.815099], + [-73.992697, 40.808283], + [-74.00039, 40.801291], + [-74.007142, 40.794228], + [-74.013069, 40.787155], + [-74.018273, 40.780095], + [-74.022843, 40.773051], + [-74.026852, 40.76601], + [-74.030356, 40.758945], + [-74.033397, 40.751824], + [-74.035999, 40.744608], + [-74.038172, 40.737256], + [-74.039907, 40.729722], + [-74.041179, 40.721963], + [-74.041939, 40.713935], + [-74.042117, 40.705603], + [-74.041611, 40.696944], + [-74.04029, 40.687956], + [-74.037986, 40.678674], + [-74.034501, 40.669186], + [-74.029617, 40.659656], + [-74.023121, 40.650342], + [-74.01485, 40.641608], + [-74.004753, 40.633898], + [-73.992947, 40.627687], + [-73.979755, 40.623387], + [-73.96568, 40.621247], + [-73.951317, 40.621297], + [-73.937242, 40.62335], + [-73.923915, 40.62707], + [-73.911634, 40.632063], + [-73.90054, 40.637951], + [-73.890654, 40.644418], + [-73.881917, 40.651226], + [-73.87423, 40.65821], + [-73.867477, 40.665265], + [-73.861546, 40.672331], + [-73.856334, 40.679384], + [-73.851753, 40.686421], + [-73.84773, 40.693457], + [-73.844209, 40.700516], + [-73.841151, 40.707632], + [-73.838529, 40.714843], + [-73.836335, 40.722192], + [-73.834577, 40.729722], + [-73.833281, 40.737479], + [-73.832495, 40.745506], + [-73.832291, 40.753837], + [-73.83277, 40.762497], + [-73.834065, 40.771488], + [-73.836343, 40.780774], + [-73.839806, 40.790268], + [-73.844672, 40.799806], + [-73.851158, 40.809129], + [-73.859428, 40.817876], + [-73.869536, 40.825598], + [-73.881366, 40.831822], + [-73.894592, 40.836133], + [-73.908711, 40.838281], + [-73.923121, 40.838237], + [-73.937242, 40.836186] ] ] } @@ -221,7 +97,7 @@ "semiMinorAxis": 0.11116279583689635, "numberOfFeatures": 473, "angle": 16.480444767293083, - "percentageWithinEllipse": 67.65327695560254 + "percentageWithinEllipse": 71.88160676532769 }, "fill": "#FFF", "stroke": "#0A0", @@ -233,71 +109,71 @@ "type": "Polygon", "coordinates": [ [ - [-73.86425018206197, 40.70817327168436], - [-73.86229362069408, 40.71539493318482], - [-73.86066196462228, 40.722756867270895], - [-73.85936208961321, 40.73030348582415], - [-73.85841504334654, 40.73807936958905], - [-73.85785804056273, 40.74612659590878], - [-73.85774708165933, 40.754480588538456], - [-73.85815997375734, 40.76316364909264], - [-73.859199167547, 40.77217517924255], - [-73.86099317541081, 40.781477665342415], - [-73.86369434043719, 40.79097814737647], - [-73.86746951914185, 40.8005067351386], - [-73.87247949307088, 40.809797379032936], - [-73.87884419223703, 40.81848131749522], - [-73.88659622795889, 40.82610771059877], - [-73.89563531096549, 40.832202836993005], - [-73.90570589866341, 40.836363029417214], - [-73.91641896720802, 40.838351521294626], - [-73.92731929245234, 40.83815531494918], - [-73.9379728415863, 40.83597407208024], - [-73.94803773180242, 40.83215070084145], - [-73.95729603850374, 40.82708121765624], - [-73.9656477572392, 40.821140278912516], - [-73.97308304184949, 40.814638587275496], - [-73.97964946042646, 40.80780946881659], - [-73.98542425881847, 40.80081380566669], - [-73.9904948544156, 40.793752992628335], - [-73.99494688213429, 40.78668327170549], - [-73.99885775898814, 40.77962826314589], - [-74.00229374454675, 40.77258871286213], - [-74.00530895641558, 40.76554956348073], - [-74.00794530937128, 40.75848486121402], - [-74.01023273548554, 40.751361083495325], - [-74.01218929685344, 40.744139421994866], - [-74.01382095292523, 40.73677748790879], - [-74.0151208279343, 40.72923086935553], - [-74.01606787420097, 40.72145498559063], - [-74.01662487698478, 40.71340775927091], - [-74.01673583588818, 40.70505376664123], - [-74.01632294379017, 40.696370706087045], - [-74.0152837500005, 40.68735917593713], - [-74.0134897421367, 40.67805668983727], - [-74.01078857711032, 40.66855620780321], - [-74.00701339840566, 40.65902762004109], - [-74.00200342447663, 40.64973697614675], - [-73.99563872531049, 40.641053037684465], - [-73.98788668958862, 40.633426644580915], - [-73.97884760658202, 40.62733151818668], - [-73.9687770188841, 40.62317132576247], - [-73.9580639503395, 40.62118283388506], - [-73.94716362509517, 40.62137904023051], - [-73.93651007596121, 40.623560283099444], - [-73.9264451857451, 40.62738365433823], - [-73.91718687904377, 40.63245313752344], - [-73.90883516030831, 40.63839407626717], - [-73.90139987569802, 40.64489576790419], - [-73.89483345712105, 40.65172488636309], - [-73.88905865872904, 40.65872054951299], - [-73.88398806313191, 40.66578136255135], - [-73.87953603541322, 40.67285108347419], - [-73.87562515855937, 40.6799060920338], - [-73.87218917300076, 40.68694564231755], - [-73.86917396113193, 40.69398479169895], - [-73.86653760817623, 40.70104949396566], - [-73.86425018206197, 40.70817327168436] + [-74.03359324546851, 40.75132103218129], + [-74.02980293400115, 40.76012863103802], + [-74.02528552411586, 40.76887197102854], + [-74.0200350928131, 40.777482909918255], + [-74.01405082863232, 40.7858879763643], + [-74.00733773756559, 40.79400823663968], + [-73.99990742755185, 40.801759182943094], + [-73.99177898248347, 40.80905064919711], + [-73.98297993893047, 40.81578676164539], + [-73.97354738172352, 40.821865933378426], + [-73.96352917838684, 40.82718091429612], + [-73.9529853775278, 40.8316189111703], + [-73.94198980319563, 40.835061796717234], + [-73.93063188669697, 40.8373864324002], + [-73.919018790595, 40.8384651377768], + [-73.90727789847813, 40.83816635070532], + [-73.89555977154562, 40.83635553942771], + [-73.88443014504873, 40.83304344443191], + [-73.87437098343747, 40.82845426835252], + [-73.86541133661937, 40.82276283715078], + [-73.85756288120297, 40.8161319079139], + [-73.8508231008489, 40.80871263328326], + [-73.84517788429955, 40.80064504272652], + [-73.8406036708805, 40.79205853130578], + [-73.83706923820884, 40.78307234930186], + [-73.83453720269986, 40.77379608793092], + [-73.83296528646396, 40.76433015771664], + [-73.83230739197033, 40.75476625704031], + [-73.83251451691409, 40.74518782909243], + [-73.8335355350701, 40.73567050597184], + [-73.83531786388474, 40.72628253907192], + [-73.83780803569908, 40.71708521519108], + [-73.84095218649749, 40.70813325803411], + [-73.84476451396527, 40.699331854062216], + [-73.84930090197322, 40.690595566053084], + [-73.85456655089425, 40.68199237410667], + [-73.86056159765634, 40.67359555113398], + [-73.86728043775769, 40.66548379754552], + [-73.87471097122668, 40.657741355762894], + [-73.88283376112537, 40.650458098876975], + [-73.89162109071555, 40.64372958637409], + [-73.90103590221698, 40.63765707803131], + [-73.91103059593168, 40.63234749469166], + [-73.92154566302204, 40.62791331145134], + [-73.93250811787672, 40.624472364501344], + [-73.94382968598299, 40.6221475469883], + [-73.95540468933167, 40.62106636106392], + [-73.9671075517279, 40.62136028164354], + [-73.97878981795107, 40.62316387047818], + [-73.98988907748351, 40.626466916318215], + [-73.99992569571032, 40.63104607657647], + [-74.00887104266555, 40.63672711589932], + [-74.01671341138922, 40.64334780103107], + [-74.02345492440752, 40.65075742560566], + [-74.02910901786136, 40.658816323886754], + [-74.0336983714282, 40.667395381445], + [-74.03725318812609, 40.67637554829524], + [-74.03980975286483, 40.68564735834254], + [-74.04140921605757, 40.69511045782774], + [-74.04209656113622, 40.704673144647536], + [-74.04191972396667, 40.71425191984239], + [-74.0409288389554, 40.723771052124086], + [-74.03917559175294, 40.73316215600696], + [-74.03671266236184, 40.742363783879206], + [-74.03359324546851, 40.75132103218129] ] ] } diff --git a/packages/turf-standard-deviational-ellipse/test/out/mta-stations-weighted.json b/packages/turf-standard-deviational-ellipse/test/out/mta-stations-weighted.json index f05217ac4..b9af10aef 100644 --- a/packages/turf-standard-deviational-ellipse/test/out/mta-stations-weighted.json +++ b/packages/turf-standard-deviational-ellipse/test/out/mta-stations-weighted.json @@ -19,190 +19,71 @@ "type": "Polygon", "coordinates": [ [ - [-73.96179199218744, 40.650695800781364], - [-73.9642944335937, 40.650695800781364], - [-73.966796875, 40.650878906250114], - [-73.97009277343744, 40.65130615234375], - [-73.973388671875, 40.65167236328119], - [-73.97576904296875, 40.652099609375], - [-73.9782104492187, 40.65289306640631], - [-73.98138427734375, 40.653930664062614], - [-73.98449707031244, 40.655090332031364], - [-73.98760986328125, 40.65631103515625], - [-73.990478515625, 40.65789794921881], - [-73.993408203125, 40.65972900390625], - [-73.99542236328125, 40.66107177734375], - [-73.997314453125, 40.662719726562614], - [-73.99987792968739, 40.66491699218756], - [-74.002197265625, 40.667297363281364], - [-74.00451660156244, 40.66967773437506], - [-74.006591796875, 40.67230224609375], - [-74.00842285156244, 40.675109863281364], - [-74.01031494140625, 40.67791748046881], - [-74.0117797851562, 40.68072509765625], - [-74.01330566406244, 40.68371582031244], - [-74.01458740234375, 40.686706542968864], - [-74.01550292968744, 40.68890380859375], - [-74.01629638671875, 40.691284179687614], - [-74.01727294921875, 40.69427490234381], - [-74.01812744140625, 40.69732666015631], - [-74.0186767578125, 40.70050048828119], - [-74.0192260742187, 40.70269775390631], - [-74.01947021484375, 40.70507812499994], - [-74.01989746093744, 40.70812988281244], - [-74.0200805664062, 40.71032714843756], - [-74.02032470703125, 40.71270751953119], - [-74.0203857421875, 40.716308593750114], - [-74.0203857421875, 40.720092773437614], - [-74.02032470703125, 40.72290039062506], - [-74.0200805664062, 40.72589111328125], - [-74.01989746093744, 40.72930908203125], - [-74.01940917968744, 40.73272705078119], - [-74.01898193359375, 40.73547363281256], - [-74.01849365234375, 40.73809814453125], - [-74.01800537109375, 40.740722656250114], - [-74.01757812499994, 40.74267578125], - [-74.0170288085937, 40.744689941406364], - [-74.01641845703125, 40.7470703125], - [-74.015625, 40.75030517578125], - [-74.014404296875, 40.75390624999994], - [-74.01330566406244, 40.756896972656364], - [-74.01239013671875, 40.75927734375], - [-74.01141357421864, 40.76171874999994], - [-74.0103759765625, 40.76409912109381], - [-74.0092163085937, 40.76690673828125], - [-74.0078735351562, 40.769714355468864], - [-74.00677490234375, 40.77191162109381], - [-74.005615234375, 40.774108886718864], - [-74.00408935546875, 40.77667236328131], - [-74.00250244140625, 40.77947998046875], - [-74.0012817382812, 40.78149414062506], - [-73.9995727539062, 40.78411865234381], - [-73.997802734375, 40.786682128906364], - [-73.99627685546875, 40.78869628906256], - [-73.99450683593744, 40.791076660156364], - [-73.99249267578125, 40.79370117187506], - [-73.9909057617187, 40.79571533203125], - [-73.98919677734364, 40.797729492187614], - [-73.98748779296875, 40.79949951171875], - [-73.9857177734375, 40.80151367187506], - [-73.9838256835937, 40.803283691406364], - [-73.98187255859375, 40.80529785156256], - [-73.9799194335937, 40.80712890625], - [-73.9774169921875, 40.80932617187506], - [-73.97418212890625, 40.81188964843744], - [-73.97137451171875, 40.81408691406256], - [-73.9691162109375, 40.815673828125114], - [-73.96667480468744, 40.81732177734381], - [-73.9642944335937, 40.818908691406364], - [-73.961669921875, 40.82049560546875], - [-73.9591064453125, 40.82189941406256], - [-73.9564208984375, 40.823303222656364], - [-73.95440673828125, 40.82427978515619], - [-73.95227050781244, 40.82531738281256], - [-73.95007324218744, 40.82611083984381], - [-73.94787597656244, 40.826904296875114], - [-73.94567871093744, 40.827697753906364], - [-73.94342041015614, 40.8284912109375], - [-73.9403076171875, 40.82928466796875], - [-73.93798828125, 40.82989501953131], - [-73.93560791015625, 40.83032226562506], - [-73.932373046875, 40.83087158203131], - [-73.92919921874994, 40.831298828125114], - [-73.9259033203125, 40.831481933593864], - [-73.92260742187494, 40.831481933593864], - [-73.9193115234375, 40.831481933593864], - [-73.9158935546875, 40.831115722656364], - [-73.9127197265625, 40.83068847656256], - [-73.9102783203125, 40.83007812500006], - [-73.90777587890625, 40.82952880859381], - [-73.9053955078125, 40.82867431640619], - [-73.90301513671875, 40.827880859375114], - [-73.89990234374994, 40.826721191406364], - [-73.89697265624989, 40.8250732421875], - [-73.89477539062494, 40.82391357421875], - [-73.8927001953125, 40.822509765625114], - [-73.89001464843739, 40.8206787109375], - [-73.88739013671875, 40.81848144531256], - [-73.8848876953125, 40.8162841796875], - [-73.88262939453125, 40.81372070312506], - [-73.8809814453125, 40.81188964843744], - [-73.87951660156244, 40.80987548828131], - [-73.8775024414062, 40.80731201171869], - [-73.8756713867187, 40.80450439453125], - [-73.87408447265614, 40.80169677734381], - [-73.8726806640625, 40.798706054687614], - [-73.8713989257812, 40.79571533203125], - [-73.8704833984375, 40.79327392578131], - [-73.8696899414062, 40.791076660156364], - [-73.8687744140625, 40.7880859375], - [-73.86798095703114, 40.78491210937506], - [-73.86730957031244, 40.781921386718864], - [-73.86682128906244, 40.7789306640625], - [-73.86639404296875, 40.77648925781256], - [-73.8660888671875, 40.774291992187614], - [-73.86590576171875, 40.77191162109381], - [-73.8657836914062, 40.769714355468864], - [-73.86560058593739, 40.76593017578125], - [-73.86560058593739, 40.7623291015625], - [-73.86572265625, 40.75927734375], - [-73.86590576171875, 40.756530761718864], - [-73.8660888671875, 40.75372314453125], - [-73.8665771484375, 40.7501220703125], - [-73.86712646484364, 40.74688720703125], - [-73.8674926757812, 40.74407958984381], - [-73.86798095703114, 40.74212646484375], - [-73.86846923828125, 40.73950195312506], - [-73.86932373046875, 40.736328125000114], - [-73.8699951171875, 40.73388671875], - [-73.87072753906244, 40.73132324218756], - [-73.87152099609375, 40.728881835937614], - [-73.872314453125, 40.72650146484375], - [-73.87341308593744, 40.72351074218756], - [-73.87457275390625, 40.72052001953119], - [-73.8757934570312, 40.71771240234375], - [-73.8770751953125, 40.71490478515631], - [-73.87817382812494, 40.71270751953119], - [-73.8792724609375, 40.71051025390631], - [-73.8804931640625, 40.70831298828119], - [-73.8818969726562, 40.70550537109375], - [-73.88391113281239, 40.7022705078125], - [-73.88549804687494, 40.699890136718864], - [-73.88677978515625, 40.69769287109375], - [-73.88861083984375, 40.695129394531364], - [-73.89038085937494, 40.69268798828125], - [-73.89202880859375, 40.69067382812506], - [-73.8936157226562, 40.688720703125], - [-73.89520263671875, 40.686706542968864], - [-73.89691162109375, 40.6846923828125], - [-73.89862060546875, 40.68267822265631], - [-73.90039062499994, 40.680908203125], - [-73.90222167968739, 40.678894042968864], - [-73.90472412109375, 40.676513671875], - [-73.9071044921875, 40.674316406250114], - [-73.90917968749989, 40.6724853515625], - [-73.91180419921875, 40.67028808593756], - [-73.9146118164062, 40.6680908203125], - [-73.91687011718744, 40.666503906250114], - [-73.91870117187494, 40.66528320312506], - [-73.9205932617187, 40.66412353515625], - [-73.9224243164062, 40.662902832031364], - [-73.92431640624994, 40.661926269531364], - [-73.92626953125, 40.66070556640631], - [-73.92822265624994, 40.65972900390625], - [-73.9302978515625, 40.658691406250114], - [-73.932373046875, 40.657714843750114], - [-73.93518066406244, 40.656494140625], - [-73.93737792968744, 40.655517578125], - [-73.93957519531244, 40.65490722656244], - [-73.94262695312494, 40.65368652343756], - [-73.94488525390625, 40.65307617187506], - [-73.9472045898437, 40.65252685546881], - [-73.95037841796864, 40.65191650390625], - [-73.95361328124994, 40.6514892578125], - [-73.9569091796875, 40.650878906250114], - [-73.95928955078125, 40.650695800781364], - [-73.96179199218744, 40.650695800781364] + [-73.943062, 40.828517], + [-73.954059, 40.825539], + [-73.964297, 40.821839], + [-73.973743, 40.817592], + [-73.982408, 40.812939], + [-73.990332, 40.807982], + [-73.997572, 40.802794], + [-74.004185, 40.79742], + [-74.010229, 40.791885], + [-74.015753, 40.786199], + [-74.020799, 40.780359], + [-74.025399, 40.774353], + [-74.029572, 40.76816], + [-74.033324, 40.761758], + [-74.036647, 40.755117], + [-74.039516, 40.748211], + [-74.041886, 40.741012], + [-74.043691, 40.7335], + [-74.044837, 40.725667], + [-74.045205, 40.717524], + [-74.044648, 40.709112], + [-74.042995, 40.700515], + [-74.040065, 40.691868], + [-74.035686, 40.683373], + [-74.02973, 40.675291], + [-74.022154, 40.667927], + [-74.013031, 40.661598], + [-74.00257, 40.656579], + [-73.991101, 40.653056], + [-73.979028, 40.651095], + [-73.966766, 40.65064], + [-73.954682, 40.651541], + [-73.943062, 40.65359], + [-73.932093, 40.656568], + [-73.921879, 40.660265], + [-73.912452, 40.664507], + [-73.903802, 40.669155], + [-73.895887, 40.674106], + [-73.888653, 40.679288], + [-73.882042, 40.684655], + [-73.875998, 40.690183], + [-73.87047, 40.695863], + [-73.865417, 40.701696], + [-73.860808, 40.707696], + [-73.856623, 40.713883], + [-73.852857, 40.72028], + [-73.849517, 40.726915], + [-73.846629, 40.733817], + [-73.844238, 40.741012], + [-73.842411, 40.74852], + [-73.84124, 40.756351], + [-73.840847, 40.764493], + [-73.841378, 40.772906], + [-73.843007, 40.781506], + [-73.845916, 40.790158], + [-73.850278, 40.79866], + [-73.856222, 40.806752], + [-73.863796, 40.814126], + [-73.872926, 40.820467], + [-73.883402, 40.825498], + [-73.894896, 40.829032], + [-73.906999, 40.831002], + [-73.919294, 40.831463], + [-73.93141, 40.830566], + [-73.943062, 40.828517] ] ] } @@ -216,7 +97,7 @@ "semiMinorAxis": 0.095782813512421, "numberOfFeatures": 473, "angle": 29.231003681507175, - "percentageWithinEllipse": 57.505285412262154 + "percentageWithinEllipse": 60.46511627906977 }, "fill": "#FFF", "stroke": "#0A0", @@ -228,71 +109,71 @@ "type": "Polygon", "coordinates": [ [ - [-73.88136916881253, 40.70653072317669], - [-73.87814030470469, 40.71268175889811], - [-73.87522933224423, 40.71903809497184], - [-73.87264031979436, 40.725626827270155], - [-73.87038974791109, 40.732476417519145], - [-73.86850839929355, 40.73961395476652], - [-73.86704357528771, 40.747061369952846], - [-73.86606140876805, 40.75483009265435], - [-73.86564874379035, 40.76291364869353], - [-73.86591359639542, 40.771277898699964], - [-73.86698261753159, 40.77984920362209], - [-73.86899342126398, 40.78850199731926], - [-73.87207957481831, 40.79704912600922], - [-73.87634724335821, 40.80524043131959], - [-73.88184567550383, 40.8127760049781], - [-73.88853860560636, 40.819338137367616], - [-73.89628776244074, 40.82463889834789], - [-73.904858870295, 40.82847081807099], - [-73.9139525628125, 40.8307427448419], - [-73.92325111432643, 40.831487436835545], - [-73.93246477374285, 40.830840167484844], - [-73.94136369135974, 40.828999782239435], - [-73.94979018997724, 40.82618761377627], - [-73.95765462382637, 40.8226153939496], - [-73.96492195464074, 40.818466089440754], - [-73.97159566686506, 40.81388616195557], - [-73.97770316301975, 40.80898552993454], - [-73.98328435019002, 40.80384159641086], - [-73.98838356144428, 40.7985047476063], - [-73.99304423000417, 40.793003826869224], - [-73.99730554500583, 40.787350900793186], - [-74.00120038457646, 40.781545128349585], - [-74.0047539703658, 40.775575804107184], - [-74.00798283447364, 40.76942476838577], - [-74.01089380693409, 40.76306843231203], - [-74.01348281938397, 40.75647970001372], - [-74.01573339126723, 40.74963010976473], - [-74.01761473988478, 40.74249257251736], - [-74.01907956389061, 40.73504515733103], - [-74.02006173041028, 40.72727643462952], - [-74.02047439538798, 40.71919287859035], - [-74.02020954278291, 40.71082862858391], - [-74.01914052164673, 40.70225732366178], - [-74.01712971791434, 40.69360452996462], - [-74.01404356436001, 40.685057401274655], - [-74.00977589582011, 40.676866095964286], - [-74.0042774636745, 40.66933052230578], - [-73.99758453357197, 40.66276838991626], - [-73.98983537673759, 40.65746762893598], - [-73.98126426888332, 40.653635709212885], - [-73.97217057636583, 40.651363782441976], - [-73.96287202485189, 40.65061909044833], - [-73.95365836543547, 40.65126635979903], - [-73.94475944781858, 40.65310674504444], - [-73.93633294920109, 40.655918913507605], - [-73.92846851535195, 40.65949113333428], - [-73.92120118453758, 40.66364043784312], - [-73.91452747231327, 40.6682203653283], - [-73.90841997615857, 40.673120997349336], - [-73.9028387889883, 40.67826493087301], - [-73.89773957773404, 40.68360177967757], - [-73.89307890917415, 40.68910270041465], - [-73.8888175941725, 40.69475562649069], - [-73.88492275460186, 40.70056139893429], - [-73.88136916881253, 40.70653072317669] + [-74.02452801068807, 40.775547173294186], + [-74.01893422646326, 40.78259752726428], + [-74.01268414445943, 40.78943811380472], + [-74.00579638065156, 40.796006107373], + [-73.99829617235616, 40.80223594694747], + [-73.99021592245862, 40.80805957219015], + [-73.98159576262077, 40.8134067167014], + [-73.9724841338293, 40.81820526653445], + [-73.9629383821334, 40.82238169342446], + [-73.95302536680158, 40.8258615737414], + [-73.94282207737366, 40.82857020607593], + [-73.93241625516164, 40.83043334270903], + [-73.92190701361201, 40.831378053136305], + [-73.91140545051374, 40.83133374149704], + [-73.90103524323057, 40.83023334445488], + [-73.89093321581471, 40.82801474214651], + [-73.88124986383536, 40.82462242277314], + [-73.87237279234334, 40.82014233496311], + [-73.86460097509195, 40.81477985802708], + [-73.85795003463295, 40.80866105611467], + [-73.85242093101229, 40.80190655870187], + [-73.84800215245467, 40.79463104771375], + [-73.84467163625422, 40.786942903004004], + [-73.84239845801515, 40.77894397546494], + [-73.84114432030273, 40.77072946332155], + [-73.84086486634928, 40.76238787196388], + [-73.84151084025547, 40.75400104139124], + [-73.8430291118138, 40.7456442282593], + [-73.84536358143308, 40.73738623183474], + [-73.84845597849838, 40.72928955501612], + [-73.85224656474314, 40.72141059307866], + [-73.85667475275184, 40.71379984402171], + [-73.86167964848912, 40.70650213540208], + [-73.86728368644258, 40.69945937985531], + [-73.87354025396233, 40.69262664020811], + [-73.88043036281451, 40.68606650975553], + [-73.88792850688942, 40.67984429861887], + [-73.89600213853876, 40.67402780376825], + [-73.90461112478266, 40.668687023307626], + [-73.91370718412121, 40.66389380684423], + [-73.92323330506247, 40.659721432427446], + [-73.93312314796478, 40.656244098923295], + [-73.94330043241949, 40.653536320714245], + [-73.953678313213, 40.65167220918066], + [-73.96415874896458, 40.65072462239258], + [-73.9746318689202, 40.650764160635475], + [-73.98497534519998, 40.651857980554134], + [-73.99505378020882, 40.65406839446653], + [-74.00471812214236, 40.657451213261425], + [-74.01358239966163, 40.66192116955677], + [-74.02134836223475, 40.66727365770246], + [-74.02800018349505, 40.67338307986641], + [-74.03353641529728, 40.68012919335254], + [-74.03796786068695, 40.687397618451094], + [-74.04131571419732, 40.695080192396205], + [-74.04360992940073, 40.70307519921561], + [-74.04488778136994, 40.7112874990724], + [-74.04519259763617, 40.71962857599848], + [-74.04457263584214, 40.72801651930139], + [-74.04308008991914, 40.73637595110584], + [-74.04077020950417, 40.744637910270065], + [-74.03770051963454, 40.75273970114755], + [-74.03393012963858, 40.76062471424352], + [-74.02951912168086, 40.76824222466161], + [-74.02452801068807, 40.775547173294186] ] ] } diff --git a/packages/turf-tag/index.ts b/packages/turf-tag/index.ts index 7c1d02917..2d1561c15 100644 --- a/packages/turf-tag/index.ts +++ b/packages/turf-tag/index.ts @@ -6,7 +6,7 @@ import { featureEach } from "@turf/meta"; /** * Takes a set of {@link Point|points} and a set of {@link Polygon|polygons} and/or {@link MultiPolygon|multipolygons} and performs a spatial join. * - * @name tag + * @function * @param {FeatureCollection} points input points * @param {FeatureCollection} polygons input (multi)polygons * @param {string} field property in `polygons` to add to joined {} features diff --git a/packages/turf-tag/package.json b/packages/turf-tag/package.json index 4927673ed..2212f5166 100644 --- a/packages/turf-tag/package.json +++ b/packages/turf-tag/package.json @@ -1,7 +1,7 @@ { "name": "@turf/tag", - "version": "7.0.0", - "description": "turf tag module", + "version": "7.2.0", + "description": "Takes a set of points and a set of polygons and/or multipolygons and performs a spatial join.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -56,21 +56,21 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/boolean-point-in-polygon": "workspace:^", - "@turf/clone": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/boolean-point-in-polygon": "workspace:*", + "@turf/clone": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-tesselate/index.ts b/packages/turf-tesselate/index.ts index 54ed91eaf..2bb01f0bd 100644 --- a/packages/turf-tesselate/index.ts +++ b/packages/turf-tesselate/index.ts @@ -12,7 +12,7 @@ import { polygon } from "@turf/helpers"; * Tesselates a polygon or multipolygon into a collection of triangle polygons * using [earcut](https://github.com/mapbox/earcut). * - * @name tesselate + * @function * @param {Feature} poly the polygon to tesselate * @returns {FeatureCollection} collection of polygon tesselations * @example diff --git a/packages/turf-tesselate/package.json b/packages/turf-tesselate/package.json index 2ce546a84..a5c7e4d33 100644 --- a/packages/turf-tesselate/package.json +++ b/packages/turf-tesselate/package.json @@ -1,7 +1,7 @@ { "name": "@turf/tesselate", - "version": "7.0.0", - "description": "turf tesselate module", + "version": "7.2.0", + "description": "Tesselates a polygon or multipolygon into a collection of triangle polygons using earcut.", "author": "Turf Authors", "contributors": [ "Abel VΓ‘zquez <@AbelVM>", @@ -60,18 +60,18 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/helpers": "workspace:^", + "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", "earcut": "^2.2.4", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-tin/index.ts b/packages/turf-tin/index.ts index 1864d9e95..3843db9a1 100644 --- a/packages/turf-tin/index.ts +++ b/packages/turf-tin/index.ts @@ -24,7 +24,7 @@ interface Vertice { * and `c` representing its value at each of the points that represent the corners of the * triangle. * - * @name tin + * @function * @param {FeatureCollection} points input points * @param {String} [z] 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. diff --git a/packages/turf-tin/package.json b/packages/turf-tin/package.json index 575d579ab..293083866 100644 --- a/packages/turf-tin/package.json +++ b/packages/turf-tin/package.json @@ -1,7 +1,7 @@ { "name": "@turf/tin", - "version": "7.0.0", - "description": "turf tin module", + "version": "7.2.0", + "description": "Takes a set of points and creates a Triangulated Irregular Network.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -52,17 +52,17 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/helpers": "workspace:^", + "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-transform-rotate/index.ts b/packages/turf-transform-rotate/index.ts index 4d8216a82..9445b666f 100644 --- a/packages/turf-transform-rotate/index.ts +++ b/packages/turf-transform-rotate/index.ts @@ -11,7 +11,7 @@ import { isObject, Coord } from "@turf/helpers"; /** * Rotates any geojson Feature or Geometry of a specified angle, around its `centroid` or a given `pivot` point. * - * @name transformRotate + * @function * @param {GeoJSON} geojson object to be rotated * @param {number} angle of rotation in decimal degrees, positive clockwise * @param {Object} [options={}] Optional parameters diff --git a/packages/turf-transform-rotate/package.json b/packages/turf-transform-rotate/package.json index c57ea055c..d335ec2e5 100644 --- a/packages/turf-transform-rotate/package.json +++ b/packages/turf-transform-rotate/package.json @@ -1,7 +1,7 @@ { "name": "@turf/transform-rotate", - "version": "7.0.0", - "description": "turf transform-rotate module", + "version": "7.2.0", + "description": "Rotates a geometry around its center or a given point.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>", @@ -56,28 +56,28 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/truncate": "workspace:^", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/centroid": "workspace:^", - "@turf/clone": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/meta": "workspace:^", - "@turf/rhumb-bearing": "workspace:^", - "@turf/rhumb-destination": "workspace:^", - "@turf/rhumb-distance": "workspace:^", + "@turf/centroid": "workspace:*", + "@turf/clone": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/meta": "workspace:*", + "@turf/rhumb-bearing": "workspace:*", + "@turf/rhumb-destination": "workspace:*", + "@turf/rhumb-distance": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-transform-scale/index.ts b/packages/turf-transform-scale/index.ts index 7a09eb05a..583352060 100644 --- a/packages/turf-transform-scale/index.ts +++ b/packages/turf-transform-scale/index.ts @@ -17,7 +17,7 @@ import { getCoord, getCoords, getType } from "@turf/invariant"; * If a FeatureCollection is provided, the origin point will be calculated * based on each individual feature _unless_ an exact * - * @name transformScale + * @function * @param {GeoJSON|GeometryCollection} geojson objects to be scaled * @param {number} factor of scaling, positive values greater than 0. Numbers between 0 and 1 will shrink the geojson, numbers greater than 1 will expand it, a factor of 1 will not change the geojson. * @param {Object} [options={}] Optional parameters diff --git a/packages/turf-transform-scale/package.json b/packages/turf-transform-scale/package.json index 9d71adc3b..b6e480574 100644 --- a/packages/turf-transform-scale/package.json +++ b/packages/turf-transform-scale/package.json @@ -1,7 +1,7 @@ { "name": "@turf/transform-scale", - "version": "7.0.0", - "description": "turf transform-scale module", + "version": "7.2.0", + "description": "Changes the size of a geometry by scaling it up or down.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>", @@ -60,32 +60,32 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/bbox-polygon": "workspace:^", - "@turf/hex-grid": "workspace:^", - "@turf/truncate": "workspace:^", + "@turf/bbox-polygon": "workspace:*", + "@turf/hex-grid": "workspace:*", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/bbox": "workspace:^", - "@turf/center": "workspace:^", - "@turf/centroid": "workspace:^", - "@turf/clone": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/meta": "workspace:^", - "@turf/rhumb-bearing": "workspace:^", - "@turf/rhumb-destination": "workspace:^", - "@turf/rhumb-distance": "workspace:^", + "@turf/bbox": "workspace:*", + "@turf/center": "workspace:*", + "@turf/centroid": "workspace:*", + "@turf/clone": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/meta": "workspace:*", + "@turf/rhumb-bearing": "workspace:*", + "@turf/rhumb-destination": "workspace:*", + "@turf/rhumb-distance": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-transform-translate/README.md b/packages/turf-transform-translate/README.md index 846ebc0bc..409f7a289 100644 --- a/packages/turf-transform-translate/README.md +++ b/packages/turf-transform-translate/README.md @@ -7,6 +7,9 @@ Moves any geojson Feature or Geometry of a specified distance along a Rhumb Line on the provided direction angle. +Note that this moves the points of your shape individually and can therefore change +the overall shape. How noticable this is depends on the distance and the used projection. + ### Parameters * `geojson` **([GeoJSON][1] | [GeometryCollection][2])** object to be translated @@ -14,9 +17,9 @@ on the provided direction angle. * `direction` **[number][3]** of the motion; angle from North in decimal degrees, positive clockwise * `options` **[Object][4]** Optional parameters (optional, default `{}`) - * `options.units` **Units** in which `distance` will be express; miles, kilometers, degrees, or radians (optional, default `'kilometers'`) + * `options.units` **Units** in which `distance` will be expressed; Supports all valid Turf [Units][5] (optional, default `'kilometers'`) * `options.zTranslation` **[number][3]** length of the vertical motion, same unit of distance (optional, default `0`) - * `options.mutate` **[boolean][5]** allows GeoJSON input to be mutated (significant performance increase if true) (optional, default `false`) + * `options.mutate` **[boolean][6]** allows GeoJSON input to be mutated (significant performance increase if true) (optional, default `false`) ### Examples @@ -39,7 +42,9 @@ Returns **([GeoJSON][1] | [GeometryCollection][2])** the translated GeoJSON obje [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean +[5]: https://turfjs.org/docs/api/types/Units + +[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean diff --git a/packages/turf-transform-translate/index.ts b/packages/turf-transform-translate/index.ts index 696c28906..04d446f5a 100644 --- a/packages/turf-transform-translate/index.ts +++ b/packages/turf-transform-translate/index.ts @@ -9,12 +9,15 @@ import { rhumbDestination } from "@turf/rhumb-destination"; * Moves any geojson Feature or Geometry of a specified distance along a Rhumb Line * on the provided direction angle. * - * @name transformTranslate + * Note that this moves the points of your shape individually and can therefore change + * the overall shape. How noticable this is depends on the distance and the used projection. + * + * @function * @param {GeoJSON|GeometryCollection} geojson object to be translated * @param {number} distance length of the motion; negative values determine motion in opposite direction * @param {number} direction of the motion; angle from North in decimal degrees, positive clockwise * @param {Object} [options={}] Optional parameters - * @param {Units} [options.units='kilometers'] in which `distance` will be express; miles, kilometers, degrees, or radians + * @param {Units} [options.units='kilometers'] in which `distance` will be expressed; Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @param {number} [options.zTranslation=0] length of the vertical motion, same unit of distance * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true) * @returns {GeoJSON|GeometryCollection} the translated GeoJSON object diff --git a/packages/turf-transform-translate/package.json b/packages/turf-transform-translate/package.json index 5e44fca4c..904757ba4 100644 --- a/packages/turf-transform-translate/package.json +++ b/packages/turf-transform-translate/package.json @@ -1,7 +1,7 @@ { "name": "@turf/transform-translate", - "version": "7.0.0", - "description": "turf transform-translate module", + "version": "7.2.0", + "description": "Moves a shape or location in a specific direction.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>", @@ -58,25 +58,25 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/truncate": "workspace:^", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/clone": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/meta": "workspace:^", - "@turf/rhumb-destination": "workspace:^", + "@turf/clone": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/meta": "workspace:*", + "@turf/rhumb-destination": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-triangle-grid/README.md b/packages/turf-triangle-grid/README.md index 10dcd092d..051777621 100644 --- a/packages/turf-triangle-grid/README.md +++ b/packages/turf-triangle-grid/README.md @@ -4,17 +4,17 @@ ## triangleGrid -Takes a bounding box and a cell depth and returns a set of triangular [polygons][1] in a grid. +Creates a grid of triangular polygons. ### Parameters -* `bbox` **[Array][2]<[number][3]>** extent in \[minX, minY, maxX, maxY] order -* `cellSide` **[number][3]** dimension of each cell -* `options` **[Object][4]** Optional parameters (optional, default `{}`) +* `bbox` **[BBox][1]** extent of grid in \[minX, minY, maxX, maxY] order +* `cellSide` **[number][2]** dimension of each grid cell. Two triangles are created in each cell. +* `options` **[Object][3]** Optional parameters (optional, default `{}`) - * `options.units` **[string][5]** used in calculating cellSide, can be degrees, radians, miles, or kilometers (optional, default `'kilometers'`) - * `options.mask` **[Feature][6]<[Polygon][1]>?** if passed a Polygon or MultiPolygon, the grid Points will be created only inside it - * `options.properties` **[Object][4]** passed to each point of the grid (optional, default `{}`) + * `options.units` **Units** used in calculating cellSide. Supports all valid Turf [Units][4] (optional, default `'kilometers'`) + * `options.mask` **[Feature][5]<[Polygon][6]>?** if passed a Polygon or MultiPolygon, the grid Points will be created only inside it + * `options.properties` **[Object][3]** passed to each point of the grid (optional, default `{}`) ### Examples @@ -29,19 +29,19 @@ var triangleGrid = turf.triangleGrid(bbox, cellSide, options); var addToMap = [triangleGrid]; ``` -Returns **[FeatureCollection][7]<[Polygon][1]>** grid of polygons +Returns **[FeatureCollection][7]<[Polygon][6]>** grid of polygons -[1]: https://tools.ietf.org/html/rfc7946#section-3.1.6 +[1]: https://tools.ietf.org/html/rfc7946#section-5 -[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array +[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number -[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number +[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object +[4]: https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/README_UNITS.md -[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[5]: https://tools.ietf.org/html/rfc7946#section-3.2 -[6]: https://tools.ietf.org/html/rfc7946#section-3.2 +[6]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [7]: https://tools.ietf.org/html/rfc7946#section-3.3 diff --git a/packages/turf-triangle-grid/index.ts b/packages/turf-triangle-grid/index.ts index cb8337c56..cf11f2b49 100644 --- a/packages/turf-triangle-grid/index.ts +++ b/packages/turf-triangle-grid/index.ts @@ -10,13 +10,13 @@ import { intersect } from "@turf/intersect"; import { polygon, featureCollection, Units } from "@turf/helpers"; /** - * Takes a bounding box and a cell depth and returns a set of triangular {@link Polygon|polygons} in a grid. + * Creates a grid of triangular polygons. * - * @name triangleGrid - * @param {Array} bbox extent in [minX, minY, maxX, maxY] order - * @param {number} cellSide dimension of each cell + * @function + * @param {BBox} bbox extent of grid in [minX, minY, maxX, maxY] order + * @param {number} cellSide dimension of each grid cell. Two triangles are created in each cell. * @param {Object} [options={}] Optional parameters - * @param {string} [options.units='kilometers'] used in calculating cellSide, can be degrees, radians, miles, or kilometers + * @param {Units} [options.units='kilometers'] used in calculating cellSide. Supports all valid Turf {@link https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/README_UNITS.md Units} * @param {Feature} [options.mask] if passed a Polygon or MultiPolygon, the grid Points will be created only inside it * @param {Object} [options.properties={}] passed to each point of the grid * @returns {FeatureCollection} grid of polygons diff --git a/packages/turf-triangle-grid/package.json b/packages/turf-triangle-grid/package.json index 467238e73..ccd31ecc7 100644 --- a/packages/turf-triangle-grid/package.json +++ b/packages/turf-triangle-grid/package.json @@ -1,7 +1,7 @@ { "name": "@turf/triangle-grid", - "version": "7.0.0", - "description": "turf triangle-grid module", + "version": "7.2.0", + "description": "Creates a triangular grid within a bounding box.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -54,24 +54,24 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/bbox-polygon": "workspace:^", - "@turf/truncate": "workspace:^", + "@turf/bbox-polygon": "workspace:*", + "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/distance": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/intersect": "workspace:^", + "@turf/distance": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/intersect": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-truncate/index.ts b/packages/turf-truncate/index.ts index 699a3ce69..fba1490ff 100644 --- a/packages/turf-truncate/index.ts +++ b/packages/turf-truncate/index.ts @@ -4,7 +4,7 @@ import { AllGeoJSON, isObject } from "@turf/helpers"; /** * Takes a GeoJSON Feature or FeatureCollection and truncates the precision of the geometry. * - * @name truncate + * @function * @param {GeoJSON} geojson any GeoJSON Feature, FeatureCollection, Geometry or GeometryCollection. * @param {Object} [options={}] Optional parameters * @param {number} [options.precision=6] coordinate decimal precision diff --git a/packages/turf-truncate/package.json b/packages/turf-truncate/package.json index 684ffa739..e2cdef6db 100644 --- a/packages/turf-truncate/package.json +++ b/packages/turf-truncate/package.json @@ -1,7 +1,7 @@ { "name": "@turf/truncate", - "version": "7.0.0", - "description": "turf truncate module", + "version": "7.2.0", + "description": "Truncates precision of GeoJSON coordinates.", "author": "Turf Authors", "contributors": [ "Denis Carriere <@DenisCarriere>" @@ -56,20 +56,20 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-union/README.md b/packages/turf-union/README.md index 42f68d484..ed82325d7 100644 --- a/packages/turf-union/README.md +++ b/packages/turf-union/README.md @@ -4,49 +4,69 @@ ## union -Takes input [(Multi)Polygon(s)][1] and returns a combined polygon. If the input polygons are not contiguous, this function returns a [MultiPolygon][2] feature. +Takes a collection of input polygons and returns a combined polygon. If the +input polygons are not contiguous, this function returns a multi-polygon +feature. ### Parameters -* `polygon1` **[Feature][3]<([Polygon][1] | [MultiPolygon][2])>** input Polygon features +* `features` **[FeatureCollection][1]<([Polygon][2] | [MultiPolygon][3])>** input polygon features * `options` **[Object][4]** Optional Parameters (optional, default `{}`) - * `options.properties` **[Object][4]** Translate Properties to output Feature (optional, default `{}`) + * `options.properties` **[GeoJsonProperties][5]** properties to assign to output feature (optional, default `{}`) ### Examples ```javascript -var poly1 = turf.polygon([[ - [-82.574787, 35.594087], - [-82.574787, 35.615581], - [-82.545261, 35.615581], - [-82.545261, 35.594087], - [-82.574787, 35.594087] -]], {"fill": "#0f0"}); -var poly2 = turf.polygon([[ - [-82.560024, 35.585153], - [-82.560024, 35.602602], - [-82.52964, 35.602602], - [-82.52964, 35.585153], - [-82.560024, 35.585153] -]], {"fill": "#00f"}); +const poly1 = turf.polygon( + [ + [ + [-82.574787, 35.594087], + [-82.574787, 35.615581], + [-82.545261, 35.615581], + [-82.545261, 35.594087], + [-82.574787, 35.594087], + ], + ], + { fill: "#0f0" } +); -var union = turf.union(turf.featureCollection([poly1, poly2])); +const poly2 = turf.polygon( + [ + [ + [-82.560024, 35.585153], + [-82.560024, 35.602602], + [-82.52964, 35.602602], + [-82.52964, 35.585153], + [-82.560024, 35.585153], + ], + ], +); + +const union = turf.union(turf.featureCollection([poly1, poly2])); //addToMap -var addToMap = [poly1, poly2, union]; +const addToMap = { poly1, poly2, union }; + +poly1.properties.fill = "#0f0"; +poly2.properties.fill = "#00f"; +union.properties.stroke = "red"; +union.properties["stroke-width"] = 4; +union.properties.fill = "transparent"; ``` -Returns **[Feature][3]<([Polygon][1] | [MultiPolygon][2])>** a combined [Polygon][1] or [MultiPolygon][2] feature, or null if the inputs are empty +Returns **([Feature][5]<([Polygon][2] | [MultiPolygon][3])> | null)** a combined polygon or multi-polygon feature, or null if there were no input polygons to combine -[1]: https://tools.ietf.org/html/rfc7946#section-3.1.6 +[1]: https://tools.ietf.org/html/rfc7946#section-3.3 -[2]: https://tools.ietf.org/html/rfc7946#section-3.1.7 +[2]: https://tools.ietf.org/html/rfc7946#section-3.1.6 -[3]: https://tools.ietf.org/html/rfc7946#section-3.2 +[3]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object +[5]: https://tools.ietf.org/html/rfc7946#section-3.2 + --- diff --git a/packages/turf-union/index.ts b/packages/turf-union/index.ts index 9db47ad20..94428494a 100644 --- a/packages/turf-union/index.ts +++ b/packages/turf-union/index.ts @@ -1,4 +1,4 @@ -import polygonClipping from "polygon-clipping"; +import * as polyclip from "polyclip-ts"; import { multiPolygon, polygon } from "@turf/helpers"; import { geomEach } from "@turf/meta"; import { @@ -10,48 +10,67 @@ import { } from "geojson"; /** - * Takes input {@link (Multi)Polygon(s)} and returns a combined polygon. If the input polygons are not contiguous, this function returns a {@link MultiPolygon} feature. + * Takes a collection of input polygons and returns a combined polygon. If the + * input polygons are not contiguous, this function returns a multi-polygon + * feature. * - * @name union - * @param {Feature} polygon1 input Polygon features + * @function + * @param {FeatureCollection} features input polygon features * @param {Object} [options={}] Optional Parameters - * @param {Object} [options.properties={}] Translate Properties to output Feature - * @returns {Feature<(Polygon|MultiPolygon)>} a combined {@link Polygon} or {@link MultiPolygon} feature, or null if the inputs are empty + * @param {GeoJsonProperties} [options.properties={}] properties to assign to output feature + * @returns {Feature<(Polygon|MultiPolygon)>|null} a combined polygon or multi-polygon feature, or null if there were no input polygons to combine * @example - * var poly1 = turf.polygon([[ - * [-82.574787, 35.594087], - * [-82.574787, 35.615581], - * [-82.545261, 35.615581], - * [-82.545261, 35.594087], - * [-82.574787, 35.594087] - * ]], {"fill": "#0f0"}); - * var poly2 = turf.polygon([[ - * [-82.560024, 35.585153], - * [-82.560024, 35.602602], - * [-82.52964, 35.602602], - * [-82.52964, 35.585153], - * [-82.560024, 35.585153] - * ]], {"fill": "#00f"}); * - * var union = turf.union(turf.featureCollection([poly1, poly2])); + * const poly1 = turf.polygon( + * [ + * [ + * [-82.574787, 35.594087], + * [-82.574787, 35.615581], + * [-82.545261, 35.615581], + * [-82.545261, 35.594087], + * [-82.574787, 35.594087], + * ], + * ], + * { fill: "#0f0" } + * ); + * + * const poly2 = turf.polygon( + * [ + * [ + * [-82.560024, 35.585153], + * [-82.560024, 35.602602], + * [-82.52964, 35.602602], + * [-82.52964, 35.585153], + * [-82.560024, 35.585153], + * ], + * ], + * ); + * + * const union = turf.union(turf.featureCollection([poly1, poly2])); * * //addToMap - * var addToMap = [poly1, poly2, union]; + * const addToMap = { poly1, poly2, union }; + * + * poly1.properties.fill = "#0f0"; + * poly2.properties.fill = "#00f"; + * union.properties.stroke = "red"; + * union.properties["stroke-width"] = 4; + * union.properties.fill = "transparent"; */ function union

( features: FeatureCollection, options: { properties?: P } = {} ): Feature | null { - const geoms: polygonClipping.Geom[] = []; + const geoms: polyclip.Geom[] = []; geomEach(features, (geom) => { - geoms.push(geom.coordinates as polygonClipping.Geom); + geoms.push(geom.coordinates as polyclip.Geom); }); if (geoms.length < 2) { throw new Error("Must have at least 2 geometries"); } - const unioned = polygonClipping.union(geoms[0], ...geoms.slice(1)); + const unioned = polyclip.union(geoms[0], ...geoms.slice(1)); if (unioned.length === 0) return null; if (unioned.length === 1) return polygon(unioned[0], options.properties); else return multiPolygon(unioned, options.properties); diff --git a/packages/turf-union/package.json b/packages/turf-union/package.json index 4dc90c11d..c885e0a4d 100644 --- a/packages/turf-union/package.json +++ b/packages/turf-union/package.json @@ -1,7 +1,7 @@ { "name": "@turf/union", - "version": "7.0.0", - "description": "turf union module", + "version": "7.2.0", + "description": "Combines two or more polygons into a single polygon.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -51,22 +51,22 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", - "glob": "^10.3.10", + "glob": "^11.0.2", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", - "polygon-clipping": "^0.15.3", - "tslib": "^2.6.2" + "polyclip-ts": "^0.16.8", + "tslib": "^2.8.1" } } diff --git a/packages/turf-union/test.ts b/packages/turf-union/test.ts index 3127f3a63..ab98d24f3 100644 --- a/packages/turf-union/test.ts +++ b/packages/turf-union/test.ts @@ -4,6 +4,11 @@ import { fileURLToPath } from "url"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; +import { + type FeatureCollection, + type Polygon, + type MultiPolygon, +} from "geojson"; import { union } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); @@ -23,10 +28,75 @@ const fixtures = fs.readdirSync(directories.in).map((filename) => { test("union", function (t) { for (const { name, geojson, filename } of fixtures) { - const result = union(geojson); - if (process.env.REGEN) - writeJsonFileSync(directories.out + filename, result); - t.deepEqual(result, loadJsonFileSync(directories.out + filename), name); + // Only test the input fixture this way if there is a corresponding output + // fixture to compare. + if (fs.existsSync(path.join(directories.out, filename))) { + const result = union(geojson); + if (result === null) { + t.fail("result was null"); + } + + if (process.env.REGEN) + writeJsonFileSync(directories.out + filename, result); + t.deepEqual(result, loadJsonFileSync(directories.out + filename), name); + } } t.end(); }); + +test("union - unable to complete output ring ex 1 - issue 1983", function (t) { + const polys = loadJsonFileSync( + directories.in + "unable-to-complete-output-ring-1983-1.geojson" + ) as FeatureCollection; + + // This used to fail with "Unable to complete output ring starting at ..." + t.doesNotThrow(() => union(polys), "does not throw"); + + t.end(); +}); + +test("union - unable to complete output ring ex 2 - issue 1983", function (t) { + const polys = loadJsonFileSync( + directories.in + "unable-to-complete-output-ring-1983-2.geojson" + ) as FeatureCollection; + + // This used to fail with "Unable to complete output ring starting at ..." + t.doesNotThrow(() => union(polys), "does not throw"); + + t.end(); +}); + +test("union - maximum call stack size exceeded - issue 2317", function (t) { + const polys = loadJsonFileSync( + directories.in + "maximum-callstack-size-exceeded-2317.geojson" + ) as FeatureCollection; + + // This used to fail with "Maximum call stack size exceeded ..." + t.doesNotThrow(() => union(polys), "does not throw"); + + t.end(); +}); + +test("union - unable to find segment ex 1 - issue 2258", function (t) { + // Example from https://github.com/Turfjs/turf/issues/2258#issue-1125017544 + const polys = loadJsonFileSync( + directories.in + "unable-to-find-segment-2258-1.geojson" + ) as FeatureCollection; + + // This used to fail with "Unable to find segment ..." + t.doesNotThrow(() => union(polys), "does not throw"); + + t.end(); +}); + +test("union - unable to find segment ex 2 - issue 2258", function (t) { + // Example from https://github.com/Turfjs/turf/issues/2258#issuecomment-1635573555 + const polys = loadJsonFileSync( + directories.in + "unable-to-find-segment-2258-2.geojson" + ) as FeatureCollection; + + // This used to fail with "Unable to find segment ..." + t.doesNotThrow(() => union(polys), "does not throw"); + + t.end(); +}); diff --git a/packages/turf-union/test/in/maximum-callstack-size-exceeded-2317.geojson b/packages/turf-union/test/in/maximum-callstack-size-exceeded-2317.geojson new file mode 100644 index 000000000..6e607a091 --- /dev/null +++ b/packages/turf-union/test/in/maximum-callstack-size-exceeded-2317.geojson @@ -0,0 +1,59000 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-83.675399, 36.600791], + [-83.675018, 36.600817], + [-83.674722, 36.600814], + [-83.673837, 36.600805], + [-83.673542, 36.600803], + [-83.670824, 36.600803], + [-83.670145, 36.600804], + [-83.670142, 36.600797], + [-83.670134, 36.600777], + [-83.670132, 36.600771], + [-83.670046, 36.60077], + [-83.669789, 36.600767], + [-83.669704, 36.600766], + [-83.669686, 36.600765], + [-83.669564, 36.600765], + [-83.669519, 36.600764], + [-83.669385, 36.600763], + [-83.669341, 36.600763], + [-83.668306, 36.600753], + [-83.668287, 36.600752], + [-83.668232, 36.600749], + [-83.668214, 36.600748], + [-83.666969, 36.600683], + [-83.663237, 36.600488], + [-83.661993, 36.600424], + [-83.661985, 36.600423], + [-83.661847, 36.600421], + [-83.661409, 36.600418], + [-83.661264, 36.600417], + [-83.661086, 36.600415], + [-83.660551, 36.60041], + [-83.660374, 36.600409], + [-83.659427, 36.600403], + [-83.659417, 36.600403], + [-83.658543, 36.600376], + [-83.65659, 36.60032], + [-83.655645, 36.600294], + [-83.655632, 36.600294], + [-83.655406, 36.600288], + [-83.649726, 36.600126], + [-83.64559, 36.600009], + [-83.644991, 36.59996], + [-83.644378, 36.599909], + [-83.642543, 36.599759], + [-83.641931, 36.599709], + [-83.6419, 36.599706], + [-83.641809, 36.599699], + [-83.641779, 36.599697], + [-83.641761, 36.599695], + [-83.641709, 36.599691], + [-83.641692, 36.59969], + [-83.640972, 36.59963], + [-83.640793, 36.599616], + [-83.63928, 36.599492], + [-83.637834, 36.599375], + [-83.634739, 36.599147], + [-83.633226, 36.599036], + [-83.632887, 36.599011], + [-83.632529, 36.598985], + [-83.631872, 36.598922], + [-83.631535, 36.598891], + [-83.631495, 36.598887], + [-83.631378, 36.598875], + [-83.631339, 36.598872], + [-83.630895, 36.598829], + [-83.629578, 36.598705], + [-83.629565, 36.598704], + [-83.629122, 36.598669], + [-83.626262, 36.598445], + [-83.625768, 36.598407], + [-83.625547, 36.598402], + [-83.625172, 36.598394], + [-83.624916, 36.59839], + [-83.624737, 36.598365], + [-83.624056, 36.598269], + [-83.623685, 36.598217], + [-83.623652, 36.598212], + [-83.623601, 36.598204], + [-83.623461, 36.598185], + [-83.623182, 36.598145], + [-83.622888, 36.598104], + [-83.622698, 36.598078], + [-83.622072, 36.597991], + [-83.622055, 36.597989], + [-83.622044, 36.597987], + [-83.621989, 36.597987], + [-83.620898, 36.597979], + [-83.617628, 36.597957], + [-83.616538, 36.59795], + [-83.60925, 36.597902], + [-83.608832, 36.597901], + [-83.60881, 36.597901], + [-83.608751, 36.597899], + [-83.608714, 36.597899], + [-83.608656, 36.597897], + [-83.607239, 36.597888], + [-83.601408, 36.597828], + [-83.599452, 36.597808], + [-83.599089, 36.597804], + [-83.598003, 36.597792], + [-83.597667, 36.597789], + [-83.597641, 36.597789], + [-83.597383, 36.597786], + [-83.597175, 36.597784], + [-83.596609, 36.597778], + [-83.596369, 36.597776], + [-83.596351, 36.597776], + [-83.596149, 36.597773], + [-83.595542, 36.597767], + [-83.595341, 36.597765], + [-83.595317, 36.597764], + [-83.595221, 36.597764], + [-83.595197, 36.597763], + [-83.595102, 36.597763], + [-83.592193, 36.597732], + [-83.591869, 36.597728], + [-83.58333, 36.59764], + [-83.583276, 36.597639], + [-83.583147, 36.597638], + [-83.574587, 36.59755], + [-83.574532, 36.597549], + [-83.574505, 36.597549], + [-83.574369, 36.597556], + [-83.574315, 36.597559], + [-83.574288, 36.59756], + [-83.574244, 36.597562], + [-83.573846, 36.597557], + [-83.572439, 36.597542], + [-83.571971, 36.597537], + [-83.571351, 36.59753], + [-83.569494, 36.59751], + [-83.568875, 36.597504], + [-83.567807, 36.597496], + [-83.567541, 36.597495], + [-83.566414, 36.597483], + [-83.563036, 36.597449], + [-83.561954, 36.597439], + [-83.56191, 36.597438], + [-83.561824, 36.597438], + [-83.561723, 36.597436], + [-83.561678, 36.597436], + [-83.561421, 36.597433], + [-83.561321, 36.597432], + [-83.556926, 36.597392], + [-83.553058, 36.59738], + [-83.552091, 36.597378], + [-83.552018, 36.597377], + [-83.551668, 36.597377], + [-83.550303, 36.597373], + [-83.546208, 36.597363], + [-83.544843, 36.59736], + [-83.544646, 36.59736], + [-83.544438, 36.597359], + [-83.544029, 36.597357], + [-83.54218, 36.597352], + [-83.541564, 36.597351], + [-83.541444, 36.597351], + [-83.541108, 36.59735], + [-83.540103, 36.597347], + [-83.539768, 36.597347], + [-83.536848, 36.597339], + [-83.536119, 36.597337], + [-83.53594, 36.597337], + [-83.535437, 36.597335], + [-83.533929, 36.597331], + [-83.533427, 36.59733], + [-83.531307, 36.597324], + [-83.52495, 36.597307], + [-83.522831, 36.597302], + [-83.522597, 36.597302], + [-83.522156, 36.5973], + [-83.520835, 36.597297], + [-83.520395, 36.597296], + [-83.517709, 36.597288], + [-83.506965, 36.59726], + [-83.506835, 36.597259], + [-83.506446, 36.597258], + [-83.506317, 36.597258], + [-83.50621, 36.597257], + [-83.505783, 36.597257], + [-83.505751, 36.597256], + [-83.505623, 36.597256], + [-83.503111, 36.597249], + [-83.499913, 36.597241], + [-83.495575, 36.597248], + [-83.493063, 36.597253], + [-83.488829, 36.59726], + [-83.488817, 36.59726], + [-83.488566, 36.597261], + [-83.488323, 36.597261], + [-83.48318, 36.597271], + [-83.482826, 36.597271], + [-83.481765, 36.597273], + [-83.481412, 36.597274], + [-83.481149, 36.597274], + [-83.480363, 36.597275], + [-83.480102, 36.597276], + [-83.472112, 36.597291], + [-83.455512, 36.59732], + [-83.447796, 36.597335], + [-83.447579, 36.597335], + [-83.446051, 36.597338], + [-83.445335, 36.597339], + [-83.445332, 36.597339], + [-83.443175, 36.597342], + [-83.442457, 36.597344], + [-83.440579, 36.597347], + [-83.426615, 36.597371], + [-83.426569, 36.597371], + [-83.425769, 36.597372], + [-83.425648, 36.597373], + [-83.42503, 36.597373], + [-83.424907, 36.597374], + [-83.415109, 36.597392], + [-83.405142, 36.597392], + [-83.385712, 36.597393], + [-83.374902, 36.597393], + [-83.372647, 36.597413], + [-83.371896, 36.59742], + [-83.371647, 36.597422], + [-83.370903, 36.597429], + [-83.370655, 36.597432], + [-83.370324, 36.597435], + [-83.356564, 36.597559], + [-83.356532, 36.59756], + [-83.356292, 36.597562], + [-83.34692, 36.597647], + [-83.34682, 36.597648], + [-83.34679, 36.597648], + [-83.346283, 36.597653], + [-83.346208, 36.597653], + [-83.346133, 36.597654], + [-83.346033, 36.597655], + [-83.34602, 36.597655], + [-83.338354, 36.597724], + [-83.334831, 36.597757], + [-83.33468, 36.597759], + [-83.330903, 36.597793], + [-83.325051, 36.597835], + [-83.324969, 36.597837], + [-83.324963, 36.597837], + [-83.324699, 36.597838], + [-83.31119, 36.597938], + [-83.311183, 36.597938], + [-83.308539, 36.597958], + [-83.308416, 36.597959], + [-83.308292, 36.59796], + [-83.308136, 36.597961], + [-83.307957, 36.597962], + [-83.305661, 36.597979], + [-83.304185, 36.597989], + [-83.29976, 36.598022], + [-83.298308, 36.598033], + [-83.298285, 36.598033], + [-83.298012, 36.598034], + [-83.297196, 36.598041], + [-83.296924, 36.598043], + [-83.295943, 36.598049], + [-83.293001, 36.598071], + [-83.292021, 36.598078], + [-83.290598, 36.598088], + [-83.28633, 36.598119], + [-83.284908, 36.59813], + [-83.284761, 36.59813], + [-83.284322, 36.598134], + [-83.284176, 36.598136], + [-83.284007, 36.598136], + [-83.283965, 36.598137], + [-83.283873, 36.598137], + [-83.283741, 36.598138], + [-83.283697, 36.598139], + [-83.282218, 36.598149], + [-83.277782, 36.598183], + [-83.276304, 36.598194], + [-83.274892, 36.597794], + [-83.274539, 36.597695], + [-83.271933, 36.596957], + [-83.264116, 36.594746], + [-83.261511, 36.594009], + [-83.261355, 36.593965], + [-83.261317, 36.593954], + [-83.261274, 36.593942], + [-83.261258, 36.593938], + [-83.261145, 36.593906], + [-83.261103, 36.593894], + [-83.261003, 36.593894], + [-83.252633, 36.593932], + [-83.252538, 36.593932], + [-83.251675, 36.593936], + [-83.250335, 36.593942], + [-83.250204, 36.593938], + [-83.250148, 36.593932], + [-83.250082, 36.593921], + [-83.249903, 36.593905], + [-83.249698, 36.593889], + [-83.248937, 36.593834], + [-83.248545, 36.593837], + [-83.248161, 36.593841], + [-83.248053, 36.593841], + [-83.247729, 36.593845], + [-83.247622, 36.593846], + [-83.246978, 36.593851], + [-83.245046, 36.593868], + [-83.244403, 36.593874], + [-83.244201, 36.593875], + [-83.243595, 36.593881], + [-83.243394, 36.593883], + [-83.242385, 36.593892], + [-83.242234, 36.593894], + [-83.241554, 36.593899], + [-83.24137, 36.593933], + [-83.239618, 36.593916], + [-83.237299, 36.593937], + [-83.237128, 36.593936], + [-83.236446, 36.593936], + [-83.228263, 36.593931], + [-83.225448, 36.593929], + [-83.225436, 36.59393], + [-83.225361, 36.593929], + [-83.222994, 36.593927], + [-83.222594, 36.593927], + [-83.22095, 36.593926], + [-83.220891, 36.593926], + [-83.214814, 36.593922], + [-83.21445, 36.593921], + [-83.212212, 36.593919], + [-83.211586, 36.593919], + [-83.211137, 36.593918], + [-83.210517, 36.593918], + [-83.192566, 36.593906], + [-83.191466, 36.593905], + [-83.188169, 36.593902], + [-83.18707, 36.593902], + [-83.184824, 36.5939], + [-83.178088, 36.593895], + [-83.1766, 36.593895], + [-83.175843, 36.593897], + [-83.175581, 36.593897], + [-83.174798, 36.593901], + [-83.174537, 36.593902], + [-83.17227, 36.593911], + [-83.165469, 36.593939], + [-83.165022, 36.593941], + [-83.163202, 36.593948], + [-83.16039, 36.593958], + [-83.156893, 36.593972], + [-83.151955, 36.59399], + [-83.149144, 36.594001], + [-83.148946, 36.594001], + [-83.148897, 36.594002], + [-83.146362, 36.594011], + [-83.144707, 36.594018], + [-83.144671, 36.594019], + [-83.144073, 36.594021], + [-83.139566, 36.594039], + [-83.139494, 36.594039], + [-83.135111, 36.594056], + [-83.124897, 36.594096], + [-83.121963, 36.594089], + [-83.117581, 36.594081], + [-83.116461, 36.594078], + [-83.113101, 36.59407], + [-83.111981, 36.594068], + [-83.110323, 36.594064], + [-83.105352, 36.594054], + [-83.103906, 36.594051], + [-83.103695, 36.594051], + [-83.103261, 36.59405], + [-83.101961, 36.594047], + [-83.101528, 36.594046], + [-83.10149, 36.594046], + [-83.076418, 36.593993], + [-83.076279, 36.593993], + [-83.075832, 36.593995], + [-83.075433, 36.593995], + [-83.071048, 36.593987], + [-83.07092, 36.593987], + [-83.070142, 36.593985], + [-83.069483, 36.593983], + [-83.067508, 36.593979], + [-83.067146, 36.593979], + [-83.06685, 36.593978], + [-83.065517, 36.593975], + [-83.061518, 36.593967], + [-83.060185, 36.593965], + [-83.056849, 36.593957], + [-83.056016, 36.593956], + [-83.055105, 36.593954], + [-83.052374, 36.593948], + [-83.051464, 36.593947], + [-83.048752, 36.593941], + [-83.040619, 36.593924], + [-83.037908, 36.593919], + [-83.036376, 36.593916], + [-83.035998, 36.593915], + [-83.03027, 36.593903], + [-83.028361, 36.5939], + [-83.028139, 36.59389], + [-83.027475, 36.593863], + [-83.027254, 36.593854], + [-83.027061, 36.593863], + [-83.026482, 36.593891], + [-83.026312, 36.5939], + [-83.02629, 36.5939], + [-83.02249, 36.593892], + [-83.02154, 36.593891], + [-83.018305, 36.593891], + [-83.017168, 36.593885], + [-83.016076, 36.593881], + [-83.013386, 36.593875], + [-83.013173, 36.593875], + [-83.012704, 36.593873], + [-83.005331, 36.593858], + [-83.005305, 36.593859], + [-82.999892, 36.593792], + [-82.998549, 36.593728], + [-82.998057, 36.593727], + [-82.994517, 36.593721], + [-82.992286, 36.593722], + [-82.991963, 36.593722], + [-82.990947, 36.593723], + [-82.989071, 36.593723], + [-82.986081, 36.593733], + [-82.985128, 36.593736], + [-82.984994, 36.593736], + [-82.984878, 36.593737], + [-82.984804, 36.593737], + [-82.98473, 36.593738], + [-82.98071, 36.593752], + [-82.975282, 36.593778], + [-82.96839, 36.593797], + [-82.966239, 36.593802], + [-82.961779, 36.593789], + [-82.961745, 36.593785], + [-82.961707, 36.593785], + [-82.961673, 36.593781], + [-82.956798, 36.593777], + [-82.954498, 36.593774], + [-82.946743, 36.593758], + [-82.939004, 36.593721], + [-82.93293, 36.593692], + [-82.930019, 36.593678], + [-82.929774, 36.593677], + [-82.929723, 36.593677], + [-82.929678, 36.593684], + [-82.929606, 36.593686], + [-82.929428, 36.593685], + [-82.928208, 36.593683], + [-82.924549, 36.593677], + [-82.92333, 36.593675], + [-82.919738, 36.593668], + [-82.914063, 36.593638], + [-82.913694, 36.593637], + [-82.910007, 36.593616], + [-82.909676, 36.593617], + [-82.909621, 36.593617], + [-82.907058, 36.593603], + [-82.905583, 36.593596], + [-82.899372, 36.593549], + [-82.89681, 36.593531], + [-82.895536, 36.593521], + [-82.891716, 36.593494], + [-82.890443, 36.593485], + [-82.890377, 36.593484], + [-82.890182, 36.593482], + [-82.890117, 36.593482], + [-82.89008, 36.593481], + [-82.889936, 36.593481], + [-82.889879, 36.59348], + [-82.889794, 36.59348], + [-82.88971, 36.593479], + [-82.889654, 36.593479], + [-82.889547, 36.593478], + [-82.88944, 36.593478], + [-82.889322, 36.593476], + [-82.889203, 36.593476], + [-82.888928, 36.593475], + [-82.888919, 36.593475], + [-82.88795, 36.593468], + [-82.885121, 36.593476], + [-82.885044, 36.593476], + [-82.88326, 36.593481], + [-82.877908, 36.593497], + [-82.876125, 36.593503], + [-82.874903, 36.593504], + [-82.858137, 36.593659], + [-82.854737, 36.593686], + [-82.852319, 36.593705], + [-82.852274, 36.593705], + [-82.848674, 36.593734], + [-82.843876, 36.593754], + [-82.843373, 36.593755], + [-82.841865, 36.59376], + [-82.841363, 36.593762], + [-82.839177, 36.593771], + [-82.834657, 36.59379], + [-82.832622, 36.593779], + [-82.830437, 36.593768], + [-82.83001, 36.593765], + [-82.82873, 36.593759], + [-82.828304, 36.593757], + [-82.826844, 36.593749], + [-82.822466, 36.593728], + [-82.821007, 36.593721], + [-82.820739, 36.59372], + [-82.819937, 36.593717], + [-82.81967, 36.593716], + [-82.819264, 36.593714], + [-82.818047, 36.593708], + [-82.817642, 36.593707], + [-82.817395, 36.593705], + [-82.816411, 36.593701], + [-82.815801, 36.593698], + [-82.815281, 36.593696], + [-82.813972, 36.593688], + [-82.81342, 36.593685], + [-82.813364, 36.593693], + [-82.813296, 36.593704], + [-82.813065, 36.593705], + [-82.812849, 36.593706], + [-82.812165, 36.593709], + [-82.811866, 36.593711], + [-82.811503, 36.593712], + [-82.810417, 36.593719], + [-82.810055, 36.593721], + [-82.808086, 36.593731], + [-82.802181, 36.593765], + [-82.800462, 36.593775], + [-82.800213, 36.593774], + [-82.800171, 36.593773], + [-82.800046, 36.593771], + [-82.800005, 36.593771], + [-82.799984, 36.593759], + [-82.799368, 36.593757], + [-82.797448, 36.593754], + [-82.796809, 36.593753], + [-82.796786, 36.593753], + [-82.796719, 36.593755], + [-82.796697, 36.593756], + [-82.795559, 36.59376], + [-82.792624, 36.593771], + [-82.792146, 36.59377], + [-82.791009, 36.593768], + [-82.790796, 36.593767], + [-82.790156, 36.593766], + [-82.789944, 36.593766], + [-82.789342, 36.593764], + [-82.787538, 36.593761], + [-82.786937, 36.593761], + [-82.786621, 36.59376], + [-82.785674, 36.593757], + [-82.785359, 36.593757], + [-82.785335, 36.593751], + [-82.785259, 36.593752], + [-82.78496, 36.593757], + [-82.784908, 36.593758], + [-82.784861, 36.593758], + [-82.783997, 36.593756], + [-82.781406, 36.593751], + [-82.780837, 36.59375], + [-82.780543, 36.593746], + [-82.780355, 36.593746], + [-82.779791, 36.593749], + [-82.779604, 36.59375], + [-82.778201, 36.593749], + [-82.772589, 36.593749], + [-82.772584, 36.593748], + [-82.772569, 36.593746], + [-82.772564, 36.593746], + [-82.771865, 36.593747], + [-82.769768, 36.593751], + [-82.76907, 36.593753], + [-82.76816, 36.593753], + [-82.765432, 36.593754], + [-82.764523, 36.593755], + [-82.762813, 36.593741], + [-82.757685, 36.593701], + [-82.755976, 36.593688], + [-82.755396, 36.593683], + [-82.753659, 36.59367], + [-82.75308, 36.593666], + [-82.75142, 36.593661], + [-82.749845, 36.593652], + [-82.74512, 36.593626], + [-82.743545, 36.593618], + [-82.742773, 36.593615], + [-82.740457, 36.593607], + [-82.739686, 36.593605], + [-82.739372, 36.593604], + [-82.73783, 36.593604], + [-82.736964, 36.593606], + [-82.736676, 36.593608], + [-82.73585, 36.59361], + [-82.733374, 36.593616], + [-82.732549, 36.593619], + [-82.731433, 36.593622], + [-82.728087, 36.59363], + [-82.726972, 36.593634], + [-82.726025, 36.593636], + [-82.723186, 36.593643], + [-82.72224, 36.593646], + [-82.721978, 36.593646], + [-82.721193, 36.593648], + [-82.720932, 36.593649], + [-82.720729, 36.593649], + [-82.720121, 36.59365], + [-82.719919, 36.593651], + [-82.719046, 36.593653], + [-82.71643, 36.593661], + [-82.715558, 36.593664], + [-82.715144, 36.593664], + [-82.713904, 36.593666], + [-82.713491, 36.593668], + [-82.713344, 36.593668], + [-82.712906, 36.593669], + [-82.712761, 36.59367], + [-82.712041, 36.593672], + [-82.70988, 36.593678], + [-82.709161, 36.593681], + [-82.708913, 36.593681], + [-82.708169, 36.593683], + [-82.707922, 36.593685], + [-82.707853, 36.593684], + [-82.707646, 36.593682], + [-82.707577, 36.593682], + [-82.706676, 36.593684], + [-82.703973, 36.593692], + [-82.703073, 36.593695], + [-82.702368, 36.593696], + [-82.700253, 36.593701], + [-82.699549, 36.593704], + [-82.699298, 36.593704], + [-82.699236, 36.593705], + [-82.695785, 36.593705], + [-82.695057, 36.593687], + [-82.694145, 36.593703], + [-82.691807, 36.593742], + [-82.688147, 36.593738], + [-82.682284, 36.593715], + [-82.681803, 36.593713], + [-82.680878, 36.59371], + [-82.680671, 36.593709], + [-82.680363, 36.593707], + [-82.679884, 36.593706], + [-82.679831, 36.593705], + [-82.675883, 36.593705], + [-82.674911, 36.593709], + [-82.671996, 36.59372], + [-82.671025, 36.593725], + [-82.669436, 36.593709], + [-82.664671, 36.593662], + [-82.663495, 36.593651], + [-82.663286, 36.593657], + [-82.663084, 36.593675], + [-82.662458, 36.59373], + [-82.662064, 36.593765], + [-82.660576, 36.593775], + [-82.659949, 36.59378], + [-82.656482, 36.593805], + [-82.654378, 36.593805], + [-82.654055, 36.593806], + [-82.65381, 36.593805], + [-82.650861, 36.593806], + [-82.649928, 36.593805], + [-82.646482, 36.593806], + [-82.644485, 36.593805], + [-82.643182, 36.593806], + [-82.636282, 36.593791], + [-82.632704, 36.593806], + [-82.632681, 36.593806], + [-82.632264, 36.593805], + [-82.630505, 36.593805], + [-82.627345, 36.593806], + [-82.624881, 36.593807], + [-82.62363, 36.593826], + [-82.622607, 36.593804], + [-82.621249, 36.593857], + [-82.620288, 36.593895], + [-82.619556, 36.593949], + [-82.61864, 36.593987], + [-82.617873, 36.593992], + [-82.614715, 36.594017], + [-82.614438, 36.594019], + [-82.609849, 36.594056], + [-82.609639, 36.594033], + [-82.60948, 36.594017], + [-82.60938, 36.594006], + [-82.60918, 36.594106], + [-82.60888, 36.594106], + [-82.608174, 36.594111], + [-82.607583, 36.594116], + [-82.600512, 36.594169], + [-82.59688, 36.594206], + [-82.593615, 36.59427], + [-82.592959, 36.594283], + [-82.589688, 36.594344], + [-82.588111, 36.594374], + [-82.588045, 36.594375], + [-82.58718, 36.594406], + [-82.586262, 36.594389], + [-82.585956, 36.594383], + [-82.585909, 36.594382], + [-82.585579, 36.594406], + [-82.582485, 36.594446], + [-82.580187, 36.594475], + [-82.578179, 36.594507], + [-82.578124, 36.594507], + [-82.57774, 36.594514], + [-82.577719, 36.594514], + [-82.576388, 36.594536], + [-82.572389, 36.594602], + [-82.572261, 36.594604], + [-82.572164, 36.594606], + [-82.572027, 36.594606], + [-82.571879, 36.594607], + [-82.571122, 36.594612], + [-82.568864, 36.594673], + [-82.566625, 36.594716], + [-82.566466, 36.594719], + [-82.565293, 36.594742], + [-82.564284, 36.594762], + [-82.563028, 36.594779], + [-82.562206, 36.594804], + [-82.562186, 36.594805], + [-82.562079, 36.594807], + [-82.561685, 36.594735], + [-82.561428, 36.594688], + [-82.561269, 36.594664], + [-82.561186, 36.594705], + [-82.56109, 36.594734], + [-82.56098, 36.594748], + [-82.560773, 36.594767], + [-82.560436, 36.594798], + [-82.560214, 36.594816], + [-82.559815, 36.594836], + [-82.559682, 36.59486], + [-82.559587, 36.594835], + [-82.559487, 36.594825], + [-82.557911, 36.594819], + [-82.557732, 36.594818], + [-82.557313, 36.594817], + [-82.55699, 36.594819], + [-82.556625, 36.594817], + [-82.55653, 36.594817], + [-82.556341, 36.594798], + [-82.555934, 36.594797], + [-82.555277, 36.594809], + [-82.554721, 36.594802], + [-82.554437, 36.594817], + [-82.554105, 36.594822], + [-82.554054, 36.594812], + [-82.554005, 36.594786], + [-82.549177, 36.594955], + [-82.545648, 36.595004], + [-82.545603, 36.595005], + [-82.545587, 36.595006], + [-82.539636, 36.595104], + [-82.536158, 36.595152], + [-82.53442, 36.595179], + [-82.527827, 36.595277], + [-82.522487, 36.595301], + [-82.518335, 36.595354], + [-82.517275, 36.595398], + [-82.517191, 36.595402], + [-82.517074, 36.595407], + [-82.516825, 36.595385], + [-82.512918, 36.5954], + [-82.509635, 36.595434], + [-82.509257, 36.595438], + [-82.505245, 36.595423], + [-82.503663, 36.595447], + [-82.503209, 36.595456], + [-82.502433, 36.595466], + [-82.501828, 36.595475], + [-82.499876, 36.595535], + [-82.497226, 36.595577], + [-82.496553, 36.59558], + [-82.496452, 36.595581], + [-82.496352, 36.595581], + [-82.49624, 36.595578], + [-82.496155, 36.595582], + [-82.495814, 36.595584], + [-82.494121, 36.595591], + [-82.493822, 36.595592], + [-82.493807, 36.595592], + [-82.492848, 36.595608], + [-82.491747, 36.595635], + [-82.491662, 36.595638], + [-82.49165, 36.595638], + [-82.489956, 36.595688], + [-82.489572, 36.595708], + [-82.489556, 36.595709], + [-82.487242, 36.595828], + [-82.486998, 36.595829], + [-82.486934, 36.595829], + [-82.484742, 36.595833], + [-82.481528, 36.595764], + [-82.478677, 36.595595], + [-82.475449, 36.595242], + [-82.471868, 36.594848], + [-82.469337, 36.594647], + [-82.46658, 36.594487], + [-82.465921, 36.59449], + [-82.465659, 36.594492], + [-82.465585, 36.594492], + [-82.465062, 36.594494], + [-82.463202, 36.594501], + [-82.459946, 36.594587], + [-82.459731, 36.594593], + [-82.457826, 36.594642], + [-82.450767, 36.594771], + [-82.450687, 36.594772], + [-82.442861, 36.594885], + [-82.44286, 36.594885], + [-82.441877, 36.594899], + [-82.441874, 36.594899], + [-82.427958, 36.595014], + [-82.423399, 36.595017], + [-82.416561, 36.595022], + [-82.416292, 36.595022], + [-82.410254, 36.595026], + [-82.4073, 36.595022], + [-82.406062, 36.595019], + [-82.406022, 36.595019], + [-82.400384, 36.59501], + [-82.399087, 36.595007], + [-82.387403, 36.594989], + [-82.387342, 36.594989], + [-82.387248, 36.594987], + [-82.387208, 36.595], + [-82.386913, 36.595023], + [-82.386756, 36.595036], + [-82.383513, 36.595028], + [-82.37487, 36.595008], + [-82.368472, 36.595022], + [-82.368461, 36.595022], + [-82.356398, 36.595176], + [-82.356254, 36.595178], + [-82.355111, 36.595192], + [-82.349711, 36.595248], + [-82.33879, 36.595361], + [-82.326486, 36.595481], + [-82.326481, 36.595482], + [-82.324545, 36.5955], + [-82.312615, 36.595614], + [-82.311115, 36.595616], + [-82.309725, 36.595618], + [-82.303919, 36.595666], + [-82.303118, 36.595674], + [-82.30306, 36.595674], + [-82.293818, 36.595706], + [-82.293843, 36.595706], + [-82.294153, 36.595708], + [-82.295683, 36.598299], + [-82.299017, 36.603947], + [-82.299367, 36.604528], + [-82.299375, 36.604541], + [-82.299549, 36.60483], + [-82.299694, 36.605079], + [-82.299698, 36.605085], + [-82.300243, 36.606008], + [-82.302225, 36.609448], + [-82.302392, 36.609738], + [-82.30243, 36.609804], + [-82.302442, 36.609824], + [-82.302531, 36.609979], + [-82.302545, 36.610003], + [-82.302571, 36.610048], + [-82.302591, 36.610083], + [-82.302597, 36.610093], + [-82.302609, 36.610114], + [-82.302615, 36.610124], + [-82.302621, 36.610136], + [-82.302629, 36.61015], + [-82.302707, 36.610286], + [-82.305037, 36.614329], + [-82.305172, 36.614563], + [-82.305177, 36.614571], + [-82.306269, 36.616467], + [-82.306511, 36.616887], + [-82.306682, 36.617184], + [-82.306688, 36.617194], + [-82.306851, 36.617477], + [-82.306863, 36.617498], + [-82.307251, 36.618203], + [-82.307387, 36.61845], + [-82.307403, 36.618479], + [-82.307408, 36.618487], + [-82.307412, 36.618495], + [-82.30744, 36.618546], + [-82.307494, 36.618644], + [-82.307684, 36.618989], + [-82.307752, 36.619113], + [-82.307762, 36.61913], + [-82.307765, 36.619136], + [-82.30778, 36.61916], + [-82.307893, 36.619349], + [-82.307924, 36.6194], + [-82.307968, 36.619472], + [-82.308, 36.619525], + [-82.308004, 36.619532], + [-82.308053, 36.61971], + [-82.308062, 36.619741], + [-82.308833, 36.622455], + [-82.309254, 36.624794], + [-82.309316, 36.625134], + [-82.309562, 36.626202], + [-82.309623, 36.626461], + [-82.310178, 36.628744], + [-82.310575, 36.630354], + [-82.310736, 36.631012], + [-82.310826, 36.631375], + [-82.311003, 36.632093], + [-82.311363, 36.63347], + [-82.311395, 36.633592], + [-82.311413, 36.63366], + [-82.311437, 36.633751], + [-82.311455, 36.63382], + [-82.311456, 36.633825], + [-82.311458, 36.633833], + [-82.31146, 36.63384], + [-82.311567, 36.634252], + [-82.311947, 36.635688], + [-82.311971, 36.63578], + [-82.312035, 36.636023], + [-82.312041, 36.636048], + [-82.312043, 36.636055], + [-82.312192, 36.636665], + [-82.312902, 36.639561], + [-82.313488, 36.642031], + [-82.313644, 36.642686], + [-82.313896, 36.643605], + [-82.314568, 36.646055], + [-82.315313, 36.649071], + [-82.315374, 36.649313], + [-82.315587, 36.650171], + [-82.315608, 36.650253], + [-82.315616, 36.650284], + [-82.315619, 36.650296], + [-82.315622, 36.650309], + [-82.315627, 36.650326], + [-82.315631, 36.650341], + [-82.315716, 36.650674], + [-82.315985, 36.651717], + [-82.316358, 36.653161], + [-82.317289, 36.656815], + [-82.318303, 36.660919], + [-82.319252, 36.664339], + [-82.320191, 36.668047], + [-82.320215, 36.668141], + [-82.320264, 36.668326], + [-82.320273, 36.66836], + [-82.32028, 36.668388], + [-82.320426, 36.668946], + [-82.320431, 36.668964], + [-82.320439, 36.668996], + [-82.321252, 36.672217], + [-82.323145, 36.679545], + [-82.323235, 36.679891], + [-82.32336, 36.680361], + [-82.323501, 36.680851], + [-82.324758, 36.685598], + [-82.324764, 36.685619], + [-82.324799, 36.685759], + [-82.324802, 36.68577], + [-82.324888, 36.686109], + [-82.324996, 36.68651], + [-82.32505, 36.686711], + [-82.325072, 36.686791], + [-82.325093, 36.686871], + [-82.325118, 36.686965], + [-82.325142, 36.68706], + [-82.325242, 36.687446], + [-82.32607, 36.690661], + [-82.326079, 36.690697], + [-82.32614, 36.690932], + [-82.326182, 36.691095], + [-82.326317, 36.691618], + [-82.326503, 36.692342], + [-82.326528, 36.692418], + [-82.32653, 36.692424], + [-82.326579, 36.69257], + [-82.326756, 36.69309], + [-82.326865, 36.693409], + [-82.326877, 36.693444], + [-82.326881, 36.693456], + [-82.327025, 36.693879], + [-82.327087, 36.694062], + [-82.327103, 36.694093], + [-82.327522, 36.695315], + [-82.329017, 36.699677], + [-82.330873, 36.705521], + [-82.332014, 36.709114], + [-82.332076, 36.709308], + [-82.332093, 36.709362], + [-82.331792, 36.709316], + [-82.331434, 36.709503], + [-82.331175, 36.709698], + [-82.330936, 36.709957], + [-82.330708, 36.710273], + [-82.330411, 36.710573], + [-82.330132, 36.7108], + [-82.329407, 36.711409], + [-82.329038, 36.711637], + [-82.328422, 36.712213], + [-82.328224, 36.712448], + [-82.327926, 36.712772], + [-82.327379, 36.713122], + [-82.326832, 36.713553], + [-82.326126, 36.714145], + [-82.325411, 36.714786], + [-82.324692, 36.715081], + [-82.324133, 36.715213], + [-82.323697, 36.715739], + [-82.32315, 36.716162], + [-82.322381, 36.716425], + [-82.322317, 36.716477], + [-82.322053, 36.716693], + [-82.321937, 36.717178], + [-82.32158, 36.717679], + [-82.320783, 36.718087], + [-82.320124, 36.718341], + [-82.319556, 36.718618], + [-82.318939, 36.719073], + [-82.318303, 36.719617], + [-82.317935, 36.719926], + [-82.317629, 36.720435], + [-82.316882, 36.720899], + [-82.316192, 36.721096], + [-82.315983, 36.721194], + [-82.315735, 36.721526], + [-82.315468, 36.721923], + [-82.315191, 36.722247], + [-82.314621, 36.722379], + [-82.314012, 36.722568], + [-82.313655, 36.722997], + [-82.313208, 36.723411], + [-82.312039, 36.723748], + [-82.311561, 36.724082], + [-82.311145, 36.72456], + [-82.310818, 36.725053], + [-82.310109, 36.725243], + [-82.309317, 36.725776], + [-82.309082, 36.725934], + [-82.308786, 36.726451], + [-82.308418, 36.726671], + [-82.307658, 36.726877], + [-82.30711, 36.727195], + [-82.306891, 36.727236], + [-82.306539, 36.7273], + [-82.30606, 36.727516], + [-82.305427, 36.727838], + [-82.305422, 36.727841], + [-82.305221, 36.727943], + [-82.304918, 36.727908], + [-82.304905, 36.727906], + [-82.304891, 36.727905], + [-82.304769, 36.727891], + [-82.304284, 36.727985], + [-82.304234, 36.727995], + [-82.30415, 36.728011], + [-82.303294, 36.728024], + [-82.30279, 36.728244], + [-82.302742, 36.728278], + [-82.302654, 36.728339], + [-82.301533, 36.729198], + [-82.301511, 36.729214], + [-82.301396, 36.729301], + [-82.300825, 36.729973], + [-82.300803, 36.729999], + [-82.300548, 36.730373], + [-82.300541, 36.730383], + [-82.300537, 36.730389], + [-82.300287, 36.730756], + [-82.299878, 36.731], + [-82.299671, 36.730996], + [-82.299644, 36.730996], + [-82.299605, 36.730995], + [-82.299517, 36.730993], + [-82.299433, 36.730991], + [-82.299347, 36.730989], + [-82.299308, 36.730988], + [-82.298751, 36.730914], + [-82.298371, 36.731062], + [-82.29806, 36.731183], + [-82.298043, 36.73119], + [-82.297998, 36.731208], + [-82.297989, 36.731211], + [-82.297982, 36.731214], + [-82.297794, 36.731286], + [-82.297148, 36.731607], + [-82.296873, 36.731877], + [-82.296855, 36.731895], + [-82.296689, 36.732058], + [-82.296534, 36.73216], + [-82.296471, 36.732202], + [-82.296037, 36.73249], + [-82.294971, 36.733104], + [-82.294192, 36.733345], + [-82.293741, 36.733188], + [-82.29269, 36.733355], + [-82.2917, 36.733514], + [-82.290911, 36.733825], + [-82.290243, 36.734216], + [-82.289315, 36.734656], + [-82.288519, 36.735249], + [-82.287641, 36.735738], + [-82.286992, 36.735935], + [-82.286222, 36.736044], + [-82.285504, 36.736403], + [-82.285105, 36.736711], + [-82.283938, 36.737282], + [-82.283052, 36.737964], + [-82.281634, 36.738423], + [-82.281324, 36.738611], + [-82.280747, 36.73896], + [-82.279937, 36.739198], + [-82.279199, 36.739581], + [-82.27852, 36.739843], + [-82.27738, 36.740003], + [-82.276329, 36.740097], + [-82.275946, 36.740203], + [-82.27576, 36.740254], + [-82.275142, 36.740741], + [-82.27456, 36.741076], + [-82.274437, 36.741147], + [-82.273348, 36.741774], + [-82.272608, 36.74194], + [-82.271738, 36.742235], + [-82.271068, 36.742328], + [-82.26913, 36.743027], + [-82.26905, 36.743056], + [-82.267793, 36.743732], + [-82.266557, 36.744497], + [-82.265101, 36.745295], + [-82.264414, 36.745783], + [-82.264175, 36.745953], + [-82.262826, 36.746379], + [-82.261815, 36.746497], + [-82.260768, 36.747083], + [-82.25899, 36.747673], + [-82.257271, 36.748287], + [-82.25659, 36.748251], + [-82.255941, 36.74844], + [-82.255232, 36.748806], + [-82.254542, 36.749084], + [-82.254261, 36.749029], + [-82.253307, 36.748841], + [-82.252437, 36.748813], + [-82.252352, 36.748806], + [-82.251805, 36.74876], + [-82.251236, 36.748981], + [-82.250968, 36.749329], + [-82.250751, 36.749757], + [-82.250758, 36.750111], + [-82.250589, 36.750564], + [-82.250485, 36.750969], + [-82.250409, 36.751229], + [-82.25032, 36.751351], + [-82.250162, 36.751498], + [-82.249864, 36.751735], + [-82.249864, 36.751364], + [-82.249448, 36.751466], + [-82.248911, 36.751561], + [-82.248715, 36.751748], + [-82.248486, 36.751832], + [-82.248174, 36.752198], + [-82.248059, 36.752449], + [-82.247458, 36.752883], + [-82.246985, 36.753218], + [-82.246277, 36.753291], + [-82.245677, 36.753258], + [-82.245158, 36.753265], + [-82.244408, 36.753193], + [-82.243794, 36.753442], + [-82.243485, 36.753462], + [-82.242743, 36.753326], + [-82.241764, 36.753306], + [-82.241198, 36.753441], + [-82.240297, 36.753895], + [-82.239752, 36.754634], + [-82.239332, 36.755163], + [-82.238895, 36.755788], + [-82.238536, 36.756388], + [-82.237889, 36.757024], + [-82.237374, 36.757263], + [-82.236587, 36.757321], + [-82.235759, 36.757387], + [-82.235119, 36.757339], + [-82.234481, 36.757371], + [-82.233585, 36.757518], + [-82.233185, 36.757483], + [-82.232771, 36.75777], + [-82.231997, 36.758117], + [-82.231414, 36.758454], + [-82.230742, 36.758832], + [-82.230214, 36.758887], + [-82.229043, 36.75982], + [-82.22868, 36.760154], + [-82.228264, 36.760369], + [-82.227383, 36.760758], + [-82.226641, 36.761137], + [-82.225577, 36.761922], + [-82.225164, 36.762314], + [-82.22488, 36.762623], + [-82.224544, 36.762804], + [-82.223884, 36.762732], + [-82.223245, 36.762739], + [-82.222746, 36.762777], + [-82.222246, 36.762727], + [-82.221905, 36.762667], + [-82.221411, 36.762938], + [-82.221338, 36.762959], + [-82.220497, 36.763199], + [-82.219669, 36.763257], + [-82.219126, 36.763577], + [-82.21826, 36.764272], + [-82.217293, 36.76438], + [-82.216589, 36.764662], + [-82.215992, 36.764774], + [-82.215403, 36.764748], + [-82.214847, 36.76494], + [-82.214383, 36.765244], + [-82.213822, 36.765685], + [-82.213158, 36.765959], + [-82.212636, 36.766383], + [-82.212034, 36.766753], + [-82.211428, 36.766929], + [-82.210619, 36.766939], + [-82.21033, 36.766982], + [-82.21001, 36.767501], + [-82.209705, 36.767738], + [-82.209335, 36.767767], + [-82.208746, 36.767814], + [-82.207971, 36.768024], + [-82.207117, 36.768252], + [-82.205369, 36.768812], + [-82.204776, 36.769133], + [-82.204405, 36.769604], + [-82.203923, 36.770028], + [-82.203237, 36.770173], + [-82.202273, 36.770442], + [-82.201361, 36.770848], + [-82.200622, 36.77084], + [-82.19954, 36.770676], + [-82.198801, 36.770668], + [-82.197484, 36.770708], + [-82.197304, 36.770835], + [-82.197284, 36.770849], + [-82.197265, 36.770863], + [-82.197259, 36.770867], + [-82.197232, 36.770886], + [-82.197222, 36.770893], + [-82.19701, 36.771043], + [-82.19657, 36.771532], + [-82.195559, 36.771986], + [-82.195508, 36.77201], + [-82.194896, 36.772308], + [-82.194178, 36.77292], + [-82.193627, 36.773394], + [-82.193102, 36.773625], + [-82.192277, 36.773836], + [-82.191642, 36.774085], + [-82.190679, 36.774402], + [-82.189782, 36.774533], + [-82.189113, 36.774509], + [-82.188552, 36.774444], + [-82.188173, 36.774465], + [-82.187674, 36.774462], + [-82.187109, 36.774203], + [-82.186238, 36.774093], + [-82.185325, 36.774433], + [-82.184743, 36.774859], + [-82.184144, 36.775445], + [-82.183648, 36.77562], + [-82.182631, 36.775728], + [-82.182245, 36.775902], + [-82.181591, 36.776223], + [-82.180768, 36.776507], + [-82.179864, 36.776807], + [-82.17925, 36.77708], + [-82.178103, 36.777737], + [-82.177365, 36.77781], + [-82.176467, 36.777861], + [-82.175499, 36.77792], + [-82.175033, 36.778127], + [-82.174501, 36.778527], + [-82.173792, 36.778544], + [-82.173164, 36.778591], + [-82.172679, 36.778886], + [-82.172073, 36.77903], + [-82.171133, 36.778993], + [-82.170274, 36.77897], + [-82.169795, 36.778992], + [-82.169352, 36.778788], + [-82.168713, 36.778835], + [-82.167936, 36.778941], + [-82.167203, 36.779263], + [-82.166777, 36.77951], + [-82.165447, 36.779976], + [-82.164813, 36.780329], + [-82.164088, 36.780539], + [-82.163359, 36.780579], + [-82.16258, 36.780596], + [-82.161493, 36.780657], + [-82.160615, 36.780739], + [-82.160078, 36.780882], + [-82.159644, 36.781161], + [-82.159269, 36.781439], + [-82.158483, 36.781625], + [-82.157676, 36.781747], + [-82.15694, 36.781908], + [-82.156466, 36.782244], + [-82.155809, 36.782348], + [-82.155122, 36.782468], + [-82.154597, 36.782748], + [-82.154071, 36.782947], + [-82.153405, 36.783124], + [-82.152068, 36.783179], + [-82.151614, 36.783531], + [-82.150992, 36.783948], + [-82.150317, 36.784149], + [-82.149159, 36.784235], + [-82.148358, 36.784662], + [-82.147702, 36.784847], + [-82.146951, 36.785314], + [-82.146357, 36.785644], + [-82.145682, 36.785885], + [-82.144494, 36.785939], + [-82.143799, 36.786188], + [-82.143095, 36.786494], + [-82.142198, 36.786657], + [-82.140573, 36.787432], + [-82.139776, 36.787521], + [-82.138704, 36.787388], + [-82.138032, 36.787235], + [-82.136975, 36.787295], + [-82.136121, 36.787603], + [-82.135512, 36.788213], + [-82.134836, 36.78843], + [-82.134283, 36.788799], + [-82.13384, 36.78915], + [-82.13313, 36.789085], + [-82.132411, 36.789109], + [-82.131776, 36.789358], + [-82.13097, 36.789552], + [-82.130162, 36.789642], + [-82.129853, 36.789648], + [-82.129323, 36.789659], + [-82.129267, 36.789658], + [-82.128854, 36.789656], + [-82.128197, 36.789816], + [-82.127356, 36.790293], + [-82.126777, 36.790863], + [-82.126443, 36.791245], + [-82.126381, 36.791656], + [-82.126056, 36.791974], + [-82.125482, 36.792238], + [-82.125157, 36.792555], + [-82.124859, 36.792707], + [-82.124499, 36.792756], + [-82.12409, 36.792803], + [-82.123566, 36.793077], + [-82.123059, 36.793214], + [-82.122529, 36.793198], + [-82.122235, 36.793073], + [-82.121767, 36.793145], + [-82.121264, 36.793499], + [-82.120256, 36.794006], + [-82.119569, 36.794146], + [-82.119067, 36.794081], + [-82.118261, 36.794222], + [-82.117466, 36.794444], + [-82.116147, 36.794932], + [-82.115366, 36.795347], + [-82.1147, 36.795502], + [-82.11414, 36.795543], + [-82.113915, 36.795724], + [-82.113767, 36.796234], + [-82.113378, 36.796707], + [-82.112821, 36.796861], + [-82.112041, 36.796841], + [-82.110937, 36.796712], + [-82.109031, 36.796508], + [-82.107618, 36.796392], + [-82.107231, 36.796519], + [-82.106435, 36.797144], + [-82.105574, 36.797536], + [-82.104295, 36.79841], + [-82.104059, 36.798591], + [-82.103973, 36.798753], + [-82.104078, 36.798953], + [-82.104263, 36.79916], + [-82.104443, 36.799577], + [-82.104711, 36.799935], + [-82.105344, 36.800442], + [-82.106216, 36.800928], + [-82.1067, 36.80109], + [-82.10713, 36.801495], + [-82.107484, 36.801683], + [-82.1083, 36.801913], + [-82.108829, 36.802259], + [-82.109327, 36.803034], + [-82.109758, 36.803866], + [-82.110458, 36.805129], + [-82.110954, 36.805363], + [-82.111317, 36.805898], + [-82.111714, 36.806602], + [-82.11217, 36.807264], + [-82.112299, 36.807653], + [-82.112414, 36.808357], + [-82.11253, 36.808891], + [-82.112533, 36.808906], + [-82.112575, 36.809099], + [-82.112578, 36.809158], + [-82.112602, 36.809637], + [-82.112619, 36.810136], + [-82.113133, 36.811197], + [-82.113729, 36.81194], + [-82.114227, 36.812841], + [-82.114536, 36.813553], + [-82.115034, 36.814117], + [-82.115045, 36.814224], + [-82.115046, 36.814229], + [-82.115067, 36.814428], + [-82.114969, 36.814792], + [-82.114963, 36.814814], + [-82.114962, 36.814819], + [-82.11496, 36.814824], + [-82.114958, 36.814832], + [-82.11485, 36.81523], + [-82.114847, 36.81552], + [-82.114847, 36.815527], + [-82.114846, 36.815616], + [-82.114843, 36.81577], + [-82.114843, 36.815777], + [-82.114842, 36.815798], + [-82.114841, 36.815803], + [-82.114835, 36.815927], + [-82.115351, 36.816618], + [-82.115993, 36.817107], + [-82.116594, 36.817705], + [-82.116753, 36.818023], + [-82.116679, 36.818154], + [-82.11667, 36.81817], + [-82.116667, 36.818176], + [-82.116659, 36.81819], + [-82.116623, 36.818252], + [-82.11657, 36.818384], + [-82.116487, 36.818592], + [-82.116426, 36.819017], + [-82.116476, 36.819371], + [-82.116481, 36.819408], + [-82.116484, 36.819432], + [-82.116487, 36.819452], + [-82.116491, 36.81948], + [-82.116544, 36.81986], + [-82.116473, 36.820119], + [-82.115726, 36.820898], + [-82.115721, 36.820904], + [-82.115712, 36.820913], + [-82.115027, 36.821586], + [-82.114946, 36.821719], + [-82.114941, 36.821727], + [-82.114629, 36.822236], + [-82.114631, 36.822241], + [-82.114866, 36.82295], + [-82.115082, 36.823292], + [-82.115104, 36.823327], + [-82.115114, 36.823342], + [-82.115117, 36.823347], + [-82.115396, 36.823792], + [-82.115313, 36.824233], + [-82.115198, 36.824424], + [-82.115194, 36.824431], + [-82.115185, 36.824446], + [-82.115178, 36.824457], + [-82.115057, 36.824659], + [-82.114802, 36.825305], + [-82.114735, 36.825737], + [-82.114732, 36.825754], + [-82.11473, 36.825767], + [-82.114729, 36.825772], + [-82.114729, 36.825777], + [-82.114726, 36.825796], + [-82.114684, 36.826064], + [-82.114637, 36.826226], + [-82.114634, 36.826238], + [-82.114628, 36.826258], + [-82.114625, 36.826267], + [-82.114609, 36.826323], + [-82.114572, 36.826452], + [-82.114094, 36.826772], + [-82.113861, 36.827069], + [-82.113658, 36.827328], + [-82.113652, 36.827333], + [-82.113635, 36.827347], + [-82.113148, 36.827742], + [-82.111859, 36.828385], + [-82.111529, 36.828573], + [-82.111512, 36.828583], + [-82.111491, 36.828595], + [-82.111471, 36.828606], + [-82.111044, 36.828849], + [-82.111038, 36.828856], + [-82.110907, 36.829011], + [-82.110854, 36.829074], + [-82.110808, 36.829128], + [-82.110776, 36.829166], + [-82.11077, 36.829173], + [-82.110565, 36.829413], + [-82.110537, 36.829797], + [-82.110534, 36.829841], + [-82.110512, 36.830135], + [-82.110443, 36.830741], + [-82.110155, 36.831156], + [-82.109928, 36.831574], + [-82.109909, 36.831609], + [-82.109905, 36.831617], + [-82.109884, 36.831656], + [-82.109869, 36.831684], + [-82.109854, 36.831711], + [-82.109757, 36.831888], + [-82.109604, 36.832138], + [-82.109044, 36.833047], + [-82.108363, 36.834283], + [-82.107786, 36.835244], + [-82.107016, 36.835732], + [-82.106165, 36.836108], + [-82.105687, 36.836228], + [-82.104658, 36.836324], + [-82.104007, 36.836705], + [-82.103345, 36.837078], + [-82.102833, 36.837448], + [-82.102092, 36.837838], + [-82.101392, 36.837849], + [-82.101055, 36.837991], + [-82.101069, 36.838612], + [-82.100928, 36.839404], + [-82.10032, 36.840365], + [-82.099744, 36.840962], + [-82.099194, 36.841438], + [-82.098787, 36.842024], + [-82.097794, 36.842765], + [-82.097147, 36.842944], + [-82.096169, 36.843475], + [-82.095661, 36.844007], + [-82.09552, 36.844396], + [-82.095163, 36.844949], + [-82.094377, 36.845171], + [-82.093476, 36.845563], + [-82.092677, 36.846067], + [-82.091956, 36.846473], + [-82.091271, 36.84675], + [-82.090857, 36.847425], + [-82.090354, 36.848174], + [-82.089613, 36.848581], + [-82.088929, 36.848889], + [-82.088696, 36.848927], + [-82.088112, 36.849022], + [-82.087731, 36.849423], + [-82.087222, 36.849915], + [-82.086446, 36.850112], + [-82.085964, 36.850498], + [-82.085763, 36.850872], + [-82.085191, 36.851259], + [-82.084341, 36.851272], + [-82.083822, 36.851377], + [-82.083668, 36.851613], + [-82.083359, 36.852117], + [-82.082754, 36.85236], + [-82.082309, 36.852165], + [-82.081896, 36.852042], + [-82.081324, 36.85197], + [-82.080576, 36.852522], + [-82.080217, 36.853003], + [-82.079888, 36.853508], + [-82.079199, 36.854002], + [-82.078599, 36.854502], + [-82.07794, 36.855012], + [-82.077458, 36.855085], + [-82.077242, 36.855119], + [-82.076793, 36.85519], + [-82.076093, 36.855225], + [-82.075796, 36.855367], + [-82.075564, 36.855741], + [-82.074682, 36.856093], + [-82.074135, 36.856009], + [-82.073627, 36.855931], + [-82.072584, 36.85589], + [-82.071628, 36.856082], + [-82.070943, 36.856366], + [-82.070512, 36.856735], + [-82.069888, 36.857051], + [-82.069014, 36.856935], + [-82.067811, 36.856864], + [-82.066922, 36.856926], + [-82.066314, 36.857064], + [-82.066119, 36.8573], + [-82.065563, 36.857889], + [-82.064479, 36.858236], + [-82.063264, 36.858504], + [-82.062704, 36.858513], + [-82.061684, 36.858577], + [-82.061001, 36.858498], + [-82.060341, 36.85854], + [-82.059553, 36.859092], + [-82.058873, 36.859561], + [-82.058373, 36.859561], + [-82.057876, 36.859334], + [-82.057284, 36.859303], + [-82.056121, 36.859658], + [-82.05486, 36.860137], + [-82.053312, 36.860716], + [-82.052607, 36.860984], + [-82.051821, 36.861197], + [-82.051337, 36.861454], + [-82.051162, 36.861683], + [-82.050756, 36.861906], + [-82.049786, 36.861969], + [-82.048976, 36.861997], + [-82.048403, 36.861909], + [-82.047838, 36.862127], + [-82.047464, 36.86243], + [-82.046613, 36.862419], + [-82.04586, 36.862341], + [-82.044367, 36.862726], + [-82.042672, 36.863476], + [-82.042106, 36.863694], + [-82.041971, 36.863882], + [-82.041832, 36.864375], + [-82.041628, 36.864653], + [-82.041216, 36.86461], + [-82.040339, 36.864776], + [-82.039554, 36.865054], + [-82.038702, 36.865453], + [-82.037845, 36.865675], + [-82.037263, 36.865603], + [-82.036519, 36.865461], + [-82.035712, 36.86565], + [-82.03498, 36.866048], + [-82.034644, 36.866246], + [-82.034249, 36.866478], + [-82.033493, 36.866698], + [-82.032723, 36.866758], + [-82.03206, 36.867066], + [-82.031464, 36.867276], + [-82.030922, 36.867227], + [-82.030148, 36.86711], + [-82.029249, 36.867195], + [-82.028312, 36.867394], + [-82.027398, 36.867722], + [-82.026597, 36.867718], + [-82.02581, 36.867906], + [-82.024592, 36.868472], + [-82.023905, 36.868684], + [-82.022744, 36.868709], + [-82.021018, 36.868992], + [-82.019942, 36.869217], + [-82.018437, 36.869545], + [-82.016783, 36.86994], + [-82.015806, 36.870551], + [-82.015138, 36.870674], + [-82.014241, 36.870896], + [-82.013408, 36.871247], + [-82.01205, 36.871412], + [-82.00982, 36.872016], + [-82.008812, 36.872135], + [-82.007746, 36.872385], + [-82.007136, 36.872853], + [-82.006443, 36.873218], + [-82.005373, 36.873297], + [-82.0046, 36.87322], + [-82.003603, 36.873387], + [-82.002758, 36.873698], + [-82.002336, 36.874083], + [-82.001567, 36.874158], + [-82.001046, 36.874133], + [-82.000656, 36.874163], + [-82.000232, 36.874476], + [-81.999853, 36.874626], + [-81.997567, 36.874771], + [-81.996606, 36.874872], + [-81.996482, 36.875117], + [-81.996443, 36.875215], + [-81.996262, 36.875273], + [-81.996082, 36.875314], + [-81.995861, 36.875348], + [-81.99556, 36.875381], + [-81.995259, 36.875399], + [-81.994917, 36.875368], + [-81.994605, 36.875321], + [-81.994353, 36.87525], + [-81.993941, 36.875228], + [-81.993489, 36.875286], + [-81.993104, 36.875315], + [-81.992952, 36.875417], + [-81.992752, 36.875517], + [-81.992452, 36.876117], + [-81.992252, 36.876417], + [-81.992152, 36.876517], + [-81.992052, 36.876517], + [-81.991752, 36.876617], + [-81.991252, 36.876617], + [-81.991152, 36.876717], + [-81.990752, 36.876917], + [-81.990652, 36.877117], + [-81.990552, 36.877117], + [-81.990352, 36.877217], + [-81.990252, 36.877117], + [-81.989152, 36.877117], + [-81.988752, 36.877017], + [-81.988252, 36.877217], + [-81.987952, 36.877417], + [-81.987952, 36.877517], + [-81.987852, 36.877517], + [-81.987652, 36.877617], + [-81.987052, 36.877617], + [-81.986552, 36.877717], + [-81.986252, 36.877917], + [-81.985852, 36.878117], + [-81.985052, 36.878117], + [-81.984752, 36.878317], + [-81.984252, 36.878517], + [-81.983652, 36.878917], + [-81.983252, 36.879017], + [-81.983152, 36.879117], + [-81.982752, 36.879117], + [-81.982052, 36.879217], + [-81.981352, 36.879217], + [-81.981152, 36.879017], + [-81.980852, 36.878817], + [-81.980752, 36.878617], + [-81.980652, 36.878517], + [-81.980652, 36.878117], + [-81.980839, 36.877227], + [-81.980852, 36.877117], + [-81.980752, 36.877017], + [-81.980752, 36.876917], + [-81.980652, 36.876817], + [-81.980552, 36.876617], + [-81.980552, 36.876417], + [-81.980452, 36.876217], + [-81.980352, 36.875917], + [-81.980252, 36.875817], + [-81.980152, 36.875517], + [-81.980052, 36.875417], + [-81.980052, 36.875317], + [-81.979952, 36.875117], + [-81.979323, 36.874682], + [-81.978652, 36.874217], + [-81.978352, 36.873917], + [-81.978252, 36.873717], + [-81.978252, 36.873317], + [-81.978352, 36.873117], + [-81.978452, 36.872817], + [-81.978539, 36.872555], + [-81.978552, 36.872517], + [-81.978652, 36.872317], + [-81.978552, 36.872017], + [-81.977952, 36.871417], + [-81.977352, 36.871117], + [-81.976952, 36.870717], + [-81.976652, 36.870217], + [-81.976052, 36.869617], + [-81.975993, 36.869607], + [-81.975452, 36.869517], + [-81.974752, 36.869617], + [-81.974252, 36.869817], + [-81.973652, 36.869917], + [-81.972952, 36.870117], + [-81.972452, 36.870317], + [-81.971752, 36.870417], + [-81.970852, 36.870617], + [-81.967952, 36.870617], + [-81.967452, 36.870517], + [-81.967252, 36.870417], + [-81.965052, 36.870117], + [-81.964551, 36.870217], + [-81.964151, 36.870217], + [-81.963551, 36.869917], + [-81.962651, 36.869317], + [-81.962574, 36.869255], + [-81.962158, 36.86892], + [-81.961949, 36.868712], + [-81.96145, 36.868513], + [-81.961251, 36.868315], + [-81.961153, 36.867917], + [-81.960996, 36.867607], + [-81.960957, 36.86753], + [-81.960925, 36.867466], + [-81.960899, 36.867412], + [-81.960767, 36.867144], + [-81.960551, 36.866614], + [-81.960257, 36.866121], + [-81.959956, 36.865715], + [-81.959455, 36.865316], + [-81.958954, 36.865216], + [-81.958332, 36.865216], + [-81.957756, 36.865213], + [-81.95731, 36.865328], + [-81.956567, 36.86551], + [-81.955532, 36.865923], + [-81.95532, 36.866013], + [-81.954359, 36.866413], + [-81.953662, 36.866513], + [-81.953149, 36.866617], + [-81.952762, 36.866521], + [-81.952469, 36.866462], + [-81.952249, 36.866417], + [-81.951544, 36.866016], + [-81.951332, 36.865854], + [-81.951317, 36.865843], + [-81.951152, 36.865716], + [-81.950926, 36.865493], + [-81.95085, 36.865418], + [-81.950709, 36.865361], + [-81.950356, 36.865219], + [-81.949956, 36.864818], + [-81.949454, 36.864518], + [-81.949155, 36.864416], + [-81.948247, 36.864416], + [-81.947258, 36.864717], + [-81.947094, 36.864781], + [-81.947087, 36.864784], + [-81.947057, 36.864796], + [-81.947051, 36.864798], + [-81.946999, 36.864818], + [-81.946989, 36.864822], + [-81.946945, 36.864839], + [-81.946926, 36.864847], + [-81.946909, 36.864854], + [-81.946895, 36.864864], + [-81.946751, 36.864918], + [-81.946474, 36.865142], + [-81.943651, 36.867418], + [-81.941651, 36.867618], + [-81.935175, 36.871061], + [-81.933752, 36.871818], + [-81.933617, 36.871836], + [-81.933575, 36.871842], + [-81.933528, 36.871848], + [-81.933518, 36.871849], + [-81.933487, 36.871853], + [-81.933405, 36.871864], + [-81.932115, 36.872037], + [-81.92855, 36.872518], + [-81.927994, 36.872769], + [-81.926063, 36.873643], + [-81.92595, 36.873694], + [-81.925875, 36.873728], + [-81.925846, 36.873741], + [-81.925824, 36.873751], + [-81.925816, 36.873755], + [-81.925803, 36.873761], + [-81.922801, 36.87512], + [-81.920616, 36.876139], + [-81.920052, 36.876421], + [-81.918852, 36.876921], + [-81.917952, 36.877321], + [-81.917252, 36.877721], + [-81.916252, 36.87812], + [-81.915452, 36.87852], + [-81.914151, 36.87902], + [-81.911751, 36.88022], + [-81.911651, 36.88032], + [-81.910751, 36.88032], + [-81.910251, 36.88042], + [-81.909851, 36.88042], + [-81.909751, 36.88052], + [-81.909351, 36.88072], + [-81.908251, 36.881219], + [-81.907051, 36.881719], + [-81.90615, 36.882119], + [-81.90475, 36.882819], + [-81.90425, 36.883019], + [-81.90385, 36.883319], + [-81.90285, 36.883819], + [-81.902149, 36.883919], + [-81.901349, 36.884119], + [-81.900649, 36.884319], + [-81.899549, 36.884618], + [-81.898449, 36.885019], + [-81.897649, 36.885319], + [-81.896549, 36.885819], + [-81.895849, 36.886019], + [-81.89568, 36.886075], + [-81.895205, 36.886234], + [-81.894649, 36.886419], + [-81.893549, 36.886719], + [-81.892904, 36.886961], + [-81.892749, 36.887019], + [-81.891549, 36.887319], + [-81.88962, 36.888032], + [-81.888849, 36.888219], + [-81.888749, 36.888319], + [-81.888649, 36.888319], + [-81.888349, 36.888519], + [-81.887449, 36.888719], + [-81.886349, 36.889119], + [-81.885649, 36.889319], + [-81.885249, 36.889419], + [-81.885049, 36.889519], + [-81.884949, 36.889519], + [-81.884849, 36.889619], + [-81.884749, 36.889619], + [-81.884549, 36.889719], + [-81.882979, 36.890919], + [-81.882849, 36.891019], + [-81.881849, 36.891819], + [-81.881149, 36.892419], + [-81.881094, 36.89246], + [-81.879848, 36.893419], + [-81.878648, 36.894219], + [-81.877248, 36.895219], + [-81.876548, 36.895819], + [-81.875548, 36.896619], + [-81.875348, 36.896819], + [-81.875181, 36.896903], + [-81.875148, 36.896919], + [-81.875048, 36.897019], + [-81.874948, 36.897019], + [-81.874848, 36.896969], + [-81.872666, 36.898533], + [-81.871318, 36.899499], + [-81.87021, 36.900294], + [-81.866556, 36.902912], + [-81.865778, 36.903471], + [-81.865572, 36.903619], + [-81.863487, 36.905116], + [-81.861797, 36.906324], + [-81.860548, 36.907219], + [-81.859048, 36.908219], + [-81.853502, 36.914117], + [-81.85343, 36.914192], + [-81.853415, 36.914208], + [-81.85341, 36.914214], + [-81.853402, 36.914222], + [-81.853378, 36.914247], + [-81.853231, 36.914401], + [-81.853183, 36.91445], + [-81.853176, 36.914457], + [-81.852904, 36.914733], + [-81.852718, 36.914936], + [-81.849124, 36.918755], + [-81.843346, 36.92492], + [-81.83953, 36.927463], + [-81.839462, 36.927508], + [-81.839197, 36.927777], + [-81.839194, 36.927784], + [-81.839116, 36.927893], + [-81.839084, 36.927914], + [-81.838987, 36.928028], + [-81.838847, 36.92812], + [-81.838747, 36.92802], + [-81.838247, 36.92822], + [-81.837064, 36.928896], + [-81.836846, 36.92902], + [-81.836195, 36.928361], + [-81.823788, 36.915802], + [-81.823645, 36.915658], + [-81.817635, 36.909575], + [-81.81759, 36.909529], + [-81.815329, 36.90724], + [-81.812609, 36.904487], + [-81.808215, 36.900037], + [-81.807913, 36.899733], + [-81.804797, 36.896581], + [-81.803282, 36.89487], + [-81.803099, 36.894663], + [-81.802879, 36.894415], + [-81.802874, 36.894411], + [-81.801184, 36.892924], + [-81.801009, 36.892747], + [-81.800949, 36.892686], + [-81.796293, 36.887974], + [-81.796211, 36.887891], + [-81.791327, 36.882945], + [-81.790397, 36.882004], + [-81.79027, 36.881876], + [-81.788965, 36.880555], + [-81.788781, 36.880369], + [-81.788015, 36.879594], + [-81.78796, 36.879539], + [-81.787905, 36.879483], + [-81.787841, 36.879417], + [-81.787811, 36.879387], + [-81.787776, 36.879351], + [-81.787772, 36.879347], + [-81.783581, 36.875105], + [-81.781359, 36.872833], + [-81.779138, 36.870561], + [-81.778889, 36.870305], + [-81.778449, 36.869856], + [-81.778404, 36.86981], + [-81.778123, 36.869523], + [-81.776244, 36.8676], + [-81.775092, 36.866422], + [-81.772334, 36.863603], + [-81.771996, 36.863257], + [-81.769782, 36.860992], + [-81.769741, 36.86095], + [-81.769548, 36.860754], + [-81.769356, 36.860558], + [-81.768921, 36.860075], + [-81.768485, 36.859592], + [-81.768419, 36.859517], + [-81.768033, 36.859069], + [-81.762713, 36.853868], + [-81.762151, 36.853317], + [-81.761588, 36.852765], + [-81.761003, 36.85218], + [-81.757846, 36.849025], + [-81.756854, 36.848], + [-81.752467, 36.843478], + [-81.752302, 36.843308], + [-81.752185, 36.843188], + [-81.752141, 36.84315], + [-81.752117, 36.843125], + [-81.751637, 36.842622], + [-81.749846, 36.840773], + [-81.749144, 36.840121], + [-81.743114, 36.832796], + [-81.742813, 36.832431], + [-81.741453, 36.831212], + [-81.740898, 36.830715], + [-81.740748, 36.830572], + [-81.739956, 36.829818], + [-81.7399, 36.829765], + [-81.739576, 36.829456], + [-81.729791, 36.820133], + [-81.727837, 36.818272], + [-81.727764, 36.818055], + [-81.72767, 36.817775], + [-81.727626, 36.817747], + [-81.727312, 36.817617], + [-81.721906, 36.811895], + [-81.718821, 36.808511], + [-81.713544, 36.802721], + [-81.712886, 36.80211], + [-81.712752, 36.801985], + [-81.711627, 36.80094], + [-81.710368, 36.79977], + [-81.710208, 36.799621], + [-81.705248, 36.795013], + [-81.705055, 36.794833], + [-81.704861, 36.794653], + [-81.704715, 36.794517], + [-81.704569, 36.794382], + [-81.703488, 36.793378], + [-81.702428, 36.792393], + [-81.699705, 36.789863], + [-81.69969, 36.789849], + [-81.699622, 36.789786], + [-81.699444, 36.789621], + [-81.699309, 36.789433], + [-81.699096, 36.789135], + [-81.698944, 36.788921], + [-81.69881, 36.788623], + [-81.698744, 36.788475], + [-81.698678, 36.788328], + [-81.698181, 36.787219], + [-81.697683, 36.786109], + [-81.697605, 36.785935], + [-81.697526, 36.78576], + [-81.697121, 36.784864], + [-81.696717, 36.783968], + [-81.696669, 36.783862], + [-81.696624, 36.783763], + [-81.696461, 36.7834], + [-81.694844, 36.779821], + [-81.690531, 36.772045], + [-81.690501, 36.771992], + [-81.687744, 36.767021], + [-81.687154, 36.765838], + [-81.687049, 36.765627], + [-81.685319, 36.762169], + [-81.685182, 36.761896], + [-81.68506, 36.761652], + [-81.684125, 36.759783], + [-81.684099, 36.759731], + [-81.683989, 36.759512], + [-81.683044, 36.757621], + [-81.682892, 36.757309], + [-81.682856, 36.757235], + [-81.679393, 36.750121], + [-81.678268, 36.74798], + [-81.678143, 36.747742], + [-81.678059, 36.747582], + [-81.678013, 36.747495], + [-81.677967, 36.747407], + [-81.675499, 36.742714], + [-81.675258, 36.742256], + [-81.673093, 36.738139], + [-81.672586, 36.737173], + [-81.672196, 36.736432], + [-81.671388, 36.734895], + [-81.670962, 36.734084], + [-81.670492, 36.73319], + [-81.669618, 36.731527], + [-81.664165, 36.721157], + [-81.662043, 36.717122], + [-81.660577, 36.714307], + [-81.660177, 36.713539], + [-81.657159, 36.707746], + [-81.656737, 36.706937], + [-81.656426, 36.70634], + [-81.655743, 36.705028], + [-81.648832, 36.691761], + [-81.648825, 36.691747], + [-81.648745, 36.691593], + [-81.648378, 36.690888], + [-81.647042, 36.688323], + [-81.646334, 36.686963], + [-81.645951, 36.686228], + [-81.645385, 36.685141], + [-81.645368, 36.685109], + [-81.645329, 36.685034], + [-81.64523, 36.684844], + [-81.64511, 36.684614], + [-81.636772, 36.668605], + [-81.636701, 36.668469], + [-81.63657, 36.668217], + [-81.635993, 36.66711], + [-81.635741, 36.666624], + [-81.635613, 36.666374], + [-81.635537, 36.666225], + [-81.634775, 36.664741], + [-81.634372, 36.663955], + [-81.634361, 36.663933], + [-81.631571, 36.658495], + [-81.630406, 36.656224], + [-81.630179, 36.655781], + [-81.629978, 36.65539], + [-81.62484, 36.645374], + [-81.623097, 36.641995], + [-81.621321, 36.638554], + [-81.621281, 36.638481], + [-81.621213, 36.638345], + [-81.620955, 36.637846], + [-81.619139, 36.634325], + [-81.615498, 36.635471], + [-81.613739, 36.636025], + [-81.612605, 36.636412], + [-81.610143, 36.637251], + [-81.609478, 36.637477], + [-81.608697, 36.637742], + [-81.608356, 36.63786], + [-81.608242, 36.637899], + [-81.605838, 36.638724], + [-81.605739, 36.638625], + [-81.605762, 36.63853], + [-81.60584, 36.638228], + [-81.605839, 36.638106], + [-81.605839, 36.637624], + [-81.60581, 36.637508], + [-81.605809, 36.637503], + [-81.605794, 36.637443], + [-81.605788, 36.63742], + [-81.60564, 36.636829], + [-81.605565, 36.636565], + [-81.605548, 36.636505], + [-81.605541, 36.63648], + [-81.605539, 36.636474], + [-81.605531, 36.636446], + [-81.605515, 36.636388], + [-81.605503, 36.636344], + [-81.605493, 36.636309], + [-81.60549, 36.6363], + [-81.605478, 36.636258], + [-81.605447, 36.636151], + [-81.605445, 36.636144], + [-81.605439, 36.636122], + [-81.605436, 36.636104], + [-81.605397, 36.635881], + [-81.605379, 36.635771], + [-81.605373, 36.635735], + [-81.605372, 36.635728], + [-81.605371, 36.635719], + [-81.605339, 36.635525], + [-81.605338, 36.635511], + [-81.605338, 36.635141], + [-81.605339, 36.634732], + [-81.605339, 36.634218], + [-81.605344, 36.634184], + [-81.605345, 36.634179], + [-81.605346, 36.63417], + [-81.605348, 36.634155], + [-81.605351, 36.634131], + [-81.605353, 36.634114], + [-81.60536, 36.63406], + [-81.605402, 36.633721], + [-81.605407, 36.63368], + [-81.605409, 36.633666], + [-81.605411, 36.63365], + [-81.605412, 36.633643], + [-81.605412, 36.633637], + [-81.605438, 36.633427], + [-81.60564, 36.632823], + [-81.605665, 36.63267], + [-81.605671, 36.632632], + [-81.605679, 36.632584], + [-81.605738, 36.632225], + [-81.605882, 36.63189], + [-81.606039, 36.631522], + [-81.606139, 36.631124], + [-81.606238, 36.630825], + [-81.606239, 36.630428], + [-81.606339, 36.630225], + [-81.606239, 36.629218], + [-81.606239, 36.628725], + [-81.606338, 36.628328], + [-81.606369, 36.628177], + [-81.606384, 36.628101], + [-81.606445, 36.627802], + [-81.606541, 36.627415], + [-81.606743, 36.627119], + [-81.607458, 36.626228], + [-81.60747, 36.626212], + [-81.607473, 36.626207], + [-81.60748, 36.626198], + [-81.607839, 36.625722], + [-81.607937, 36.625322], + [-81.608035, 36.625224], + [-81.608039, 36.625119], + [-81.60806, 36.625068], + [-81.608062, 36.625063], + [-81.608065, 36.625057], + [-81.608118, 36.624927], + [-81.608337, 36.624333], + [-81.608429, 36.624149], + [-81.608534, 36.623925], + [-81.608635, 36.623627], + [-81.608537, 36.623526], + [-81.608461, 36.623213], + [-81.60846, 36.623208], + [-81.608459, 36.623202], + [-81.608457, 36.623195], + [-81.608442, 36.623134], + [-81.608445, 36.622483], + [-81.608445, 36.622116], + [-81.608589, 36.621745], + [-81.608677, 36.621529], + [-81.608692, 36.621492], + [-81.608699, 36.621475], + [-81.608792, 36.621249], + [-81.609006, 36.620719], + [-81.609037, 36.62063], + [-81.609042, 36.620615], + [-81.609143, 36.620326], + [-81.60935, 36.62001], + [-81.609468, 36.619789], + [-81.609614, 36.619561], + [-81.609646, 36.619511], + [-81.609652, 36.619502], + [-81.609671, 36.619472], + [-81.609953, 36.619002], + [-81.610139, 36.618625], + [-81.610222, 36.618376], + [-81.610343, 36.618017], + [-81.610338, 36.61788], + [-81.610336, 36.617825], + [-81.610371, 36.617759], + [-81.61038, 36.617742], + [-81.610445, 36.617617], + [-81.610438, 36.617412], + [-81.610435, 36.617324], + [-81.610453, 36.617295], + [-81.610524, 36.617178], + [-81.610528, 36.617172], + [-81.610588, 36.617074], + [-81.610666, 36.61692], + [-81.610724, 36.616919], + [-81.611474, 36.616905], + [-81.611663, 36.61689], + [-81.61185, 36.616859], + [-81.612134, 36.616798], + [-81.612389, 36.616726], + [-81.613271, 36.616432], + [-81.614006, 36.6162], + [-81.615773, 36.615623], + [-81.616655, 36.615326], + [-81.616776, 36.615279], + [-81.617003, 36.615169], + [-81.617119, 36.615099], + [-81.617224, 36.615017], + [-81.617266, 36.614978], + [-81.617388, 36.614867], + [-81.617548, 36.614744], + [-81.617605, 36.614709], + [-81.617682, 36.614685], + [-81.617723, 36.614683], + [-81.617827, 36.614622], + [-81.617873, 36.614595], + [-81.618073, 36.614598], + [-81.618724, 36.614608], + [-81.618725, 36.614613], + [-81.618738, 36.614722], + [-81.61875, 36.61482], + [-81.618786, 36.614849], + [-81.619191, 36.615175], + [-81.619258, 36.615229], + [-81.619632, 36.615317], + [-81.619721, 36.615379], + [-81.619922, 36.615519], + [-81.620224, 36.615622], + [-81.620823, 36.615923], + [-81.62104, 36.616124], + [-81.621138, 36.616124], + [-81.621235, 36.615928], + [-81.621421, 36.615147], + [-81.621428, 36.61512], + [-81.621584, 36.614903], + [-81.62163, 36.614838], + [-81.621634, 36.614833], + [-81.621639, 36.614825], + [-81.622036, 36.614625], + [-81.622338, 36.614525], + [-81.622738, 36.614225], + [-81.622817, 36.614187], + [-81.62294, 36.614124], + [-81.623339, 36.613725], + [-81.623738, 36.613524], + [-81.623938, 36.613591], + [-81.624038, 36.613625], + [-81.624068, 36.613656], + [-81.624139, 36.613725], + [-81.624339, 36.613725], + [-81.624438, 36.613626], + [-81.624536, 36.613626], + [-81.62466, 36.613523], + [-81.624672, 36.613513], + [-81.624681, 36.613506], + [-81.624841, 36.613373], + [-81.625033, 36.613402], + [-81.625074, 36.613408], + [-81.625087, 36.61341], + [-81.625098, 36.613412], + [-81.625118, 36.613415], + [-81.625145, 36.613419], + [-81.625257, 36.613436], + [-81.626011, 36.613489], + [-81.626404, 36.61351], + [-81.626569, 36.613516], + [-81.62677, 36.613524], + [-81.626777, 36.613524], + [-81.62681, 36.613526], + [-81.62689, 36.613529], + [-81.626897, 36.613529], + [-81.62768, 36.61356], + [-81.627948, 36.61352], + [-81.628051, 36.613405], + [-81.628006, 36.613309], + [-81.628003, 36.613303], + [-81.627935, 36.613158], + [-81.627758, 36.612869], + [-81.627621, 36.61234], + [-81.627614, 36.612313], + [-81.62756, 36.612106], + [-81.62756, 36.612088], + [-81.627559, 36.612067], + [-81.627554, 36.611834], + [-81.627785, 36.611836], + [-81.631384, 36.611863], + [-81.636984, 36.611905], + [-81.637661, 36.611913], + [-81.639376, 36.61193], + [-81.641543, 36.611939], + [-81.643511, 36.611963], + [-81.644147, 36.612005], + [-81.645076, 36.611978], + [-81.645836, 36.611956], + [-81.646903, 36.611925], + [-81.64813, 36.610975], + [-81.648584, 36.610623], + [-81.649945, 36.609569], + [-81.6504, 36.609218], + [-81.651512, 36.60835], + [-81.654849, 36.605747], + [-81.655962, 36.60488], + [-81.656943, 36.604114], + [-81.659887, 36.601818], + [-81.660869, 36.601053], + [-81.662373, 36.599879], + [-81.666887, 36.596359], + [-81.668392, 36.595186], + [-81.669202, 36.594553], + [-81.671634, 36.592657], + [-81.672445, 36.592025], + [-81.673435, 36.591252], + [-81.676405, 36.588935], + [-81.677396, 36.588163], + [-81.669264, 36.588031], + [-81.667632, 36.588003], + [-81.667577, 36.588002], + [-81.667523, 36.588001], + [-81.667472, 36.588], + [-81.667455, 36.587999], + [-81.667434, 36.587999], + [-81.666018, 36.587965], + [-81.665743, 36.587959], + [-81.662822, 36.587914], + [-81.661926, 36.587895], + [-81.656493, 36.587783], + [-81.650933, 36.5877], + [-81.650874, 36.587794], + [-81.650492, 36.587795], + [-81.64977, 36.587781], + [-81.645539, 36.587482], + [-81.636485, 36.587482], + [-81.636474, 36.587481], + [-81.635405, 36.587481], + [-81.627591, 36.587478], + [-81.627513, 36.587479], + [-81.627419, 36.587481], + [-81.625024, 36.587456], + [-81.62252, 36.58743], + [-81.62136, 36.587447], + [-81.618176, 36.587194], + [-81.617889, 36.587171], + [-81.61787, 36.587169], + [-81.617846, 36.587166], + [-81.617834, 36.587165], + [-81.61755, 36.587144], + [-81.617538, 36.587143], + [-81.617443, 36.587136], + [-81.617336, 36.587134], + [-81.614821, 36.587098], + [-81.609474, 36.587019], + [-81.608749, 36.587006], + [-81.608321, 36.586999], + [-81.608185, 36.586997], + [-81.608071, 36.586995], + [-81.607904, 36.586993], + [-81.607889, 36.586993], + [-81.607769, 36.586991], + [-81.606981, 36.586977], + [-81.606573, 36.586968], + [-81.606309, 36.586966], + [-81.600104, 36.586858], + [-81.596892, 36.586548], + [-81.596728, 36.586532], + [-81.596694, 36.586529], + [-81.596589, 36.586519], + [-81.595979, 36.58646], + [-81.592408, 36.586114], + [-81.588395, 36.585725], + [-81.588385, 36.585724], + [-81.588367, 36.585722], + [-81.586426, 36.585621], + [-81.586388, 36.585619], + [-81.583342, 36.585458], + [-81.583014, 36.585441], + [-81.581149, 36.585342], + [-81.577629, 36.585068], + [-81.576275, 36.584963], + [-81.576259, 36.584962], + [-81.569233, 36.584395], + [-81.565395, 36.584085], + [-81.564502, 36.584013], + [-81.564382, 36.584003], + [-81.564372, 36.584002], + [-81.564365, 36.584001], + [-81.564348, 36.584], + [-81.564191, 36.583987], + [-81.564076, 36.583978], + [-81.56369, 36.583947], + [-81.563354, 36.58392], + [-81.563301, 36.583916], + [-81.559669, 36.583621], + [-81.559086, 36.583582], + [-81.558939, 36.583572], + [-81.556274, 36.583396], + [-81.554252, 36.583172], + [-81.553362, 36.583113], + [-81.551194, 36.582969], + [-81.549178, 36.582835], + [-81.548764, 36.582808], + [-81.5431, 36.582316], + [-81.543069, 36.582313], + [-81.541191, 36.58215], + [-81.541047, 36.582137], + [-81.54003, 36.582029], + [-81.537987, 36.581813], + [-81.537965, 36.581811], + [-81.537944, 36.581809], + [-81.537754, 36.581789], + [-81.537522, 36.581765], + [-81.536174, 36.581623], + [-81.535471, 36.581549], + [-81.535215, 36.581522], + [-81.534768, 36.581475], + [-81.534497, 36.581437], + [-81.534479, 36.581434], + [-81.534442, 36.581429], + [-81.532899, 36.581277], + [-81.532663, 36.581252], + [-81.524028, 36.580705], + [-81.522868, 36.580631], + [-81.522771, 36.580625], + [-81.522718, 36.580622], + [-81.522674, 36.580619], + [-81.521885, 36.580569], + [-81.520875, 36.580505], + [-81.520855, 36.580504], + [-81.520122, 36.580456], + [-81.520102, 36.580456], + [-81.518615, 36.580482], + [-81.518596, 36.580482], + [-81.518556, 36.580483], + [-81.518489, 36.580484], + [-81.518412, 36.580485], + [-81.518194, 36.580489], + [-81.518158, 36.58049], + [-81.518119, 36.580491], + [-81.518045, 36.580492], + [-81.517943, 36.580494], + [-81.517841, 36.580495], + [-81.517803, 36.580495], + [-81.51776, 36.580496], + [-81.517599, 36.580498], + [-81.507614, 36.580161], + [-81.507505, 36.580157], + [-81.507416, 36.580154], + [-81.507351, 36.580151], + [-81.507322, 36.58015], + [-81.507299, 36.580149], + [-81.506958, 36.580138], + [-81.506892, 36.580136], + [-81.506872, 36.580136], + [-81.506845, 36.580135], + [-81.506814, 36.580134], + [-81.506778, 36.580132], + [-81.506679, 36.580128], + [-81.503021, 36.579986], + [-81.500147, 36.579937], + [-81.497554, 36.579957], + [-81.497527, 36.579957], + [-81.497415, 36.579964], + [-81.497408, 36.579965], + [-81.497366, 36.579965], + [-81.496219, 36.579976], + [-81.496074, 36.579977], + [-81.494538, 36.579716], + [-81.492673, 36.5794], + [-81.491739, 36.579284], + [-81.490117, 36.579117], + [-81.489913, 36.579096], + [-81.489902, 36.579095], + [-81.489644, 36.579069], + [-81.489523, 36.579077], + [-81.489488, 36.579079], + [-81.489203, 36.579097], + [-81.487856, 36.579183], + [-81.486225, 36.579289], + [-81.486004, 36.579303], + [-81.476714, 36.58025], + [-81.476675, 36.580246], + [-81.476497, 36.58023], + [-81.476449, 36.580224], + [-81.47644, 36.580223], + [-81.476391, 36.580216], + [-81.476365, 36.580213], + [-81.476289, 36.580203], + [-81.475078, 36.580103], + [-81.470454, 36.579692], + [-81.47035, 36.579683], + [-81.466579, 36.579348], + [-81.466163, 36.579311], + [-81.466113, 36.579307], + [-81.466101, 36.579306], + [-81.46609, 36.579305], + [-81.46558, 36.57926], + [-81.463247, 36.579053], + [-81.462939, 36.579019], + [-81.462927, 36.579018], + [-81.462844, 36.579009], + [-81.462814, 36.579006], + [-81.462785, 36.579003], + [-81.462658, 36.578989], + [-81.462565, 36.578979], + [-81.462524, 36.578975], + [-81.462514, 36.578974], + [-81.462455, 36.578968], + [-81.462317, 36.578953], + [-81.46231, 36.578952], + [-81.460333, 36.578741], + [-81.458357, 36.578531], + [-81.458332, 36.578528], + [-81.458226, 36.578517], + [-81.458039, 36.578497], + [-81.457637, 36.578454], + [-81.457557, 36.578446], + [-81.455979, 36.578277], + [-81.455811, 36.578259], + [-81.455772, 36.578255], + [-81.455758, 36.578253], + [-81.455674, 36.578244], + [-81.453709, 36.578034], + [-81.451898, 36.577842], + [-81.446049, 36.577171], + [-81.445995, 36.577165], + [-81.44589, 36.577153], + [-81.445833, 36.577147], + [-81.445775, 36.57714], + [-81.445731, 36.577135], + [-81.444823, 36.577031], + [-81.444584, 36.577004], + [-81.444224, 36.576962], + [-81.443982, 36.576925], + [-81.443931, 36.576918], + [-81.443874, 36.576909], + [-81.443785, 36.576895], + [-81.443581, 36.576831], + [-81.443051, 36.576793], + [-81.442855, 36.576787], + [-81.440492, 36.576713], + [-81.437469, 36.576618], + [-81.435197, 36.576543], + [-81.434896, 36.576534], + [-81.43435, 36.576518], + [-81.43108, 36.576421], + [-81.427766, 36.576328], + [-81.42753, 36.576321], + [-81.427517, 36.576321], + [-81.427443, 36.576319], + [-81.427311, 36.576315], + [-81.424193, 36.576228], + [-81.418522, 36.576041], + [-81.417783, 36.576057], + [-81.4164, 36.575994], + [-81.414246, 36.575897], + [-81.414237, 36.575897], + [-81.412043, 36.575834], + [-81.410173, 36.575781], + [-81.410096, 36.575779], + [-81.410006, 36.575776], + [-81.409981, 36.575773], + [-81.409935, 36.575768], + [-81.409923, 36.57577], + [-81.409904, 36.575773], + [-81.407471, 36.575704], + [-81.402892, 36.575574], + [-81.402825, 36.575572], + [-81.401964, 36.575547], + [-81.40194, 36.575655], + [-81.401178, 36.575613], + [-81.400072, 36.575573], + [-81.399007, 36.575527], + [-81.398395, 36.575491], + [-81.398284, 36.575495], + [-81.39815, 36.575483], + [-81.398125, 36.575481], + [-81.398017, 36.575472], + [-81.39764, 36.575461], + [-81.397608, 36.57546], + [-81.39757, 36.575421], + [-81.397551, 36.575353], + [-81.397429, 36.575351], + [-81.397214, 36.575348], + [-81.396418, 36.57534], + [-81.396297, 36.575334], + [-81.395501, 36.575297], + [-81.395085, 36.575284], + [-81.394885, 36.575274], + [-81.39481, 36.575275], + [-81.39477, 36.575276], + [-81.394727, 36.575276], + [-81.393714, 36.575227], + [-81.393568, 36.57522], + [-81.393463, 36.575267], + [-81.393345, 36.57529], + [-81.393177, 36.575264], + [-81.393079, 36.575188], + [-81.390899, 36.575086], + [-81.389309, 36.57502], + [-81.388912, 36.575018], + [-81.3889, 36.575017], + [-81.388892, 36.575017], + [-81.388713, 36.575009], + [-81.388549, 36.575002], + [-81.386703, 36.574941], + [-81.384916, 36.574927], + [-81.383689, 36.574917], + [-81.382528, 36.574894], + [-81.379455, 36.574834], + [-81.376383, 36.574774], + [-81.374776, 36.574743], + [-81.374785, 36.574237], + [-81.374774, 36.573867], + [-81.374652, 36.57333], + [-81.374457, 36.573302], + [-81.374328, 36.573269], + [-81.374083, 36.573185], + [-81.37396, 36.573138], + [-81.373829, 36.573141], + [-81.373714, 36.573157], + [-81.373648, 36.573193], + [-81.372323, 36.57411], + [-81.368701, 36.574151], + [-81.368737, 36.57424], + [-81.36886, 36.57455], + [-81.366752, 36.574084], + [-81.366585, 36.574579], + [-81.366074, 36.574605], + [-81.364213, 36.574678], + [-81.364036, 36.576016], + [-81.36165, 36.57539], + [-81.361414, 36.575331], + [-81.361331, 36.575306], + [-81.361306, 36.575298], + [-81.361198, 36.575265], + [-81.358915, 36.574671], + [-81.358886, 36.574623], + [-81.357714, 36.574637], + [-81.354038, 36.57468], + [-81.353911, 36.574682], + [-81.353709, 36.574684], + [-81.35361, 36.574685], + [-81.353547, 36.574685], + [-81.353172, 36.574688], + [-81.348376, 36.574762], + [-81.348252, 36.574761], + [-81.345155, 36.574812], + [-81.342619, 36.574834], + [-81.340827, 36.574859], + [-81.338239, 36.574814], + [-81.337312, 36.574811], + [-81.335395, 36.574865], + [-81.33488, 36.574879], + [-81.334754, 36.574882], + [-81.334732, 36.574883], + [-81.33469, 36.574885], + [-81.334677, 36.574886], + [-81.334644, 36.574887], + [-81.334614, 36.574888], + [-81.333742, 36.574928], + [-81.333437, 36.574939], + [-81.333061, 36.574952], + [-81.330279, 36.575067], + [-81.327377, 36.575194], + [-81.324854, 36.57535], + [-81.324428, 36.575369], + [-81.324347, 36.575372], + [-81.324328, 36.575373], + [-81.32359, 36.575366], + [-81.323307, 36.57536], + [-81.322486, 36.575343], + [-81.321192, 36.575325], + [-81.3184, 36.575277], + [-81.317065, 36.575258], + [-81.316837, 36.575255], + [-81.315339, 36.575157], + [-81.313906, 36.575133], + [-81.312175, 36.575123], + [-81.309472, 36.575074], + [-81.307944, 36.575055], + [-81.307495, 36.57505], + [-81.30561, 36.575039], + [-81.301822, 36.575017], + [-81.299741, 36.574986], + [-81.297324, 36.574983], + [-81.295665, 36.574971], + [-81.294724, 36.574964], + [-81.293656, 36.574947], + [-81.292413, 36.574941], + [-81.291898, 36.574935], + [-81.291173, 36.574987], + [-81.290702, 36.575013], + [-81.289313, 36.575045], + [-81.28728, 36.57508], + [-81.286847, 36.575097], + [-81.285697, 36.574916], + [-81.284737, 36.574752], + [-81.283589, 36.574682], + [-81.282693, 36.574614], + [-81.281483, 36.574592], + [-81.278579, 36.574719], + [-81.277837, 36.574826], + [-81.277745, 36.574839], + [-81.275667, 36.574218], + [-81.273195, 36.57409], + [-81.272055, 36.574016], + [-81.271619, 36.574014], + [-81.270583, 36.574008], + [-81.270432, 36.574011], + [-81.266084, 36.574004], + [-81.262598, 36.573817], + [-81.262302, 36.573794], + [-81.260055, 36.573675], + [-81.255354, 36.573418], + [-81.252929, 36.573276], + [-81.252735, 36.573276], + [-81.250246, 36.573275], + [-81.249874, 36.573257], + [-81.249232, 36.573226], + [-81.249015, 36.573216], + [-81.243998, 36.573027], + [-81.242215, 36.572969], + [-81.241892, 36.572957], + [-81.235404, 36.572733], + [-81.226787, 36.572484], + [-81.225948, 36.57246], + [-81.216966, 36.5722], + [-81.215932, 36.57217], + [-81.213076, 36.572084], + [-81.212089, 36.572064], + [-81.210184, 36.572025], + [-81.207231, 36.571987], + [-81.206574, 36.571979], + [-81.206511, 36.57199], + [-81.206458, 36.571978], + [-81.205567, 36.571968], + [-81.204786, 36.571953], + [-81.20432, 36.571945], + [-81.203936, 36.571936], + [-81.203764, 36.571933], + [-81.203591, 36.571929], + [-81.202387, 36.571907], + [-81.202075, 36.5719], + [-81.201431, 36.571888], + [-81.201287, 36.571885], + [-81.200983, 36.57188], + [-81.197901, 36.571829], + [-81.196926, 36.571813], + [-81.193625, 36.571746], + [-81.192833, 36.571725], + [-81.190978, 36.571676], + [-81.189889, 36.571647], + [-81.186898, 36.571558], + [-81.185057, 36.571491], + [-81.184304, 36.571464], + [-81.180363, 36.571314], + [-81.180166, 36.571306], + [-81.178996, 36.571285], + [-81.176766, 36.571217], + [-81.171224, 36.571049], + [-81.170962, 36.571041], + [-81.169624, 36.571004], + [-81.169063, 36.570988], + [-81.168471, 36.570975], + [-81.164403, 36.570604], + [-81.16408, 36.570573], + [-81.16394, 36.570559], + [-81.1638, 36.570544], + [-81.163449, 36.570515], + [-81.163432, 36.570514], + [-81.163243, 36.570498], + [-81.163009, 36.570477], + [-81.162774, 36.570455], + [-81.162039, 36.570388], + [-81.160242, 36.570327], + [-81.15752, 36.570215], + [-81.156959, 36.570189], + [-81.15365, 36.570058], + [-81.153589, 36.570052], + [-81.153566, 36.570052], + [-81.153528, 36.570053], + [-81.153487, 36.570051], + [-81.153442, 36.570049], + [-81.153427, 36.570049], + [-81.153178, 36.570039], + [-81.153166, 36.570039], + [-81.153158, 36.570038], + [-81.15314, 36.570038], + [-81.152654, 36.570018], + [-81.152418, 36.570008], + [-81.151341, 36.569964], + [-81.150795, 36.569943], + [-81.150489, 36.569931], + [-81.150182, 36.56992], + [-81.149949, 36.569911], + [-81.146588, 36.569785], + [-81.146455, 36.56978], + [-81.146385, 36.569777], + [-81.14631, 36.569772], + [-81.145362, 36.569739], + [-81.144895, 36.569735], + [-81.140857, 36.569602], + [-81.139705, 36.569565], + [-81.139637, 36.569562], + [-81.139364, 36.56955], + [-81.139015, 36.569541], + [-81.138316, 36.569519], + [-81.137616, 36.569497], + [-81.13655, 36.569461], + [-81.135616, 36.569429], + [-81.13525, 36.569418], + [-81.127854, 36.569187], + [-81.122646, 36.569002], + [-81.122215, 36.568987], + [-81.119808, 36.568917], + [-81.119451, 36.568887], + [-81.114898, 36.568658], + [-81.11244, 36.568538], + [-81.111639, 36.568491], + [-81.111004, 36.568454], + [-81.110807, 36.568437], + [-81.107781, 36.568229], + [-81.107234, 36.568191], + [-81.105109, 36.56803], + [-81.104813, 36.568008], + [-81.103679, 36.567922], + [-81.103413, 36.567902], + [-81.102932, 36.567869], + [-81.102377, 36.567832], + [-81.100055, 36.567676], + [-81.098721, 36.567581], + [-81.097562, 36.567496], + [-81.097046, 36.567461], + [-81.095175, 36.567454], + [-81.09225, 36.567402], + [-81.088991, 36.567355], + [-81.085493, 36.567312], + [-81.083209, 36.567276], + [-81.080992, 36.567242], + [-81.079408, 36.567223], + [-81.078717, 36.567215], + [-81.078268, 36.56721], + [-81.077797, 36.567195], + [-81.076144, 36.567157], + [-81.074862, 36.567129], + [-81.07358, 36.567102], + [-81.069688, 36.567018], + [-81.069177, 36.567007], + [-81.062212, 36.566839], + [-81.062182, 36.566839], + [-81.05856, 36.566882], + [-81.050908, 36.566972], + [-81.048783, 36.566863], + [-81.047926, 36.566828], + [-81.046855, 36.566778], + [-81.046166, 36.566743], + [-81.044833, 36.566673], + [-81.04444, 36.566643], + [-81.043852, 36.566605], + [-81.042646, 36.566527], + [-81.039848, 36.566504], + [-81.037614, 36.566373], + [-81.037229, 36.56635], + [-81.035939, 36.566273], + [-81.035839, 36.566267], + [-81.028977, 36.565858], + [-81.028904, 36.565854], + [-81.028831, 36.565849], + [-81.028754, 36.565845], + [-81.028677, 36.56584], + [-81.027952, 36.565796], + [-81.02789, 36.565793], + [-81.027117, 36.565749], + [-81.025961, 36.565677], + [-81.024344, 36.565576], + [-81.022916, 36.565486], + [-81.021047, 36.565381], + [-81.020999, 36.565384], + [-81.020176, 36.565293], + [-81.019974, 36.565265], + [-81.019641, 36.565227], + [-81.019479, 36.565209], + [-81.019316, 36.56519], + [-81.019151, 36.565171], + [-81.018986, 36.565153], + [-81.017046, 36.564933], + [-81.01672, 36.564894], + [-81.016297, 36.564848], + [-81.01626, 36.564844], + [-81.013904, 36.564577], + [-81.01389, 36.564575], + [-81.013796, 36.564564], + [-81.012395, 36.564405], + [-81.012301, 36.564394], + [-81.012208, 36.564384], + [-81.012164, 36.564379], + [-81.011983, 36.564357], + [-81.01173, 36.564329], + [-81.011297, 36.56428], + [-81.00956, 36.564083], + [-81.00853, 36.563966], + [-81.007685, 36.563954], + [-81.007338, 36.563949], + [-81.006917, 36.563944], + [-81.003936, 36.563904], + [-81.003794, 36.563902], + [-80.998761, 36.563814], + [-80.9957, 36.563741], + [-80.994093, 36.563721], + [-80.99261, 36.563708], + [-80.990956, 36.56368], + [-80.988838, 36.563644], + [-80.985668, 36.563602], + [-80.985355, 36.563594], + [-80.984729, 36.563563], + [-80.984703, 36.563562], + [-80.984527, 36.563554], + [-80.983749, 36.56352], + [-80.97854, 36.563305], + [-80.978239, 36.563293], + [-80.976348, 36.563203], + [-80.975425, 36.563169], + [-80.973415, 36.563101], + [-80.97179, 36.563044], + [-80.967266, 36.56291], + [-80.96459, 36.563214], + [-80.961944, 36.563515], + [-80.961512, 36.56358], + [-80.957176, 36.563492], + [-80.95338, 36.563425], + [-80.953213, 36.56343], + [-80.952971, 36.563418], + [-80.952494, 36.563393], + [-80.952017, 36.56337], + [-80.950084, 36.563279], + [-80.949865, 36.563269], + [-80.949279, 36.563248], + [-80.948615, 36.563231], + [-80.947504, 36.563191], + [-80.946505, 36.563239], + [-80.946489, 36.56324], + [-80.946351, 36.56319], + [-80.94629, 36.563172], + [-80.946173, 36.563142], + [-80.946001, 36.563117], + [-80.945796, 36.563102], + [-80.944716, 36.563056], + [-80.944473, 36.563039], + [-80.944235, 36.563026], + [-80.942037, 36.562999], + [-80.940406, 36.563007], + [-80.938972, 36.562984], + [-80.935793, 36.562951], + [-80.933016, 36.562938], + [-80.931771, 36.562479], + [-80.925468, 36.562343], + [-80.915162, 36.562163], + [-80.913156, 36.562126], + [-80.912603, 36.562119], + [-80.908511, 36.56205], + [-80.906306, 36.562006], + [-80.904095, 36.561939], + [-80.903391, 36.561918], + [-80.901735, 36.561842], + [-80.901706, 36.561863], + [-80.899383, 36.56175], + [-80.898644, 36.561689], + [-80.898456, 36.561681], + [-80.892936, 36.561435], + [-80.892198, 36.561403], + [-80.889123, 36.561267], + [-80.882199, 36.560961], + [-80.877639, 36.560778], + [-80.8748, 36.560662], + [-80.873326, 36.560599], + [-80.869842, 36.560447], + [-80.861115, 36.560088], + [-80.852683, 36.559732], + [-80.842964, 36.559317], + [-80.840337, 36.559206], + [-80.837957, 36.55915], + [-80.837774, 36.559145], + [-80.837743, 36.559119], + [-80.837664, 36.55909], + [-80.837577, 36.559084], + [-80.83749, 36.559103], + [-80.83737, 36.559151], + [-80.834887, 36.559264], + [-80.834242, 36.559249], + [-80.833123, 36.559309], + [-80.830285, 36.55946], + [-80.827241, 36.559576], + [-80.823934, 36.559715], + [-80.823916, 36.559716], + [-80.823894, 36.559716], + [-80.823276, 36.559732], + [-80.823246, 36.559734], + [-80.823022, 36.559748], + [-80.820517, 36.559915], + [-80.815778, 36.560173], + [-80.813516, 36.560297], + [-80.803911, 36.560823], + [-80.801635, 36.560963], + [-80.800453, 36.561037], + [-80.799787, 36.56108], + [-80.799641, 36.56107], + [-80.799588, 36.561067], + [-80.799522, 36.561062], + [-80.799355, 36.561051], + [-80.798525, 36.560978], + [-80.797483, 36.560878], + [-80.796674, 36.560815], + [-80.794165, 36.560637], + [-80.792744, 36.560554], + [-80.792044, 36.560513], + [-80.790493, 36.560502], + [-80.790191, 36.560499], + [-80.789975, 36.560498], + [-80.789888, 36.560497], + [-80.788295, 36.560484], + [-80.786081, 36.560466], + [-80.779378, 36.560423], + [-80.777451, 36.560381], + [-80.774162, 36.560312], + [-80.773583, 36.560317], + [-80.773095, 36.560337], + [-80.772798, 36.560348], + [-80.772211, 36.560368], + [-80.771496, 36.560391], + [-80.771263, 36.560402], + [-80.7677, 36.560567], + [-80.766807, 36.560607], + [-80.761063, 36.560871], + [-80.760717, 36.560887], + [-80.758837, 36.560973], + [-80.756874, 36.561067], + [-80.756661, 36.561076], + [-80.755972, 36.561104], + [-80.754314, 36.561178], + [-80.750924, 36.561334], + [-80.750846, 36.561338], + [-80.750498, 36.561356], + [-80.750246, 36.561366], + [-80.749803, 36.561387], + [-80.749439, 36.561496], + [-80.748571, 36.561534], + [-80.748557, 36.561534], + [-80.747157, 36.561557], + [-80.746801, 36.561568], + [-80.745425, 36.561632], + [-80.745055, 36.56165], + [-80.744736, 36.561664], + [-80.744192, 36.56169], + [-80.74379, 36.561708], + [-80.741331, 36.56183], + [-80.741016, 36.561843], + [-80.730388, 36.562355], + [-80.73006, 36.562357], + [-80.724386, 36.562326], + [-80.717286, 36.562292], + [-80.717022, 36.562292], + [-80.71417, 36.562287], + [-80.712112, 36.56227], + [-80.711508, 36.562275], + [-80.70504, 36.562327], + [-80.704756, 36.562322], + [-80.704608, 36.562325], + [-80.700274, 36.56217], + [-80.696229, 36.561983], + [-80.696017, 36.561975], + [-80.692602, 36.561856], + [-80.689674, 36.561609], + [-80.688202, 36.561475], + [-80.687573, 36.561419], + [-80.68648, 36.561342], + [-80.685493, 36.561273], + [-80.683316, 36.561124], + [-80.682535, 36.561068], + [-80.679248, 36.560844], + [-80.67734, 36.560706], + [-80.676663, 36.560664], + [-80.671858, 36.560369], + [-80.667472, 36.560102], + [-80.66371, 36.559868], + [-80.662936, 36.55982], + [-80.660216, 36.559651], + [-80.659324, 36.559596], + [-80.658474, 36.559543], + [-80.653382, 36.559235], + [-80.64728, 36.559041], + [-80.64711, 36.55903], + [-80.641339, 36.558845], + [-80.638502, 36.558712], + [-80.637653, 36.558694], + [-80.637567, 36.558692], + [-80.63603, 36.558656], + [-80.632936, 36.558585], + [-80.628872, 36.558499], + [-80.62479, 36.558412], + [-80.623922, 36.558372], + [-80.61491, 36.557957], + [-80.614769, 36.557951], + [-80.612031, 36.55784], + [-80.610454, 36.557767], + [-80.607565, 36.557643], + [-80.600549, 36.557338], + [-80.600477, 36.557335], + [-80.59789, 36.557232], + [-80.597818, 36.557229], + [-80.597222, 36.557206], + [-80.592513, 36.557018], + [-80.591366, 36.556973], + [-80.587478, 36.556818], + [-80.582801, 36.556631], + [-80.581388, 36.556574], + [-80.581338, 36.556572], + [-80.577198, 36.556407], + [-80.570992, 36.556159], + [-80.5685, 36.556059], + [-80.563831, 36.555873], + [-80.560668, 36.555746], + [-80.558915, 36.555677], + [-80.548592, 36.555286], + [-80.548552, 36.555284], + [-80.548456, 36.55528], + [-80.544755, 36.555131], + [-80.540771, 36.55497], + [-80.539404, 36.554913], + [-80.534663, 36.554724], + [-80.532438, 36.554634], + [-80.52792, 36.554452], + [-80.526379, 36.554389], + [-80.522269, 36.554224], + [-80.520035, 36.554134], + [-80.518292, 36.554064], + [-80.51181, 36.553805], + [-80.511618, 36.553797], + [-80.51094, 36.553769], + [-80.510434, 36.553749], + [-80.510066, 36.553734], + [-80.509087, 36.553693], + [-80.507066, 36.553613], + [-80.507038, 36.553612], + [-80.505565, 36.553554], + [-80.505541, 36.553553], + [-80.505138, 36.553537], + [-80.499787, 36.553323], + [-80.487761, 36.552956], + [-80.483998, 36.552773], + [-80.480473, 36.552601], + [-80.480176, 36.55258], + [-80.478525, 36.552502], + [-80.470506, 36.55211], + [-80.470173, 36.552094], + [-80.466716, 36.551926], + [-80.460945, 36.551648], + [-80.451719, 36.551198], + [-80.451389, 36.551183], + [-80.451332, 36.551181], + [-80.451276, 36.551178], + [-80.448704, 36.551053], + [-80.448456, 36.551041], + [-80.443294, 36.550791], + [-80.440103, 36.550637], + [-80.434705, 36.550373], + [-80.433506, 36.550331], + [-80.433497, 36.550329], + [-80.433155, 36.550262], + [-80.432948, 36.550229], + [-80.432715, 36.550199], + [-80.432601, 36.550184], + [-80.432218, 36.550148], + [-80.432065, 36.550139], + [-80.431957, 36.550133], + [-80.431696, 36.550132], + [-80.431599, 36.550137], + [-80.431435, 36.550145], + [-80.431305, 36.550179], + [-80.431218, 36.550209], + [-80.430397, 36.550177], + [-80.430333, 36.550175], + [-80.427762, 36.550053], + [-80.427611, 36.550046], + [-80.427448, 36.55005], + [-80.426486, 36.549995], + [-80.424113, 36.549885], + [-80.424013, 36.54988], + [-80.423914, 36.549876], + [-80.421755, 36.549793], + [-80.421677, 36.549773], + [-80.421593, 36.549769], + [-80.409743, 36.549208], + [-80.408736, 36.54916], + [-80.407814, 36.549117], + [-80.407768, 36.549115], + [-80.399204, 36.548679], + [-80.39632, 36.548532], + [-80.396284, 36.54853], + [-80.39443, 36.54844], + [-80.391074, 36.548284], + [-80.387296, 36.548106], + [-80.385669, 36.548028], + [-80.383646, 36.547932], + [-80.383234, 36.547912], + [-80.382617, 36.547884], + [-80.380444, 36.547782], + [-80.379966, 36.547782], + [-80.378032, 36.547739], + [-80.374889, 36.547752], + [-80.370189, 36.547484], + [-80.370174, 36.547483], + [-80.369187, 36.547435], + [-80.369179, 36.547435], + [-80.369171, 36.547434], + [-80.369156, 36.547433], + [-80.369149, 36.547433], + [-80.369131, 36.547432], + [-80.369109, 36.547431], + [-80.367818, 36.547368], + [-80.363976, 36.547181], + [-80.363967, 36.547181], + [-80.360301, 36.547013], + [-80.356634, 36.546845], + [-80.354117, 36.54673], + [-80.351519, 36.546611], + [-80.346075, 36.546368], + [-80.344256, 36.546272], + [-80.337051, 36.545923], + [-80.336988, 36.54592], + [-80.333965, 36.545781], + [-80.333863, 36.545776], + [-80.333624, 36.545765], + [-80.333151, 36.545743], + [-80.332998, 36.545736], + [-80.33299, 36.545736], + [-80.332975, 36.545735], + [-80.332822, 36.545728], + [-80.332025, 36.545691], + [-80.328989, 36.54555], + [-80.328843, 36.545543], + [-80.328836, 36.545542], + [-80.328829, 36.545542], + [-80.328811, 36.545541], + [-80.328763, 36.545539], + [-80.3287, 36.545536], + [-80.328635, 36.545533], + [-80.328612, 36.545532], + [-80.325021, 36.545363], + [-80.310938, 36.54471], + [-80.295431, 36.543985], + [-80.295097, 36.543985], + [-80.295084, 36.543984], + [-80.294795, 36.543964], + [-80.290921, 36.543979], + [-80.290893, 36.543979], + [-80.280072, 36.544022], + [-80.278303, 36.544029], + [-80.276533, 36.544036], + [-80.276272, 36.544049], + [-80.276042, 36.544049], + [-80.275758, 36.544039], + [-80.27211, 36.544055], + [-80.27209, 36.544055], + [-80.263249, 36.544071], + [-80.260832, 36.544031], + [-80.259016, 36.544017], + [-80.258567, 36.544014], + [-80.254722, 36.543989], + [-80.250499, 36.544005], + [-80.249682, 36.544014], + [-80.247676, 36.543995], + [-80.243735, 36.54396], + [-80.243727, 36.54396], + [-80.24329, 36.543957], + [-80.243274, 36.543957], + [-80.243125, 36.543956], + [-80.243029, 36.543955], + [-80.242777, 36.543953], + [-80.241687, 36.543943], + [-80.239417, 36.543924], + [-80.236941, 36.543913], + [-80.235213, 36.543905], + [-80.231009, 36.543886], + [-80.229637, 36.54388], + [-80.228049, 36.543977], + [-80.227562, 36.543881], + [-80.225342, 36.543754], + [-80.225331, 36.543754], + [-80.218951, 36.543693], + [-80.214738, 36.543661], + [-80.199151, 36.543542], + [-80.193292, 36.543488], + [-80.19309, 36.543485], + [-80.19159, 36.543464], + [-80.183819, 36.543354], + [-80.181569, 36.54333], + [-80.179641, 36.543309], + [-80.172936, 36.543278], + [-80.17292, 36.543278], + [-80.171632, 36.543244], + [-80.171438, 36.543227], + [-80.171198, 36.543203], + [-80.170846, 36.543168], + [-80.170686, 36.543145], + [-80.17052, 36.54313], + [-80.17032, 36.543125], + [-80.170157, 36.543131], + [-80.169932, 36.543151], + [-80.169817, 36.543171], + [-80.169751, 36.543183], + [-80.169677, 36.543202], + [-80.169523, 36.543198], + [-80.169515, 36.543198], + [-80.169499, 36.543197], + [-80.16949, 36.543197], + [-80.16941, 36.543195], + [-80.169329, 36.543194], + [-80.167898, 36.543176], + [-80.167881, 36.543176], + [-80.167576, 36.543172], + [-80.167541, 36.543172], + [-80.167534, 36.543171], + [-80.167513, 36.543171], + [-80.166373, 36.543156], + [-80.166308, 36.543155], + [-80.159643, 36.543074], + [-80.158681, 36.543063], + [-80.158395, 36.543059], + [-80.157147, 36.543043], + [-80.155149, 36.543019], + [-80.15315, 36.542994], + [-80.150248, 36.542966], + [-80.150232, 36.542966], + [-80.142571, 36.542882], + [-80.142017, 36.542877], + [-80.138823, 36.542807], + [-80.1387, 36.542804], + [-80.138676, 36.542804], + [-80.136512, 36.542757], + [-80.136485, 36.542756], + [-80.13644, 36.542756], + [-80.136426, 36.542755], + [-80.136419, 36.542755], + [-80.136312, 36.54275], + [-80.129544, 36.542715], + [-80.129469, 36.542715], + [-80.126377, 36.542697], + [-80.125791, 36.542694], + [-80.125784, 36.542693], + [-80.125706, 36.542693], + [-80.122176, 36.542657], + [-80.117072, 36.542639], + [-80.113343, 36.542613], + [-80.103816, 36.542596], + [-80.101693, 36.542592], + [-80.097225, 36.542584], + [-80.097032, 36.542584], + [-80.097025, 36.542583], + [-80.096978, 36.542583], + [-80.09675, 36.542582], + [-80.096718, 36.542582], + [-80.096132, 36.542577], + [-80.095719, 36.542575], + [-80.091156, 36.542567], + [-80.083026, 36.542551], + [-80.074897, 36.542534], + [-80.064179, 36.542513], + [-80.053463, 36.542492], + [-80.052367, 36.542466], + [-80.042439, 36.542479], + [-80.037606, 36.542454], + [-80.036044, 36.54249], + [-80.027272, 36.542502], + [-80.026159, 36.542504], + [-80.026133, 36.542504], + [-80.026127, 36.542502], + [-80.013716, 36.542504], + [-80.013333, 36.542504], + [-80.008736, 36.542505], + [-80.006702, 36.542505], + [-80.004925, 36.542507], + [-80.004427, 36.542508], + [-80.004319, 36.542508], + [-80.004173, 36.542485], + [-80.002988, 36.542556], + [-80.00298, 36.542559], + [-80.002969, 36.542563], + [-80.000477, 36.542378], + [-80.00047, 36.542378], + [-80.00045, 36.542376], + [-80.000382, 36.542371], + [-79.999328, 36.542298], + [-79.992309, 36.542289], + [-79.988157, 36.54234], + [-79.986018, 36.542371], + [-79.982852, 36.542417], + [-79.982822, 36.542417], + [-79.97949, 36.542422], + [-79.975483, 36.542446], + [-79.967755, 36.542507], + [-79.967514, 36.542508], + [-79.967356, 36.542501], + [-79.966982, 36.542482], + [-79.963326, 36.542667], + [-79.963303, 36.542666], + [-79.960085, 36.542511], + [-79.960022, 36.542512], + [-79.952489, 36.54261], + [-79.951772, 36.542616], + [-79.951464, 36.542619], + [-79.949619, 36.542634], + [-79.933344, 36.54263], + [-79.931166, 36.542545], + [-79.930947, 36.542553], + [-79.930833, 36.542557], + [-79.928532, 36.542643], + [-79.928056, 36.542629], + [-79.927412, 36.542612], + [-79.925159, 36.542537], + [-79.925062, 36.542534], + [-79.920241, 36.542755], + [-79.917718, 36.542502], + [-79.912676, 36.542539], + [-79.911189, 36.542707], + [-79.911003, 36.542657], + [-79.910984, 36.542652], + [-79.910978, 36.54265], + [-79.91073, 36.542586], + [-79.909382, 36.542498], + [-79.904896, 36.542535], + [-79.891574, 36.542746], + [-79.889683, 36.542801], + [-79.887251, 36.542872], + [-79.874654, 36.542703], + [-79.869657, 36.542739], + [-79.865604, 36.542603], + [-79.865365, 36.542603], + [-79.860732, 36.542607], + [-79.856896, 36.54261], + [-79.852199, 36.542586], + [-79.845542, 36.542552], + [-79.842898, 36.542622], + [-79.841325, 36.542624], + [-79.83709, 36.542628], + [-79.836871, 36.54263], + [-79.831071, 36.542686], + [-79.829174, 36.542635], + [-79.817199, 36.542464], + [-79.807601, 36.542236], + [-79.807581, 36.542238], + [-79.80462, 36.542502], + [-79.777107, 36.542287], + [-79.775217, 36.542018], + [-79.774293, 36.542272], + [-79.772388, 36.542286], + [-79.771502, 36.542295], + [-79.765394, 36.542374], + [-79.762724, 36.542272], + [-79.759788, 36.542161], + [-79.759672, 36.54216], + [-79.75908, 36.542156], + [-79.758945, 36.542155], + [-79.758919, 36.542155], + [-79.758758, 36.542154], + [-79.758339, 36.542151], + [-79.758177, 36.54215], + [-79.758025, 36.542149], + [-79.757983, 36.542149], + [-79.757845, 36.542148], + [-79.757792, 36.542148], + [-79.757778, 36.542147], + [-79.757745, 36.542147], + [-79.757454, 36.542145], + [-79.757116, 36.542143], + [-79.756932, 36.542142], + [-79.75213, 36.54211], + [-79.74976, 36.542095], + [-79.747903, 36.542087], + [-79.745162, 36.542075], + [-79.745118, 36.542075], + [-79.741429, 36.542059], + [-79.736272, 36.541983], + [-79.735936, 36.541983], + [-79.732776, 36.541986], + [-79.732455, 36.541986], + [-79.732448, 36.541987], + [-79.731903, 36.541987], + [-79.714858, 36.541945], + [-79.692277, 36.541878], + [-79.690801, 36.541912], + [-79.690462, 36.541918], + [-79.676883, 36.541817], + [-79.675127, 36.541831], + [-79.672534, 36.541817], + [-79.667128, 36.541778], + [-79.666993, 36.541799], + [-79.66683, 36.541799], + [-79.666404, 36.5418], + [-79.666354, 36.5418], + [-79.664526, 36.541803], + [-79.66391, 36.5418], + [-79.66221, 36.541798], + [-79.660032, 36.542106], + [-79.659914, 36.542123], + [-79.646716, 36.541913], + [-79.636656, 36.541638], + [-79.633093, 36.5416], + [-79.628987, 36.541554], + [-79.627081, 36.541653], + [-79.627049, 36.541655], + [-79.627042, 36.541655], + [-79.627034, 36.541656], + [-79.626877, 36.541664], + [-79.626803, 36.541668], + [-79.626715, 36.541672], + [-79.626639, 36.541676], + [-79.626605, 36.541678], + [-79.626489, 36.541684], + [-79.625555, 36.541733], + [-79.625531, 36.541734], + [-79.625476, 36.541737], + [-79.625456, 36.541738], + [-79.625448, 36.541738], + [-79.625438, 36.541739], + [-79.625404, 36.541741], + [-79.625377, 36.541742], + [-79.625268, 36.541732], + [-79.624845, 36.541702], + [-79.62476, 36.541696], + [-79.623613, 36.541659], + [-79.621297, 36.541585], + [-79.620048, 36.541654], + [-79.615147, 36.541571], + [-79.607433, 36.541503], + [-79.605372, 36.541475], + [-79.605211, 36.541494], + [-79.605157, 36.541496], + [-79.605042, 36.541501], + [-79.60474, 36.541514], + [-79.604483, 36.541525], + [-79.599783, 36.541436], + [-79.599514, 36.541435], + [-79.598943, 36.541425], + [-79.584832, 36.541205], + [-79.581135, 36.541194], + [-79.576249, 36.541175], + [-79.575677, 36.541173], + [-79.574839, 36.541169], + [-79.574783, 36.541169], + [-79.572545, 36.541142], + [-79.572401, 36.54114], + [-79.569763, 36.541073], + [-79.563481, 36.541016], + [-79.551352, 36.540968], + [-79.546544, 36.540948], + [-79.546457, 36.540948], + [-79.54446, 36.540936], + [-79.543086, 36.540938], + [-79.542174, 36.540932], + [-79.531422, 36.540864], + [-79.526728, 36.540837], + [-79.526206, 36.540834], + [-79.526073, 36.540833], + [-79.518379, 36.540786], + [-79.517806, 36.540791], + [-79.517385, 36.540784], + [-79.515621, 36.540773], + [-79.514462, 36.540766], + [-79.51434, 36.540766], + [-79.51097, 36.54079], + [-79.508065, 36.540823], + [-79.507891, 36.540825], + [-79.500503, 36.540919], + [-79.49975, 36.540929], + [-79.497315, 36.540794], + [-79.497251, 36.54079], + [-79.496366, 36.540813], + [-79.495819, 36.540792], + [-79.495756, 36.540789], + [-79.489711, 36.540819], + [-79.48246, 36.540829], + [-79.47845, 36.540844], + [-79.478007, 36.540842], + [-79.476897, 36.540837], + [-79.47576, 36.540835], + [-79.47235, 36.54083], + [-79.472234, 36.54083], + [-79.471214, 36.540829], + [-79.468701, 36.540829], + [-79.466336, 36.54083], + [-79.465835, 36.54083], + [-79.465631, 36.540829], + [-79.465316, 36.540829], + [-79.464976, 36.540835], + [-79.464398, 36.540844], + [-79.462968, 36.540843], + [-79.460121, 36.540841], + [-79.459628, 36.540846], + [-79.458264, 36.540852], + [-79.458015, 36.540857], + [-79.456706, 36.540874], + [-79.456456, 36.540885], + [-79.451916, 36.54108], + [-79.445964, 36.541202], + [-79.44569, 36.541225], + [-79.445679, 36.541225], + [-79.445486, 36.541228], + [-79.445186, 36.541233], + [-79.443129, 36.54126], + [-79.442895, 36.541265], + [-79.440463, 36.541279], + [-79.429848, 36.541345], + [-79.428656, 36.541346], + [-79.425461, 36.541349], + [-79.412223, 36.541364], + [-79.411942, 36.541364], + [-79.410361, 36.541375], + [-79.405945, 36.541404], + [-79.405856, 36.541405], + [-79.405617, 36.541407], + [-79.405378, 36.541408], + [-79.405377, 36.541408], + [-79.400789, 36.541439], + [-79.400767, 36.541439], + [-79.400022, 36.541441], + [-79.40002, 36.541441], + [-79.397532, 36.541453], + [-79.397139, 36.54145], + [-79.390219, 36.541383], + [-79.389316, 36.541375], + [-79.388959, 36.541372], + [-79.388159, 36.541362], + [-79.386617, 36.541353], + [-79.384745, 36.541341], + [-79.374746, 36.541336], + [-79.373247, 36.541429], + [-79.373246, 36.541429], + [-79.372928, 36.541449], + [-79.366514, 36.541426], + [-79.36444, 36.54142], + [-79.362949, 36.541415], + [-79.353156, 36.541389], + [-79.347345, 36.541382], + [-79.347205, 36.541382], + [-79.343287, 36.541375], + [-79.343004, 36.541374], + [-79.342962, 36.541374], + [-79.342825, 36.541373], + [-79.342571, 36.541373], + [-79.342569, 36.541372], + [-79.337478, 36.541361], + [-79.33443, 36.541355], + [-79.326952, 36.541333], + [-79.326604, 36.541333], + [-79.322188, 36.541327], + [-79.316802, 36.54131], + [-79.311201, 36.541292], + [-79.307081, 36.541283], + [-79.29933, 36.541263], + [-79.299323, 36.541262], + [-79.298896, 36.541264], + [-79.295251, 36.541255], + [-79.294106, 36.541253], + [-79.28639, 36.541235], + [-79.283938, 36.541228], + [-79.280223, 36.541217], + [-79.279512, 36.541217], + [-79.278586, 36.541216], + [-79.278044, 36.541216], + [-79.274296, 36.541206], + [-79.273829, 36.541205], + [-79.269296, 36.541193], + [-79.269212, 36.541193], + [-79.26814, 36.541191], + [-79.267992, 36.541191], + [-79.266158, 36.541186], + [-79.26443, 36.541182], + [-79.263085, 36.541179], + [-79.263061, 36.541179], + [-79.262057, 36.541175], + [-79.261806, 36.541175], + [-79.259547, 36.541168], + [-79.252771, 36.541149], + [-79.250513, 36.541143], + [-79.250477, 36.541148], + [-79.249833, 36.541146], + [-79.244964, 36.541224], + [-79.239127, 36.541318], + [-79.237968, 36.541336], + [-79.23481, 36.541386], + [-79.228359, 36.54149], + [-79.218641, 36.541646], + [-79.217857, 36.541647], + [-79.217625, 36.541647], + [-79.216093, 36.541648], + [-79.214326, 36.54165], + [-79.214144, 36.541647], + [-79.214039, 36.541648], + [-79.213933, 36.541649], + [-79.213775, 36.54165], + [-79.213616, 36.541651], + [-79.213008, 36.541651], + [-79.212161, 36.541652], + [-79.209557, 36.541602], + [-79.208689, 36.541578], + [-79.207158, 36.541648], + [-79.207067, 36.541652], + [-79.206979, 36.541656], + [-79.20684, 36.541656], + [-79.198353, 36.541664], + [-79.196447, 36.541666], + [-79.190878, 36.541671], + [-79.190703, 36.541671], + [-79.18907, 36.541675], + [-79.187791, 36.541679], + [-79.187467, 36.541679], + [-79.185185, 36.541682], + [-79.183774, 36.541683], + [-79.180724, 36.541687], + [-79.17964, 36.541688], + [-79.17592, 36.541691], + [-79.171665, 36.541697], + [-79.16459, 36.541704], + [-79.162957, 36.541706], + [-79.161619, 36.541707], + [-79.15537, 36.541716], + [-79.154873, 36.541723], + [-79.15462, 36.541716], + [-79.148671, 36.541722], + [-79.146789, 36.541725], + [-79.14165, 36.541731], + [-79.138424, 36.541744], + [-79.138318, 36.541743], + [-79.138095, 36.541745], + [-79.137939, 36.541746], + [-79.137485, 36.541737], + [-79.136125, 36.541711], + [-79.135672, 36.541703], + [-79.133753, 36.54167], + [-79.127999, 36.541572], + [-79.126081, 36.54154], + [-79.125956, 36.541558], + [-79.125636, 36.541605], + [-79.125581, 36.541612], + [-79.125457, 36.541631], + [-79.125049, 36.541599], + [-79.124739, 36.541575], + [-79.122326, 36.541612], + [-79.117441, 36.541645], + [-79.117287, 36.541646], + [-79.104439, 36.541646], + [-79.100165, 36.541694], + [-79.098674, 36.541711], + [-79.095056, 36.541752], + [-79.091119, 36.541797], + [-79.089463, 36.541816], + [-79.08684, 36.541846], + [-79.085282, 36.541865], + [-79.079645, 36.54193], + [-79.070099, 36.542041], + [-79.069492, 36.542046], + [-79.069299, 36.542046], + [-79.066316, 36.542047], + [-79.062121, 36.542046], + [-79.055896, 36.542043], + [-79.048238, 36.542044], + [-79.044358, 36.542046], + [-79.020638, 36.542046], + [-79.017333, 36.542061], + [-79.017333, 36.542062], + [-79.014759, 36.542075], + [-79.013926, 36.542077], + [-79.013924, 36.542077], + [-79.006392, 36.542097], + [-79.00639, 36.542097], + [-78.999736, 36.542114], + [-78.994928, 36.542111], + [-78.994598, 36.542112], + [-78.993609, 36.542117], + [-78.99328, 36.542119], + [-78.992673, 36.542118], + [-78.990245, 36.542118], + [-78.983569, 36.542114], + [-78.979197, 36.542111], + [-78.973923, 36.542125], + [-78.971817, 36.54213], + [-78.971569, 36.542136], + [-78.970827, 36.542154], + [-78.97058, 36.542161], + [-78.964608, 36.542145], + [-78.964534, 36.542145], + [-78.964402, 36.542144], + [-78.964109, 36.542143], + [-78.963428, 36.542141], + [-78.963354, 36.542138], + [-78.962111, 36.542083], + [-78.961729, 36.542086], + [-78.961653, 36.542086], + [-78.961578, 36.542088], + [-78.961432, 36.542088], + [-78.954942, 36.54213], + [-78.954675, 36.542129], + [-78.949406, 36.54211], + [-78.949331, 36.542109], + [-78.94915, 36.542109], + [-78.946198, 36.542099], + [-78.942363, 36.542085], + [-78.942259, 36.542086], + [-78.942011, 36.542121], + [-78.942007, 36.54212], + [-78.941791, 36.542119], + [-78.9416, 36.542116], + [-78.941572, 36.542117], + [-78.941516, 36.542111], + [-78.941503, 36.542116], + [-78.941503, 36.542117], + [-78.941261, 36.542117], + [-78.939691, 36.54211], + [-78.939207, 36.542108], + [-78.937394, 36.542101], + [-78.933673, 36.542087], + [-78.933481, 36.542085], + [-78.930676, 36.542072], + [-78.927944, 36.542063], + [-78.92729, 36.54206], + [-78.92533, 36.542054], + [-78.924677, 36.542052], + [-78.920214, 36.542036], + [-78.917052, 36.542024], + [-78.916354, 36.542022], + [-78.916078, 36.54201], + [-78.914283, 36.54202], + [-78.914184, 36.541981], + [-78.913149, 36.541984], + [-78.91303, 36.541985], + [-78.902773, 36.542002], + [-78.901703, 36.542], + [-78.901417, 36.541999], + [-78.893589, 36.542027], + [-78.888366, 36.542035], + [-78.888126, 36.542035], + [-78.880725, 36.542049], + [-78.874759, 36.542034], + [-78.871776, 36.542079], + [-78.866187, 36.542081], + [-78.856253, 36.542089], + [-78.848272, 36.542095], + [-78.847967, 36.542095], + [-78.845652, 36.542097], + [-78.83535, 36.54204], + [-78.835247, 36.542039], + [-78.834453, 36.542034], + [-78.832071, 36.542021], + [-78.83176, 36.54202], + [-78.831278, 36.542003], + [-78.83085, 36.541987], + [-78.829566, 36.541941], + [-78.829138, 36.541926], + [-78.828627, 36.541928], + [-78.827094, 36.541935], + [-78.826584, 36.541938], + [-78.826502, 36.541938], + [-78.821312, 36.541964], + [-78.82067, 36.541972], + [-78.820628, 36.541973], + [-78.818708, 36.541876], + [-78.818578, 36.541877], + [-78.81227, 36.541899], + [-78.808823, 36.541912], + [-78.808822, 36.541912], + [-78.807651, 36.541916], + [-78.801679, 36.541876], + [-78.801272, 36.541865], + [-78.796363, 36.54172], + [-78.796303, 36.54172], + [-78.794741, 36.54173], + [-78.794054, 36.541734], + [-78.787308, 36.541776], + [-78.786695, 36.54178], + [-78.78506, 36.541761], + [-78.77899, 36.541693], + [-78.7776, 36.541681], + [-78.775871, 36.541669], + [-78.77461, 36.541675], + [-78.773556, 36.541681], + [-78.772706, 36.541685], + [-78.770156, 36.541698], + [-78.769307, 36.541703], + [-78.768868, 36.541705], + [-78.76755, 36.541712], + [-78.767112, 36.541715], + [-78.767057, 36.541715], + [-78.767044, 36.541716], + [-78.766677, 36.541718], + [-78.766282, 36.54176], + [-78.765424, 36.541724], + [-78.765149, 36.541739], + [-78.764377, 36.541753], + [-78.762492, 36.541787], + [-78.762262, 36.541781], + [-78.761935, 36.541776], + [-78.760702, 36.541782], + [-78.758389, 36.541856], + [-78.758076, 36.541721], + [-78.754522, 36.541766], + [-78.753319, 36.541781], + [-78.749713, 36.541828], + [-78.749658, 36.541829], + [-78.748512, 36.541882], + [-78.747927, 36.541892], + [-78.746172, 36.541921], + [-78.745588, 36.541932], + [-78.74329, 36.541971], + [-78.743103, 36.541974], + [-78.742739, 36.541982], + [-78.742554, 36.541982], + [-78.742338, 36.541983], + [-78.742142, 36.54198], + [-78.740359, 36.54195], + [-78.739415, 36.541935], + [-78.734125, 36.541954], + [-78.732176, 36.541962], + [-78.724347, 36.542031], + [-78.724155, 36.542033], + [-78.709783, 36.542047], + [-78.704179, 36.542054], + [-78.704067, 36.542054], + [-78.703884, 36.541999], + [-78.703792, 36.541972], + [-78.695336, 36.54206], + [-78.69497, 36.542064], + [-78.694397, 36.54207], + [-78.692949, 36.542069], + [-78.691269, 36.542068], + [-78.687731, 36.542067], + [-78.685614, 36.542066], + [-78.685438, 36.542072], + [-78.683916, 36.542126], + [-78.682891, 36.542047], + [-78.682833, 36.542043], + [-78.682098, 36.542075], + [-78.681427, 36.542105], + [-78.67834, 36.542127], + [-78.675028, 36.542134], + [-78.674573, 36.542119], + [-78.672471, 36.542085], + [-78.671268, 36.542067], + [-78.671268, 36.542079], + [-78.670978, 36.542092], + [-78.670367, 36.542108], + [-78.669305, 36.542119], + [-78.668954, 36.542129], + [-78.667912, 36.542138], + [-78.66713, 36.542151], + [-78.666618, 36.542152], + [-78.665184, 36.542142], + [-78.664832, 36.542128], + [-78.664497, 36.54212], + [-78.66414, 36.542098], + [-78.663945, 36.54208], + [-78.663609, 36.54205], + [-78.663302, 36.542022], + [-78.661833, 36.542022], + [-78.660143, 36.54199], + [-78.655751, 36.541893], + [-78.65487, 36.541873], + [-78.649654, 36.541758], + [-78.637476, 36.541488], + [-78.637255, 36.541483], + [-78.637024, 36.541483], + [-78.632383, 36.541484], + [-78.626011, 36.541382], + [-78.624727, 36.541361], + [-78.620977, 36.5413], + [-78.620775, 36.541299], + [-78.618648, 36.541295], + [-78.611326, 36.541278], + [-78.609083, 36.541273], + [-78.607201, 36.541269], + [-78.605345, 36.541102], + [-78.605307, 36.541098], + [-78.596214, 36.541207], + [-78.59605, 36.54121], + [-78.595153, 36.541221], + [-78.594388, 36.541221], + [-78.592156, 36.541218], + [-78.591313, 36.541225], + [-78.585953, 36.541213], + [-78.585118, 36.541211], + [-78.584334, 36.541209], + [-78.578412, 36.541192], + [-78.578235, 36.541192], + [-78.575406, 36.541184], + [-78.575086, 36.541184], + [-78.57492, 36.541183], + [-78.574752, 36.541183], + [-78.572859, 36.541179], + [-78.565797, 36.541174], + [-78.56508, 36.541173], + [-78.564806, 36.541266], + [-78.564643, 36.541265], + [-78.552554, 36.541144], + [-78.539868, 36.541108], + [-78.53918, 36.541098], + [-78.538966, 36.541095], + [-78.537284, 36.541071], + [-78.534928, 36.541038], + [-78.533063, 36.541011], + [-78.532533, 36.541015], + [-78.529601, 36.541017], + [-78.529205, 36.540994], + [-78.52874, 36.540947], + [-78.528709, 36.540947], + [-78.524582, 36.541076], + [-78.516673, 36.540974], + [-78.516614, 36.540973], + [-78.516492, 36.540972], + [-78.515431, 36.54096], + [-78.512766, 36.541051], + [-78.511319, 36.540958], + [-78.511282, 36.540961], + [-78.509967, 36.541072], + [-78.507198, 36.54115], + [-78.504859, 36.541243], + [-78.50344, 36.54131], + [-78.501413, 36.541401], + [-78.501254, 36.541408], + [-78.499723, 36.541477], + [-78.49599, 36.54155], + [-78.493892, 36.541592], + [-78.487707, 36.541769], + [-78.485146, 36.541895], + [-78.482345, 36.542036], + [-78.480873, 36.542107], + [-78.479669, 36.542125], + [-78.477568, 36.542195], + [-78.476752, 36.542201], + [-78.474169, 36.542218], + [-78.473915, 36.542222], + [-78.473909, 36.542225], + [-78.473771, 36.542226], + [-78.471024, 36.542314], + [-78.470794, 36.542323], + [-78.469872, 36.542332], + [-78.46906, 36.54234], + [-78.468716, 36.542343], + [-78.467497, 36.542356], + [-78.464529, 36.542368], + [-78.464403, 36.542372], + [-78.463331, 36.542453], + [-78.463213, 36.542457], + [-78.46303, 36.542463], + [-78.462159, 36.542465], + [-78.461993, 36.542466], + [-78.45969, 36.542472], + [-78.456972, 36.542481], + [-78.456337, 36.542484], + [-78.455933, 36.542486], + [-78.45264, 36.542528], + [-78.449319, 36.542571], + [-78.443888, 36.542642], + [-78.441379, 36.542691], + [-78.441326, 36.542636], + [-78.441277, 36.542607], + [-78.44122, 36.54259], + [-78.441045, 36.542591], + [-78.439789, 36.542647], + [-78.439512, 36.542657], + [-78.438886, 36.542636], + [-78.438136, 36.542636], + [-78.436828, 36.542651], + [-78.436662, 36.542636], + [-78.43663, 36.542641], + [-78.436608, 36.542655], + [-78.436532, 36.542747], + [-78.435084, 36.54273], + [-78.429267, 36.542782], + [-78.428525, 36.542792], + [-78.427807, 36.542802], + [-78.426728, 36.542819], + [-78.417229, 36.542911], + [-78.41722, 36.542911], + [-78.416374, 36.542919], + [-78.410356, 36.542986], + [-78.409828, 36.542981], + [-78.407892, 36.543027], + [-78.406668, 36.543057], + [-78.406179, 36.543053], + [-78.404069, 36.543038], + [-78.403849, 36.543039], + [-78.396345, 36.543104], + [-78.395397, 36.543112], + [-78.388284, 36.543172], + [-78.38828, 36.543172], + [-78.383694, 36.543211], + [-78.383691, 36.543211], + [-78.38304, 36.543217], + [-78.381469, 36.543223], + [-78.379701, 36.543273], + [-78.379402, 36.543278], + [-78.377073, 36.543266], + [-78.375404, 36.543269], + [-78.374721, 36.543342], + [-78.369189, 36.543416], + [-78.369101, 36.543415], + [-78.369092, 36.543414], + [-78.36786, 36.543393], + [-78.367548, 36.543387], + [-78.362927, 36.543433], + [-78.362926, 36.543433], + [-78.361182, 36.54345], + [-78.3608, 36.543454], + [-78.360402, 36.543458], + [-78.358695, 36.543474], + [-78.35857, 36.543475], + [-78.345586, 36.543603], + [-78.323914, 36.543816], + [-78.317962, 36.543875], + [-78.317223, 36.543882], + [-78.313003, 36.543924], + [-78.3103, 36.543951], + [-78.298997, 36.544064], + [-78.297079, 36.544089], + [-78.296893, 36.544091], + [-78.296811, 36.544092], + [-78.29678, 36.544092], + [-78.296695, 36.544093], + [-78.296179, 36.5441], + [-78.296125, 36.544101], + [-78.296036, 36.544102], + [-78.295942, 36.544102], + [-78.292265, 36.544122], + [-78.292245, 36.544122], + [-78.288678, 36.54414], + [-78.288628, 36.54414], + [-78.2886, 36.544141], + [-78.28853, 36.544141], + [-78.287934, 36.544144], + [-78.287901, 36.544144], + [-78.286218, 36.544156], + [-78.284677, 36.544166], + [-78.284668, 36.544166], + [-78.277288, 36.544224], + [-78.273882, 36.544239], + [-78.271554, 36.544258], + [-78.27149, 36.544259], + [-78.271451, 36.544259], + [-78.271444, 36.54426], + [-78.271216, 36.544266], + [-78.270489, 36.544271], + [-78.270332, 36.544273], + [-78.264331, 36.544321], + [-78.264308, 36.544321], + [-78.259816, 36.544359], + [-78.258546, 36.54437], + [-78.258429, 36.544371], + [-78.258302, 36.544372], + [-78.257416, 36.544381], + [-78.257402, 36.54438], + [-78.257385, 36.54438], + [-78.25728, 36.544381], + [-78.25724, 36.544381], + [-78.257232, 36.544382], + [-78.257211, 36.544382], + [-78.251136, 36.544447], + [-78.249796, 36.544466], + [-78.24693, 36.544357], + [-78.246917, 36.544357], + [-78.24669, 36.544348], + [-78.246682, 36.544348], + [-78.245464, 36.544418], + [-78.235824, 36.544377], + [-78.234685, 36.544372], + [-78.225851, 36.544334], + [-78.225664, 36.544333], + [-78.2256, 36.544333], + [-78.225364, 36.544332], + [-78.225271, 36.544332], + [-78.225236, 36.544331], + [-78.225159, 36.544331], + [-78.224779, 36.544329], + [-78.223354, 36.544323], + [-78.21769, 36.544299], + [-78.211825, 36.544273], + [-78.203374, 36.544237], + [-78.201784, 36.54423], + [-78.199189, 36.544219], + [-78.199152, 36.544219], + [-78.19834, 36.544215], + [-78.197257, 36.544211], + [-78.194101, 36.544198], + [-78.188475, 36.544173], + [-78.188376, 36.544173], + [-78.187317, 36.544181], + [-78.187273, 36.544181], + [-78.187168, 36.544182], + [-78.187107, 36.544183], + [-78.187009, 36.544184], + [-78.184866, 36.544202], + [-78.184566, 36.5442], + [-78.184077, 36.544196], + [-78.179289, 36.544165], + [-78.174204, 36.544156], + [-78.170216, 36.544119], + [-78.167386, 36.544092], + [-78.165859, 36.544078], + [-78.16106, 36.543996], + [-78.161029, 36.543996], + [-78.161013, 36.543995], + [-78.160998, 36.543995], + [-78.160826, 36.543992], + [-78.160741, 36.543991], + [-78.160268, 36.543983], + [-78.1601, 36.54398], + [-78.160077, 36.54398], + [-78.159848, 36.543976], + [-78.159751, 36.543974], + [-78.159601, 36.543971], + [-78.158469, 36.543954], + [-78.158208, 36.543951], + [-78.158182, 36.543951], + [-78.157814, 36.543947], + [-78.157536, 36.543944], + [-78.142877, 36.543686], + [-78.141532, 36.543708], + [-78.14152, 36.543708], + [-78.141467, 36.543709], + [-78.138924, 36.543729], + [-78.138222, 36.543735], + [-78.1341, 36.543814], + [-78.133396, 36.543851], + [-78.133325, 36.543854], + [-78.133163, 36.543834], + [-78.132913, 36.543818], + [-78.132629, 36.543844], + [-78.131356, 36.543869], + [-78.130933, 36.543877], + [-78.129681, 36.543903], + [-78.129544, 36.543906], + [-78.128892, 36.543904], + [-78.123307, 36.543827], + [-78.122295, 36.543827], + [-78.118533, 36.54383], + [-78.106755, 36.543878], + [-78.105338, 36.543883], + [-78.096952, 36.543919], + [-78.096726, 36.543919], + [-78.090001, 36.543947], + [-78.088197, 36.543955], + [-78.087192, 36.543959], + [-78.085644, 36.543965], + [-78.085622, 36.543965], + [-78.082642, 36.543977], + [-78.082624, 36.543977], + [-78.082196, 36.543979], + [-78.082155, 36.543979], + [-78.081566, 36.543982], + [-78.078612, 36.543994], + [-78.078588, 36.543994], + [-78.07694, 36.544001], + [-78.076198, 36.544004], + [-78.075365, 36.544007], + [-78.074565, 36.544008], + [-78.074556, 36.544008], + [-78.072499, 36.544019], + [-78.072476, 36.544019], + [-78.071031, 36.544024], + [-78.071021, 36.544024], + [-78.062663, 36.544072], + [-78.062483, 36.544073], + [-78.062411, 36.544073], + [-78.062401, 36.544074], + [-78.062326, 36.544074], + [-78.05952, 36.54409], + [-78.059472, 36.54409], + [-78.059216, 36.544092], + [-78.059201, 36.544092], + [-78.057987, 36.544095], + [-78.0578, 36.544096], + [-78.056091, 36.544102], + [-78.05516, 36.544107], + [-78.05514, 36.544107], + [-78.05399, 36.544133], + [-78.053366, 36.544138], + [-78.053351, 36.544138], + [-78.05333, 36.544139], + [-78.05319, 36.544139], + [-78.046205, 36.544163], + [-78.045376, 36.544166], + [-78.043492, 36.544173], + [-78.043036, 36.544178], + [-78.043, 36.544178], + [-78.04292, 36.544179], + [-78.042787, 36.544181], + [-78.041322, 36.544199], + [-78.041314, 36.544199], + [-78.039451, 36.544195], + [-78.039422, 36.544195], + [-78.039006, 36.544182], + [-78.03894, 36.54418], + [-78.035396, 36.544202], + [-78.035011, 36.544201], + [-78.034583, 36.544199], + [-78.032859, 36.544204], + [-78.03259, 36.544205], + [-78.031827, 36.544207], + [-78.031568, 36.544207], + [-78.030645, 36.544209], + [-78.029013, 36.544213], + [-78.027341, 36.544222], + [-78.02619, 36.544225], + [-78.025157, 36.544228], + [-78.024222, 36.544231], + [-78.024215, 36.544231], + [-78.022212, 36.544241], + [-78.021935, 36.544242], + [-78.02192, 36.544243], + [-78.0218, 36.544243], + [-78.021652, 36.544244], + [-78.014775, 36.54428], + [-78.013332, 36.544284], + [-78.013233, 36.544284], + [-78.01271, 36.544285], + [-78.01204, 36.544286], + [-78.011349, 36.544288], + [-78.009144, 36.544294], + [-78.009137, 36.544294], + [-78.007898, 36.544298], + [-78.007891, 36.544298], + [-77.99972, 36.544402], + [-77.999617, 36.544402], + [-77.995134, 36.544414], + [-77.984345, 36.544444], + [-77.983319, 36.544447], + [-77.982791, 36.544449], + [-77.981049, 36.544472], + [-77.975466, 36.544486], + [-77.970971, 36.544499], + [-77.969423, 36.544453], + [-77.964256, 36.544468], + [-77.964145, 36.544468], + [-77.955778, 36.544497], + [-77.942805, 36.544539], + [-77.942782, 36.544539], + [-77.931654, 36.544577], + [-77.930648, 36.54458], + [-77.930017, 36.544582], + [-77.924077, 36.544602], + [-77.922977, 36.544606], + [-77.922289, 36.544608], + [-77.920009, 36.544615], + [-77.918579, 36.544596], + [-77.916209, 36.544604], + [-77.913975, 36.544612], + [-77.913967, 36.544612], + [-77.907005, 36.544641], + [-77.906925, 36.544641], + [-77.906841, 36.544642], + [-77.906797, 36.544642], + [-77.906342, 36.544644], + [-77.906227, 36.544644], + [-77.905724, 36.544646], + [-77.900744, 36.544666], + [-77.899773, 36.54467], + [-77.897264, 36.544681], + [-77.89331, 36.544697], + [-77.89318, 36.544698], + [-77.893054, 36.544699], + [-77.891467, 36.544705], + [-77.887254, 36.544722], + [-77.886966, 36.544723], + [-77.886775, 36.544725], + [-77.882259, 36.544462], + [-77.882169, 36.544479], + [-77.882048, 36.544502], + [-77.8795, 36.544539], + [-77.878112, 36.54457], + [-77.877581, 36.544577], + [-77.875477, 36.544577], + [-77.875324, 36.544574], + [-77.875289, 36.544573], + [-77.875247, 36.544571], + [-77.874697, 36.544698], + [-77.874417, 36.544732], + [-77.873225, 36.544843], + [-77.871877, 36.544854], + [-77.871197, 36.544859], + [-77.870861, 36.544862], + [-77.870729, 36.544863], + [-77.870342, 36.544866], + [-77.868682, 36.544879], + [-77.86849, 36.544881], + [-77.867985, 36.544885], + [-77.862939, 36.544927], + [-77.862044, 36.54493], + [-77.860908, 36.544934], + [-77.859223, 36.544939], + [-77.858597, 36.544941], + [-77.858594, 36.544941], + [-77.854464, 36.544955], + [-77.852875, 36.54496], + [-77.852314, 36.544962], + [-77.851885, 36.544963], + [-77.850889, 36.544967], + [-77.850806, 36.544967], + [-77.849573, 36.544971], + [-77.847598, 36.544978], + [-77.846915, 36.544982], + [-77.833082, 36.545058], + [-77.832994, 36.545058], + [-77.832834, 36.545059], + [-77.829181, 36.545079], + [-77.828796, 36.545082], + [-77.827828, 36.545088], + [-77.827666, 36.545089], + [-77.819562, 36.545134], + [-77.818356, 36.545141], + [-77.818321, 36.545141], + [-77.815708, 36.545156], + [-77.811175, 36.545181], + [-77.809762, 36.545189], + [-77.802336, 36.54523], + [-77.795646, 36.545267], + [-77.784783, 36.545328], + [-77.784583, 36.545329], + [-77.783021, 36.545338], + [-77.780429, 36.545352], + [-77.776246, 36.545376], + [-77.772718, 36.545396], + [-77.772253, 36.545399], + [-77.767392, 36.545428], + [-77.767119, 36.545429], + [-77.759134, 36.545468], + [-77.757167, 36.545485], + [-77.756436, 36.545489], + [-77.749907, 36.545525], + [-77.749708, 36.545527], + [-77.749301, 36.545514], + [-77.745584, 36.545502], + [-77.738773, 36.54548], + [-77.737777, 36.54547], + [-77.736457, 36.545466], + [-77.736293, 36.545465], + [-77.732291, 36.54545], + [-77.722486, 36.545414], + [-77.719707, 36.545404], + [-77.712319, 36.545377], + [-77.710252, 36.54537], + [-77.705624, 36.545406], + [-77.696915, 36.545387], + [-77.695646, 36.545382], + [-77.694428, 36.54538], + [-77.694377, 36.54538], + [-77.692321, 36.545376], + [-77.689002, 36.545371], + [-77.686204, 36.545363], + [-77.684543, 36.545358], + [-77.680422, 36.545343], + [-77.677091, 36.54534], + [-77.677008, 36.54534], + [-77.676712, 36.545339], + [-77.675345, 36.545336], + [-77.672546, 36.545331], + [-77.672537, 36.545331], + [-77.672412, 36.545327], + [-77.672376, 36.545326], + [-77.663992, 36.545309], + [-77.649291, 36.545275], + [-77.649105, 36.545275], + [-77.646759, 36.545269], + [-77.645868, 36.545268], + [-77.645837, 36.545271], + [-77.645561, 36.545272], + [-77.641696, 36.545251], + [-77.640333, 36.545244], + [-77.624755, 36.545218], + [-77.619402, 36.545119], + [-77.619335, 36.545118], + [-77.619159, 36.545114], + [-77.618157, 36.545104], + [-77.614356, 36.54504], + [-77.612264, 36.545064], + [-77.60976, 36.54512], + [-77.609468, 36.545126], + [-77.6093, 36.54513], + [-77.609221, 36.545132], + [-77.608476, 36.545159], + [-77.608277, 36.545162], + [-77.607893, 36.545169], + [-77.603687, 36.54527], + [-77.601623, 36.54532], + [-77.598416, 36.54532], + [-77.597834, 36.545331], + [-77.597476, 36.545328], + [-77.59087, 36.545287], + [-77.587087, 36.545264], + [-77.576408, 36.545197], + [-77.576374, 36.545197], + [-77.576164, 36.545196], + [-77.576077, 36.545196], + [-77.57482, 36.545189], + [-77.573604, 36.545182], + [-77.570052, 36.545165], + [-77.568841, 36.545164], + [-77.568812, 36.545164], + [-77.559172, 36.54515], + [-77.556518, 36.545148], + [-77.553664, 36.545144], + [-77.548961, 36.545184], + [-77.544099, 36.545189], + [-77.536574, 36.545197], + [-77.533045, 36.5452], + [-77.530342, 36.545203], + [-77.530029, 36.545202], + [-77.528199, 36.545203], + [-77.52759, 36.545202], + [-77.517979, 36.545202], + [-77.510638, 36.545224], + [-77.50973, 36.54522], + [-77.504233, 36.545207], + [-77.499695, 36.545209], + [-77.498711, 36.545036], + [-77.498612, 36.545036], + [-77.497643, 36.545037], + [-77.49008, 36.545029], + [-77.482435, 36.54502], + [-77.479646, 36.544961], + [-77.478443, 36.544956], + [-77.474452, 36.54494], + [-77.466049, 36.544908], + [-77.463313, 36.544902], + [-77.459414, 36.544903], + [-77.458669, 36.544915], + [-77.458236, 36.544921], + [-77.45736, 36.544919], + [-77.449214, 36.544846], + [-77.448012, 36.544845], + [-77.446592, 36.544846], + [-77.431996, 36.544847], + [-77.412507, 36.544792], + [-77.412429, 36.544792], + [-77.401109, 36.54477], + [-77.400888, 36.544768], + [-77.40084, 36.544767], + [-77.400695, 36.544763], + [-77.392126, 36.544735], + [-77.374697, 36.544686], + [-77.372746, 36.544646], + [-77.372353, 36.54465], + [-77.367295, 36.544695], + [-77.341781, 36.544923], + [-77.337356, 36.544971], + [-77.33634, 36.544966], + [-77.331457, 36.544941], + [-77.329578, 36.544932], + [-77.327177, 36.544917], + [-77.325891, 36.544911], + [-77.321931, 36.544911], + [-77.3204, 36.544912], + [-77.319897, 36.54491], + [-77.318888, 36.544914], + [-77.305368, 36.544847], + [-77.300918, 36.544835], + [-77.296877, 36.544822], + [-77.294905, 36.544858], + [-77.28989, 36.544845], + [-77.283788, 36.544833], + [-77.279382, 36.544825], + [-77.26624, 36.54479], + [-77.266196, 36.544792], + [-77.253057, 36.544759], + [-77.252982, 36.544759], + [-77.251797, 36.544756], + [-77.24974, 36.544752], + [-77.24841, 36.544736], + [-77.247877, 36.54473], + [-77.24435, 36.544688], + [-77.236204, 36.544696], + [-77.228605, 36.544658], + [-77.226184, 36.544659], + [-77.22154, 36.544655], + [-77.219835, 36.544654], + [-77.214997, 36.544631], + [-77.212786, 36.544621], + [-77.210206, 36.54461], + [-77.204972, 36.544608], + [-77.20355, 36.54476], + [-77.198605, 36.545289], + [-77.191577, 36.546044], + [-77.191497, 36.546049], + [-77.190111, 36.546177], + [-77.183985, 36.546561], + [-77.182413, 36.546606], + [-77.169662, 36.547322], + [-77.169336, 36.547259], + [-77.16883, 36.547162], + [-77.164502, 36.546337], + [-77.15941, 36.545368], + [-77.152663, 36.544085], + [-77.143984, 36.544055], + [-77.138802, 36.544038], + [-77.136269, 36.544029], + [-77.128672, 36.544005], + [-77.12614, 36.543997], + [-77.125874, 36.543996], + [-77.125079, 36.543993], + [-77.124814, 36.543993], + [-77.124789, 36.543994], + [-77.124713, 36.543996], + [-77.124689, 36.543998], + [-77.124689, 36.544073], + [-77.124454, 36.544081], + [-77.123749, 36.544106], + [-77.123515, 36.544115], + [-77.123384, 36.544114], + [-77.122862, 36.544114], + [-77.12026, 36.544172], + [-77.112458, 36.544348], + [-77.109857, 36.544407], + [-77.108492, 36.544437], + [-77.104399, 36.54453], + [-77.103035, 36.544561], + [-77.10144, 36.544584], + [-77.09891, 36.544621], + [-77.096658, 36.544628], + [-77.095064, 36.544633], + [-77.09146, 36.544623], + [-77.080651, 36.544594], + [-77.077048, 36.544585], + [-77.075489, 36.544584], + [-77.070814, 36.544581], + [-77.069256, 36.544581], + [-77.060875, 36.544511], + [-77.049736, 36.54442], + [-77.035732, 36.544366], + [-77.034646, 36.544362], + [-77.027351, 36.544334], + [-77.021916, 36.544314], + [-77.01979, 36.544305], + [-77.013414, 36.544281], + [-77.011289, 36.544273], + [-77.010468, 36.54427], + [-77.008005, 36.544263], + [-77.007184, 36.544261], + [-77.00656, 36.544253], + [-77.004688, 36.54423], + [-77.00411, 36.544224], + [-77.004065, 36.544223], + [-77.001443, 36.544137], + [-76.999687, 36.544081], + [-76.993576, 36.544066], + [-76.990954, 36.54406], + [-76.98664, 36.544049], + [-76.9737, 36.544017], + [-76.969387, 36.544007], + [-76.969031, 36.544005], + [-76.967964, 36.543999], + [-76.967609, 36.543998], + [-76.966889, 36.543958], + [-76.966173, 36.543983], + [-76.964025, 36.544062], + [-76.96331, 36.544088], + [-76.958451, 36.544062], + [-76.943875, 36.543985], + [-76.939017, 36.54396], + [-76.922735, 36.543886], + [-76.922693, 36.543886], + [-76.921426, 36.543879], + [-76.921246, 36.543878], + [-76.921233, 36.543877], + [-76.920493, 36.543875], + [-76.920113, 36.543872], + [-76.91974, 36.543871], + [-76.919466, 36.54387], + [-76.919115, 36.54386], + [-76.917242, 36.543808], + [-76.916794, 36.543796], + [-76.916618, 36.543802], + [-76.916447, 36.543808], + [-76.916003, 36.543825], + [-76.916125, 36.5439], + [-76.916173, 36.543931], + [-76.9162, 36.543947], + [-76.916375, 36.544091], + [-76.916666, 36.544453], + [-76.917167, 36.545241], + [-76.917319, 36.546054], + [-76.917201, 36.547053], + [-76.917169, 36.547169], + [-76.916974, 36.547867], + [-76.916871, 36.548271], + [-76.916776, 36.54864], + [-76.916767, 36.549059], + [-76.916869, 36.549421], + [-76.917019, 36.550202], + [-76.91699, 36.55075], + [-76.916967, 36.550798], + [-76.916762, 36.551217], + [-76.916529, 36.551455], + [-76.915899, 36.5521], + [-76.915874, 36.5521], + [-76.915564, 36.552096], + [-76.915432, 36.552094], + [-76.911849, 36.55205], + [-76.904118, 36.551956], + [-76.902138, 36.551931], + [-76.898342, 36.551885], + [-76.897935, 36.55188], + [-76.897898, 36.55188], + [-76.89412, 36.551835], + [-76.891854, 36.551807], + [-76.889018, 36.551773], + [-76.886479, 36.551742], + [-76.876674, 36.551625], + [-76.876065, 36.551617], + [-76.874683, 36.551601], + [-76.870958, 36.551446], + [-76.865839, 36.551368], + [-76.862721, 36.551328], + [-76.856008, 36.551242], + [-76.85582, 36.55124], + [-76.850744, 36.551176], + [-76.844715, 36.551099], + [-76.842432, 36.55107], + [-76.839341, 36.551029], + [-76.826139, 36.550871], + [-76.823101, 36.550823], + [-76.821965, 36.550806], + [-76.820062, 36.550782], + [-76.819736, 36.550778], + [-76.816464, 36.550734], + [-76.816296, 36.550732], + [-76.80708, 36.550613], + [-76.802633, 36.550557], + [-76.802153, 36.550559], + [-76.795955, 36.550565], + [-76.795811, 36.550565], + [-76.795073, 36.55057], + [-76.790963, 36.550599], + [-76.781337, 36.550666], + [-76.781297, 36.550666], + [-76.780969, 36.55073], + [-76.780406, 36.550724], + [-76.774077, 36.550655], + [-76.773819, 36.550652], + [-76.766589, 36.550573], + [-76.759111, 36.550491], + [-76.755293, 36.550449], + [-76.755079, 36.550447], + [-76.74968, 36.550388], + [-76.738331, 36.550992], + [-76.736727, 36.550987], + [-76.735517, 36.550985], + [-76.733995, 36.55098], + [-76.732503, 36.550976], + [-76.732292, 36.550975], + [-76.727802, 36.550961], + [-76.727707, 36.550961], + [-76.725889, 36.550956], + [-76.718281, 36.550933], + [-76.715116, 36.550924], + [-76.714816, 36.550923], + [-76.698812, 36.550875], + [-76.69683, 36.550869], + [-76.695024, 36.550864], + [-76.694754, 36.550863], + [-76.694752, 36.550863], + [-76.686784, 36.550854], + [-76.683688, 36.550845], + [-76.683552, 36.550845], + [-76.683266, 36.550844], + [-76.670854, 36.55081], + [-76.670598, 36.550809], + [-76.670443, 36.550809], + [-76.66538, 36.550794], + [-76.659828, 36.550779], + [-76.65942, 36.550778], + [-76.658194, 36.550775], + [-76.658076, 36.550775], + [-76.655561, 36.550768], + [-76.655513, 36.550768], + [-76.651293, 36.550753], + [-76.649912, 36.55075], + [-76.640606, 36.550724], + [-76.634752, 36.550708], + [-76.632866, 36.550703], + [-76.632742, 36.550703], + [-76.632499, 36.550702], + [-76.624628, 36.550679], + [-76.617418, 36.550779], + [-76.617327, 36.550779], + [-76.601998, 36.550752], + [-76.600605, 36.550749], + [-76.575527, 36.550751], + [-76.575498, 36.550751], + [-76.561485, 36.55043], + [-76.561369, 36.550427], + [-76.558074, 36.550351], + [-76.558047, 36.550352], + [-76.550276, 36.550413], + [-76.541601, 36.550482], + [-76.491499, 36.550648], + [-76.467698, 36.550639], + [-76.465277, 36.550638], + [-76.446674, 36.550631], + [-76.44654, 36.550631], + [-76.42643, 36.550623], + [-76.426274, 36.550623], + [-76.408466, 36.550617], + [-76.408282, 36.550617], + [-76.379331, 36.550606], + [-76.379093, 36.550606], + [-76.377762, 36.550605], + [-76.37729, 36.550605], + [-76.376636, 36.550603], + [-76.376438, 36.550603], + [-76.376266, 36.550605], + [-76.350837, 36.550595], + [-76.313227, 36.550581], + [-76.311565, 36.550577], + [-76.309598, 36.550572], + [-76.29297, 36.550558], + [-76.288879, 36.550558], + [-76.288608, 36.550559], + [-76.287063, 36.550558], + [-76.244381, 36.550558], + [-76.233334, 36.550555], + [-76.233222, 36.550555], + [-76.231274, 36.550559], + [-76.229811, 36.550559], + [-76.215128, 36.550557], + [-76.205046, 36.550557], + [-76.202679, 36.550558], + [-76.200475, 36.550559], + [-76.193148, 36.55056], + [-76.192693, 36.55056], + [-76.192555, 36.550559], + [-76.192547, 36.550558], + [-76.19067, 36.550457], + [-76.190622, 36.550454], + [-76.164699, 36.550526], + [-76.152157, 36.550559], + [-76.149257, 36.550559], + [-76.138649, 36.550656], + [-76.138357, 36.550659], + [-76.131156, 36.550559], + [-76.122356, 36.550559], + [-76.116666, 36.550595], + [-76.114474, 36.550618], + [-76.114467, 36.550619], + [-76.114424, 36.550619], + [-76.114315, 36.55062], + [-76.114274, 36.55062], + [-76.113984, 36.550623], + [-76.111752, 36.550639], + [-76.105705, 36.550611], + [-76.105643, 36.550611], + [-76.105636, 36.55061], + [-76.105569, 36.55061], + [-76.10488, 36.550606], + [-76.10167, 36.550592], + [-76.094446, 36.550556], + [-76.090243, 36.550556], + [-76.08201, 36.550555], + [-76.075733, 36.550554], + [-76.075719, 36.550554], + [-76.071593, 36.550555], + [-76.071585, 36.550555], + [-76.059454, 36.550558], + [-76.051538, 36.55056], + [-76.050953, 36.55056], + [-76.046483, 36.550588], + [-76.037997, 36.55064], + [-76.036615, 36.550649], + [-76.034753, 36.55066], + [-76.026752, 36.55056], + [-76.013352, 36.55056], + [-76.010854, 36.550535], + [-76.010182, 36.550528], + [-76.007602, 36.550499], + [-76.007573, 36.550499], + [-76.007429, 36.550498], + [-76.007156, 36.550497], + [-76.007101, 36.550497], + [-76.006752, 36.550491], + [-76.006686, 36.55049], + [-76.006485, 36.550488], + [-76.006329, 36.550486], + [-76.005467, 36.550478], + [-76.00515, 36.550475], + [-76.004012, 36.550468], + [-76.003967, 36.550467], + [-76.003507, 36.55046], + [-75.996951, 36.55046], + [-75.983851, 36.55056], + [-75.96341, 36.550463], + [-75.96285, 36.55046], + [-75.95765, 36.55056], + [-75.95715, 36.55046], + [-75.95695, 36.55046], + [-75.95655, 36.55056], + [-75.952849, 36.55056], + [-75.92804, 36.550755], + [-75.92798, 36.550754], + [-75.922048, 36.550661], + [-75.903447, 36.550661], + [-75.901847, 36.550861], + [-75.901064, 36.550851], + [-75.894838, 36.55077], + [-75.894147, 36.550761], + [-75.893247, 36.550661], + [-75.89201, 36.550756], + [-75.891947, 36.550761], + [-75.867046, 36.550761], + [-75.854461, 36.550929], + [-75.797499, 36.550923], + [-75.800437, 36.562747], + [-75.819827, 36.62516], + [-75.82362, 36.632302], + [-75.82976, 36.644639], + [-75.83404, 36.654579], + [-75.843993, 36.67978], + [-75.849816, 36.690791], + [-75.862121, 36.714058], + [-75.862939, 36.716033], + [-75.870467, 36.734214], + [-75.874649, 36.744312], + [-75.877285, 36.754014], + [-75.878945, 36.760124], + [-75.879182, 36.760997], + [-75.887375, 36.791155], + [-75.901041, 36.841458], + [-75.905265, 36.857005], + [-75.909332, 36.871977], + [-75.914019, 36.889227], + [-75.926852, 36.936464], + [-75.926849, 36.936469], + [-75.928309, 36.938186], + [-75.909493, 36.990715], + [-75.905751, 37.000151], + [-75.889678, 37.054522], + [-75.874653, 37.067568], + [-75.869411, 37.073958], + [-75.854549, 37.079356], + [-75.835633, 37.095013], + [-75.827527, 37.10527], + [-75.824149, 37.110129], + [-75.805909, 37.116068], + [-75.797037, 37.125152], + [-75.781589, 37.137123], + [-75.766051, 37.154939], + [-75.749645, 37.175104], + [-75.744641, 37.182356], + [-75.742833, 37.192914], + [-75.740121, 37.196993], + [-75.729273, 37.216908], + [-75.728369, 37.235624], + [-75.732286, 37.245701], + [-75.727823, 37.250148], + [-75.726987, 37.251477], + [-75.721861, 37.259649], + [-75.718846, 37.264449], + [-75.718394, 37.265174], + [-75.715379, 37.269979], + [-75.715517, 37.275694], + [-75.691848, 37.300166], + [-75.678966, 37.312584], + [-75.656592, 37.323921], + [-75.644388, 37.342277], + [-75.64032, 37.363873], + [-75.643458, 37.372872], + [-75.624647, 37.396959], + [-75.618255, 37.402271], + [-75.604028, 37.422032], + [-75.603961, 37.432598], + [-75.597443, 37.450996], + [-75.596048, 37.453141], + [-75.596046, 37.461195], + [-75.595644, 37.465592], + [-75.592501, 37.470906], + [-75.589112, 37.477865], + [-75.583238, 37.486511], + [-75.579641, 37.494645], + [-75.574653, 37.500143], + [-75.555063, 37.526685], + [-75.553462, 37.527304], + [-75.552878, 37.528016], + [-75.552247, 37.528426], + [-75.551787, 37.528867], + [-75.551075, 37.529547], + [-75.550192, 37.530059], + [-75.548769, 37.531519], + [-75.547719, 37.532234], + [-75.546922, 37.532914], + [-75.545916, 37.533798], + [-75.54491, 37.534681], + [-75.544284, 37.535528], + [-75.543404, 37.536344], + [-75.542482, 37.537126], + [-75.541936, 37.537568], + [-75.54131, 37.538348], + [-75.540808, 37.538958], + [-75.540056, 37.539907], + [-75.53943, 37.54072], + [-75.538345, 37.542143], + [-75.537843, 37.542686], + [-75.537258, 37.543432], + [-75.536633, 37.544447], + [-75.535924, 37.545396], + [-75.535298, 37.546209], + [-75.534591, 37.547427], + [-75.533968, 37.548611], + [-75.533595, 37.549388], + [-75.532971, 37.550471], + [-75.532639, 37.551147], + [-75.532226, 37.552127], + [-75.531771, 37.553174], + [-75.531147, 37.554257], + [-75.530691, 37.555203], + [-75.530319, 37.556014], + [-75.529903, 37.556725], + [-75.5297, 37.557669], + [-75.529328, 37.55848], + [-75.529039, 37.559257], + [-75.528835, 37.56], + [-75.528713, 37.560506], + [-75.528425, 37.561316], + [-75.528347, 37.561956], + [-75.528189, 37.563135], + [-75.528069, 37.563877], + [-75.52795, 37.564619], + [-75.527788, 37.565394], + [-75.527586, 37.566373], + [-75.52734, 37.567183], + [-75.527224, 37.56816], + [-75.527189, 37.568901], + [-75.527027, 37.569643], + [-75.526915, 37.571092], + [-75.526924, 37.572035], + [-75.526931, 37.572775], + [-75.526854, 37.573483], + [-75.526945, 37.574223], + [-75.526952, 37.57493], + [-75.526917, 37.575671], + [-75.527097, 37.576713], + [-75.527063, 37.577555], + [-75.527282, 37.578328], + [-75.527418, 37.579202], + [-75.527469, 37.580111], + [-75.527603, 37.580783], + [-75.52778, 37.581623], + [-75.527998, 37.582295], + [-75.528058, 37.582763], + [-75.528136, 37.583371], + [-75.528447, 37.584884], + [-75.528878, 37.585621], + [-75.529143, 37.586797], + [-75.52932, 37.587537], + [-75.529751, 37.588375], + [-75.530101, 37.589448], + [-75.53075, 37.590925], + [-75.531098, 37.591831], + [-75.531742, 37.592768], + [-75.532044, 37.593406], + [-75.532475, 37.594176], + [-75.532947, 37.594812], + [-75.53325, 37.595449], + [-75.533893, 37.59632], + [-75.534282, 37.597057], + [-75.534711, 37.59766], + [-75.535054, 37.598061], + [-75.535355, 37.598563], + [-75.535742, 37.599133], + [-75.536214, 37.599802], + [-75.536684, 37.600303], + [-75.537325, 37.600837], + [-75.537501, 37.601509], + [-75.538227, 37.602142], + [-75.538734, 37.60266], + [-75.538783, 37.60271], + [-75.539254, 37.603312], + [-75.539896, 37.603947], + [-75.540668, 37.604917], + [-75.541781, 37.606153], + [-75.534649, 37.62514], + [-75.533185, 37.629892], + [-75.532055, 37.630706], + [-75.530884, 37.631721], + [-75.529632, 37.632939], + [-75.528545, 37.633953], + [-75.527713, 37.634933], + [-75.526501, 37.636116], + [-75.525377, 37.637467], + [-75.524174, 37.639289], + [-75.52243, 37.641886], + [-75.520895, 37.644313], + [-75.520235, 37.645661], + [-75.519698, 37.646739], + [-75.518998, 37.648289], + [-75.518462, 37.649434], + [-75.518137, 37.650611], + [-75.517645, 37.651891], + [-75.517197, 37.653338], + [-75.516927, 37.654841], + [-75.516916, 37.654888], + [-75.516266, 37.657038], + [-75.515979, 37.659341], + [-75.515719, 37.660972], + [-75.515616, 37.662988], + [-75.515547, 37.664366], + [-75.515439, 37.666113], + [-75.515579, 37.667322], + [-75.515638, 37.668799], + [-75.515694, 37.67004], + [-75.515964, 37.671546], + [-75.51522, 37.673134], + [-75.514309, 37.674681], + [-75.513691, 37.676234], + [-75.51299, 37.677544], + [-75.512163, 37.679368], + [-75.51088, 37.681863], + [-75.509933, 37.683467], + [-75.509228, 37.685167], + [-75.50816, 37.68741], + [-75.507748, 37.688662], + [-75.50675, 37.689635], + [-75.505497, 37.691405], + [-75.504158, 37.693194], + [-75.50325, 37.694326], + [-75.502208, 37.695987], + [-75.50146, 37.697376], + [-75.500675, 37.69872], + [-75.499647, 37.700739], + [-75.499402, 37.701654], + [-75.498735, 37.703041], + [-75.49832, 37.703677], + [-75.497903, 37.7048], + [-75.497365, 37.70625], + [-75.497118, 37.707053], + [-75.496153, 37.708102], + [-75.495566, 37.708949], + [-75.49515, 37.709861], + [-75.494691, 37.710604], + [-75.494101, 37.711347], + [-75.493603, 37.712156], + [-75.493015, 37.712899], + [-75.492555, 37.713609], + [-75.492094, 37.714251], + [-75.491594, 37.715264], + [-75.490925, 37.716278], + [-75.490341, 37.71746], + [-75.489883, 37.718338], + [-75.489425, 37.71935], + [-75.48897, 37.720599], + [-75.488596, 37.721476], + [-75.48814, 37.722451], + [-75.487851, 37.723467], + [-75.487227, 37.724885], + [-75.486468, 37.725428], + [-75.485963, 37.725902], + [-75.485203, 37.726377], + [-75.484571, 37.72692], + [-75.483813, 37.727563], + [-75.483013, 37.728275], + [-75.482382, 37.728918], + [-75.481625, 37.729696], + [-75.480995, 37.73044], + [-75.480196, 37.73132], + [-75.479061, 37.732505], + [-75.478346, 37.733249], + [-75.477928, 37.733992], + [-75.477552, 37.734634], + [-75.477049, 37.735378], + [-75.476376, 37.736055], + [-75.475956, 37.736562], + [-75.475623, 37.737305], + [-75.475204, 37.737879], + [-75.474954, 37.738419], + [-75.474409, 37.739197], + [-75.474075, 37.739838], + [-75.473407, 37.741054], + [-75.473073, 37.74173], + [-75.472867, 37.742371], + [-75.472448, 37.74308], + [-75.472198, 37.743586], + [-75.471908, 37.744464], + [-75.471617, 37.745104], + [-75.471283, 37.745712], + [-75.471118, 37.746218], + [-75.470826, 37.746859], + [-75.470495, 37.747737], + [-75.470347, 37.748196], + [-75.470288, 37.748378], + [-75.470123, 37.748918], + [-75.470114, 37.748929], + [-75.470068, 37.750133], + [-75.469072, 37.752834], + [-75.467281, 37.756282], + [-75.464768, 37.759671], + [-75.46341, 37.763994], + [-75.461669, 37.768259], + [-75.460935, 37.771364], + [-75.444906, 37.789525], + [-75.417075, 37.821058], + [-75.409287, 37.820927], + [-75.40501, 37.81854], + [-75.399288, 37.815733], + [-75.39369, 37.813524], + [-75.386953, 37.811732], + [-75.380176, 37.810412], + [-75.374645, 37.810328], + [-75.366859, 37.809797], + [-75.360127, 37.810194], + [-75.34947, 37.81199], + [-75.337981, 37.81524], + [-75.327912, 37.820677], + [-75.320966, 37.824987], + [-75.312211, 37.83062], + [-75.303134, 37.838177], + [-75.296083, 37.845678], + [-75.296006, 37.84576], + [-75.291242, 37.852627], + [-75.288071, 37.857632], + [-75.285058, 37.86159], + [-75.281624, 37.865853], + [-75.278737, 37.869676], + [-75.274983, 37.875132], + [-75.270446, 37.88261], + [-75.265918, 37.891134], + [-75.263058, 37.897096], + [-75.259193, 37.90434], + [-75.256814, 37.907879], + [-75.25306, 37.913744], + [-75.249638, 37.918636], + [-75.24176, 37.93154], + [-75.238075, 37.935398], + [-75.188005, 38.000129], + [-75.17708, 38.013428], + [-75.166437, 38.027842], + [-75.168351, 38.027942], + [-75.223764, 38.027358], + [-75.240399, 38.027071], + [-75.242125, 38.027042], + [-75.24244, 38.027037], + [-75.242463, 38.027036], + [-75.242471, 38.027036], + [-75.249611, 38.026723], + [-75.250374, 38.026659], + [-75.250406, 38.026656], + [-75.250744, 38.02663], + [-75.251113, 38.0266], + [-75.252028, 38.026526], + [-75.252104, 38.02652], + [-75.252137, 38.026517], + [-75.252144, 38.026516], + [-75.252166, 38.026514], + [-75.252181, 38.026513], + [-75.252713, 38.026469], + [-75.254405, 38.026334], + [-75.254592, 38.026319], + [-75.254712, 38.026309], + [-75.255047, 38.026282], + [-75.255236, 38.026267], + [-75.255268, 38.026265], + [-75.255278, 38.026264], + [-75.255304, 38.026262], + [-75.255913, 38.026214], + [-75.256073, 38.0262], + [-75.25608, 38.026199], + [-75.256097, 38.026198], + [-75.256879, 38.026098], + [-75.260654, 38.02577], + [-75.260663, 38.025769], + [-75.26069, 38.025767], + [-75.262024, 38.025664], + [-75.262108, 38.025657], + [-75.262484, 38.025624], + [-75.262704, 38.025605], + [-75.263327, 38.02555], + [-75.263364, 38.025547], + [-75.263409, 38.025543], + [-75.263431, 38.025541], + [-75.263446, 38.025539], + [-75.263456, 38.025538], + [-75.263506, 38.025534], + [-75.263799, 38.025508], + [-75.263848, 38.025504], + [-75.267209, 38.025214], + [-75.270619, 38.024921], + [-75.270715, 38.024913], + [-75.270952, 38.02489], + [-75.271019, 38.024884], + [-75.27269, 38.024742], + [-75.274362, 38.0246], + [-75.283357, 38.02378], + [-75.321184, 38.020346], + [-75.323159, 38.020163], + [-75.325364, 38.019965], + [-75.374643, 38.015467], + [-75.375127, 38.015422], + [-75.377092, 38.015244], + [-75.377175, 38.015236], + [-75.377217, 38.015232], + [-75.377325, 38.015222], + [-75.377855, 38.015173], + [-75.378552, 38.015103], + [-75.378563, 38.015102], + [-75.378594, 38.015099], + [-75.378712, 38.015087], + [-75.379732, 38.014984], + [-75.379832, 38.014974], + [-75.380216, 38.014944], + [-75.380564, 38.014916], + [-75.380757, 38.014899], + [-75.381038, 38.014874], + [-75.38132, 38.014849], + [-75.381576, 38.014827], + [-75.381641, 38.014822], + [-75.381662, 38.01482], + [-75.381696, 38.014817], + [-75.381716, 38.014815], + [-75.381748, 38.014812], + [-75.382014, 38.014788], + [-75.382281, 38.014765], + [-75.382334, 38.01476], + [-75.382364, 38.014757], + [-75.382616, 38.014736], + [-75.382744, 38.014725], + [-75.382871, 38.014714], + [-75.383248, 38.014681], + [-75.383626, 38.014648], + [-75.386134, 38.014431], + [-75.386205, 38.014425], + [-75.38622, 38.014424], + [-75.386292, 38.014418], + [-75.386312, 38.014416], + [-75.388498, 38.01422], + [-75.389902, 38.014083], + [-75.392503, 38.013839], + [-75.393624, 38.013785], + [-75.393838, 38.013751], + [-75.394174, 38.013701], + [-75.396059, 38.013533], + [-75.396714, 38.013476], + [-75.396981, 38.013446], + [-75.397766, 38.013071], + [-75.39788, 38.013109], + [-75.397938, 38.013128], + [-75.398014, 38.013149], + [-75.398142, 38.013184], + [-75.398152, 38.013187], + [-75.398222, 38.013201], + [-75.398316, 38.01322], + [-75.398389, 38.013235], + [-75.39846, 38.013261], + [-75.3985, 38.013266], + [-75.39863, 38.013263], + [-75.398996, 38.013251], + [-75.399399, 38.013228], + [-75.399896, 38.013194], + [-75.400369, 38.013163], + [-75.400873, 38.013121], + [-75.401391, 38.013083], + [-75.401917, 38.013045], + [-75.402443, 38.013003], + [-75.402986, 38.012961], + [-75.403528, 38.012919], + [-75.404069, 38.012881], + [-75.404619, 38.012839], + [-75.405145, 38.01279], + [-75.405656, 38.012748], + [-75.406084, 38.012709], + [-75.406609, 38.012675], + [-75.410088, 38.012385], + [-75.410852, 38.01232], + [-75.411303, 38.01228], + [-75.411497, 38.012263], + [-75.415308, 38.011952], + [-75.41649, 38.011855], + [-75.419626, 38.011592], + [-75.41989, 38.011569], + [-75.419947, 38.011565], + [-75.422059, 38.011398], + [-75.422546, 38.011355], + [-75.425457, 38.011103], + [-75.42569, 38.011084], + [-75.426332, 38.011031], + [-75.426965, 38.010989], + [-75.42753, 38.010947], + [-75.42769, 38.010936], + [-75.428018, 38.010897], + [-75.428621, 38.010848], + [-75.428734, 38.010844], + [-75.428803, 38.010855], + [-75.428873, 38.010878], + [-75.428887, 38.010897], + [-75.429078, 38.010897], + [-75.429414, 38.010878], + [-75.430055, 38.01084], + [-75.430696, 38.010806], + [-75.431932, 38.010699], + [-75.43255, 38.010646], + [-75.433739, 38.010543], + [-75.434312, 38.010493], + [-75.434869, 38.010447], + [-75.435402, 38.010398], + [-75.435655, 38.010382], + [-75.435799, 38.010375], + [-75.43596, 38.010375], + [-75.436283, 38.0103], + [-75.43667, 38.010214], + [-75.438234, 38.010096], + [-75.438304, 38.010094], + [-75.438722, 38.010077], + [-75.439329, 38.010032], + [-75.440385, 38.009974], + [-75.442026, 38.009883], + [-75.448681, 38.009337], + [-75.448846, 38.009323], + [-75.448864, 38.009322], + [-75.448982, 38.009312], + [-75.449043, 38.009307], + [-75.449052, 38.009307], + [-75.449063, 38.009306], + [-75.449086, 38.009304], + [-75.449119, 38.009301], + [-75.449365, 38.009281], + [-75.44941, 38.009277], + [-75.457642, 38.008614], + [-75.45965, 38.008437], + [-75.461328, 38.008284], + [-75.462282, 38.008204], + [-75.467339, 38.007754], + [-75.468117, 38.007705], + [-75.46982, 38.007586], + [-75.474084, 38.007201], + [-75.479571, 38.006724], + [-75.482988, 38.006427], + [-75.486229, 38.00611], + [-75.488149, 38.005944], + [-75.488663, 38.0059], + [-75.490121, 38.00579], + [-75.493057, 38.005549], + [-75.495645, 38.005336], + [-75.499506, 38.005034], + [-75.499972, 38.004993], + [-75.502762, 38.004748], + [-75.502772, 38.004747], + [-75.502785, 38.004746], + [-75.504404, 38.004607], + [-75.508595, 38.004237], + [-75.508638, 38.004233], + [-75.509403, 38.00417], + [-75.510088, 38.004113], + [-75.51014, 38.004109], + [-75.510153, 38.004107], + [-75.510166, 38.004106], + [-75.510313, 38.004094], + [-75.515494, 38.003662], + [-75.517401, 38.003505], + [-75.519403, 38.003341], + [-75.522014, 38.003121], + [-75.524042, 38.002951], + [-75.530298, 38.002421], + [-75.530321, 38.002419], + [-75.530521, 38.002402], + [-75.530698, 38.002385], + [-75.530712, 38.002384], + [-75.530727, 38.002383], + [-75.530766, 38.002379], + [-75.535869, 38.001801], + [-75.538302, 38.001526], + [-75.538915, 38.001457], + [-75.539944, 38.001345], + [-75.540001, 38.001344], + [-75.540084, 38.001347], + [-75.541741, 38.001372], + [-75.541813, 38.00137], + [-75.541939, 38.001366], + [-75.541953, 38.001366], + [-75.543231, 38.001274], + [-75.545061, 38.001143], + [-75.545133, 38.001136], + [-75.548349, 38.000842], + [-75.548399, 38.000838], + [-75.552466, 38.000474], + [-75.552473, 38.000473], + [-75.552496, 38.000471], + [-75.552762, 38.000447], + [-75.556316, 38.000129], + [-75.556881, 38.000097], + [-75.556888, 38.000097], + [-75.556903, 38.000096], + [-75.556956, 38.000093], + [-75.557024, 38.000089], + [-75.557312, 38.000073], + [-75.559549, 37.999945], + [-75.563263, 37.999601], + [-75.56327, 37.9996], + [-75.563281, 37.999599], + [-75.563313, 37.999596], + [-75.563453, 37.999583], + [-75.563522, 37.999577], + [-75.563852, 37.999547], + [-75.564053, 37.999528], + [-75.564152, 37.999519], + [-75.564171, 37.999517], + [-75.564223, 37.999513], + [-75.564274, 37.999508], + [-75.565099, 37.999433], + [-75.566362, 37.999316], + [-75.566957, 37.999266], + [-75.567705, 37.999194], + [-75.567783, 37.999186], + [-75.56793, 37.999172], + [-75.568069, 37.999158], + [-75.568188, 37.999146], + [-75.568234, 37.999141], + [-75.568308, 37.999134], + [-75.568315, 37.999133], + [-75.568339, 37.999131], + [-75.568352, 37.99913], + [-75.568365, 37.999128], + [-75.568643, 37.999102], + [-75.570361, 37.998971], + [-75.57058, 37.998954], + [-75.572015, 37.998858], + [-75.575109, 37.998594], + [-75.58133, 37.998011], + [-75.581385, 37.998006], + [-75.581663, 37.997983], + [-75.581805, 37.997971], + [-75.58198, 37.997957], + [-75.582695, 37.997899], + [-75.582709, 37.997898], + [-75.586366, 37.997584], + [-75.588387, 37.997413], + [-75.594582, 37.996878], + [-75.596132, 37.996753], + [-75.597314, 37.996653], + [-75.597621, 37.996625], + [-75.598745, 37.996524], + [-75.598753, 37.996523], + [-75.598764, 37.996522], + [-75.598772, 37.996522], + [-75.598826, 37.996518], + [-75.5989, 37.996512], + [-75.598921, 37.99651], + [-75.598979, 37.996505], + [-75.599027, 37.996501], + [-75.599036, 37.9965], + [-75.599049, 37.996499], + [-75.599226, 37.996486], + [-75.599443, 37.996476], + [-75.599491, 37.996474], + [-75.599501, 37.996474], + [-75.59954, 37.996472], + [-75.599659, 37.996463], + [-75.599684, 37.996461], + [-75.599691, 37.99646], + [-75.599705, 37.996459], + [-75.599722, 37.996458], + [-75.599737, 37.996457], + [-75.599778, 37.996454], + [-75.599882, 37.996446], + [-75.599985, 37.996439], + [-75.600038, 37.996435], + [-75.600438, 37.996405], + [-75.600452, 37.996404], + [-75.600453, 37.996404], + [-75.600508, 37.996401], + [-75.600517, 37.996401], + [-75.600532, 37.9964], + [-75.600544, 37.996399], + [-75.600608, 37.996395], + [-75.600693, 37.996385], + [-75.600768, 37.996376], + [-75.600795, 37.996373], + [-75.600808, 37.996371], + [-75.600817, 37.99637], + [-75.600842, 37.996367], + [-75.600843, 37.996367], + [-75.600903, 37.99636], + [-75.600922, 37.996358], + [-75.600937, 37.996356], + [-75.600976, 37.996353], + [-75.601223, 37.996326], + [-75.601354, 37.996312], + [-75.601448, 37.996302], + [-75.601532, 37.996293], + [-75.60159, 37.996287], + [-75.601653, 37.99628], + [-75.601665, 37.996279], + [-75.601679, 37.996277], + [-75.602069, 37.996234], + [-75.602183, 37.996223], + [-75.602226, 37.996219], + [-75.602247, 37.996217], + [-75.602264, 37.996216], + [-75.602275, 37.996215], + [-75.602899, 37.996156], + [-75.604679, 37.995988], + [-75.609758, 37.99551], + [-75.609872, 37.995499], + [-75.611603, 37.995406], + [-75.611698, 37.995399], + [-75.611708, 37.995398], + [-75.611721, 37.995397], + [-75.611803, 37.995391], + [-75.612579, 37.995351], + [-75.612651, 37.995348], + [-75.612751, 37.995342], + [-75.612825, 37.995337], + [-75.612946, 37.99533], + [-75.614066, 37.995263], + [-75.614416, 37.995226], + [-75.614507, 37.995217], + [-75.614524, 37.995215], + [-75.614628, 37.995204], + [-75.615448, 37.995117], + [-75.616292, 37.995035], + [-75.616396, 37.995025], + [-75.620653, 37.994593], + [-75.621346, 37.994532], + [-75.622483, 37.994391], + [-75.623371, 37.994345], + [-75.624305, 37.994221], + [-75.624345, 37.994216], + [-75.624451, 37.994203], + [-75.624495, 37.993829], + [-75.624498, 37.993804], + [-75.624499, 37.993795], + [-75.624501, 37.993774], + [-75.624509, 37.993706], + [-75.624558, 37.993289], + [-75.624565, 37.99323], + [-75.624567, 37.993212], + [-75.624568, 37.993207], + [-75.624571, 37.993183], + [-75.624575, 37.993147], + [-75.624591, 37.993013], + [-75.624622, 37.992749], + [-75.624636, 37.992628], + [-75.62465, 37.992508], + [-75.624724, 37.99208], + [-75.624797, 37.991653], + [-75.62483, 37.991458], + [-75.625086, 37.990585], + [-75.625613, 37.989806], + [-75.626204, 37.989293], + [-75.626657, 37.9889], + [-75.627609, 37.988527], + [-75.62935, 37.988362], + [-75.63087, 37.987824], + [-75.631277, 37.987549], + [-75.631494, 37.987402], + [-75.631565, 37.987354], + [-75.631612, 37.987322], + [-75.631649, 37.987297], + [-75.631662, 37.987289], + [-75.631669, 37.987284], + [-75.631712, 37.987255], + [-75.632534, 37.986699], + [-75.633414, 37.985436], + [-75.633834, 37.984525], + [-75.633981, 37.983561], + [-75.633714, 37.983063], + [-75.632596, 37.98174], + [-75.631435, 37.980505], + [-75.630163, 37.979248], + [-75.629956, 37.979044], + [-75.629095, 37.978252], + [-75.628855, 37.977803], + [-75.628841, 37.976795], + [-75.629534, 37.975971], + [-75.630044, 37.975805], + [-75.630298, 37.975722], + [-75.630501, 37.975708], + [-75.630993, 37.975673], + [-75.631408, 37.97577], + [-75.631433, 37.97578], + [-75.63156, 37.975833], + [-75.631671, 37.975881], + [-75.63201, 37.976026], + [-75.632777, 37.976591], + [-75.633532, 37.977165], + [-75.634211, 37.977678], + [-75.634357, 37.977921], + [-75.634475, 37.978119], + [-75.634789, 37.978645], + [-75.634953, 37.978817], + [-75.634997, 37.978863], + [-75.635007, 37.978874], + [-75.635064, 37.978934], + [-75.635092, 37.978964], + [-75.635163, 37.979039], + [-75.635264, 37.979146], + [-75.635487, 37.979382], + [-75.635658, 37.979491], + [-75.635676, 37.979503], + [-75.63569, 37.979512], + [-75.635737, 37.979542], + [-75.63628, 37.979641], + [-75.636308, 37.979645], + [-75.636679, 37.979693], + [-75.637321, 37.979731], + [-75.637734, 37.979576], + [-75.638224, 37.979403], + [-75.63852, 37.979216], + [-75.639304, 37.978723], + [-75.640136, 37.977951], + [-75.640916, 37.977243], + [-75.640921, 37.977236], + [-75.641355, 37.976628], + [-75.641818, 37.975982], + [-75.642583, 37.974669], + [-75.642608, 37.974626], + [-75.642624, 37.974598], + [-75.642636, 37.974578], + [-75.642641, 37.97457], + [-75.642654, 37.974548], + [-75.642835, 37.974237], + [-75.642993, 37.973733], + [-75.64303, 37.973614], + [-75.643119, 37.97333], + [-75.643741, 37.971345], + [-75.644257, 37.970528], + [-75.644727, 37.969783], + [-75.645844, 37.968691], + [-75.646262, 37.968378], + [-75.646351, 37.968311], + [-75.646393, 37.96828], + [-75.646398, 37.968276], + [-75.646404, 37.968272], + [-75.64667, 37.968073], + [-75.647042, 37.967794], + [-75.647418, 37.967473], + [-75.64823, 37.966779], + [-75.648199, 37.96665], + [-75.648184, 37.966589], + [-75.648165, 37.966512], + [-75.648161, 37.966494], + [-75.648147, 37.96538], + [-75.64814, 37.964843], + [-75.648138, 37.964706], + [-75.648138, 37.964679], + [-75.648137, 37.964626], + [-75.648137, 37.964594], + [-75.648136, 37.964582], + [-75.648135, 37.964472], + [-75.648105, 37.962229], + [-75.64809, 37.961836], + [-75.647932, 37.957676], + [-75.647927, 37.957542], + [-75.647924, 37.957474], + [-75.647924, 37.957467], + [-75.647922, 37.957429], + [-75.647771, 37.953583], + [-75.647766, 37.953205], + [-75.647766, 37.953168], + [-75.647765, 37.95313], + [-75.647764, 37.953093], + [-75.647763, 37.953055], + [-75.6477, 37.950615], + [-75.647608, 37.947033], + [-75.647702, 37.946971], + [-75.648216, 37.94687], + [-75.652171, 37.946099], + [-75.655066, 37.945517], + [-75.655683, 37.945441], + [-75.657029, 37.946043], + [-75.658697, 37.94674], + [-75.659789, 37.947195], + [-75.661334, 37.947838], + [-75.662956, 37.948421], + [-75.665013, 37.949393], + [-75.665225, 37.949484], + [-75.665277, 37.949506], + [-75.665288, 37.949511], + [-75.6653, 37.949514], + [-75.667807, 37.950099], + [-75.669832, 37.950572], + [-75.670451, 37.950715], + [-75.673062, 37.951348], + [-75.677391, 37.952329], + [-75.6823, 37.95351], + [-75.683449, 37.953777], + [-75.686978, 37.954533], + [-75.690353, 37.955241], + [-75.691323, 37.955504], + [-75.693164, 37.95539], + [-75.695648, 37.955265], + [-75.699002, 37.955046], + [-75.701199, 37.95494], + [-75.703797, 37.954801], + [-75.704636, 37.954706], + [-75.705871, 37.954401], + [-75.709945, 37.953471], + [-75.71444, 37.952421], + [-75.717116, 37.951736], + [-75.721839, 37.950578], + [-75.727641, 37.949224], + [-75.735386, 37.947378], + [-75.739911, 37.946327], + [-75.742295, 37.945829], + [-75.742502, 37.945781], + [-75.749654, 37.944134], + [-75.761644, 37.941374], + [-75.783965, 37.924918], + [-75.801211, 37.912199], + [-75.801242, 37.912182], + [-75.813909, 37.912047], + [-75.874656, 37.911405], + [-75.882941, 37.911343], + [-75.895913, 37.910505], + [-75.902678, 37.910068], + [-75.927355, 37.908473], + [-75.952674, 37.906835], + [-75.943695, 37.946141], + [-75.983274, 37.952004], + [-75.987982, 37.952701], + [-75.99334, 37.953495], + [-75.994742, 37.953468], + [-75.994743, 37.953468], + [-75.995211, 37.953459], + [-75.996881, 37.953493], + [-75.999284, 37.953471], + [-75.999658, 37.95353], + [-76.001011, 37.953546], + [-76.001267, 37.953555], + [-76.001445, 37.953561], + [-76.001634, 37.953567], + [-76.001837, 37.953573], + [-76.002965, 37.953611], + [-76.003511, 37.95361], + [-76.00581, 37.953607], + [-76.005874, 37.953607], + [-76.00876, 37.953647], + [-76.0116, 37.953628], + [-76.011731, 37.953628], + [-76.017564, 37.953625], + [-76.020836, 37.953813], + [-76.020804, 37.953648], + [-76.020774, 37.953563], + [-76.020776, 37.953498], + [-76.020843, 37.953478], + [-76.020988, 37.9535], + [-76.021204, 37.953551], + [-76.021433, 37.953569], + [-76.021708, 37.953563], + [-76.022113, 37.953575], + [-76.022251, 37.953678], + [-76.022313, 37.953818], + [-76.024413, 37.953703], + [-76.025353, 37.953728], + [-76.026681, 37.95372], + [-76.02721, 37.95373], + [-76.028135, 37.95371], + [-76.028634, 37.953743], + [-76.029407, 37.953783], + [-76.029982, 37.953735], + [-76.030123, 37.953661], + [-76.038026, 37.953983], + [-76.039305, 37.953992], + [-76.040462, 37.954], + [-76.041469, 37.954018], + [-76.041553, 37.953934], + [-76.04168, 37.953966], + [-76.041693, 37.954005], + [-76.043285, 37.953869], + [-76.045543, 37.953648], + [-76.050257, 37.953589], + [-76.050719, 37.953588], + [-76.051966, 37.953586], + [-76.052023, 37.953586], + [-76.124663, 37.928716], + [-76.233417, 37.887646], + [-76.235741, 37.886856], + [-76.23646, 37.886613], + [-76.236208, 37.888097], + [-76.236176, 37.888286], + [-76.236143, 37.888476], + [-76.236394, 37.888549], + [-76.236491, 37.888577], + [-76.236731, 37.888647], + [-76.236778, 37.888667], + [-76.236729, 37.888803], + [-76.23673, 37.889179], + [-76.236721, 37.889233], + [-76.236718, 37.889253], + [-76.236713, 37.889287], + [-76.236711, 37.889302], + [-76.236702, 37.889353], + [-76.236691, 37.88942], + [-76.236665, 37.88958], + [-76.23666, 37.889613], + [-76.236635, 37.88977], + [-76.236619, 37.889873], + [-76.236596, 37.890014], + [-76.236574, 37.890154], + [-76.237251, 37.889751], + [-76.237312, 37.889715], + [-76.237416, 37.889746], + [-76.237618, 37.889799], + [-76.238007, 37.889861], + [-76.239399, 37.890182], + [-76.240048, 37.890378], + [-76.240291, 37.890452], + [-76.240654, 37.890586], + [-76.240779, 37.890634], + [-76.242072, 37.891247], + [-76.242268, 37.891327], + [-76.242256, 37.89147], + [-76.242281, 37.891602], + [-76.242287, 37.891635], + [-76.242484, 37.891808], + [-76.24317, 37.892219], + [-76.24328, 37.892248], + [-76.243607, 37.892332], + [-76.243845, 37.892393], + [-76.244062, 37.892484], + [-76.244371, 37.89275], + [-76.244696, 37.892964], + [-76.24496, 37.893139], + [-76.245502, 37.893606], + [-76.246674, 37.894429], + [-76.246799, 37.894477], + [-76.246891, 37.894564], + [-76.247288, 37.894686], + [-76.247618, 37.894908], + [-76.247736, 37.894912], + [-76.247908, 37.894877], + [-76.248564, 37.895518], + [-76.249627, 37.896696], + [-76.24966, 37.896732], + [-76.249659, 37.896946], + [-76.249804, 37.897099], + [-76.251175, 37.898582], + [-76.251216, 37.898627], + [-76.251925, 37.89957], + [-76.252458, 37.900279], + [-76.253351, 37.901033], + [-76.253993, 37.901669], + [-76.25427, 37.902474], + [-76.254405, 37.902676], + [-76.254596, 37.90286], + [-76.254904, 37.90306], + [-76.254937, 37.903075], + [-76.255274, 37.903227], + [-76.255302, 37.903253], + [-76.255422, 37.903362], + [-76.255551, 37.903523], + [-76.255656, 37.903655], + [-76.255762, 37.903787], + [-76.255946, 37.904005], + [-76.25633, 37.904392], + [-76.256497, 37.90456], + [-76.256632, 37.90474], + [-76.257529, 37.905746], + [-76.257628, 37.905828], + [-76.258306, 37.906145], + [-76.258566, 37.906367], + [-76.25873, 37.906556], + [-76.259545, 37.906866], + [-76.260313, 37.907522], + [-76.260673, 37.90783], + [-76.260823, 37.907956], + [-76.261814, 37.908794], + [-76.262117, 37.908798], + [-76.263174, 37.909394], + [-76.263463, 37.909592], + [-76.263783, 37.90981], + [-76.263903, 37.909892], + [-76.264442, 37.91015], + [-76.264778, 37.910339], + [-76.265249, 37.910652], + [-76.265851, 37.911052], + [-76.266193, 37.911241], + [-76.266378, 37.911343], + [-76.267028, 37.911701], + [-76.267874, 37.912168], + [-76.269035, 37.912727], + [-76.269524, 37.912936], + [-76.269635, 37.912957], + [-76.271934, 37.913948], + [-76.272131, 37.914138], + [-76.272243, 37.914187], + [-76.272347, 37.914191], + [-76.272423, 37.914152], + [-76.273148, 37.914402], + [-76.273265, 37.914627], + [-76.273295, 37.914654], + [-76.27334, 37.914686], + [-76.273727, 37.914834], + [-76.273804, 37.914863], + [-76.274008, 37.914941], + [-76.274061, 37.914961], + [-76.275498, 37.915509], + [-76.276769, 37.916011], + [-76.277165, 37.916106], + [-76.278045, 37.916437], + [-76.27856, 37.916558], + [-76.279721, 37.917122], + [-76.280716, 37.917721], + [-76.281031, 37.917849], + [-76.281254, 37.917907], + [-76.28191, 37.918142], + [-76.28441, 37.919137], + [-76.285011, 37.919461], + [-76.285092, 37.919505], + [-76.285285, 37.919609], + [-76.285369, 37.919654], + [-76.286543, 37.920168], + [-76.287544, 37.920696], + [-76.288824, 37.92133], + [-76.28922, 37.9215], + [-76.2896, 37.921662], + [-76.290014, 37.921811], + [-76.290165, 37.921865], + [-76.290434, 37.922075], + [-76.290883, 37.922557], + [-76.292024, 37.923136], + [-76.292955, 37.92358], + [-76.293634, 37.923756], + [-76.294918, 37.924381], + [-76.295101, 37.92447], + [-76.295765, 37.924759], + [-76.295945, 37.924848], + [-76.296494, 37.925122], + [-76.297159, 37.925453], + [-76.29754, 37.925642], + [-76.298661, 37.9262], + [-76.299974, 37.926669], + [-76.300114, 37.926766], + [-76.300102, 37.926783], + [-76.300085, 37.926808], + [-76.300019, 37.926904], + [-76.300138, 37.926958], + [-76.300226, 37.926859], + [-76.300247, 37.926835], + [-76.300498, 37.926899], + [-76.300579, 37.926954], + [-76.300633, 37.926974], + [-76.300707, 37.926946], + [-76.300832, 37.926989], + [-76.301405, 37.92725], + [-76.301755, 37.92741], + [-76.30224, 37.927631], + [-76.302385, 37.927697], + [-76.303036, 37.928041], + [-76.303643, 37.928276], + [-76.304435, 37.928729], + [-76.306092, 37.929463], + [-76.306949, 37.929885], + [-76.307695, 37.930252], + [-76.308954, 37.930871], + [-76.30899, 37.930819], + [-76.309027, 37.930837], + [-76.309618, 37.93112], + [-76.310402, 37.931506], + [-76.310816, 37.93171], + [-76.311086, 37.931844], + [-76.311356, 37.931977], + [-76.31178, 37.932188], + [-76.312203, 37.932399], + [-76.312597, 37.932594], + [-76.312754, 37.932684], + [-76.313265, 37.932974], + [-76.313772, 37.933265], + [-76.314499, 37.933682], + [-76.314965, 37.933921], + [-76.315261, 37.934058], + [-76.315515, 37.934023], + [-76.315804, 37.934173], + [-76.315962, 37.934305], + [-76.316071, 37.934396], + [-76.316186, 37.93445], + [-76.316897, 37.934782], + [-76.317043, 37.934868], + [-76.317436, 37.9351], + [-76.317821, 37.935283], + [-76.31796, 37.935298], + [-76.317997, 37.935287], + [-76.318236, 37.935218], + [-76.318379, 37.935436], + [-76.318423, 37.935475], + [-76.318527, 37.935566], + [-76.321391, 37.937072], + [-76.321493, 37.937126], + [-76.321852, 37.937315], + [-76.322367, 37.937586], + [-76.322883, 37.937858], + [-76.323191, 37.938014], + [-76.323499, 37.938169], + [-76.324395, 37.938659], + [-76.325118, 37.939009], + [-76.3257, 37.939292], + [-76.326033, 37.939454], + [-76.326355, 37.939493], + [-76.326485, 37.939509], + [-76.327243, 37.939909], + [-76.327585, 37.94009], + [-76.328684, 37.940638], + [-76.329411, 37.940954], + [-76.329472, 37.94099], + [-76.329614, 37.941073], + [-76.330215, 37.941367], + [-76.330643, 37.941577], + [-76.331203, 37.941851], + [-76.331369, 37.941947], + [-76.331652, 37.94211], + [-76.331918, 37.942244], + [-76.332011, 37.942293], + [-76.332506, 37.942556], + [-76.332974, 37.942754], + [-76.333374, 37.942964], + [-76.333674, 37.943076], + [-76.33436, 37.943403], + [-76.336129, 37.944169], + [-76.336402, 37.944309], + [-76.336875, 37.944506], + [-76.337954, 37.944956], + [-76.338619, 37.945294], + [-76.339709, 37.945727], + [-76.340463, 37.945955], + [-76.341616, 37.946447], + [-76.344382, 37.94747], + [-76.344779, 37.947595], + [-76.346314, 37.948079], + [-76.347174, 37.94835], + [-76.347621, 37.948543], + [-76.348025, 37.948691], + [-76.34825, 37.948774], + [-76.348711, 37.948943], + [-76.349285, 37.949208], + [-76.349781, 37.949436], + [-76.349949, 37.949489], + [-76.350032, 37.949477], + [-76.350052, 37.949444], + [-76.350225, 37.949403], + [-76.350369, 37.949374], + [-76.350432, 37.949362], + [-76.350592, 37.949425], + [-76.350752, 37.949489], + [-76.351754, 37.949888], + [-76.351921, 37.949955], + [-76.353315, 37.950318], + [-76.354303, 37.950538], + [-76.355238, 37.950747], + [-76.355455, 37.950832], + [-76.355616, 37.950897], + [-76.355749, 37.950947], + [-76.355825, 37.950977], + [-76.355959, 37.951038], + [-76.355961, 37.951039], + [-76.356452, 37.951232], + [-76.357067, 37.951482], + [-76.357078, 37.951487], + [-76.357585, 37.951694], + [-76.359327, 37.952281], + [-76.36115, 37.952591], + [-76.362711, 37.952859], + [-76.362953, 37.952901], + [-76.364208, 37.953116], + [-76.365611, 37.953562], + [-76.366019, 37.953511], + [-76.36706, 37.953692], + [-76.368231, 37.953975], + [-76.368774, 37.954084], + [-76.370688, 37.954386], + [-76.371461, 37.954553], + [-76.373187, 37.954846], + [-76.37393, 37.954989], + [-76.374673, 37.955131], + [-76.37476, 37.955152], + [-76.374944, 37.955185], + [-76.375537, 37.955292], + [-76.375722, 37.955325], + [-76.376056, 37.955386], + [-76.37639, 37.955446], + [-76.37662, 37.955487], + [-76.37685, 37.955529], + [-76.37689, 37.955542], + [-76.376946, 37.95556], + [-76.377041, 37.955592], + [-76.37787, 37.955864], + [-76.378699, 37.956137], + [-76.378736, 37.956149], + [-76.378972, 37.956227], + [-76.379619, 37.956413], + [-76.379627, 37.956415], + [-76.379821, 37.956471], + [-76.380158, 37.956533], + [-76.380404, 37.956578], + [-76.380651, 37.956623], + [-76.380705, 37.956632], + [-76.380758, 37.956643], + [-76.38091, 37.956671], + [-76.381061, 37.956699], + [-76.38114, 37.956731], + [-76.381168, 37.956734], + [-76.381408, 37.956763], + [-76.381588, 37.956796], + [-76.381767, 37.956829], + [-76.382042, 37.95688], + [-76.38273, 37.957007], + [-76.383567, 37.957161], + [-76.388021, 37.95814], + [-76.388107, 37.958237], + [-76.388239, 37.95824], + [-76.388342, 37.95821], + [-76.388726, 37.958294], + [-76.389014, 37.958358], + [-76.389772, 37.958564], + [-76.389898, 37.958666], + [-76.390177, 37.958712], + [-76.390286, 37.958704], + [-76.390679, 37.958811], + [-76.391113, 37.958985], + [-76.391738, 37.959275], + [-76.392445, 37.959453], + [-76.412936, 37.96634], + [-76.415295, 37.968149], + [-76.419372, 37.971277], + [-76.42056, 37.972517], + [-76.421677, 37.973674], + [-76.422695, 37.974743], + [-76.423848, 37.975651], + [-76.425132, 37.976561], + [-76.425462, 37.976879], + [-76.426319, 37.977384], + [-76.433902, 37.981855], + [-76.43397, 37.981945], + [-76.435581, 37.984091], + [-76.435755, 37.984335], + [-76.436913, 37.985959], + [-76.43699, 37.986067], + [-76.438069, 37.987119], + [-76.439472, 37.988263], + [-76.441264, 37.989259], + [-76.442173, 37.989592], + [-76.443664, 37.991165], + [-76.446614, 37.994279], + [-76.452282, 38.000151], + [-76.46501, 38.013228], + [-76.465313, 38.013267], + [-76.466092, 38.013314], + [-76.466476, 38.013394], + [-76.467061, 38.013511], + [-76.467248, 38.013692], + [-76.467802, 38.014147], + [-76.468055, 38.014449], + [-76.468417, 38.014577], + [-76.472002, 38.015222], + [-76.47252, 38.015489], + [-76.472775, 38.015752], + [-76.473111, 38.016057], + [-76.473399, 38.01624], + [-76.47352, 38.01621], + [-76.473881, 38.016121], + [-76.47417, 38.015941], + [-76.474299, 38.015765], + [-76.474421, 38.015691], + [-76.474541, 38.015614], + [-76.474889, 38.0154], + [-76.475091, 38.015412], + [-76.475378, 38.015556], + [-76.475402, 38.015568], + [-76.475752, 38.0157], + [-76.475996, 38.015671], + [-76.476459, 38.015574], + [-76.476698, 38.015524], + [-76.476937, 38.015473], + [-76.477677, 38.015436], + [-76.477969, 38.015432], + [-76.478433, 38.015352], + [-76.478607, 38.015338], + [-76.479814, 38.01524], + [-76.480432, 38.015319], + [-76.480896, 38.015285], + [-76.481978, 38.015375], + [-76.482504, 38.01551], + [-76.482509, 38.015511], + [-76.483441, 38.015749], + [-76.483931, 38.015874], + [-76.484421, 38.015998], + [-76.484721, 38.015996], + [-76.485474, 38.016261], + [-76.487491, 38.017019], + [-76.48857, 38.01725], + [-76.48861, 38.017255], + [-76.488756, 38.017269], + [-76.489953, 38.017417], + [-76.489978, 38.01742], + [-76.490181, 38.017444], + [-76.490395, 38.01747], + [-76.491222, 38.01757], + [-76.491349, 38.017595], + [-76.491978, 38.017722], + [-76.492545, 38.017872], + [-76.492546, 38.017913], + [-76.492807, 38.018091], + [-76.493524, 38.018168], + [-76.493531, 38.018169], + [-76.493588, 38.018148], + [-76.494624, 38.018423], + [-76.495527, 38.018662], + [-76.495592, 38.018679], + [-76.495659, 38.018697], + [-76.495778, 38.018728], + [-76.495896, 38.01876], + [-76.496126, 38.018821], + [-76.496593, 38.018945], + [-76.496816, 38.019072], + [-76.497011, 38.019184], + [-76.497039, 38.0192], + [-76.497189, 38.019286], + [-76.497499, 38.019422], + [-76.497831, 38.019547], + [-76.497951, 38.019592], + [-76.498392, 38.019762], + [-76.498549, 38.01988], + [-76.498577, 38.019899], + [-76.499149, 38.019996], + [-76.499378, 38.020064], + [-76.499508, 38.020077], + [-76.499593, 38.020086], + [-76.499678, 38.020094], + [-76.500752, 38.020528], + [-76.501076, 38.020728], + [-76.501538, 38.020894], + [-76.5017, 38.020952], + [-76.502258, 38.021151], + [-76.503062, 38.021377], + [-76.504048, 38.021716], + [-76.504501, 38.021815], + [-76.505389, 38.0221], + [-76.506748, 38.022649], + [-76.507091, 38.02282], + [-76.507855, 38.023134], + [-76.508365, 38.02332], + [-76.509537, 38.023887], + [-76.510191, 38.024275], + [-76.512021, 38.025114], + [-76.513071, 38.025529], + [-76.514064, 38.025867], + [-76.514716, 38.026145], + [-76.515355, 38.026457], + [-76.515649, 38.0266], + [-76.515936, 38.026733], + [-76.516097, 38.026775], + [-76.516556, 38.026802], + [-76.516611, 38.026791], + [-76.516526, 38.029187], + [-76.51644, 38.031583], + [-76.516406, 38.033157], + [-76.516371, 38.034732], + [-76.516828, 38.034745], + [-76.51685, 38.034746], + [-76.519388, 38.034818], + [-76.519536, 38.034822], + [-76.522444, 38.034901], + [-76.524958, 38.034968], + [-76.525496, 38.034982], + [-76.529021, 38.034391], + [-76.53708, 38.032456], + [-76.538566, 38.032099], + [-76.538929, 38.031959], + [-76.539116, 38.031887], + [-76.539302, 38.031815], + [-76.540541, 38.031335], + [-76.5427, 38.029654], + [-76.542715, 38.029642], + [-76.542728, 38.029632], + [-76.543819, 38.028786], + [-76.547481, 38.026765], + [-76.548225, 38.026577], + [-76.549956, 38.026139], + [-76.550783, 38.02598], + [-76.553052, 38.025543], + [-76.553632, 38.025613], + [-76.55365, 38.025619], + [-76.555222, 38.026137], + [-76.556356, 38.026518], + [-76.557634, 38.02643], + [-76.557692, 38.026427], + [-76.558503, 38.026629], + [-76.558648, 38.026724], + [-76.559188, 38.027078], + [-76.559541, 38.027151], + [-76.55961, 38.027165], + [-76.56013, 38.027272], + [-76.560416, 38.027332], + [-76.560567, 38.027319], + [-76.561192, 38.02727], + [-76.562467, 38.027168], + [-76.563097, 38.026977], + [-76.564207, 38.026642], + [-76.565194, 38.026344], + [-76.565251, 38.026327], + [-76.566129, 38.026215], + [-76.569407, 38.026718], + [-76.569503, 38.026733], + [-76.569604, 38.026749], + [-76.570965, 38.02693], + [-76.571901, 38.027054], + [-76.57214, 38.027006], + [-76.572205, 38.026993], + [-76.572395, 38.026954], + [-76.573045, 38.026824], + [-76.573098, 38.02677], + [-76.573449, 38.026417], + [-76.573432, 38.026106], + [-76.573427, 38.026017], + [-76.573418, 38.025854], + [-76.573384, 38.025443], + [-76.573445, 38.025238], + [-76.573514, 38.025009], + [-76.573845, 38.024707], + [-76.574067, 38.02455], + [-76.574649, 38.024143], + [-76.574642, 38.023371], + [-76.574598, 38.023334], + [-76.57434, 38.023118], + [-76.573924, 38.023042], + [-76.572997, 38.023072], + [-76.572924, 38.023068], + [-76.572735, 38.023061], + [-76.57205, 38.023031], + [-76.571818, 38.022916], + [-76.571691, 38.022568], + [-76.57229, 38.021655], + [-76.572345, 38.021573], + [-76.572582, 38.021211], + [-76.57282, 38.020849], + [-76.573064, 38.020312], + [-76.573019, 38.019943], + [-76.573014, 38.019918], + [-76.572917, 38.019322], + [-76.572774, 38.018773], + [-76.572779, 38.018493], + [-76.572693, 38.018368], + [-76.572697, 38.018203], + [-76.572778, 38.01812], + [-76.572834, 38.018106], + [-76.572855, 38.01802], + [-76.572858, 38.018009], + [-76.573221, 38.017659], + [-76.57367, 38.017583], + [-76.575003, 38.017653], + [-76.575532, 38.017682], + [-76.576095, 38.017543], + [-76.576683, 38.017098], + [-76.576833, 38.016907], + [-76.577151, 38.016499], + [-76.577396, 38.016423], + [-76.577888, 38.016257], + [-76.57868, 38.015798], + [-76.578992, 38.015415], + [-76.579584, 38.01472], + [-76.579674, 38.01457], + [-76.579825, 38.01432], + [-76.58017, 38.014162], + [-76.580462, 38.014029], + [-76.580911, 38.013929], + [-76.581201, 38.013682], + [-76.581359, 38.013329], + [-76.581204, 38.012893], + [-76.581208, 38.012779], + [-76.581225, 38.012225], + [-76.581515, 38.011922], + [-76.582063, 38.011461], + [-76.5823, 38.011377], + [-76.582332, 38.011366], + [-76.582483, 38.011312], + [-76.583078, 38.011069], + [-76.583354, 38.010929], + [-76.583375, 38.010919], + [-76.583644, 38.010688], + [-76.584481, 38.009948], + [-76.584496, 38.009706], + [-76.584273, 38.009004], + [-76.58429, 38.008826], + [-76.584299, 38.008726], + [-76.584311, 38.008594], + [-76.585108, 38.007797], + [-76.586558, 38.006958], + [-76.586938, 38.006716], + [-76.587102, 38.006613], + [-76.587265, 38.00651], + [-76.587274, 38.006504], + [-76.587597, 38.0063], + [-76.587612, 38.006226], + [-76.587653, 38.006035], + [-76.587659, 38.005641], + [-76.587806, 38.005401], + [-76.588167, 38.005139], + [-76.589735, 38.004502], + [-76.590157, 38.004265], + [-76.590485, 38.004036], + [-76.590493, 38.004031], + [-76.590919, 38.003733], + [-76.591562, 38.003611], + [-76.592436, 38.003764], + [-76.5926, 38.003766], + [-76.592812, 38.003734], + [-76.593026, 38.003718], + [-76.593033, 38.003717], + [-76.593078, 38.003714], + [-76.593835, 38.003457], + [-76.593841, 38.003455], + [-76.593936, 38.003423], + [-76.594055, 38.003389], + [-76.594063, 38.003386], + [-76.594117, 38.003364], + [-76.594125, 38.003361], + [-76.594151, 38.00335], + [-76.59423, 38.003323], + [-76.594257, 38.003314], + [-76.594342, 38.003285], + [-76.594428, 38.003256], + [-76.594554, 38.003274], + [-76.594624, 38.003285], + [-76.594821, 38.003315], + [-76.594891, 38.003325], + [-76.595019, 38.003273], + [-76.594999, 38.003061], + [-76.595007, 38.002925], + [-76.595043, 38.002876], + [-76.595064, 38.002848], + [-76.595064, 38.002798], + [-76.595146, 38.002734], + [-76.595209, 38.002684], + [-76.595393, 38.002657], + [-76.595442, 38.002715], + [-76.595676, 38.002824], + [-76.595835, 38.002821], + [-76.595874, 38.002844], + [-76.596253, 38.00291], + [-76.596375, 38.003066], + [-76.5965, 38.00339], + [-76.596746, 38.003642], + [-76.596947, 38.003689], + [-76.597162, 38.003551], + [-76.597177, 38.003552], + [-76.597184, 38.003553], + [-76.597196, 38.003554], + [-76.597261, 38.003561], + [-76.597336, 38.003566], + [-76.597386, 38.003573], + [-76.597407, 38.003576], + [-76.598072, 38.003187], + [-76.598247, 38.00317], + [-76.598304, 38.003164], + [-76.59863, 38.003311], + [-76.598709, 38.003347], + [-76.598917, 38.003306], + [-76.599003, 38.003289], + [-76.599102, 38.003269], + [-76.599183, 38.003253], + [-76.599287, 38.003232], + [-76.599287, 38.003118], + [-76.600415, 38.002682], + [-76.600948, 38.002631], + [-76.601068, 38.002619], + [-76.601089, 38.002617], + [-76.601229, 38.002604], + [-76.601369, 38.00259], + [-76.601472, 38.002548], + [-76.601576, 38.002505], + [-76.601949, 38.002353], + [-76.602277, 38.002187], + [-76.60256, 38.002082], + [-76.602636, 38.002054], + [-76.602712, 38.002027], + [-76.602757, 38.00201], + [-76.602799, 38.001995], + [-76.603066, 38.001897], + [-76.60388, 38.001759], + [-76.603924, 38.001752], + [-76.604912, 38.001722], + [-76.605477, 38.00167], + [-76.605524, 38.001666], + [-76.605565, 38.001654], + [-76.606342, 38.001478], + [-76.606799, 38.001507], + [-76.607662, 38.001668], + [-76.608374, 38.001731], + [-76.60862, 38.001629], + [-76.608836, 38.001519], + [-76.60904, 38.001488], + [-76.609293, 38.001596], + [-76.609666, 38.0018], + [-76.609861, 38.00187], + [-76.610071, 38.001945], + [-76.610344, 38.00204], + [-76.610696, 38.002066], + [-76.610948, 38.002085], + [-76.611076, 38.002096], + [-76.611605, 38.002125], + [-76.612615, 38.00203], + [-76.612647, 38.002027], + [-76.612952, 38.001995], + [-76.613125, 38.001979], + [-76.613229, 38.001985], + [-76.613562, 38.002004], + [-76.613745, 38.002017], + [-76.614127, 38.002039], + [-76.614485, 38.00206], + [-76.614662, 38.002159], + [-76.614674, 38.0022], + [-76.614678, 38.002214], + [-76.614617, 38.002286], + [-76.614626, 38.002287], + [-76.614798, 38.002311], + [-76.61495, 38.00227], + [-76.615078, 38.002104], + [-76.615089, 38.001988], + [-76.615247, 38.00192], + [-76.615441, 38.001901], + [-76.615693, 38.001958], + [-76.615873, 38.001933], + [-76.616296, 38.001631], + [-76.616454, 38.001557], + [-76.616542, 38.001419], + [-76.616444, 38.00108], + [-76.616492, 38.00104], + [-76.616561, 38.001034], + [-76.616715, 38.001081], + [-76.616874, 38.001063], + [-76.617058, 38.000895], + [-76.617641, 38.000585], + [-76.617783, 38.000413], + [-76.617728, 38.000139], + [-76.617744, 38.000105], + [-76.617894, 37.999785], + [-76.61793, 37.999603], + [-76.617975, 37.999372], + [-76.617975, 37.999244], + [-76.617976, 37.999111], + [-76.617976, 37.999086], + [-76.618061, 37.998848], + [-76.618104, 37.998774], + [-76.618128, 37.998733], + [-76.618422, 37.99852], + [-76.618785, 37.998323], + [-76.619196, 37.998031], + [-76.619283, 37.997926], + [-76.619255, 37.997558], + [-76.619307, 37.997123], + [-76.619592, 37.996504], + [-76.620113, 37.995535], + [-76.620167, 37.995161], + [-76.620372, 37.994713], + [-76.620404, 37.994586], + [-76.620687, 37.994198], + [-76.621441, 37.993457], + [-76.621814, 37.993023], + [-76.621887, 37.992879], + [-76.621965, 37.992631], + [-76.622072, 37.992481], + [-76.62251, 37.992173], + [-76.622673, 37.992012], + [-76.622746, 37.991868], + [-76.622799, 37.991741], + [-76.622829, 37.991537], + [-76.622774, 37.991247], + [-76.622595, 37.990667], + [-76.622621, 37.989969], + [-76.622694, 37.989803], + [-76.623061, 37.989457], + [-76.624057, 37.988691], + [-76.624686, 37.987924], + [-76.625436, 37.986991], + [-76.62585, 37.986584], + [-76.626089, 37.986405], + [-76.62655, 37.985899], + [-76.626782, 37.985714], + [-76.627115, 37.985385], + [-76.627786, 37.984645], + [-76.627886, 37.984452], + [-76.627962, 37.984165], + [-76.627911, 37.983413], + [-76.627774, 37.982844], + [-76.62793, 37.982704], + [-76.628038, 37.982549], + [-76.628144, 37.982322], + [-76.628182, 37.982184], + [-76.628179, 37.982042], + [-76.628273, 37.981557], + [-76.628411, 37.981231], + [-76.628653, 37.980848], + [-76.628767, 37.980698], + [-76.628821, 37.980645], + [-76.629019, 37.980453], + [-76.629072, 37.980354], + [-76.629478, 37.979865], + [-76.629606, 37.979692], + [-76.62979, 37.979553], + [-76.629926, 37.97943], + [-76.630118, 37.979341], + [-76.63027, 37.979271], + [-76.6304, 37.979187], + [-76.63052, 37.979141], + [-76.630765, 37.97905], + [-76.630788, 37.979045], + [-76.630836, 37.978999], + [-76.631, 37.97885], + [-76.631179, 37.978688], + [-76.631878, 37.977799], + [-76.631935, 37.977097], + [-76.63236, 37.972275], + [-76.632422, 37.971567], + [-76.632435, 37.971422], + [-76.632832, 37.97037], + [-76.633936, 37.969558], + [-76.634185, 37.969319], + [-76.634549, 37.968551], + [-76.634513, 37.968088], + [-76.634186, 37.967117], + [-76.634194, 37.967024], + [-76.634227, 37.96668], + [-76.634232, 37.966638], + [-76.634241, 37.966637], + [-76.634273, 37.966635], + [-76.634344, 37.966632], + [-76.634795, 37.966614], + [-76.635388, 37.966678], + [-76.635623, 37.966677], + [-76.635898, 37.966676], + [-76.638268, 37.96557], + [-76.639256, 37.965567], + [-76.640182, 37.966231], + [-76.640789, 37.966574], + [-76.641541, 37.966665], + [-76.64287, 37.966779], + [-76.643796, 37.967237], + [-76.645935, 37.967969], + [-76.647959, 37.968266], + [-76.648084, 37.968404], + [-76.648335, 37.968678], + [-76.648335, 37.969364], + [-76.64822, 37.969776], + [-76.648249, 37.970806], + [-76.648539, 37.971538], + [-76.648915, 37.971996], + [-76.649869, 37.972614], + [-76.65013, 37.973117], + [-76.650246, 37.974079], + [-76.650332, 37.974124], + [-76.650477, 37.974994], + [-76.650709, 37.975635], + [-76.651635, 37.976916], + [-76.651838, 37.977625], + [-76.652127, 37.978015], + [-76.653891, 37.979364], + [-76.654759, 37.980234], + [-76.655164, 37.980989], + [-76.655309, 37.981446], + [-76.655396, 37.981469], + [-76.655425, 37.981675], + [-76.655627, 37.981813], + [-76.655888, 37.981929], + [-76.656294, 37.982177], + [-76.657094, 37.982305], + [-76.661495, 37.98301], + [-76.662626, 37.983701], + [-76.662957, 37.983849], + [-76.663193, 37.983938], + [-76.66353, 37.983996], + [-76.663853, 37.983988], + [-76.663984, 37.983953], + [-76.664043, 37.983915], + [-76.66459, 37.983839], + [-76.664708, 37.983823], + [-76.665691, 37.984052], + [-76.666386, 37.984418], + [-76.666733, 37.984509], + [-76.667803, 37.984417], + [-76.670463, 37.984805], + [-76.670897, 37.985011], + [-76.671504, 37.98501], + [-76.671618, 37.984919], + [-76.67184, 37.98479], + [-76.672394, 37.984591], + [-76.672737, 37.984521], + [-76.672792, 37.984525], + [-76.672842, 37.984528], + [-76.672897, 37.984532], + [-76.673151, 37.98455], + [-76.676073, 37.984549], + [-76.678042, 37.98416], + [-76.67885, 37.983842], + [-76.67969, 37.983402], + [-76.681101, 37.982877], + [-76.681475, 37.982602], + [-76.681566, 37.982371], + [-76.681711, 37.981413], + [-76.681846, 37.981136], + [-76.681856, 37.981114], + [-76.681926, 37.981065], + [-76.681971, 37.981518], + [-76.682116, 37.981881], + [-76.68268, 37.982026], + [-76.68313, 37.982727], + [-76.683886, 37.982829], + [-76.684748, 37.982924], + [-76.686045, 37.983419], + [-76.68725, 37.983258], + [-76.688219, 37.983361], + [-76.688273, 37.98373], + [-76.688425, 37.98394], + [-76.688585, 37.98409], + [-76.689257, 37.984955], + [-76.693458, 37.984809], + [-76.69369, 37.984801], + [-76.700571, 37.984553], + [-76.717708, 37.993381], + [-76.717847, 37.993452], + [-76.717897, 37.993478], + [-76.717923, 37.993492], + [-76.717945, 37.993503], + [-76.718004, 37.993537], + [-76.722689, 37.996312], + [-76.722931, 37.996424], + [-76.723321, 37.996604], + [-76.723647, 37.996746], + [-76.728555, 37.998998], + [-76.728724, 37.999076], + [-76.728773, 37.999098], + [-76.728991, 37.999198], + [-76.729351, 37.999208], + [-76.729609, 37.999216], + [-76.73336, 37.999053], + [-76.733546, 37.999045], + [-76.743586, 37.998712], + [-76.743619, 37.998711], + [-76.743962, 37.998114], + [-76.743989, 37.997199], + [-76.744191, 37.99697], + [-76.744538, 37.996763], + [-76.745752, 37.996693], + [-76.74607, 37.996624], + [-76.748007, 37.995821], + [-76.748873, 37.994905], + [-76.749328, 37.995022], + [-76.749683, 37.99511], + [-76.750458, 37.99535], + [-76.750684, 37.995517], + [-76.75092, 37.995693], + [-76.751094, 37.995831], + [-76.751788, 37.995877], + [-76.752134, 37.996015], + [-76.752452, 37.996221], + [-76.753088, 37.996519], + [-76.754042, 37.996635], + [-76.754592, 37.996887], + [-76.755286, 37.997048], + [-76.756182, 37.997346], + [-76.757166, 37.997965], + [-76.7576, 37.997966], + [-76.757975, 37.997851], + [-76.758351, 37.997989], + [-76.758931, 37.998493], + [-76.759539, 37.998745], + [-76.760233, 37.99941], + [-76.760609, 37.999547], + [-76.761419, 37.999663], + [-76.762025, 38.000146], + [-76.762904, 38.000687], + [-76.763003, 38.000748], + [-76.763676, 38.001162], + [-76.764487, 38.001873], + [-76.764718, 38.001987], + [-76.765413, 38.001644], + [-76.765963, 38.001554], + [-76.765966, 38.001577], + [-76.766008, 38.001829], + [-76.766016, 38.001919], + [-76.765875, 38.00192], + [-76.765614, 38.002171], + [-76.76518, 38.002606], + [-76.76486, 38.003704], + [-76.764657, 38.004161], + [-76.764454, 38.004298], + [-76.761357, 38.005577], + [-76.760923, 38.006057], + [-76.760372, 38.006606], + [-76.760256, 38.007064], + [-76.759822, 38.007429], + [-76.759791, 38.008413], + [-76.760051, 38.008688], + [-76.760051, 38.009077], + [-76.759819, 38.009283], + [-76.759587, 38.009786], + [-76.758862, 38.010633], + [-76.758833, 38.011044], + [-76.758977, 38.011113], + [-76.759381, 38.011823], + [-76.759554, 38.012304], + [-76.760217, 38.013632], + [-76.760071, 38.014891], + [-76.759693, 38.01576], + [-76.759751, 38.015989], + [-76.760097, 38.016424], + [-76.759921, 38.017911], + [-76.760181, 38.018369], + [-76.76018, 38.019125], + [-76.759919, 38.019353], + [-76.759513, 38.020017], + [-76.758789, 38.020336], + [-76.758645, 38.020519], + [-76.758546, 38.020907], + [-76.75847, 38.021206], + [-76.757948, 38.021869], + [-76.757658, 38.02212], + [-76.756992, 38.023035], + [-76.756383, 38.023584], + [-76.756267, 38.023904], + [-76.756468, 38.024637], + [-76.755976, 38.025139], + [-76.755648, 38.025266], + [-76.75561, 38.025622], + [-76.755869, 38.026105], + [-76.756326, 38.026414], + [-76.75683, 38.026654], + [-76.75709, 38.02706], + [-76.757151, 38.027569], + [-76.757273, 38.027982], + [-76.757448, 38.02833], + [-76.757112, 38.028824], + [-76.756884, 38.029304], + [-76.757046, 38.029962], + [-76.757334, 38.030684], + [-76.757876, 38.031206], + [-76.758971, 38.03203], + [-76.759003, 38.032054], + [-76.759581, 38.032329], + [-76.760507, 38.032513], + [-76.761664, 38.032515], + [-76.762387, 38.032904], + [-76.763313, 38.033134], + [-76.764354, 38.033272], + [-76.765309, 38.033205], + [-76.765917, 38.03348], + [-76.766697, 38.034007], + [-76.768143, 38.034557], + [-76.768432, 38.034764], + [-76.768315, 38.035633], + [-76.768893, 38.036137], + [-76.769412, 38.037374], + [-76.770221, 38.038358], + [-76.770713, 38.038771], + [-76.770828, 38.03916], + [-76.771724, 38.03955], + [-76.773228, 38.040787], + [-76.775049, 38.041773], + [-76.775396, 38.042139], + [-76.775668, 38.042285], + [-76.776293, 38.04262], + [-76.777074, 38.042804], + [-76.777547, 38.042991], + [-76.777628, 38.043039], + [-76.778481, 38.043892], + [-76.780216, 38.044168], + [-76.780593, 38.04461], + [-76.781163, 38.045356], + [-76.781619, 38.045954], + [-76.781758, 38.046081], + [-76.782539, 38.046745], + [-76.782741, 38.04702], + [-76.782798, 38.047294], + [-76.782914, 38.047569], + [-76.783145, 38.047775], + [-76.78381, 38.047959], + [-76.784938, 38.048829], + [-76.786124, 38.049128], + [-76.786789, 38.049792], + [-76.787802, 38.050022], + [-76.78812, 38.050205], + [-76.788901, 38.051007], + [-76.789565, 38.051808], + [-76.790839, 38.051877], + [-76.790875, 38.051894], + [-76.791721, 38.052287], + [-76.792517, 38.052657], + [-76.793702, 38.053619], + [-76.793876, 38.053825], + [-76.794454, 38.054397], + [-76.794945, 38.055107], + [-76.795061, 38.055451], + [-76.795495, 38.055909], + [-76.795986, 38.05687], + [-76.796188, 38.057191], + [-76.796824, 38.05774], + [-76.797229, 38.058313], + [-76.797576, 38.058565], + [-76.80018, 38.059322], + [-76.800788, 38.059459], + [-76.801107, 38.059437], + [-76.801917, 38.059643], + [-76.803624, 38.060285], + [-76.804116, 38.060285], + [-76.804695, 38.060034], + [-76.805911, 38.060034], + [-76.806171, 38.059897], + [-76.806982, 38.059692], + [-76.807967, 38.058754], + [-76.80843, 38.058571], + [-76.809028, 38.058486], + [-76.809067, 38.05848], + [-76.81037, 38.05871], + [-76.812714, 38.058619], + [-76.812946, 38.058825], + [-76.814248, 38.059009], + [-76.81437, 38.058891], + [-76.814364, 38.058952], + [-76.814333, 38.059291], + [-76.814463, 38.059748], + [-76.81444, 38.060032], + [-76.814424, 38.06029], + [-76.814913, 38.06098], + [-76.815417, 38.061748], + [-76.815775, 38.062621], + [-76.816073, 38.063229], + [-76.816607, 38.063554], + [-76.817499, 38.064036], + [-76.818155, 38.064382], + [-76.818796, 38.064466], + [-76.819651, 38.064183], + [-76.820238, 38.063953], + [-76.820841, 38.063948], + [-76.821497, 38.064348], + [-76.821841, 38.064581], + [-76.821864, 38.064596], + [-76.822845, 38.065185], + [-76.822924, 38.065232], + [-76.822945, 38.065251], + [-76.825372, 38.06747], + [-76.825402, 38.067498], + [-76.829274, 38.071021], + [-76.829294, 38.07104], + [-76.833141, 38.074534], + [-76.833231, 38.074615], + [-76.833312, 38.074688], + [-76.833376, 38.074747], + [-76.833966, 38.075285], + [-76.834379, 38.075662], + [-76.835859, 38.077011], + [-76.839788, 38.080594], + [-76.839822, 38.080625], + [-76.842908, 38.083447], + [-76.84305, 38.083576], + [-76.849715, 38.089608], + [-76.850632, 38.090414], + [-76.851501, 38.091225], + [-76.85155, 38.091221], + [-76.851582, 38.091321], + [-76.851666, 38.091588], + [-76.851694, 38.091931], + [-76.852071, 38.092412], + [-76.852447, 38.092663], + [-76.853403, 38.093144], + [-76.854358, 38.093785], + [-76.854445, 38.093945], + [-76.854706, 38.094128], + [-76.855372, 38.094334], + [-76.855603, 38.094586], + [-76.856095, 38.095822], + [-76.856095, 38.096486], + [-76.856327, 38.096943], + [-76.85679, 38.097561], + [-76.857051, 38.098362], + [-76.857804, 38.098889], + [-76.858006, 38.099186], + [-76.858498, 38.09937], + [-76.858759, 38.09969], + [-76.859599, 38.09985], + [-76.860439, 38.100514], + [-76.861047, 38.100812], + [-76.862263, 38.101681], + [-76.862496, 38.102049], + [-76.862582, 38.102185], + [-76.863392, 38.102643], + [-76.863624, 38.103169], + [-76.863827, 38.103489], + [-76.864348, 38.104267], + [-76.864927, 38.106441], + [-76.865391, 38.107059], + [-76.865941, 38.107654], + [-76.866144, 38.108364], + [-76.866346, 38.108707], + [-76.866433, 38.109234], + [-76.866897, 38.110172], + [-76.867013, 38.111522], + [-76.866839, 38.112254], + [-76.866607, 38.113032], + [-76.866983, 38.113536], + [-76.867997, 38.114474], + [-76.868142, 38.115527], + [-76.868113, 38.115824], + [-76.8682, 38.11658], + [-76.868663, 38.117289], + [-76.869504, 38.117976], + [-76.870373, 38.11793], + [-76.871444, 38.118273], + [-76.871821, 38.118662], + [-76.871908, 38.118937], + [-76.87214, 38.119829], + [-76.872516, 38.120287], + [-76.872574, 38.120401], + [-76.87269, 38.120424], + [-76.872835, 38.121202], + [-76.872893, 38.122095], + [-76.873762, 38.122827], + [-76.874602, 38.123262], + [-76.876399, 38.123903], + [-76.87692, 38.124246], + [-76.876891, 38.124452], + [-76.877064, 38.124366], + [-76.888492, 38.115987], + [-76.88862, 38.115893], + [-76.89028, 38.114684], + [-76.89335, 38.112443], + [-76.89478, 38.1114], + [-76.894827, 38.111365], + [-76.895436, 38.110922], + [-76.899026, 38.108303], + [-76.899045, 38.10829], + [-76.901797, 38.106092], + [-76.901888, 38.106019], + [-76.903963, 38.105278], + [-76.904734, 38.104936], + [-76.905786, 38.104203], + [-76.906221, 38.103507], + [-76.90671, 38.10271], + [-76.908281, 38.101139], + [-76.909037, 38.100253], + [-76.909273, 38.099663], + [-76.90938, 38.099445], + [-76.909647, 38.099333], + [-76.909922, 38.099049], + [-76.910593, 38.098407], + [-76.911394, 38.097443], + [-76.912103, 38.097188], + [-76.913434, 38.097166], + [-76.914506, 38.097371], + [-76.914911, 38.097211], + [-76.915201, 38.096913], + [-76.916069, 38.095815], + [-76.916792, 38.095082], + [-76.918153, 38.094349], + [-76.918964, 38.094212], + [-76.919774, 38.093616], + [-76.921222, 38.093387], + [-76.921922, 38.093067], + [-76.921974, 38.093043], + [-76.922553, 38.092608], + [-76.92345, 38.091532], + [-76.924288, 38.089861], + [-76.925649, 38.089494], + [-76.92892, 38.088326], + [-76.929673, 38.087799], + [-76.93028, 38.087181], + [-76.930859, 38.086746], + [-76.931206, 38.086563], + [-76.932364, 38.086585], + [-76.932885, 38.086402], + [-76.93358, 38.086127], + [-76.934651, 38.085874], + [-76.935317, 38.085485], + [-76.935885, 38.085116], + [-76.936445, 38.084752], + [-76.936735, 38.08466], + [-76.937922, 38.084911], + [-76.937863, 38.083904], + [-76.937979, 38.083721], + [-76.938008, 38.08347], + [-76.937805, 38.083241], + [-76.937457, 38.082692], + [-76.936878, 38.082532], + [-76.935691, 38.082578], + [-76.934938, 38.082464], + [-76.934706, 38.082121], + [-76.93459, 38.081847], + [-76.935429, 38.08164], + [-76.935458, 38.081343], + [-76.935226, 38.081137], + [-76.935168, 38.080885], + [-76.935226, 38.080725], + [-76.935251, 38.080656], + [-76.935265, 38.080616], + [-76.935333, 38.08059], + [-76.935517, 38.080482], + [-76.935923, 38.080235], + [-76.936159, 38.079889], + [-76.936563, 38.078468], + [-76.936813, 38.077588], + [-76.936886, 38.077335], + [-76.936961, 38.077082], + [-76.939266, 38.077619], + [-76.94157, 38.078156], + [-76.942681, 38.078413], + [-76.942825, 38.07845], + [-76.947912, 38.079645], + [-76.95569, 38.081337], + [-76.966374, 38.083662], + [-76.977059, 38.085987], + [-76.977414, 38.086064], + [-76.977769, 38.086142], + [-76.98402, 38.087502], + [-76.989288, 38.091634], + [-76.989618, 38.092343], + [-76.989617, 38.092569], + [-76.989877, 38.092902], + [-76.990124, 38.093432], + [-76.990613, 38.09429], + [-76.990473, 38.096096], + [-76.988095, 38.100344], + [-76.987734, 38.10236], + [-76.987875, 38.102998], + [-76.988046, 38.103776], + [-76.98899, 38.106066], + [-76.989514, 38.106738], + [-76.989589, 38.106834], + [-76.993487, 38.108673], + [-76.995319, 38.109561], + [-76.999696, 38.110308], + [-76.999795, 38.11024], + [-77.002195, 38.11024], + [-77.002595, 38.11014], + [-77.002695, 38.11014], + [-77.002995, 38.10994], + [-77.003395, 38.10974], + [-77.003795, 38.10924], + [-77.004295, 38.10874], + [-77.004795, 38.10834], + [-77.005095, 38.10794], + [-77.005495, 38.10734], + [-77.005895, 38.10664], + [-77.006495, 38.10574], + [-77.007295, 38.10414], + [-77.007795, 38.10324], + [-77.008995, 38.10084], + [-77.009295, 38.09994], + [-77.009487, 38.099508], + [-77.00949, 38.099502], + [-77.009659, 38.099094], + [-77.009908, 38.098563], + [-77.009995, 38.09844], + [-77.010103, 38.098296], + [-77.010482, 38.097795], + [-77.010862, 38.097258], + [-77.011093, 38.096929], + [-77.011295, 38.09664], + [-77.011795, 38.09604], + [-77.012112, 38.095786], + [-77.012295, 38.09564], + [-77.012459, 38.095421], + [-77.012595, 38.09524], + [-77.012992, 38.094937], + [-77.013095, 38.09484], + [-77.013489, 38.094525], + [-77.013595, 38.09444], + [-77.014195, 38.09384], + [-77.014695, 38.09354], + [-77.015557, 38.093315], + [-77.015921, 38.093225], + [-77.016596, 38.093041], + [-77.017448, 38.092859], + [-77.017996, 38.092741], + [-77.018596, 38.092541], + [-77.019496, 38.092441], + [-77.020296, 38.092241], + [-77.021596, 38.092041], + [-77.022796, 38.091841], + [-77.022885, 38.091831], + [-77.022904, 38.091829], + [-77.023696, 38.091741], + [-77.024894, 38.091372], + [-77.024912, 38.091366], + [-77.024996, 38.091341], + [-77.026796, 38.091041], + [-77.028096, 38.090841], + [-77.028996, 38.090741], + [-77.030096, 38.090741], + [-77.030996, 38.090941], + [-77.031296, 38.091041], + [-77.031677, 38.091269], + [-77.031691, 38.091277], + [-77.031796, 38.091341], + [-77.032396, 38.091741], + [-77.032996, 38.092241], + [-77.033296, 38.092541], + [-77.033496, 38.092841], + [-77.033496, 38.09294], + [-77.033596, 38.09304], + [-77.033696, 38.09324], + [-77.033696, 38.09354], + [-77.033796, 38.09364], + [-77.033796, 38.09384], + [-77.033996, 38.09444], + [-77.033996, 38.09484], + [-77.034096, 38.09534], + [-77.034096, 38.09594], + [-77.034183, 38.096721], + [-77.034185, 38.096735], + [-77.034196, 38.09684], + [-77.034096, 38.09754], + [-77.034096, 38.09824], + [-77.034013, 38.098988], + [-77.034012, 38.099001], + [-77.033996, 38.09914], + [-77.033996, 38.10024], + [-77.034196, 38.10084], + [-77.034285, 38.101018], + [-77.03429, 38.101029], + [-77.034396, 38.10124], + [-77.034696, 38.10154], + [-77.035096, 38.10204], + [-77.035496, 38.10244], + [-77.036496, 38.10324], + [-77.036996, 38.10354], + [-77.037396, 38.10394], + [-77.03758, 38.104032], + [-77.037589, 38.104036], + [-77.037796, 38.10414], + [-77.038296, 38.10444], + [-77.039196, 38.10494], + [-77.039896, 38.10524], + [-77.040596, 38.10564], + [-77.041396, 38.10604], + [-77.042196, 38.10654], + [-77.042896, 38.10694], + [-77.042961, 38.106977], + [-77.04356, 38.107319], + [-77.043703, 38.107401], + [-77.044296, 38.10774], + [-77.045097, 38.10814], + [-77.045797, 38.10844], + [-77.046497, 38.10864], + [-77.047197, 38.10894], + [-77.047882, 38.109168], + [-77.047888, 38.10917], + [-77.048097, 38.10924], + [-77.049697, 38.10984], + [-77.049745, 38.109878], + [-77.04975, 38.109882], + [-77.050197, 38.11024], + [-77.050411, 38.110411], + [-77.050697, 38.11064], + [-77.051197, 38.11104], + [-77.051597, 38.11174], + [-77.051722, 38.112022], + [-77.051997, 38.11264], + [-77.052297, 38.11354], + [-77.052297, 38.11404], + [-77.052197, 38.11464], + [-77.051697, 38.11614], + [-77.051297, 38.11794], + [-77.050997, 38.11894], + [-77.050697, 38.11984], + [-77.050597, 38.12084], + [-77.050633, 38.120985], + [-77.050797, 38.12164], + [-77.051197, 38.12224], + [-77.051497, 38.12304], + [-77.051897, 38.12394], + [-77.051997, 38.12484], + [-77.051947, 38.12514], + [-77.052489, 38.129838], + [-77.052514, 38.130057], + [-77.05254, 38.130276], + [-77.052618, 38.130958], + [-77.052697, 38.13164], + [-77.052697, 38.13254], + [-77.052797, 38.13304], + [-77.052897, 38.13344], + [-77.052797, 38.13384], + [-77.052697, 38.134339], + [-77.052497, 38.134939], + [-77.052297, 38.135939], + [-77.052297, 38.136539], + [-77.052197, 38.137239], + [-77.052197, 38.137739], + [-77.052097, 38.138139], + [-77.051997, 38.138639], + [-77.051797, 38.139039], + [-77.051797, 38.140539], + [-77.051897, 38.141139], + [-77.051897, 38.141839], + [-77.052097, 38.143039], + [-77.052097, 38.143739], + [-77.052197, 38.144339], + [-77.052497, 38.144839], + [-77.052597, 38.145139], + [-77.052697, 38.145639], + [-77.052897, 38.146239], + [-77.053097, 38.146939], + [-77.053397, 38.147639], + [-77.053786, 38.14832], + [-77.053797, 38.148339], + [-77.053997, 38.148839], + [-77.054297, 38.149439], + [-77.054697, 38.150039], + [-77.054997, 38.150439], + [-77.055197, 38.150939], + [-77.055397, 38.151539], + [-77.055597, 38.152539], + [-77.055597, 38.153339], + [-77.055997, 38.154139], + [-77.056024, 38.154176], + [-77.056297, 38.154539], + [-77.056497, 38.154939], + [-77.056597, 38.155439], + [-77.056697, 38.156039], + [-77.056797, 38.156539], + [-77.056883, 38.156711], + [-77.05692, 38.156764], + [-77.057199, 38.157339], + [-77.057497, 38.157639], + [-77.057697, 38.158039], + [-77.057897, 38.158539], + [-77.058197, 38.158939], + [-77.058297, 38.159239], + [-77.058497, 38.159539], + [-77.058897, 38.159739], + [-77.059197, 38.160139], + [-77.059997, 38.160739], + [-77.060297, 38.161039], + [-77.060697, 38.161239], + [-77.060897, 38.161239], + [-77.061297, 38.161439], + [-77.061445, 38.161488], + [-77.061597, 38.161539], + [-77.061697, 38.161639], + [-77.061684, 38.161651], + [-77.061645, 38.16169], + [-77.061633, 38.161703], + [-77.06161, 38.161725], + [-77.061597, 38.161739], + [-77.061562, 38.161808], + [-77.061548, 38.161837], + [-77.061497, 38.161939], + [-77.061492, 38.16204], + [-77.061456, 38.16204], + [-77.061472, 38.162172], + [-77.061585, 38.162272], + [-77.06161, 38.162389], + [-77.061762, 38.162705], + [-77.061836, 38.162903], + [-77.061851, 38.162954], + [-77.061839, 38.163343], + [-77.061851, 38.163445], + [-77.061863, 38.163524], + [-77.061878, 38.163542], + [-77.061919, 38.16359], + [-77.061929, 38.163596], + [-77.061995, 38.16364], + [-77.062134, 38.163684], + [-77.062225, 38.163783], + [-77.062256, 38.16385], + [-77.062273, 38.163887], + [-77.062343, 38.163958], + [-77.062447, 38.164019], + [-77.062642, 38.164101], + [-77.062698, 38.164161], + [-77.062712, 38.1642], + [-77.062698, 38.164233], + [-77.062663, 38.164266], + [-77.062579, 38.16431], + [-77.062343, 38.164392], + [-77.062315, 38.164452], + [-77.062336, 38.164568], + [-77.062329, 38.164585], + [-77.062287, 38.164694], + [-77.062364, 38.16476], + [-77.062531, 38.164854], + [-77.062579, 38.164881], + [-77.062694, 38.164975], + [-77.062781, 38.165046], + [-77.062865, 38.165068], + [-77.062927, 38.165051], + [-77.063219, 38.164858], + [-77.063261, 38.164831], + [-77.063275, 38.164799], + [-77.063257, 38.164681], + [-77.063254, 38.164661], + [-77.063282, 38.164595], + [-77.063311, 38.164574], + [-77.063359, 38.16454], + [-77.063484, 38.164535], + [-77.063682, 38.164556], + [-77.063685, 38.164557], + [-77.063805, 38.164595], + [-77.063847, 38.164608], + [-77.063929, 38.164634], + [-77.063967, 38.16466], + [-77.064004, 38.164685], + [-77.064026, 38.1647], + [-77.064068, 38.164755], + [-77.06407, 38.164782], + [-77.064075, 38.164831], + [-77.064033, 38.164919], + [-77.063908, 38.165057], + [-77.063895, 38.16509], + [-77.063873, 38.165155], + [-77.063873, 38.165238], + [-77.063943, 38.16532], + [-77.06404, 38.165403], + [-77.064228, 38.165485], + [-77.064353, 38.16549], + [-77.06452, 38.165468], + [-77.064562, 38.16549], + [-77.064625, 38.165556], + [-77.064722, 38.165798], + [-77.064715, 38.165864], + [-77.064673, 38.165902], + [-77.064562, 38.165968], + [-77.064513, 38.166073], + [-77.064541, 38.16616], + [-77.064673, 38.166386], + [-77.064722, 38.166517], + [-77.064715, 38.166572], + [-77.064708, 38.166644], + [-77.06466, 38.166748], + [-77.064548, 38.166869], + [-77.064284, 38.167061], + [-77.064221, 38.167122], + [-77.064207, 38.167171], + [-77.064381, 38.167528], + [-77.064388, 38.167627], + [-77.064374, 38.167671], + [-77.064333, 38.167704], + [-77.064249, 38.167731], + [-77.06404, 38.167759], + [-77.06395, 38.167814], + [-77.063922, 38.167857], + [-77.063839, 38.168127], + [-77.063797, 38.16844], + [-77.063825, 38.168555], + [-77.063881, 38.168698], + [-77.063873, 38.16889], + [-77.063915, 38.169044], + [-77.064207, 38.169576], + [-77.064249, 38.16973], + [-77.064284, 38.169966], + [-77.06427, 38.170235], + [-77.064277, 38.170411], + [-77.064402, 38.170658], + [-77.064409, 38.170697], + [-77.064395, 38.170763], + [-77.064298, 38.171021], + [-77.064291, 38.17107], + [-77.064305, 38.171191], + [-77.064305, 38.171389], + [-77.06427, 38.171564], + [-77.064291, 38.171674], + [-77.064249, 38.171812], + [-77.064131, 38.172004], + [-77.064128, 38.172007], + [-77.063895, 38.172306], + [-77.063547, 38.172597], + [-77.063498, 38.17263], + [-77.063428, 38.172646], + [-77.063366, 38.172679], + [-77.063317, 38.172723], + [-77.063331, 38.172817], + [-77.063359, 38.172888], + [-77.063352, 38.172921], + [-77.063282, 38.17302], + [-77.063157, 38.17313], + [-77.063088, 38.173163], + [-77.06299, 38.173152], + [-77.062914, 38.173163], + [-77.062865, 38.173179], + [-77.062795, 38.173234], + [-77.062735, 38.173305], + [-77.062642, 38.173415], + [-77.062474, 38.173568], + [-77.062378, 38.173657], + [-77.062302, 38.173794], + [-77.062302, 38.174074], + [-77.062357, 38.174431], + [-77.062315, 38.174525], + [-77.062238, 38.174552], + [-77.062148, 38.174585], + [-77.062023, 38.17459], + [-77.061879, 38.174548], + [-77.061689, 38.174492], + [-77.061555, 38.174474], + [-77.061522, 38.17447], + [-77.061063, 38.174536], + [-77.06082, 38.17453], + [-77.060604, 38.174514], + [-77.060561, 38.174521], + [-77.060472, 38.174536], + [-77.060237, 38.174594], + [-77.060187, 38.174607], + [-77.059953, 38.174628], + [-77.059887, 38.174635], + [-77.059741, 38.174678], + [-77.059393, 38.174882], + [-77.059261, 38.174926], + [-77.059165, 38.174923], + [-77.059059, 38.17492], + [-77.058883, 38.174886], + [-77.058831, 38.174876], + [-77.058802, 38.174871], + [-77.058684, 38.174882], + [-77.058677, 38.174885], + [-77.05863, 38.174907], + [-77.05861, 38.174916], + [-77.058566, 38.174937], + [-77.05855, 38.174945], + [-77.058532, 38.174957], + [-77.058507, 38.174971], + [-77.058432, 38.175014], + [-77.058408, 38.175029], + [-77.058322, 38.175079], + [-77.058155, 38.17514], + [-77.058127, 38.175144], + [-77.05803, 38.175162], + [-77.057814, 38.175233], + [-77.057696, 38.175316], + [-77.057411, 38.17564], + [-77.057401, 38.175648], + [-77.057251, 38.175782], + [-77.057195, 38.17587], + [-77.057077, 38.17598], + [-77.056986, 38.17603], + [-77.056938, 38.176057], + [-77.056722, 38.176123], + [-77.056516, 38.176163], + [-77.056304, 38.176205], + [-77.056218, 38.176217], + [-77.055957, 38.176256], + [-77.055664, 38.176299], + [-77.055414, 38.176299], + [-77.055167, 38.176265], + [-77.054725, 38.176205], + [-77.054141, 38.176178], + [-77.053619, 38.176101], + [-77.052797, 38.176004], + [-77.052777, 38.176002], + [-77.052673, 38.17598], + [-77.052464, 38.175991], + [-77.05204, 38.176123], + [-77.052026, 38.176127], + [-77.051843, 38.176173], + [-77.051741, 38.176199], + [-77.051643, 38.176254], + [-77.051483, 38.176419], + [-77.05142, 38.176507], + [-77.051412, 38.176513], + [-77.051269, 38.176636], + [-77.051247, 38.176655], + [-77.051076, 38.176768], + [-77.050718, 38.177007], + [-77.050537, 38.17716], + [-77.050519, 38.177189], + [-77.050363, 38.177462], + [-77.050293, 38.177688], + [-77.050168, 38.177819], + [-77.050217, 38.177924], + [-77.050592, 38.178259], + [-77.050857, 38.17861], + [-77.050872, 38.178633], + [-77.050899, 38.178676], + [-77.050899, 38.178726], + [-77.051114, 38.178852], + [-77.05142, 38.178995], + [-77.051671, 38.17916], + [-77.051831, 38.179291], + [-77.051879, 38.179407], + [-77.051859, 38.179533], + [-77.051685, 38.180148], + [-77.051636, 38.180686], + [-77.051587, 38.18078], + [-77.051524, 38.180829], + [-77.051434, 38.180868], + [-77.051323, 38.180961], + [-77.051232, 38.181126], + [-77.051107, 38.181252], + [-77.050912, 38.181367], + [-77.050759, 38.181433], + [-77.050383, 38.18173], + [-77.050251, 38.181812], + [-77.049974, 38.181944], + [-77.049757, 38.182048], + [-77.049632, 38.182098], + [-77.049576, 38.182092], + [-77.049334, 38.18218], + [-77.049214, 38.182224], + [-77.048964, 38.182301], + [-77.048727, 38.182345], + [-77.048484, 38.182452], + [-77.048194, 38.184687], + [-77.048182, 38.184762], + [-77.048184, 38.185057], + [-77.048293, 38.186615], + [-77.048275, 38.187012], + [-77.048221, 38.188204], + [-77.048216, 38.188335], + [-77.048195, 38.188601], + [-77.048181, 38.188888], + [-77.048142, 38.189748], + [-77.048129, 38.190036], + [-77.048051, 38.191606], + [-77.047819, 38.196319], + [-77.047742, 38.19789], + [-77.047732, 38.19809], + [-77.047703, 38.19869], + [-77.047694, 38.198891], + [-77.047681, 38.199161], + [-77.047641, 38.199972], + [-77.047629, 38.200243], + [-77.047618, 38.200465], + [-77.047584, 38.201133], + [-77.047574, 38.201356], + [-77.047572, 38.201403], + [-77.04755, 38.201835], + [-77.04748, 38.203274], + [-77.047457, 38.203754], + [-77.047456, 38.203762], + [-77.047455, 38.203787], + [-77.047455, 38.203796], + [-77.047452, 38.203856], + [-77.04745, 38.203904], + [-77.047443, 38.204037], + [-77.04744, 38.204098], + [-77.047435, 38.204178], + [-77.04743, 38.2043], + [-77.047423, 38.204421], + [-77.04742, 38.204503], + [-77.047411, 38.204677], + [-77.047386, 38.205201], + [-77.047378, 38.205376], + [-77.047373, 38.205473], + [-77.047371, 38.205501], + [-77.047352, 38.205876], + [-77.047347, 38.206002], + [-77.04734, 38.206124], + [-77.047332, 38.206309], + [-77.047322, 38.206493], + [-77.047317, 38.206617], + [-77.047315, 38.206654], + [-77.047313, 38.20671], + [-77.047309, 38.206765], + [-77.047308, 38.206803], + [-77.047071, 38.21173], + [-77.046761, 38.218039], + [-77.04676, 38.218061], + [-77.046725, 38.218768], + [-77.046622, 38.220889], + [-77.046591, 38.221539], + [-77.046588, 38.221596], + [-77.046488, 38.223638], + [-77.04619, 38.229767], + [-77.046091, 38.23181], + [-77.046087, 38.231879], + [-77.046077, 38.232085], + [-77.046074, 38.232155], + [-77.046065, 38.232339], + [-77.046053, 38.232582], + [-77.04599, 38.233865], + [-77.04597, 38.234293], + [-77.045866, 38.236418], + [-77.045555, 38.242794], + [-77.045452, 38.24492], + [-77.045425, 38.245463], + [-77.045346, 38.247091], + [-77.04532, 38.247635], + [-77.045245, 38.248478], + [-77.045098, 38.250137], + [-77.045097, 38.250836], + [-77.045074, 38.251011], + [-77.044966, 38.251852], + [-77.044929, 38.252125], + [-77.044821, 38.252947], + [-77.044797, 38.253136], + [-77.044819, 38.253219], + [-77.04483, 38.253262], + [-77.044832, 38.253273], + [-77.044872, 38.253436], + [-77.044886, 38.253491], + [-77.044898, 38.253537], + [-77.044896, 38.253609], + [-77.044891, 38.253968], + [-77.04489, 38.254088], + [-77.044883, 38.254502], + [-77.044865, 38.255745], + [-77.044862, 38.256013], + [-77.044859, 38.25616], + [-77.044859, 38.256186], + [-77.044848, 38.256928], + [-77.044814, 38.259233], + [-77.044803, 38.260002], + [-77.044803, 38.260155], + [-77.044801, 38.260332], + [-77.044801, 38.260415], + [-77.044736, 38.260419], + [-77.044614, 38.260429], + [-77.044548, 38.260454], + [-77.044488, 38.260478], + [-77.044431, 38.2605], + [-77.04426, 38.260567], + [-77.044204, 38.26059], + [-77.044146, 38.260613], + [-77.044097, 38.260627], + [-77.043897, 38.260689], + [-77.043769, 38.260711], + [-77.043658, 38.260731], + [-77.043626, 38.260736], + [-77.043585, 38.260744], + [-77.043538, 38.26077], + [-77.043511, 38.260787], + [-77.043401, 38.26085], + [-77.043119, 38.261015], + [-77.043066, 38.26103], + [-77.042944, 38.261066], + [-77.042903, 38.261077], + [-77.042835, 38.261097], + [-77.042781, 38.261101], + [-77.04274, 38.261105], + [-77.04271, 38.261107], + [-77.042621, 38.261115], + [-77.042592, 38.261118], + [-77.042555, 38.261109], + [-77.042446, 38.261085], + [-77.04241, 38.261077], + [-77.042371, 38.261016], + [-77.042315, 38.26093], + [-77.042216, 38.260878], + [-77.042153, 38.260845], + [-77.042046, 38.260832], + [-77.041985, 38.260826], + [-77.041725, 38.260828], + [-77.041618, 38.260829], + [-77.041546, 38.260829], + [-77.041505, 38.260826], + [-77.041478, 38.260824], + [-77.041396, 38.260818], + [-77.041295, 38.260811], + [-77.041155, 38.260771], + [-77.041077, 38.260749], + [-77.040731, 38.260837], + [-77.04064, 38.260836], + [-77.040132, 38.260831], + [-77.039786, 38.260909], + [-77.039509, 38.260985], + [-77.039317, 38.260992], + [-77.039258, 38.260995], + [-77.039135, 38.260977], + [-77.038874, 38.260941], + [-77.03869, 38.260829], + [-77.03862, 38.260779], + [-77.038559, 38.260718], + [-77.038504, 38.260586], + [-77.038464, 38.260471], + [-77.038445, 38.260349], + [-77.038451, 38.260284], + [-77.037998, 38.260009], + [-77.037992, 38.259985], + [-77.037919, 38.259947], + [-77.037857, 38.25985], + [-77.037766, 38.259831], + [-77.037664, 38.259646], + [-77.037426, 38.259451], + [-77.037044, 38.259194], + [-77.036716, 38.259013], + [-77.036675, 38.258933], + [-77.036627, 38.258906], + [-77.036563, 38.258871], + [-77.035583, 38.258599], + [-77.035119, 38.258625], + [-77.034931, 38.258634], + [-77.034674, 38.258734], + [-77.034421, 38.259156], + [-77.034473, 38.25922], + [-77.034486, 38.259237], + [-77.034565, 38.259335], + [-77.034602, 38.259395], + [-77.03459, 38.259477], + [-77.03446, 38.259567], + [-77.034175, 38.25982], + [-77.03393, 38.260049], + [-77.033816, 38.260319], + [-77.033795, 38.260395], + [-77.033941, 38.260455], + [-77.034243, 38.260528], + [-77.034273, 38.260603], + [-77.034541, 38.260731], + [-77.034612, 38.260791], + [-77.034756, 38.260914], + [-77.034823, 38.261094], + [-77.034813, 38.261226], + [-77.034712, 38.261348], + [-77.034657, 38.261348], + [-77.034415, 38.261352], + [-77.034238, 38.261354], + [-77.034213, 38.261347], + [-77.033796, 38.261243], + [-77.03362, 38.261225], + [-77.033419, 38.261205], + [-77.033342, 38.261197], + [-77.033286, 38.261192], + [-77.033111, 38.261194], + [-77.033034, 38.261196], + [-77.032987, 38.261197], + [-77.03297, 38.261198], + [-77.032779, 38.261221], + [-77.032716, 38.261229], + [-77.032525, 38.261359], + [-77.032577, 38.261419], + [-77.032573, 38.261434], + [-77.032517, 38.261414], + [-77.032508, 38.261473], + [-77.032489, 38.261601], + [-77.032593, 38.261953], + [-77.032626, 38.262031], + [-77.032686, 38.262171], + [-77.032701, 38.262207], + [-77.032698, 38.262267], + [-77.032691, 38.262448], + [-77.032689, 38.262509], + [-77.032628, 38.262586], + [-77.032448, 38.262817], + [-77.032388, 38.262895], + [-77.032379, 38.262906], + [-77.032368, 38.262921], + [-77.032355, 38.262943], + [-77.032349, 38.262957], + [-77.032326, 38.263], + [-77.032279, 38.263088], + [-77.03221, 38.263218], + [-77.032269, 38.263474], + [-77.032289, 38.263562], + [-77.03235, 38.263647], + [-77.032469, 38.263813], + [-77.032618, 38.263759], + [-77.03285, 38.263774], + [-77.033109, 38.263826], + [-77.03341, 38.26387], + [-77.033722, 38.264185], + [-77.033646, 38.264435], + [-77.033486, 38.264548], + [-77.032974, 38.264913], + [-77.032842, 38.264951], + [-77.032781, 38.264993], + [-77.032451, 38.265222], + [-77.032025, 38.265244], + [-77.031761, 38.265303], + [-77.031392, 38.265417], + [-77.031003, 38.265607], + [-77.029593, 38.26609], + [-77.029426, 38.266112], + [-77.02936, 38.266149], + [-77.029325, 38.266199], + [-77.029222, 38.266348], + [-77.029188, 38.266399], + [-77.029095, 38.266492], + [-77.029073, 38.266516], + [-77.028997, 38.266836], + [-77.028997, 38.267836], + [-77.028797, 38.268136], + [-77.028197, 38.268536], + [-77.027777, 38.268619], + [-77.027697, 38.268636], + [-77.027079, 38.268527], + [-77.026697, 38.268336], + [-77.025697, 38.268536], + [-77.025593, 38.268587], + [-77.025297, 38.268736], + [-77.025239, 38.268748], + [-77.024855, 38.268824], + [-77.024797, 38.268836], + [-77.023997, 38.268836], + [-77.023697, 38.268736], + [-77.023397, 38.268736], + [-77.023197, 38.268636], + [-77.022897, 38.268636], + [-77.022497, 38.268736], + [-77.022319, 38.268824], + [-77.022297, 38.268836], + [-77.021797, 38.269336], + [-77.021597, 38.269436], + [-77.021518, 38.269488], + [-77.021297, 38.269636], + [-77.020997, 38.269636], + [-77.020697, 38.269736], + [-77.019897, 38.269736], + [-77.019297, 38.269836], + [-77.018597, 38.269836], + [-77.018435, 38.269816], + [-77.017797, 38.269736], + [-77.017397, 38.269536], + [-77.017097, 38.269436], + [-77.016297, 38.269236], + [-77.015897, 38.269336], + [-77.014897, 38.269336], + [-77.014551, 38.269422], + [-77.014497, 38.269436], + [-77.014197, 38.269636], + [-77.013997, 38.269736], + [-77.013941, 38.269903], + [-77.013897, 38.270036], + [-77.013997, 38.270236], + [-77.013997, 38.270636], + [-77.013897, 38.271036], + [-77.013886, 38.271062], + [-77.013698, 38.271533], + [-77.013697, 38.271536], + [-77.013597, 38.271736], + [-77.013397, 38.271936], + [-77.012897, 38.272036], + [-77.012497, 38.272236], + [-77.011597, 38.272236], + [-77.011197, 38.272336], + [-77.010597, 38.272536], + [-77.010576, 38.272544], + [-77.010097, 38.272736], + [-77.009497, 38.272936], + [-77.009197, 38.273136], + [-77.008797, 38.273336], + [-77.008297, 38.273836], + [-77.007697, 38.274636], + [-77.007525, 38.275151], + [-77.007497, 38.275236], + [-77.007397, 38.275736], + [-77.007397, 38.276036], + [-77.007497, 38.276436], + [-77.007526, 38.276522], + [-77.007597, 38.276736], + [-77.007597, 38.277136], + [-77.007397, 38.277336], + [-77.007364, 38.277352], + [-77.007197, 38.277436], + [-77.006397, 38.277436], + [-77.006097, 38.277536], + [-77.005997, 38.277436], + [-77.005697, 38.277436], + [-77.005397, 38.277236], + [-77.005097, 38.277136], + [-77.004897, 38.277036], + [-77.004297, 38.276436], + [-77.004098, 38.276235], + [-77.003966, 38.276137], + [-77.003697, 38.275936], + [-77.003551, 38.275888], + [-77.003396, 38.275837], + [-77.00325, 38.275836], + [-77.003097, 38.275836], + [-77.003029, 38.275822], + [-77.002818, 38.27578], + [-77.002675, 38.275752], + [-77.002621, 38.275741], + [-77.002597, 38.275736], + [-77.002462, 38.275769], + [-77.002409, 38.275783], + [-77.002221, 38.275829], + [-77.002197, 38.275836], + [-77.001897, 38.275936], + [-77.001671, 38.276011], + [-77.001597, 38.276036], + [-77.001486, 38.276064], + [-77.00138, 38.27609], + [-77.001197, 38.276136], + [-77.00095, 38.276136], + [-77.000695, 38.276232], + [-77.000329, 38.276371], + [-76.999956, 38.276573], + [-76.99988, 38.276615], + [-76.999697, 38.276644], + [-76.997672, 38.278054], + [-76.999697, 38.279349], + [-76.999987, 38.279515], + [-77.00086, 38.280015], + [-77.001152, 38.280182], + [-77.001269, 38.280345], + [-77.001304, 38.280393], + [-77.001499, 38.280714], + [-77.001541, 38.280843], + [-77.001537, 38.280876], + [-77.001519, 38.281077], + [-77.001533, 38.281438], + [-77.001544, 38.281488], + [-77.001605, 38.281751], + [-77.00177, 38.281927], + [-77.002415, 38.282262], + [-77.002782, 38.282453], + [-77.004528, 38.284919], + [-77.005169, 38.285606], + [-77.005415, 38.28587], + [-77.006179, 38.286692], + [-77.008711, 38.288969], + [-77.009505, 38.290864], + [-77.010666, 38.292775], + [-77.012838, 38.294377], + [-77.013879, 38.29539], + [-77.014592, 38.296084], + [-77.016451, 38.298845], + [-77.016891, 38.299195], + [-77.018296, 38.300311], + [-77.018519, 38.300382], + [-77.021027, 38.301188], + [-77.02351, 38.301463], + [-77.025355, 38.302817], + [-77.025594, 38.303076], + [-77.027007, 38.304613], + [-77.027425, 38.304895], + [-77.028133, 38.305325], + [-77.028215, 38.305843], + [-77.028508, 38.306699], + [-77.028541, 38.307125], + [-77.028504, 38.308098], + [-77.028415, 38.308758], + [-77.028335, 38.309301], + [-77.028459, 38.309554], + [-77.028708, 38.310397], + [-77.028739, 38.310888], + [-77.028767, 38.31139], + [-77.028914, 38.311521], + [-77.028975, 38.311541], + [-77.02906, 38.31157], + [-77.029185, 38.311558], + [-77.029312, 38.311546], + [-77.029489, 38.311531], + [-77.029626, 38.311374], + [-77.029711, 38.311278], + [-77.029908, 38.311342], + [-77.030418, 38.31151], + [-77.030495, 38.311544], + [-77.030685, 38.31163], + [-77.03047, 38.311909], + [-77.029826, 38.312748], + [-77.029612, 38.313028], + [-77.02859, 38.314361], + [-77.027567, 38.315695], + [-77.026973, 38.316469], + [-77.02615, 38.317542], + [-77.024734, 38.31939], + [-77.024456, 38.319751], + [-77.021691, 38.323359], + [-77.019057, 38.326792], + [-77.018647, 38.327328], + [-77.016419, 38.330234], + [-77.016094, 38.330662], + [-77.015122, 38.331946], + [-77.014798, 38.332375], + [-77.014745, 38.332424], + [-77.014586, 38.332575], + [-77.014534, 38.332625], + [-77.014529, 38.332642], + [-77.014516, 38.332697], + [-77.014512, 38.332715], + [-77.014403, 38.33318], + [-77.01468, 38.333509], + [-77.014957, 38.33391], + [-77.015061, 38.334175], + [-77.015068, 38.33432], + [-77.015072, 38.334392], + [-77.015055, 38.335253], + [-77.014801, 38.335704], + [-77.014376, 38.336525], + [-77.014337, 38.337047], + [-77.01435, 38.337731], + [-77.014852, 38.338188], + [-77.015468, 38.338717], + [-77.015717, 38.339033], + [-77.016125, 38.339551], + [-77.016383, 38.340009], + [-77.016499, 38.340639], + [-77.016539, 38.340853], + [-77.016786, 38.341627], + [-77.016809, 38.341696], + [-77.01671, 38.342436], + [-77.016693, 38.343353], + [-77.016453, 38.344615], + [-77.016417, 38.344677], + [-77.015904, 38.345571], + [-77.01579, 38.346832], + [-77.015739, 38.347407], + [-77.015531, 38.350622], + [-77.01545, 38.351886], + [-77.015137, 38.35282], + [-77.014972, 38.353248], + [-77.014844, 38.353584], + [-77.01465, 38.354051], + [-77.014694, 38.354469], + [-77.014718, 38.355313], + [-77.014771, 38.355916], + [-77.014855, 38.356246], + [-77.014838, 38.357138], + [-77.014801, 38.357501], + [-77.01469, 38.358594], + [-77.014656, 38.358938], + [-77.014645, 38.359041], + [-77.014615, 38.359352], + [-77.014605, 38.359456], + [-77.014603, 38.359478], + [-77.0146, 38.359546], + [-77.0146, 38.359569], + [-77.014559, 38.36027], + [-77.014537, 38.360659], + [-77.014602, 38.361397], + [-77.014473, 38.362225], + [-77.0145, 38.362364], + [-77.014576, 38.362748], + [-77.014598, 38.363059], + [-77.01461, 38.36323], + [-77.014787, 38.363856], + [-77.014832, 38.36503], + [-77.014949, 38.365809], + [-77.014989, 38.365937], + [-77.015094, 38.366275], + [-77.015088, 38.367087], + [-77.015172, 38.367674], + [-77.015493, 38.368469], + [-77.01572, 38.369007], + [-77.015834, 38.369288], + [-77.015913, 38.371032], + [-77.01568, 38.371306], + [-77.015538, 38.371547], + [-77.015274, 38.372046], + [-77.014582, 38.372747], + [-77.013747, 38.373352], + [-77.013494, 38.373492], + [-77.013053, 38.373739], + [-77.01189, 38.374345], + [-77.011656, 38.374394], + [-77.011466, 38.374433], + [-77.011508, 38.374569], + [-77.011995, 38.374771], + [-77.012024, 38.374788], + [-77.012112, 38.374841], + [-77.012142, 38.374859], + [-77.012134, 38.374913], + [-77.012112, 38.375077], + [-77.012105, 38.375132], + [-77.012328, 38.375488], + [-77.012335, 38.375494], + [-77.013356, 38.376411], + [-77.013835, 38.37696], + [-77.013888, 38.377018], + [-77.01464, 38.377842], + [-77.015016, 38.378472], + [-77.015698, 38.379111], + [-77.017655, 38.38106], + [-77.018021, 38.381609], + [-77.0185, 38.381949], + [-77.019358, 38.382339], + [-77.019442, 38.382382], + [-77.021103, 38.383224], + [-77.021368, 38.383515], + [-77.021654, 38.383725], + [-77.021743, 38.383879], + [-77.021766, 38.383919], + [-77.021888, 38.384057], + [-77.021959, 38.384162], + [-77.022122, 38.384235], + [-77.022286, 38.384308], + [-77.022602, 38.384511], + [-77.02305, 38.385047], + [-77.024221, 38.38645], + [-77.025188, 38.38746], + [-77.025932, 38.388237], + [-77.026473, 38.388634], + [-77.026761, 38.38874], + [-77.027351, 38.388959], + [-77.028107, 38.389309], + [-77.028984, 38.3899], + [-77.029296, 38.390178], + [-77.030027, 38.39083], + [-77.031124, 38.391809], + [-77.031544, 38.392053], + [-77.032114, 38.392722], + [-77.032277, 38.39287], + [-77.033735, 38.394195], + [-77.034551, 38.39489], + [-77.036559, 38.396743], + [-77.037477, 38.397527], + [-77.039168, 38.398912], + [-77.039344, 38.399057], + [-77.040914, 38.400311], + [-77.041507, 38.4007], + [-77.041612, 38.400733], + [-77.042016, 38.40086], + [-77.042284, 38.400945], + [-77.043272, 38.401004], + [-77.043696, 38.40103], + [-77.044679, 38.400736], + [-77.045253, 38.4005], + [-77.046001, 38.400193], + [-77.047476, 38.399714], + [-77.04846, 38.399436], + [-77.049218, 38.399282], + [-77.049822, 38.399159], + [-77.049989, 38.399189], + [-77.050629, 38.399307], + [-77.051622, 38.399222], + [-77.053422, 38.398821], + [-77.056785, 38.396208], + [-77.057181, 38.395751], + [-77.058708, 38.393994], + [-77.061231, 38.388869], + [-77.068198, 38.380926], + [-77.069179, 38.379771], + [-77.070552, 38.378159], + [-77.074002, 38.375132], + [-77.074652, 38.374393], + [-77.075467, 38.373852], + [-77.076892, 38.372771], + [-77.078176, 38.372012], + [-77.078874, 38.371613], + [-77.081376, 38.370186], + [-77.084058, 38.369109], + [-77.08424, 38.368747], + [-77.08668, 38.367936], + [-77.090091, 38.367283], + [-77.091563, 38.367351], + [-77.093536, 38.367305], + [-77.093706, 38.367391], + [-77.094438, 38.36776], + [-77.095855, 38.368123], + [-77.096823, 38.368372], + [-77.098124, 38.368834], + [-77.101723, 38.369537], + [-77.103863, 38.369733], + [-77.104061, 38.369737], + [-77.104876, 38.369754], + [-77.106318, 38.36975], + [-77.107288, 38.369731], + [-77.107994, 38.369672], + [-77.108872, 38.369549], + [-77.109669, 38.369426], + [-77.110619, 38.369294], + [-77.111069, 38.369236], + [-77.111834, 38.369138], + [-77.112457, 38.369039], + [-77.113213, 38.368876], + [-77.113383, 38.368845], + [-77.113743, 38.368778], + [-77.113772, 38.368771], + [-77.114183, 38.36868], + [-77.114907, 38.368525], + [-77.115039, 38.368525], + [-77.115326, 38.368475], + [-77.116184, 38.368328], + [-77.116685, 38.368319], + [-77.117105, 38.368086], + [-77.117255, 38.368003], + [-77.117755, 38.367833], + [-77.119205, 38.367595], + [-77.120819, 38.367301], + [-77.122559, 38.367162], + [-77.123863, 38.367058], + [-77.124405, 38.367008], + [-77.124701, 38.366768], + [-77.127097, 38.367232], + [-77.128858, 38.36725], + [-77.130149, 38.367406], + [-77.133282, 38.367846], + [-77.134275, 38.367923], + [-77.137736, 38.368031], + [-77.138226, 38.367924], + [-77.138698, 38.367755], + [-77.13918, 38.367583], + [-77.13994, 38.366945], + [-77.140325, 38.366623], + [-77.143287, 38.363738], + [-77.143827, 38.363236], + [-77.144744, 38.362402], + [-77.145514, 38.361705], + [-77.145771, 38.361471], + [-77.146217, 38.360841], + [-77.148827, 38.357478], + [-77.149263, 38.356864], + [-77.151386, 38.354486], + [-77.155193, 38.351054], + [-77.15742, 38.349269], + [-77.158369, 38.34851], + [-77.158518, 38.348418], + [-77.16159, 38.346515], + [-77.162594, 38.346047], + [-77.162614, 38.346037], + [-77.162673, 38.34601], + [-77.162694, 38.346001], + [-77.163221, 38.345831], + [-77.164222, 38.345646], + [-77.164745, 38.345551], + [-77.167485, 38.345298], + [-77.168898, 38.345061], + [-77.169017, 38.345042], + [-77.169733, 38.344922], + [-77.170449, 38.344803], + [-77.176063, 38.342983], + [-77.179341, 38.341922], + [-77.182729, 38.342013], + [-77.190497, 38.341045], + [-77.193539, 38.341123], + [-77.194166, 38.34114], + [-77.194497, 38.341149], + [-77.199435, 38.340897], + [-77.199439, 38.340896], + [-77.199459, 38.340896], + [-77.199865, 38.340876], + [-77.200041, 38.340901], + [-77.201778, 38.341151], + [-77.202357, 38.341235], + [-77.202467, 38.341251], + [-77.204157, 38.341139], + [-77.204696, 38.341104], + [-77.206839, 38.340212], + [-77.207022, 38.340136], + [-77.208066, 38.34018], + [-77.209293, 38.340166], + [-77.209374, 38.340144], + [-77.210764, 38.339784], + [-77.211122, 38.339691], + [-77.214676, 38.338797], + [-77.21595, 38.33829], + [-77.217524, 38.337665], + [-77.218573, 38.337248], + [-77.221653, 38.336784], + [-77.22172, 38.336774], + [-77.226229, 38.33536], + [-77.228759, 38.334567], + [-77.230405, 38.33405], + [-77.23131, 38.333767], + [-77.233104, 38.333204], + [-77.234743, 38.332689], + [-77.2349, 38.332641], + [-77.23506, 38.332591], + [-77.23521, 38.332544], + [-77.236435, 38.332307], + [-77.240073, 38.331605], + [-77.240114, 38.331604], + [-77.241079, 38.331595], + [-77.24125, 38.331593], + [-77.241363, 38.331592], + [-77.243031, 38.331574], + [-77.247151, 38.331531], + [-77.248035, 38.331566], + [-77.249703, 38.331632], + [-77.250473, 38.331702], + [-77.258009, 38.332387], + [-77.265297, 38.333172], + [-77.266885, 38.333835], + [-77.267217, 38.333974], + [-77.267547, 38.334112], + [-77.271409, 38.335923], + [-77.276583, 38.337889], + [-77.277053, 38.338478], + [-77.277798, 38.338943], + [-77.277994, 38.339066], + [-77.283035, 38.342805], + [-77.283798, 38.342863], + [-77.284125, 38.343427], + [-77.286204, 38.347032], + [-77.286504, 38.347032], + [-77.286704, 38.347132], + [-77.286904, 38.347132], + [-77.287204, 38.347332], + [-77.287504, 38.347432], + [-77.287804, 38.347632], + [-77.288204, 38.348032], + [-77.289204, 38.348532], + [-77.289504, 38.348532], + [-77.289565, 38.348552], + [-77.289804, 38.348632], + [-77.291304, 38.348632], + [-77.292304, 38.348432], + [-77.292804, 38.348232], + [-77.293304, 38.348132], + [-77.293504, 38.348032], + [-77.293649, 38.347959], + [-77.293704, 38.347932], + [-77.293804, 38.347932], + [-77.294204, 38.347732], + [-77.294804, 38.347532], + [-77.295304, 38.347332], + [-77.296204, 38.347132], + [-77.296417, 38.347047], + [-77.296705, 38.346933], + [-77.297105, 38.346833], + [-77.297605, 38.346633], + [-77.298005, 38.346533], + [-77.298505, 38.346433], + [-77.299205, 38.346433], + [-77.299806, 38.346333], + [-77.300905, 38.346333], + [-77.301505, 38.346433], + [-77.302105, 38.346433], + [-77.302405, 38.346531], + [-77.302601, 38.346532], + [-77.302605, 38.346533], + [-77.302805, 38.346633], + [-77.303105, 38.346733], + [-77.303151, 38.346742], + [-77.303345, 38.346781], + [-77.303605, 38.346833], + [-77.304505, 38.346833], + [-77.305005, 38.346933], + [-77.305405, 38.346833], + [-77.305605, 38.346833], + [-77.305905, 38.346733], + [-77.305908, 38.34673], + [-77.306305, 38.346433], + [-77.306505, 38.346233], + [-77.306805, 38.346033], + [-77.307206, 38.345833], + [-77.307342, 38.34573], + [-77.307606, 38.345533], + [-77.308206, 38.345333], + [-77.308606, 38.345234], + [-77.309806, 38.344834], + [-77.310206, 38.344734], + [-77.310466, 38.344681], + [-77.310706, 38.344634], + [-77.311306, 38.344634], + [-77.311906, 38.344534], + [-77.312406, 38.344434], + [-77.312706, 38.344434], + [-77.312906, 38.344334], + [-77.313106, 38.344334], + [-77.313306, 38.344434], + [-77.314306, 38.344634], + [-77.314606, 38.344834], + [-77.315006, 38.344934], + [-77.315406, 38.345134], + [-77.315706, 38.345234], + [-77.316105, 38.345533], + [-77.316305, 38.345733], + [-77.316605, 38.345733], + [-77.317005, 38.345833], + [-77.317205, 38.345933], + [-77.317405, 38.345933], + [-77.317605, 38.346033], + [-77.318105, 38.346033], + [-77.318605, 38.345933], + [-77.319605, 38.345933], + [-77.320005, 38.345733], + [-77.320505, 38.345533], + [-77.320905, 38.345433], + [-77.321105, 38.345333], + [-77.321405, 38.345234], + [-77.32144, 38.343817], + [-77.321546, 38.339566], + [-77.321582, 38.33815], + [-77.321599, 38.33813], + [-77.32165, 38.338074], + [-77.321668, 38.338055], + [-77.321751, 38.337965], + [-77.321764, 38.337962], + [-77.322164, 38.337881], + [-77.322298, 38.337854], + [-77.322451, 38.337823], + [-77.322562, 38.337801], + [-77.322881, 38.337641], + [-77.323022, 38.337572], + [-77.323111, 38.337515], + [-77.323138, 38.337498], + [-77.323413, 38.337422], + [-77.323442, 38.337415], + [-77.323518, 38.337412], + [-77.32359, 38.337408], + [-77.323808, 38.337399], + [-77.323881, 38.337396], + [-77.324051, 38.3374], + [-77.324111, 38.337402], + [-77.324339, 38.337343], + [-77.324396, 38.337358], + [-77.324549, 38.337321], + [-77.324672, 38.337292], + [-77.324713, 38.337275], + [-77.324755, 38.337257], + [-77.324775, 38.337241], + [-77.324943, 38.337109], + [-77.325, 38.337066], + [-77.325171, 38.336964], + [-77.325303, 38.336939], + [-77.325568, 38.336939], + [-77.325755, 38.336908], + [-77.325831, 38.336885], + [-77.326131, 38.336681], + [-77.32631, 38.336595], + [-77.326658, 38.336572], + [-77.327006, 38.336522], + [-77.327067, 38.336514], + [-77.327522, 38.336393], + [-77.327648, 38.33636], + [-77.327806, 38.3363], + [-77.327958, 38.336244], + [-77.328184, 38.336102], + [-77.328446, 38.335778], + [-77.328489, 38.335744], + [-77.328726, 38.33556], + [-77.328779, 38.335519], + [-77.329054, 38.335398], + [-77.329062, 38.335395], + [-77.329641, 38.335227], + [-77.329799, 38.335152], + [-77.330069, 38.335087], + [-77.330138, 38.335059], + [-77.330386, 38.334959], + [-77.330467, 38.334886], + [-77.33047, 38.334761], + [-77.330474, 38.334661], + [-77.330435, 38.334541], + [-77.330435, 38.334392], + [-77.330436, 38.334332], + [-77.33045, 38.334269], + [-77.330466, 38.334194], + [-77.330544, 38.334017], + [-77.330549, 38.333946], + [-77.330559, 38.333836], + [-77.330503, 38.333381], + [-77.330456, 38.333211], + [-77.33032, 38.33297], + [-77.330248, 38.332842], + [-77.330127, 38.332691], + [-77.330045, 38.332588], + [-77.329894, 38.332443], + [-77.329647, 38.332151], + [-77.329282, 38.33185], + [-77.329036, 38.331575], + [-77.328924, 38.331336], + [-77.328816, 38.331025], + [-77.328689, 38.330753], + [-77.328647, 38.330539], + [-77.328473, 38.330109], + [-77.328196, 38.329499], + [-77.328166, 38.329408], + [-77.328117, 38.329263], + [-77.32788, 38.328808], + [-77.327804, 38.328612], + [-77.327784, 38.328524], + [-77.327771, 38.328468], + [-77.327735, 38.328179], + [-77.327758, 38.328036], + [-77.327851, 38.327798], + [-77.327961, 38.327516], + [-77.327997, 38.327427], + [-77.328026, 38.327239], + [-77.328183, 38.326934], + [-77.328267, 38.326713], + [-77.328268, 38.326672], + [-77.32828, 38.32637], + [-77.328282, 38.326312], + [-77.328236, 38.326197], + [-77.328126, 38.326116], + [-77.327915, 38.325962], + [-77.327792, 38.325827], + [-77.327723, 38.325631], + [-77.32759, 38.32536], + [-77.327537, 38.32525], + [-77.327487, 38.325061], + [-77.327481, 38.325037], + [-77.327462, 38.324657], + [-77.327462, 38.324653], + [-77.327477, 38.324465], + [-77.327576, 38.324063], + [-77.327666, 38.32383], + [-77.327642, 38.323512], + [-77.327645, 38.323475], + [-77.327668, 38.323259], + [-77.327655, 38.323073], + [-77.327636, 38.322796], + [-77.327604, 38.322326], + [-77.327635, 38.321967], + [-77.327659, 38.321691], + [-77.32766, 38.321677], + [-77.327624, 38.321435], + [-77.327606, 38.321315], + [-77.327588, 38.320964], + [-77.327518, 38.320746], + [-77.327508, 38.320675], + [-77.32749, 38.320532], + [-77.327432, 38.320435], + [-77.327451, 38.320385], + [-77.327399, 38.320269], + [-77.32718, 38.319776], + [-77.327107, 38.319612], + [-77.32709, 38.319573], + [-77.327061, 38.319399], + [-77.327053, 38.319346], + [-77.327038, 38.31925], + [-77.327041, 38.31913], + [-77.327063, 38.319], + [-77.327088, 38.318854], + [-77.327329, 38.318322], + [-77.327481, 38.318046], + [-77.327547, 38.317928], + [-77.327702, 38.317782], + [-77.327903, 38.31775], + [-77.327993, 38.31771], + [-77.328061, 38.317654], + [-77.328313, 38.317372], + [-77.328458, 38.317212], + [-77.328675, 38.317032], + [-77.32884, 38.316941], + [-77.329179, 38.316884], + [-77.329309, 38.316788], + [-77.329531, 38.316548], + [-77.329703, 38.316473], + [-77.329849, 38.316443], + [-77.329986, 38.316391], + [-77.330184, 38.316266], + [-77.330236, 38.316219], + [-77.330517, 38.315974], + [-77.330797, 38.315787], + [-77.330829, 38.315776], + [-77.330854, 38.315774], + [-77.330869, 38.315762], + [-77.330925, 38.315742], + [-77.331066, 38.315693], + [-77.33115, 38.315673], + [-77.331227, 38.315656], + [-77.331335, 38.315631], + [-77.331619, 38.315567], + [-77.331657, 38.315552], + [-77.331762, 38.315515], + [-77.331778, 38.315509], + [-77.332045, 38.315366], + [-77.33218, 38.31527], + [-77.332277, 38.315202], + [-77.332771, 38.314753], + [-77.333337, 38.314393], + [-77.333468, 38.314311], + [-77.333611, 38.314193], + [-77.333685, 38.314068], + [-77.333763, 38.313937], + [-77.33393, 38.313795], + [-77.334075, 38.313673], + [-77.334121, 38.313578], + [-77.334269, 38.313411], + [-77.334419, 38.3131], + [-77.334555, 38.312971], + [-77.334589, 38.312917], + [-77.334761, 38.312648], + [-77.334782, 38.3126], + [-77.334794, 38.312571], + [-77.334832, 38.312488], + [-77.334845, 38.31246], + [-77.33483, 38.312304], + [-77.334813, 38.312114], + [-77.334751, 38.311843], + [-77.33474, 38.311792], + [-77.334688, 38.311702], + [-77.334526, 38.311423], + [-77.334503, 38.311359], + [-77.334388, 38.31103], + [-77.334232, 38.31072], + [-77.334094, 38.310267], + [-77.334083, 38.310228], + [-77.334055, 38.30988], + [-77.334052, 38.309856], + [-77.334046, 38.309787], + [-77.334045, 38.309764], + [-77.334037, 38.309664], + [-77.333953, 38.30944], + [-77.333938, 38.309313], + [-77.333926, 38.309198], + [-77.333912, 38.309071], + [-77.333904, 38.308996], + [-77.33392, 38.30882], + [-77.333896, 38.308733], + [-77.333876, 38.308697], + [-77.333815, 38.308586], + [-77.333804, 38.308537], + [-77.333782, 38.308433], + [-77.333762, 38.308396], + [-77.33374, 38.308353], + [-77.333663, 38.308208], + [-77.333626, 38.308139], + [-77.333599, 38.307727], + [-77.333598, 38.307711], + [-77.333538, 38.307577], + [-77.333872, 38.307125], + [-77.333921, 38.307061], + [-77.334659, 38.306344], + [-77.334933, 38.305838], + [-77.334933, 38.305837], + [-77.335305, 38.305415], + [-77.335504, 38.30457], + [-77.335385, 38.304277], + [-77.33542, 38.303947], + [-77.33605, 38.302658], + [-77.336193, 38.302368], + [-77.336503, 38.302507], + [-77.337082, 38.302781], + [-77.337667, 38.303006], + [-77.338225, 38.303165], + [-77.338706, 38.303099], + [-77.339012, 38.302968], + [-77.33927, 38.302731], + [-77.339346, 38.302374], + [-77.339395, 38.301507], + [-77.33945, 38.301024], + [-77.339791, 38.300145], + [-77.339659, 38.299667], + [-77.339554, 38.299475], + [-77.339429, 38.299321], + [-77.339038, 38.299041], + [-77.338906, 38.298888], + [-77.338899, 38.29875], + [-77.338906, 38.298673], + [-77.338912, 38.298552], + [-77.338913, 38.298542], + [-77.339045, 38.298388], + [-77.339031, 38.298344], + [-77.339115, 38.297976], + [-77.339267, 38.297403], + [-77.339372, 38.297015], + [-77.339393, 38.296795], + [-77.33949, 38.296433], + [-77.339817, 38.295439], + [-77.339887, 38.295148], + [-77.340151, 38.294496], + [-77.340221, 38.294324], + [-77.340409, 38.293934], + [-77.340472, 38.293542], + [-77.340485, 38.293462], + [-77.340476, 38.293444], + [-77.34043, 38.293347], + [-77.340418, 38.293153], + [-77.340416, 38.293116], + [-77.340383, 38.293062], + [-77.34036, 38.293023], + [-77.34032, 38.292884], + [-77.340318, 38.292875], + [-77.340346, 38.292809], + [-77.340004, 38.292461], + [-77.339941, 38.292397], + [-77.339881, 38.292319], + [-77.33975, 38.292147], + [-77.339656, 38.292024], + [-77.339551, 38.291826], + [-77.339586, 38.29159], + [-77.339585, 38.29156], + [-77.33958, 38.291345], + [-77.339579, 38.291304], + [-77.339574, 38.291286], + [-77.339526, 38.291116], + [-77.339511, 38.29106], + [-77.339488, 38.29098], + [-77.339379, 38.29072], + [-77.339216, 38.290327], + [-77.339153, 38.290069], + [-77.339111, 38.289706], + [-77.339116, 38.28967], + [-77.33916, 38.28936], + [-77.339132, 38.289317], + [-77.339142, 38.289212], + [-77.339176, 38.288899], + [-77.339187, 38.288795], + [-77.339153, 38.288745], + [-77.33918, 38.288543], + [-77.339278, 38.287823], + [-77.33929, 38.287758], + [-77.339343, 38.2875], + [-77.339361, 38.287411], + [-77.339389, 38.287093], + [-77.339493, 38.286824], + [-77.339626, 38.286483], + [-77.339716, 38.286192], + [-77.339804, 38.285867], + [-77.339994, 38.285171], + [-77.340073, 38.284816], + [-77.340147, 38.28449], + [-77.340273, 38.284149], + [-77.340321, 38.284023], + [-77.340419, 38.283891], + [-77.340572, 38.28354], + [-77.340593, 38.283435], + [-77.340582, 38.28334], + [-77.340565, 38.283188], + [-77.340586, 38.283133], + [-77.340655, 38.283084], + [-77.340829, 38.283128], + [-77.340906, 38.283128], + [-77.340983, 38.283073], + [-77.341031, 38.283012], + [-77.341052, 38.282935], + [-77.341052, 38.282826], + [-77.341, 38.282679], + [-77.340982, 38.282628], + [-77.341038, 38.282535], + [-77.341407, 38.282276], + [-77.341547, 38.282112], + [-77.341769, 38.281716], + [-77.342298, 38.281156], + [-77.342619, 38.280771], + [-77.342786, 38.280618], + [-77.342946, 38.280574], + [-77.343161, 38.280429], + [-77.343225, 38.280387], + [-77.343406, 38.280228], + [-77.343566, 38.280046], + [-77.343691, 38.279755], + [-77.34374, 38.279569], + [-77.34374, 38.279459], + [-77.343678, 38.279254], + [-77.343655, 38.279177], + [-77.343607, 38.279019], + [-77.343595, 38.278919], + [-77.343593, 38.278893], + [-77.343468, 38.278635], + [-77.343433, 38.278509], + [-77.343454, 38.27835], + [-77.343514, 38.278167], + [-77.343586, 38.277954], + [-77.343592, 38.277914], + [-77.343606, 38.277808], + [-77.343621, 38.277707], + [-77.343676, 38.277499], + [-77.34369, 38.277449], + [-77.343713, 38.2774], + [-77.343941, 38.276905], + [-77.344108, 38.276625], + [-77.344324, 38.276307], + [-77.344386, 38.27624], + [-77.344658, 38.27595], + [-77.344985, 38.275713], + [-77.345688, 38.275384], + [-77.34603, 38.275126], + [-77.346211, 38.274961], + [-77.3466, 38.274554], + [-77.346754, 38.27428], + [-77.346809, 38.274109], + [-77.346976, 38.273753], + [-77.347011, 38.273511], + [-77.347053, 38.273425], + [-77.347317, 38.272896], + [-77.347463, 38.272462], + [-77.347463, 38.272385], + [-77.347561, 38.272187], + [-77.347484, 38.271479], + [-77.347344, 38.271007], + [-77.347315, 38.270967], + [-77.347184, 38.270782], + [-77.346933, 38.270529], + [-77.346675, 38.27031], + [-77.346584, 38.270255], + [-77.34648, 38.270227], + [-77.346299, 38.270118], + [-77.346006, 38.269821], + [-77.345616, 38.269558], + [-77.345372, 38.269475], + [-77.345191, 38.269432], + [-77.344989, 38.269349], + [-77.344404, 38.269256], + [-77.344167, 38.269152], + [-77.344158, 38.269145], + [-77.343909, 38.26896], + [-77.343707, 38.268746], + [-77.343533, 38.268509], + [-77.343366, 38.268197], + [-77.343361, 38.268118], + [-77.343359, 38.268076], + [-77.343314, 38.267888], + [-77.343297, 38.267812], + [-77.343273, 38.267712], + [-77.343268, 38.267691], + [-77.343255, 38.267476], + [-77.343247, 38.267334], + [-77.343259, 38.267305], + [-77.343285, 38.267243], + [-77.343351, 38.267087], + [-77.343353, 38.267055], + [-77.34336, 38.266989], + [-77.343365, 38.266928], + [-77.343253, 38.266675], + [-77.343225, 38.266561], + [-77.343212, 38.266505], + [-77.34319, 38.266176], + [-77.343281, 38.265879], + [-77.343406, 38.26561], + [-77.343385, 38.26555], + [-77.34342, 38.265445], + [-77.343455, 38.265385], + [-77.343545, 38.265303], + [-77.343548, 38.265301], + [-77.343754, 38.265198], + [-77.343803, 38.265149], + [-77.343888, 38.265018], + [-77.343907, 38.264989], + [-77.344054, 38.264837], + [-77.344137, 38.264753], + [-77.3442, 38.26466], + [-77.344234, 38.264429], + [-77.3442, 38.26432], + [-77.34422, 38.264161], + [-77.344241, 38.264001], + [-77.344234, 38.263952], + [-77.344212, 38.263925], + [-77.344165, 38.263869], + [-77.344137, 38.263748], + [-77.344166, 38.263578], + [-77.344171, 38.263556], + [-77.344311, 38.263353], + [-77.344673, 38.263051], + [-77.344805, 38.262881], + [-77.344867, 38.262744], + [-77.345007, 38.262441], + [-77.345016, 38.262407], + [-77.345055, 38.262249], + [-77.345139, 38.262178], + [-77.345355, 38.262095], + [-77.345417, 38.262035], + [-77.345466, 38.261914], + [-77.345466, 38.261859], + [-77.345431, 38.261777], + [-77.345445, 38.261711], + [-77.34564, 38.261513], + [-77.34573, 38.261398], + [-77.345626, 38.261206], + [-77.345528, 38.261107], + [-77.345173, 38.260981], + [-77.345034, 38.260887], + [-77.344894, 38.260706], + [-77.344769, 38.260596], + [-77.34456, 38.26052], + [-77.344268, 38.260509], + [-77.344114, 38.26052], + [-77.343355, 38.260646], + [-77.343216, 38.260685], + [-77.343139, 38.260729], + [-77.343014, 38.260844], + [-77.342944, 38.260866], + [-77.342777, 38.26074], + [-77.342513, 38.260894], + [-77.342311, 38.260877], + [-77.342185, 38.260921], + [-77.342123, 38.260916], + [-77.341949, 38.260762], + [-77.341823, 38.260767], + [-77.341628, 38.260839], + [-77.341434, 38.260669], + [-77.341429, 38.260666], + [-77.341362, 38.260608], + [-77.341202, 38.260557], + [-77.341189, 38.260553], + [-77.340939, 38.260542], + [-77.340841, 38.260515], + [-77.340771, 38.260466], + [-77.340702, 38.260378], + [-77.340674, 38.260273], + [-77.340695, 38.260175], + [-77.340715, 38.26014], + [-77.340827, 38.259938], + [-77.340834, 38.259768], + [-77.340792, 38.259598], + [-77.340687, 38.259488], + [-77.340374, 38.259219], + [-77.340269, 38.259159], + [-77.340158, 38.259126], + [-77.339859, 38.259071], + [-77.339712, 38.259082], + [-77.339532, 38.259125], + [-77.339462, 38.259143], + [-77.339037, 38.259296], + [-77.338661, 38.259329], + [-77.338424, 38.259302], + [-77.338285, 38.259253], + [-77.338187, 38.259203], + [-77.337936, 38.259006], + [-77.337902, 38.25889], + [-77.337734, 38.258544], + [-77.337665, 38.258457], + [-77.337574, 38.258396], + [-77.337511, 38.258303], + [-77.337483, 38.25822], + [-77.33749, 38.258111], + [-77.337532, 38.258034], + [-77.337539, 38.257924], + [-77.337504, 38.257853], + [-77.337434, 38.25777], + [-77.337302, 38.257677], + [-77.336717, 38.257408], + [-77.336494, 38.257199], + [-77.336362, 38.25693], + [-77.336376, 38.256667], + [-77.336306, 38.25659], + [-77.336181, 38.256535], + [-77.336062, 38.256425], + [-77.335986, 38.256403], + [-77.335895, 38.256359], + [-77.335777, 38.256249], + [-77.335568, 38.2562], + [-77.335324, 38.256077], + [-77.335317, 38.256074], + [-77.335052, 38.256112], + [-77.334899, 38.256145], + [-77.334823, 38.256195], + [-77.334676, 38.256211], + [-77.334565, 38.256206], + [-77.334029, 38.256052], + [-77.333973, 38.256019], + [-77.333847, 38.255992], + [-77.333792, 38.255997], + [-77.333736, 38.25597], + [-77.333687, 38.255937], + [-77.333652, 38.255767], + [-77.333607, 38.255645], + [-77.333597, 38.255618], + [-77.333589, 38.255612], + [-77.333501, 38.255539], + [-77.333472, 38.255515], + [-77.33343, 38.255481], + [-77.333332, 38.255432], + [-77.333318, 38.255344], + [-77.333402, 38.255168], + [-77.333395, 38.255091], + [-77.333325, 38.254982], + [-77.333311, 38.254899], + [-77.333249, 38.254846], + [-77.333241, 38.254839], + [-77.333186, 38.254756], + [-77.332879, 38.254548], + [-77.332621, 38.254504], + [-77.332524, 38.254465], + [-77.331946, 38.254389], + [-77.331834, 38.254339], + [-77.331528, 38.254301], + [-77.331382, 38.254257], + [-77.330937, 38.254262], + [-77.330915, 38.254263], + [-77.330811, 38.254257], + [-77.330692, 38.254219], + [-77.330351, 38.254015], + [-77.330213, 38.253915], + [-77.330163, 38.253879], + [-77.330079, 38.253818], + [-77.330048, 38.253744], + [-77.330038, 38.253719], + [-77.330047, 38.253686], + [-77.330078, 38.253575], + [-77.330086, 38.253549], + [-77.330051, 38.253483], + [-77.329975, 38.253412], + [-77.329844, 38.253362], + [-77.329843, 38.253362], + [-77.32973, 38.253371], + [-77.329641, 38.253377], + [-77.32955, 38.253384], + [-77.329285, 38.253384], + [-77.32923, 38.253368], + [-77.328868, 38.253082], + [-77.328805, 38.252983], + [-77.328763, 38.252841], + [-77.3287, 38.252808], + [-77.328652, 38.252753], + [-77.328582, 38.25272], + [-77.328498, 38.252681], + [-77.328338, 38.252555], + [-77.328255, 38.252445], + [-77.32779, 38.252123], + [-77.327697, 38.251973], + [-77.327672, 38.251739], + [-77.327859, 38.251556], + [-77.328044, 38.251317], + [-77.328035, 38.251041], + [-77.327848, 38.250673], + [-77.32762, 38.250139], + [-77.32768, 38.249471], + [-77.327689, 38.249138], + [-77.327665, 38.2491], + [-77.327399, 38.248679], + [-77.3272, 38.248266], + [-77.327246, 38.248098], + [-77.327349, 38.247736], + [-77.32735, 38.247264], + [-77.327351, 38.247164], + [-77.327265, 38.246632], + [-77.327016, 38.245898], + [-77.326866, 38.245452], + [-77.326822, 38.245395], + [-77.326692, 38.245227], + [-77.326677, 38.245207], + [-77.326689, 38.245163], + [-77.32669, 38.245159], + [-77.326692, 38.245147], + [-77.326694, 38.245144], + [-77.326895, 38.244451], + [-77.328246, 38.24483], + [-77.329364, 38.245068], + [-77.330687, 38.245317], + [-77.332062, 38.245657], + [-77.33274, 38.245848], + [-77.333528, 38.24626], + [-77.334765, 38.24733], + [-77.335417, 38.247999], + [-77.335491, 38.248403], + [-77.335618, 38.248566], + [-77.33599, 38.249046], + [-77.336156, 38.249467], + [-77.336648, 38.250136], + [-77.33668, 38.250137], + [-77.336986, 38.250505], + [-77.337258, 38.250791], + [-77.337528, 38.250966], + [-77.337753, 38.251142], + [-77.337997, 38.251333], + [-77.338374, 38.251743], + [-77.338862, 38.252101], + [-77.340625, 38.252624], + [-77.342003, 38.25275], + [-77.343301, 38.252703], + [-77.343433, 38.252699], + [-77.345933, 38.252235], + [-77.34803, 38.251355], + [-77.349291, 38.250675], + [-77.350006, 38.250136], + [-77.35019, 38.249688], + [-77.350534, 38.249272], + [-77.351031, 38.248883], + [-77.35163, 38.24847], + [-77.352353, 38.248026], + [-77.353198, 38.247528], + [-77.35424, 38.246926], + [-77.354726, 38.246585], + [-77.355409, 38.24602], + [-77.356093, 38.245439], + [-77.356538, 38.245081], + [-77.357988, 38.24388], + [-77.359115, 38.243094], + [-77.359845, 38.242755], + [-77.360402, 38.242431], + [-77.361262, 38.242319], + [-77.362192, 38.242233], + [-77.362885, 38.242265], + [-77.363568, 38.242361], + [-77.364372, 38.242491], + [-77.36543, 38.24268], + [-77.366058, 38.242945], + [-77.366824, 38.243363], + [-77.366932, 38.243422], + [-77.367039, 38.24348], + [-77.367455, 38.243774], + [-77.367605, 38.24388], + [-77.367755, 38.243987], + [-77.368678, 38.244901], + [-77.369005, 38.245282], + [-77.369214, 38.245526], + [-77.369422, 38.24577], + [-77.369799, 38.24621], + [-77.370303, 38.246584], + [-77.37031, 38.246578], + [-77.370367, 38.24653], + [-77.370425, 38.246481], + [-77.371337, 38.245757], + [-77.371342, 38.245753], + [-77.374672, 38.243107], + [-77.374687, 38.243092], + [-77.37488, 38.242903], + [-77.374892, 38.242891], + [-77.375316, 38.242474], + [-77.375455, 38.242345], + [-77.37708, 38.240838], + [-77.377784, 38.240195], + [-77.37933, 38.238782], + [-77.379359, 38.238755], + [-77.379376, 38.238736], + [-77.379381, 38.238731], + [-77.379475, 38.238631], + [-77.379684, 38.238432], + [-77.379696, 38.238421], + [-77.384405, 38.233785], + [-77.384868, 38.233307], + [-77.40031, 38.21742], + [-77.402354, 38.215317], + [-77.403134, 38.214564], + [-77.40632, 38.211492], + [-77.408548, 38.209343], + [-77.416743, 38.20144], + [-77.418605, 38.199635], + [-77.419067, 38.199146], + [-77.424336, 38.19358], + [-77.428491, 38.189191], + [-77.433478, 38.18415], + [-77.433499, 38.18413], + [-77.437347, 38.18024], + [-77.437543, 38.180042], + [-77.440231, 38.177326], + [-77.441131, 38.176529], + [-77.442338, 38.175463], + [-77.444516, 38.173537], + [-77.445682, 38.172506], + [-77.45275, 38.166256], + [-77.455476, 38.163844], + [-77.455772, 38.163582], + [-77.456492, 38.162946], + [-77.457031, 38.162468], + [-77.457354, 38.162183], + [-77.459003, 38.160725], + [-77.46266, 38.157293], + [-77.465581, 38.154554], + [-77.465731, 38.154416], + [-77.465972, 38.154212], + [-77.466417, 38.153873], + [-77.466484, 38.153791], + [-77.466537, 38.153695], + [-77.466935, 38.153334], + [-77.467055, 38.153226], + [-77.467126, 38.153162], + [-77.467169, 38.153135], + [-77.467404, 38.152911], + [-77.468129, 38.152248], + [-77.468587, 38.151817], + [-77.468975, 38.151475], + [-77.469415, 38.151073], + [-77.471163, 38.149477], + [-77.473063, 38.147742], + [-77.479917, 38.14118], + [-77.480016, 38.141085], + [-77.480084, 38.141019], + [-77.485041, 38.136273], + [-77.492556, 38.129082], + [-77.492605, 38.129045], + [-77.494678, 38.126958], + [-77.496621, 38.125136], + [-77.504161, 38.118067], + [-77.506042, 38.116303], + [-77.510051, 38.112543], + [-77.510114, 38.112484], + [-77.510156, 38.112445], + [-77.51079, 38.111851], + [-77.512155, 38.110564], + [-77.517618, 38.105428], + [-77.518181, 38.104898], + [-77.52142, 38.101852], + [-77.523833, 38.09957], + [-77.527605, 38.096004], + [-77.530112, 38.093636], + [-77.531372, 38.092442], + [-77.536646, 38.087454], + [-77.537913, 38.086257], + [-77.539296, 38.084948], + [-77.540585, 38.083728], + [-77.541087, 38.083255], + [-77.546339, 38.07851], + [-77.547345, 38.077606], + [-77.548738, 38.076343], + [-77.550603, 38.074574], + [-77.551613, 38.073617], + [-77.554772, 38.070623], + [-77.56033, 38.065355], + [-77.563062, 38.062734], + [-77.567383, 38.058592], + [-77.567535, 38.058446], + [-77.570661, 38.055449], + [-77.572659, 38.053534], + [-77.574496, 38.051688], + [-77.579828, 38.046772], + [-77.586015, 38.041068], + [-77.588322, 38.039036], + [-77.590779, 38.036874], + [-77.591434, 38.036197], + [-77.591822, 38.035796], + [-77.59279, 38.034791], + [-77.593121, 38.034455], + [-77.59394, 38.03361], + [-77.595106, 38.032577], + [-77.59521, 38.032462], + [-77.595362, 38.032319], + [-77.595626, 38.032127], + [-77.595682, 38.032105], + [-77.596133, 38.031748], + [-77.596181, 38.031709], + [-77.597954, 38.02997], + [-77.600198, 38.027771], + [-77.603937, 38.024276], + [-77.606126, 38.022229], + [-77.610903, 38.017765], + [-77.61222, 38.016511], + [-77.612655, 38.016109], + [-77.617635, 38.011751], + [-77.620189, 38.009518], + [-77.622844, 38.006841], + [-77.62496, 38.004707], + [-77.626221, 38.003437], + [-77.629875, 38.000801], + [-77.635521, 37.996137], + [-77.639932, 37.992591], + [-77.642038, 37.991055], + [-77.642202, 37.990936], + [-77.642154, 37.991165], + [-77.642137, 37.991248], + [-77.642148, 37.991816], + [-77.64232, 37.992292], + [-77.642528, 37.992478], + [-77.6429, 37.992684], + [-77.643366, 37.992862], + [-77.64368, 37.992983], + [-77.645028, 37.993326], + [-77.647165, 37.993956], + [-77.647529, 37.994011], + [-77.648107, 37.994099], + [-77.648298, 37.994112], + [-77.649203, 37.994176], + [-77.649478, 37.994161], + [-77.651705, 37.993925], + [-77.652338, 37.993837], + [-77.652786, 37.993776], + [-77.653672, 37.993603], + [-77.65503, 37.993275], + [-77.655833, 37.993017], + [-77.656938, 37.992513], + [-77.657918, 37.991872], + [-77.658219, 37.9918], + [-77.6593, 37.991931], + [-77.659556, 37.992002], + [-77.6597, 37.99209], + [-77.660278, 37.993012], + [-77.660471, 37.993734], + [-77.660412, 37.994831], + [-77.660646, 37.996124], + [-77.660604, 37.997153], + [-77.66075, 37.997449], + [-77.660935, 37.997592], + [-77.661263, 37.997717], + [-77.661751, 37.997807], + [-77.66234, 37.997772], + [-77.66379, 37.99735], + [-77.664781, 37.99691], + [-77.665362, 37.996848], + [-77.666365, 37.996827], + [-77.666843, 37.996948], + [-77.667162, 37.997087], + [-77.667456, 37.997311], + [-77.667813, 37.997721], + [-77.667904, 37.997921], + [-77.667987, 37.998387], + [-77.66798, 37.998585], + [-77.667923, 38.000128], + [-77.668203, 38.000829], + [-77.668376, 38.001119], + [-77.668794, 38.001628], + [-77.6709, 38.003777], + [-77.671557, 38.004163], + [-77.672847, 38.004731], + [-77.674818, 38.005569], + [-77.67662, 38.006417], + [-77.676938, 38.006533], + [-77.676959, 38.006541], + [-77.677863, 38.00687], + [-77.680594, 38.007595], + [-77.682387, 38.007879], + [-77.684067, 38.008291], + [-77.684635, 38.008172], + [-77.685193, 38.007936], + [-77.685548, 38.007873], + [-77.686418, 38.007908], + [-77.687089, 38.007993], + [-77.687118, 38.007997], + [-77.687184, 38.008005], + [-77.687296, 38.008019], + [-77.68746, 38.00804], + [-77.687667, 38.008057], + [-77.688643, 38.008137], + [-77.692062, 38.007951], + [-77.692357, 38.007855], + [-77.692618, 38.00771], + [-77.69323, 38.007566], + [-77.693895, 38.007188], + [-77.694161, 38.007135], + [-77.694548, 38.007126], + [-77.694572, 38.007125], + [-77.695551, 38.007308], + [-77.696027, 38.007521], + [-77.696981, 38.008475], + [-77.697344, 38.008905], + [-77.698206, 38.009955], + [-77.698854, 38.011166], + [-77.699323, 38.011831], + [-77.699364, 38.012003], + [-77.699668, 38.012312], + [-77.7, 38.012556], + [-77.700244, 38.01264], + [-77.700405, 38.012703], + [-77.700861, 38.012691], + [-77.701341, 38.012752], + [-77.701359, 38.012754], + [-77.701583, 38.012783], + [-77.70217, 38.012765], + [-77.702636, 38.01275], + [-77.703303, 38.012701], + [-77.703664, 38.012735], + [-77.703873, 38.012822], + [-77.703882, 38.012826], + [-77.704229, 38.01297], + [-77.7053, 38.013519], + [-77.705608, 38.013582], + [-77.706686, 38.013424], + [-77.708152, 38.013415], + [-77.708606, 38.01337], + [-77.709066, 38.013213], + [-77.70987, 38.012744], + [-77.710294, 38.012609], + [-77.710521, 38.012583], + [-77.710578, 38.012585], + [-77.711023, 38.012606], + [-77.711527, 38.012779], + [-77.7117, 38.012755], + [-77.711892, 38.012729], + [-77.711882, 38.012977], + [-77.712028, 38.013019], + [-77.71247, 38.013835], + [-77.712575, 38.014015], + [-77.712732, 38.014306], + [-77.712849, 38.014564], + [-77.712854, 38.014574], + [-77.712866, 38.014602], + [-77.713259, 38.014849], + [-77.713954, 38.015245], + [-77.714714, 38.015446], + [-77.715714, 38.015946], + [-77.716575, 38.016277], + [-77.717014, 38.016446], + [-77.717914, 38.016546], + [-77.718614, 38.016446], + [-77.719314, 38.016646], + [-77.719814, 38.017046], + [-77.720014, 38.017346], + [-77.720014, 38.018146], + [-77.719814, 38.018646], + [-77.719714, 38.018746], + [-77.719214, 38.019746], + [-77.719114, 38.020246], + [-77.719314, 38.020646], + [-77.719814, 38.020846], + [-77.720414, 38.021246], + [-77.720914, 38.021946], + [-77.721214, 38.022446], + [-77.721714, 38.022946], + [-77.722214, 38.023246], + [-77.723414, 38.023446], + [-77.724314, 38.023346], + [-77.725614, 38.023146], + [-77.726314, 38.022946], + [-77.727114, 38.022646], + [-77.727514, 38.022346], + [-77.728214, 38.021946], + [-77.728541, 38.02175], + [-77.729214, 38.021346], + [-77.729714, 38.021046], + [-77.730614, 38.020846], + [-77.731314, 38.021246], + [-77.731515, 38.021546], + [-77.731515, 38.021846], + [-77.731314, 38.022546], + [-77.731114, 38.023846], + [-77.731095, 38.024034], + [-77.731014, 38.024846], + [-77.730814, 38.025046], + [-77.730514, 38.025246], + [-77.730314, 38.025246], + [-77.730114, 38.025346], + [-77.729814, 38.025646], + [-77.729514, 38.025746], + [-77.728914, 38.025846], + [-77.728514, 38.025946], + [-77.728314, 38.026046], + [-77.728114, 38.026446], + [-77.728114, 38.027146], + [-77.728214, 38.027546], + [-77.728314, 38.027746], + [-77.72953, 38.028557], + [-77.729814, 38.028746], + [-77.730214, 38.029246], + [-77.73032, 38.029564], + [-77.730515, 38.030145], + [-77.730615, 38.030445], + [-77.731015, 38.031045], + [-77.731815, 38.031445], + [-77.732315, 38.031645], + [-77.733415, 38.031745], + [-77.733815, 38.031845], + [-77.734815, 38.031845], + [-77.736315, 38.032045], + [-77.737615, 38.032445], + [-77.738215, 38.032645], + [-77.738915, 38.032945], + [-77.739515, 38.033046], + [-77.739815, 38.032946], + [-77.740215, 38.032646], + [-77.740515, 38.032046], + [-77.740715, 38.031246], + [-77.740715, 38.029646], + [-77.740915, 38.029246], + [-77.741515, 38.028446], + [-77.742315, 38.027446], + [-77.743015, 38.026746], + [-77.743515, 38.026346], + [-77.743915, 38.025846], + [-77.744215, 38.025546], + [-77.744515, 38.025146], + [-77.744515, 38.024646], + [-77.744415, 38.024346], + [-77.744615, 38.023946], + [-77.744915, 38.023746], + [-77.745415, 38.023646], + [-77.746215, 38.023546], + [-77.746915, 38.023646], + [-77.747315, 38.023946], + [-77.747715, 38.024346], + [-77.747715, 38.025746], + [-77.747615, 38.026346], + [-77.747715, 38.026746], + [-77.747815, 38.027246], + [-77.748315, 38.028446], + [-77.748515, 38.028746], + [-77.748515, 38.029546], + [-77.748415, 38.030146], + [-77.748115, 38.031046], + [-77.747815, 38.031746], + [-77.747615, 38.032946], + [-77.747715, 38.033346], + [-77.748015, 38.033846], + [-77.748315, 38.034246], + [-77.748515, 38.034546], + [-77.748815, 38.035146], + [-77.748815, 38.036745], + [-77.748615, 38.037145], + [-77.748315, 38.037345], + [-77.747915, 38.037645], + [-77.746615, 38.038245], + [-77.745515, 38.038445], + [-77.744815, 38.038745], + [-77.744015, 38.039045], + [-77.743415, 38.039245], + [-77.743115, 38.039245], + [-77.742915, 38.038845], + [-77.742915, 38.037945], + [-77.742715, 38.037445], + [-77.742315, 38.037145], + [-77.741915, 38.037045], + [-77.741315, 38.037245], + [-77.740915, 38.037745], + [-77.740915, 38.038245], + [-77.741115, 38.038545], + [-77.741315, 38.039045], + [-77.741615, 38.039645], + [-77.742215, 38.040245], + [-77.742915, 38.040745], + [-77.743815, 38.040945], + [-77.744515, 38.040845], + [-77.745215, 38.040845], + [-77.745715, 38.040945], + [-77.746715, 38.041445], + [-77.747415, 38.041645], + [-77.748015, 38.042045], + [-77.748215, 38.042145], + [-77.748415, 38.043145], + [-77.748415, 38.043445], + [-77.748115, 38.044445], + [-77.747815, 38.044945], + [-77.747515, 38.045545], + [-77.747515, 38.045845], + [-77.747615, 38.047045], + [-77.747715, 38.047645], + [-77.747815, 38.047945], + [-77.747715, 38.048345], + [-77.747615, 38.048645], + [-77.747415, 38.048945], + [-77.747215, 38.049145], + [-77.746615, 38.049545], + [-77.745915, 38.050045], + [-77.745215, 38.050845], + [-77.745215, 38.051145], + [-77.745515, 38.051345], + [-77.746215, 38.051445], + [-77.746615, 38.051845], + [-77.747315, 38.052245], + [-77.747815, 38.052545], + [-77.748615, 38.052845], + [-77.749515, 38.052845], + [-77.749715, 38.052695], + [-77.749815, 38.052545], + [-77.750215, 38.052545], + [-77.750415, 38.052445], + [-77.750615, 38.052445], + [-77.750715, 38.052345], + [-77.751115, 38.052145], + [-77.751333, 38.052], + [-77.751415, 38.051945], + [-77.751515, 38.051745], + [-77.751615, 38.051345], + [-77.752315, 38.050945], + [-77.752815, 38.050645], + [-77.753615, 38.050345], + [-77.754115, 38.049945], + [-77.754915, 38.049445], + [-77.755415, 38.048845], + [-77.755715, 38.048645], + [-77.755915, 38.048345], + [-77.756115, 38.048245], + [-77.756515, 38.048445], + [-77.757015, 38.048645], + [-77.757615, 38.048845], + [-77.758215, 38.048945], + [-77.758515, 38.048945], + [-77.758816, 38.049045], + [-77.759016, 38.049145], + [-77.759116, 38.049145], + [-77.759316, 38.049345], + [-77.759616, 38.049445], + [-77.759716, 38.049545], + [-77.762516, 38.050545], + [-77.762916, 38.050845], + [-77.763316, 38.051245], + [-77.763316, 38.052645], + [-77.763516, 38.052845], + [-77.763816, 38.053045], + [-77.763916, 38.053145], + [-77.764116, 38.053145], + [-77.765116, 38.053445], + [-77.766116, 38.053345], + [-77.766493, 38.053062], + [-77.766516, 38.053045], + [-77.767316, 38.052645], + [-77.767816, 38.051945], + [-77.768116, 38.051745], + [-77.768516, 38.051745], + [-77.769016, 38.052045], + [-77.769816, 38.052545], + [-77.770716, 38.053145], + [-77.771416, 38.053745], + [-77.771716, 38.054245], + [-77.771716, 38.054745], + [-77.771416, 38.055245], + [-77.771405, 38.055263], + [-77.771116, 38.055745], + [-77.770916, 38.056345], + [-77.771016, 38.056745], + [-77.771687, 38.057267], + [-77.771916, 38.057445], + [-77.77196, 38.057457], + [-77.773416, 38.057845], + [-77.774216, 38.057845], + [-77.775816, 38.058245], + [-77.776916, 38.058445], + [-77.777816, 38.058445], + [-77.778516, 38.058745], + [-77.779216, 38.059445], + [-77.780216, 38.060345], + [-77.781116, 38.061545], + [-77.781716, 38.062645], + [-77.782616, 38.063245], + [-77.783016, 38.063245], + [-77.784216, 38.063145], + [-77.784516, 38.063345], + [-77.784616, 38.064245], + [-77.784916, 38.065145], + [-77.784616, 38.065645], + [-77.784116, 38.065945], + [-77.783405, 38.06623], + [-77.783116, 38.066345], + [-77.782616, 38.067145], + [-77.782516, 38.067545], + [-77.782616, 38.068545], + [-77.782916, 38.069445], + [-77.783916, 38.070445], + [-77.784175, 38.070661], + [-77.784516, 38.070945], + [-77.784616, 38.071545], + [-77.784516, 38.071845], + [-77.784716, 38.072445], + [-77.785116, 38.073245], + [-77.785616, 38.073845], + [-77.785816, 38.074545], + [-77.785816, 38.074845], + [-77.786316, 38.075445], + [-77.786616, 38.076045], + [-77.786616, 38.076345], + [-77.787416, 38.076345], + [-77.787916, 38.076145], + [-77.788416, 38.076045], + [-77.78925, 38.075952], + [-77.789316, 38.075945], + [-77.790016, 38.076145], + [-77.790716, 38.076945], + [-77.791616, 38.077445], + [-77.793717, 38.078545], + [-77.79404, 38.078583], + [-77.794362, 38.078621], + [-77.795417, 38.078745], + [-77.796417, 38.078545], + [-77.796717, 38.078545], + [-77.797617, 38.078695], + [-77.798192, 38.078745], + [-77.798817, 38.078745], + [-77.799517, 38.078545], + [-77.800117, 38.078245], + [-77.801317, 38.078245], + [-77.802717, 38.078345], + [-77.803817, 38.078545], + [-77.804817, 38.078545], + [-77.805517, 38.078445], + [-77.806017, 38.078445], + [-77.806517, 38.078545], + [-77.807617, 38.078945], + [-77.808517, 38.079145], + [-77.808609, 38.079156], + [-77.809317, 38.079245], + [-77.810617, 38.079445], + [-77.810917, 38.079545], + [-77.811123, 38.0797], + [-77.811317, 38.079845], + [-77.81144, 38.079933], + [-77.812017, 38.080346], + [-77.812284, 38.080746], + [-77.812418, 38.080946], + [-77.812618, 38.081246], + [-77.812718, 38.081947], + [-77.812718, 38.082846], + [-77.812684, 38.083117], + [-77.812618, 38.083647], + [-77.812419, 38.084347], + [-77.812718, 38.085145], + [-77.812895, 38.085304], + [-77.812919, 38.085326], + [-77.813519, 38.085848], + [-77.814219, 38.086248], + [-77.814437, 38.086385], + [-77.815019, 38.086748], + [-77.815219, 38.086848], + [-77.815319, 38.086848], + [-77.815819, 38.086548], + [-77.815919, 38.086248], + [-77.816119, 38.085948], + [-77.816519, 38.085548], + [-77.816919, 38.085448], + [-77.817619, 38.085648], + [-77.817819, 38.085848], + [-77.818219, 38.086348], + [-77.819719, 38.087848], + [-77.820019, 38.088548], + [-77.820299, 38.089201], + [-77.820315, 38.08924], + [-77.820319, 38.089248], + [-77.820225, 38.089716], + [-77.820219, 38.089748], + [-77.820219, 38.090248], + [-77.820119, 38.090748], + [-77.819919, 38.091348], + [-77.819519, 38.091848], + [-77.819718, 38.092444], + [-77.820619, 38.092847], + [-77.821219, 38.093047], + [-77.822019, 38.093347], + [-77.823019, 38.093547], + [-77.823418, 38.093547], + [-77.823462, 38.093791], + [-77.823619, 38.094647], + [-77.823742, 38.094875], + [-77.823988, 38.095333], + [-77.824198, 38.095722], + [-77.824235, 38.095791], + [-77.824238, 38.095797], + [-77.824241, 38.095802], + [-77.824318, 38.095945], + [-77.824384, 38.096002], + [-77.824388, 38.096006], + [-77.825019, 38.096547], + [-77.826519, 38.097147], + [-77.827119, 38.097247], + [-77.828919, 38.097247], + [-77.830019, 38.097547], + [-77.830045, 38.097564], + [-77.830318, 38.097746], + [-77.830419, 38.098047], + [-77.830618, 38.098944], + [-77.830919, 38.099247], + [-77.831033, 38.099309], + [-77.832019, 38.099847], + [-77.833219, 38.100447], + [-77.833919, 38.100647], + [-77.834986, 38.100799], + [-77.835319, 38.100847], + [-77.836219, 38.101147], + [-77.836518, 38.101744], + [-77.836282, 38.102162], + [-77.836119, 38.102447], + [-77.836214, 38.103114], + [-77.836219, 38.103146], + [-77.836238, 38.103194], + [-77.836419, 38.103647], + [-77.836119, 38.103847], + [-77.836318, 38.104345], + [-77.836319, 38.104447], + [-77.837019, 38.104647], + [-77.837218, 38.104647], + [-77.837219, 38.104746], + [-77.837418, 38.105045], + [-77.837319, 38.105347], + [-77.837418, 38.105744], + [-77.837719, 38.106047], + [-77.838219, 38.106247], + [-77.838538, 38.105927], + [-77.838568, 38.105925], + [-77.839218, 38.105844], + [-77.839719, 38.106046], + [-77.840919, 38.105746], + [-77.842119, 38.105146], + [-77.842719, 38.105046], + [-77.843419, 38.105046], + [-77.844919, 38.104746], + [-77.845519, 38.104346], + [-77.845319, 38.103846], + [-77.844919, 38.103346], + [-77.844119, 38.102846], + [-77.843219, 38.101946], + [-77.842919, 38.101446], + [-77.843019, 38.101046], + [-77.843219, 38.100546], + [-77.843319, 38.100346], + [-77.843719, 38.099946], + [-77.843819, 38.099946], + [-77.844019, 38.099746], + [-77.844819, 38.099046], + [-77.845419, 38.098546], + [-77.846219, 38.098346], + [-77.847019, 38.098446], + [-77.847419, 38.098746], + [-77.847818, 38.099444], + [-77.847819, 38.099793], + [-77.847819, 38.100446], + [-77.8479, 38.100689], + [-77.848119, 38.101345], + [-77.848418, 38.101844], + [-77.849009, 38.101993], + [-77.849219, 38.102046], + [-77.849719, 38.102146], + [-77.850619, 38.102746], + [-77.851019, 38.102946], + [-77.851518, 38.103445], + [-77.851419, 38.104046], + [-77.85122, 38.104345], + [-77.851519, 38.104446], + [-77.852619, 38.104546], + [-77.853135, 38.104442], + [-77.854119, 38.104245], + [-77.854519, 38.103945], + [-77.854819, 38.103245], + [-77.854819, 38.102645], + [-77.854694, 38.102582], + [-77.854419, 38.102445], + [-77.854219, 38.101745], + [-77.854419, 38.100945], + [-77.854719, 38.100945], + [-77.855119, 38.100745], + [-77.855919, 38.099945], + [-77.856119, 38.099845], + [-77.856419, 38.099945], + [-77.857219, 38.100045], + [-77.858119, 38.100345], + [-77.858718, 38.100844], + [-77.858776, 38.101136], + [-77.858819, 38.101345], + [-77.858519, 38.102545], + [-77.858219, 38.103045], + [-77.858419, 38.103245], + [-77.858912, 38.103739], + [-77.859118, 38.103945], + [-77.859318, 38.104445], + [-77.859418, 38.104745], + [-77.859818, 38.105245], + [-77.860035, 38.105326], + [-77.860618, 38.105545], + [-77.862318, 38.105545], + [-77.863718, 38.105845], + [-77.864408, 38.106104], + [-77.864518, 38.106145], + [-77.865111, 38.106194], + [-77.865718, 38.106245], + [-77.866618, 38.106245], + [-77.867918, 38.105945], + [-77.869119, 38.105645], + [-77.869419, 38.105745], + [-77.870119, 38.105945], + [-77.871019, 38.106245], + [-77.871538, 38.106467], + [-77.871719, 38.106545], + [-77.871913, 38.106517], + [-77.872419, 38.106445], + [-77.873119, 38.106344], + [-77.873919, 38.106344], + [-77.874219, 38.106444], + [-77.874319, 38.106744], + [-77.874719, 38.107194], + [-77.875119, 38.107444], + [-77.875319, 38.107444], + [-77.875619, 38.107544], + [-77.875819, 38.107544], + [-77.876003, 38.107483], + [-77.876008, 38.107481], + [-77.876119, 38.107444], + [-77.876319, 38.107444], + [-77.876619, 38.107644], + [-77.877019, 38.107844], + [-77.877619, 38.108044], + [-77.878119, 38.108244], + [-77.878619, 38.108344], + [-77.879019, 38.108444], + [-77.879719, 38.108444], + [-77.880419, 38.108544], + [-77.880819, 38.108644], + [-77.881319, 38.108744], + [-77.881719, 38.108744], + [-77.882119, 38.108844], + [-77.882319, 38.108944], + [-77.882619, 38.109144], + [-77.882719, 38.109244], + [-77.882719, 38.109644], + [-77.882919, 38.109944], + [-77.883119, 38.110144], + [-77.883419, 38.110244], + [-77.883767, 38.110383], + [-77.883919, 38.110444], + [-77.884119, 38.110544], + [-77.884319, 38.110544], + [-77.884619, 38.110444], + [-77.885019, 38.110444], + [-77.885319, 38.110644], + [-77.885434, 38.110702], + [-77.885441, 38.110705], + [-77.885452, 38.110711], + [-77.885518, 38.110744], + [-77.885818, 38.111044], + [-77.885918, 38.111244], + [-77.88609, 38.111501], + [-77.886118, 38.111544], + [-77.886118, 38.111944], + [-77.886318, 38.112244], + [-77.886496, 38.112244], + [-77.886531, 38.112243], + [-77.886895, 38.112338], + [-77.886918, 38.112344], + [-77.887418, 38.112444], + [-77.887718, 38.112544], + [-77.888118, 38.112944], + [-77.888418, 38.113144], + [-77.889018, 38.113144], + [-77.889318, 38.113044], + [-77.890118, 38.112444], + [-77.890418, 38.112244], + [-77.890518, 38.112044], + [-77.890518, 38.111444], + [-77.891418, 38.111444], + [-77.891918, 38.111544], + [-77.892618, 38.111444], + [-77.893018, 38.111344], + [-77.893218, 38.111244], + [-77.893418, 38.111044], + [-77.893818, 38.111044], + [-77.894218, 38.110944], + [-77.894818, 38.110744], + [-77.895018, 38.110544], + [-77.895218, 38.110244], + [-77.895318, 38.110144], + [-77.895618, 38.110044], + [-77.896118, 38.110044], + [-77.896518, 38.110144], + [-77.896818, 38.110444], + [-77.896918, 38.110644], + [-77.896918, 38.111044], + [-77.896818, 38.111244], + [-77.896818, 38.111444], + [-77.896918, 38.111544], + [-77.897218, 38.111644], + [-77.897418, 38.111644], + [-77.898018, 38.111444], + [-77.898318, 38.111244], + [-77.898318, 38.110744], + [-77.898418, 38.110544], + [-77.898318, 38.110244], + [-77.898318, 38.110044], + [-77.898418, 38.109744], + [-77.898718, 38.109444], + [-77.898918, 38.109344], + [-77.899618, 38.109344], + [-77.899919, 38.109444], + [-77.900219, 38.109444], + [-77.900519, 38.109144], + [-77.900594, 38.108918], + [-77.900619, 38.108844], + [-77.900819, 38.108544], + [-77.901119, 38.108344], + [-77.901519, 38.108244], + [-77.901819, 38.108144], + [-77.902419, 38.108144], + [-77.902719, 38.108344], + [-77.903019, 38.108444], + [-77.903219, 38.108844], + [-77.903219, 38.109144], + [-77.903316, 38.109436], + [-77.903519, 38.109744], + [-77.904119, 38.110144], + [-77.904619, 38.110444], + [-77.905019, 38.110644], + [-77.905519, 38.110744], + [-77.905919, 38.110844], + [-77.906119, 38.110944], + [-77.907119, 38.111144], + [-77.907419, 38.111444], + [-77.907519, 38.111644], + [-77.907719, 38.111844], + [-77.90802, 38.111944], + [-77.90862, 38.111944], + [-77.90872, 38.112044], + [-77.90922, 38.111944], + [-77.90942, 38.112044], + [-77.90992, 38.112144], + [-77.910062, 38.112179], + [-77.91032, 38.112244], + [-77.91072, 38.112244], + [-77.91102, 38.112144], + [-77.911094, 38.112095], + [-77.91132, 38.111944], + [-77.911659, 38.11174], + [-77.91182, 38.111644], + [-77.91202, 38.111644], + [-77.91252, 38.111544], + [-77.91272, 38.111744], + [-77.91302, 38.112144], + [-77.91302, 38.112644], + [-77.91312, 38.113044], + [-77.91322, 38.113544], + [-77.91332, 38.113944], + [-77.91332, 38.114044], + [-77.913267, 38.114204], + [-77.91322, 38.114344], + [-77.91312, 38.114544], + [-77.91322, 38.114744], + [-77.91362, 38.115344], + [-77.91372, 38.115644], + [-77.91372, 38.115844], + [-77.913702, 38.115881], + [-77.91362, 38.116044], + [-77.91372, 38.116244], + [-77.91372, 38.116444], + [-77.91392, 38.116644], + [-77.91402, 38.116944], + [-77.91402, 38.117044], + [-77.91412, 38.117144], + [-77.914333, 38.11725], + [-77.91452, 38.117344], + [-77.91492, 38.117544], + [-77.91502, 38.117544], + [-77.91592, 38.118144], + [-77.91672, 38.118344], + [-77.91692, 38.118344], + [-77.91712, 38.118244], + [-77.91742, 38.118144], + [-77.91762, 38.118044], + [-77.91792, 38.117844], + [-77.91802, 38.117644], + [-77.91822, 38.117444], + [-77.91862, 38.117344], + [-77.91902, 38.117344], + [-77.91922, 38.117444], + [-77.91962, 38.117244], + [-77.91992, 38.117144], + [-77.920146, 38.117069], + [-77.92022, 38.117044], + [-77.92032, 38.116944], + [-77.92032, 38.116544], + [-77.92042, 38.116344], + [-77.92092, 38.116144], + [-77.92122, 38.115944], + [-77.92152, 38.115844], + [-77.92172, 38.115544], + [-77.92182, 38.115444], + [-77.92192, 38.115244], + [-77.92202, 38.115244], + [-77.92232, 38.115144], + [-77.92262, 38.115144], + [-77.92272, 38.114944], + [-77.92272, 38.114844], + [-77.92312, 38.114744], + [-77.92342, 38.114744], + [-77.92372, 38.114544], + [-77.923812, 38.114552], + [-77.923903, 38.11456], + [-77.923971, 38.114566], + [-77.92427, 38.114466], + [-77.924469, 38.114465], + [-77.924568, 38.114664], + [-77.924668, 38.114763], + [-77.924668, 38.114863], + [-77.924866, 38.115062], + [-77.925165, 38.114961], + [-77.925364, 38.11496], + [-77.926061, 38.115056], + [-77.926395, 38.114971], + [-77.926441, 38.114958], + [-77.926459, 38.114954], + [-77.926942, 38.114861], + [-77.926963, 38.114849], + [-77.927079, 38.11479], + [-77.927355, 38.11465], + [-77.927554, 38.114549], + [-77.928051, 38.114446], + [-77.928449, 38.114444], + [-77.928648, 38.114343], + [-77.928748, 38.114242], + [-77.928847, 38.114142], + [-77.928947, 38.113941], + [-77.929345, 38.113739], + [-77.929743, 38.113737], + [-77.930141, 38.113835], + [-77.930439, 38.113934], + [-77.930937, 38.114031], + [-77.931634, 38.113927], + [-77.931733, 38.113927], + [-77.931932, 38.114026], + [-77.932131, 38.114025], + [-77.93243, 38.113923], + [-77.932728, 38.113922], + [-77.933524, 38.114118], + [-77.934022, 38.114115], + [-77.934221, 38.114114], + [-77.93432, 38.114014], + [-77.93452, 38.114113], + [-77.934719, 38.114212], + [-77.934868, 38.114331], + [-77.935216, 38.114609], + [-77.935614, 38.114907], + [-77.935913, 38.115105], + [-77.936012, 38.115205], + [-77.936012, 38.115905], + [-77.936111, 38.115904], + [-77.936509, 38.115902], + [-77.936509, 38.116002], + [-77.936708, 38.116201], + [-77.936907, 38.1165], + [-77.936939, 38.116511], + [-77.937206, 38.116598], + [-77.937305, 38.116697], + [-77.937603, 38.116796], + [-77.937902, 38.116794], + [-77.938001, 38.116894], + [-77.938499, 38.117291], + [-77.938897, 38.117488], + [-77.939055, 38.117488], + [-77.93912, 38.117487], + [-77.939494, 38.117485], + [-77.939593, 38.117584], + [-77.939792, 38.117683], + [-77.939891, 38.117982], + [-77.939891, 38.118182], + [-77.93999, 38.118381], + [-77.940189, 38.11858], + [-77.940488, 38.118778], + [-77.940587, 38.118877], + [-77.940886, 38.118876], + [-77.940985, 38.118875], + [-77.941365, 38.118779], + [-77.941401, 38.118767], + [-77.941682, 38.118672], + [-77.941981, 38.118671], + [-77.94218, 38.11867], + [-77.942279, 38.118669], + [-77.942578, 38.118767], + [-77.942777, 38.118866], + [-77.943075, 38.118965], + [-77.943175, 38.118964], + [-77.943453, 38.118963], + [-77.943473, 38.118963], + [-77.943672, 38.119062], + [-77.943771, 38.119161], + [-77.944169, 38.119459], + [-77.944368, 38.119558], + [-77.944567, 38.119457], + [-77.944767, 38.119356], + [-77.944866, 38.119355], + [-77.945165, 38.119354], + [-77.945463, 38.119252], + [-77.945861, 38.11915], + [-77.94606, 38.119249], + [-77.946245, 38.119341], + [-77.946263, 38.119352], + [-77.946271, 38.119357], + [-77.946458, 38.119547], + [-77.946657, 38.119746], + [-77.946757, 38.119845], + [-77.947056, 38.120043], + [-77.94715, 38.120024], + [-77.947554, 38.119941], + [-77.947952, 38.119739], + [-77.948093, 38.119597], + [-77.948251, 38.119438], + [-77.948251, 38.118739], + [-77.948152, 38.118439], + [-77.948252, 38.118239], + [-77.948451, 38.118038], + [-77.94875, 38.117837], + [-77.949148, 38.117835], + [-77.949546, 38.117733], + [-77.949679, 38.117709], + [-77.950143, 38.11763], + [-77.950342, 38.117729], + [-77.95064, 38.117827], + [-77.95074, 38.117827], + [-77.951038, 38.118025], + [-77.951138, 38.118025], + [-77.951337, 38.118023], + [-77.951436, 38.118023], + [-77.951735, 38.118021], + [-77.951834, 38.118121], + [-77.951899, 38.118153], + [-77.952232, 38.118319], + [-77.952232, 38.118618], + [-77.95263, 38.118616], + [-77.95273, 38.118716], + [-77.953028, 38.118614], + [-77.953327, 38.118513], + [-77.953362, 38.118477], + [-77.953426, 38.118412], + [-77.953426, 38.11822], + [-77.953524, 38.118137], + [-77.954378, 38.117753], + [-77.954821, 38.117445], + [-77.953573, 38.118567], + [-77.952372, 38.119648], + [-77.947546, 38.124067], + [-77.946627, 38.124908], + [-77.946398, 38.125119], + [-77.944577, 38.126731], + [-77.938751, 38.13189], + [-77.938702, 38.131933], + [-77.935031, 38.135185], + [-77.93439, 38.135753], + [-77.932596, 38.137347], + [-77.930881, 38.138862], + [-77.929499, 38.140084], + [-77.929489, 38.140093], + [-77.929483, 38.140098], + [-77.929469, 38.14011], + [-77.929436, 38.140139], + [-77.929416, 38.140157], + [-77.929208, 38.140341], + [-77.928886, 38.140626], + [-77.92689, 38.142391], + [-77.926609, 38.142642], + [-77.9266, 38.14265], + [-77.926596, 38.142654], + [-77.926587, 38.142662], + [-77.925967, 38.143216], + [-77.925407, 38.143718], + [-77.924702, 38.144353], + [-77.924242, 38.144759], + [-77.921958, 38.146772], + [-77.917833, 38.150414], + [-77.916843, 38.151308], + [-77.915042, 38.152928], + [-77.908399, 38.158908], + [-77.90698, 38.160181], + [-77.904953, 38.162006], + [-77.904562, 38.162356], + [-77.902894, 38.163858], + [-77.902363, 38.164333], + [-77.899196, 38.167186], + [-77.896021, 38.170045], + [-77.89319, 38.17259], + [-77.889731, 38.175683], + [-77.889422, 38.175957], + [-77.889071, 38.176269], + [-77.884938, 38.179961], + [-77.881313, 38.183198], + [-77.876205, 38.187761], + [-77.875736, 38.188181], + [-77.874778, 38.189039], + [-77.872181, 38.191563], + [-77.872123, 38.19162], + [-77.869763, 38.193937], + [-77.866582, 38.19706], + [-77.865098, 38.198517], + [-77.858041, 38.205571], + [-77.856035, 38.207575], + [-77.853574, 38.210035], + [-77.852286, 38.211323], + [-77.846902, 38.216706], + [-77.845973, 38.217633], + [-77.845562, 38.218045], + [-77.84173, 38.221874], + [-77.840033, 38.223571], + [-77.837005, 38.226593], + [-77.836435, 38.227166], + [-77.835743, 38.227854], + [-77.834097, 38.229498], + [-77.82987, 38.233045], + [-77.827629, 38.234913], + [-77.826809, 38.235597], + [-77.826772, 38.235628], + [-77.820078, 38.24121], + [-77.819149, 38.241985], + [-77.818526, 38.242504], + [-77.817855, 38.243063], + [-77.817417, 38.243429], + [-77.815901, 38.244694], + [-77.814042, 38.246244], + [-77.812299, 38.247637], + [-77.809368, 38.250137], + [-77.807464, 38.25174], + [-77.80602, 38.252954], + [-77.801566, 38.256698], + [-77.798571, 38.259213], + [-77.798533, 38.259245], + [-77.798321, 38.25943], + [-77.7983, 38.259448], + [-77.793984, 38.263186], + [-77.789503, 38.266911], + [-77.786394, 38.269445], + [-77.785812, 38.269936], + [-77.783527, 38.271873], + [-77.7835, 38.271896], + [-77.783264, 38.272098], + [-77.780507, 38.274689], + [-77.777867, 38.27717], + [-77.773299, 38.281455], + [-77.772244, 38.282446], + [-77.769463, 38.285061], + [-77.766253, 38.288078], + [-77.761298, 38.292741], + [-77.758601, 38.295265], + [-77.757204, 38.296574], + [-77.751336, 38.302092], + [-77.751229, 38.302191], + [-77.74972, 38.30361], + [-77.749583, 38.303731], + [-77.748419, 38.304817], + [-77.748307, 38.304918], + [-77.748167, 38.305044], + [-77.746672, 38.306366], + [-77.744695, 38.308092], + [-77.744534, 38.308232], + [-77.744524, 38.308241], + [-77.744454, 38.308302], + [-77.742004, 38.310441], + [-77.742, 38.310445], + [-77.740558, 38.311707], + [-77.740035, 38.312164], + [-77.739019, 38.313051], + [-77.738362, 38.313621], + [-77.736611, 38.315151], + [-77.731793, 38.319358], + [-77.730211, 38.320743], + [-77.729265, 38.32157], + [-77.729199, 38.321625], + [-77.729172, 38.321703], + [-77.729086, 38.321779], + [-77.72749, 38.323201], + [-77.727486, 38.323205], + [-77.727481, 38.323209], + [-77.727475, 38.323214], + [-77.726691, 38.323913], + [-77.72669, 38.323942], + [-77.726689, 38.323973], + [-77.726424, 38.3245], + [-77.726344, 38.324804], + [-77.726264, 38.32511], + [-77.726243, 38.325215], + [-77.726225, 38.325309], + [-77.726188, 38.3255], + [-77.726133, 38.325567], + [-77.725993, 38.325736], + [-77.725937, 38.325928], + [-77.725932, 38.325962], + [-77.725909, 38.32612], + [-77.725693, 38.326434], + [-77.72554, 38.326658], + [-77.725401, 38.326905], + [-77.72529, 38.327048], + [-77.725227, 38.327257], + [-77.725025, 38.327751], + [-77.724865, 38.327971], + [-77.724684, 38.328174], + [-77.724475, 38.328531], + [-77.724315, 38.328761], + [-77.723883, 38.329305], + [-77.723792, 38.329481], + [-77.723284, 38.330233], + [-77.723082, 38.330601], + [-77.722977, 38.330756], + [-77.722915, 38.330848], + [-77.722678, 38.331062], + [-77.722532, 38.331298], + [-77.722128, 38.331743], + [-77.721989, 38.331963], + [-77.721877, 38.332089], + [-77.721696, 38.332529], + [-77.721648, 38.33283], + [-77.721585, 38.333023], + [-77.721488, 38.333215], + [-77.721377, 38.33338], + [-77.721341, 38.333434], + [-77.721265, 38.333566], + [-77.721195, 38.333934], + [-77.721105, 38.334055], + [-77.720944, 38.334137], + [-77.720728, 38.33411], + [-77.720533, 38.334126], + [-77.720213, 38.334264], + [-77.720108, 38.33428], + [-77.719808, 38.334248], + [-77.719439, 38.334522], + [-77.71939, 38.334659], + [-77.719892, 38.335148], + [-77.719885, 38.335302], + [-77.71984, 38.335404], + [-77.719837, 38.335411], + [-77.719739, 38.335516], + [-77.7196, 38.335565], + [-77.719286, 38.335582], + [-77.718259, 38.335484], + [-77.718248, 38.335483], + [-77.71802, 38.335486], + [-77.718007, 38.335486], + [-77.717999, 38.335487], + [-77.717949, 38.335487], + [-77.717836, 38.335489], + [-77.717279, 38.335549], + [-77.717113, 38.335587], + [-77.716993, 38.335615], + [-77.716735, 38.335632], + [-77.716561, 38.335594], + [-77.716303, 38.335506], + [-77.71608, 38.335495], + [-77.71594, 38.335517], + [-77.715655, 38.335605], + [-77.715383, 38.33572], + [-77.715278, 38.335748], + [-77.715139, 38.335825], + [-77.714818, 38.336077], + [-77.714714, 38.33639], + [-77.714679, 38.336582], + [-77.7147, 38.336698], + [-77.714861, 38.337005], + [-77.715035, 38.337142], + [-77.715121, 38.33721], + [-77.71523, 38.337296], + [-77.715425, 38.337378], + [-77.715544, 38.337466], + [-77.715921, 38.337845], + [-77.716043, 38.33799], + [-77.716111, 38.338072], + [-77.716151, 38.338119], + [-77.716367, 38.338295], + [-77.71653, 38.338397], + [-77.717057, 38.338728], + [-77.717476, 38.33903], + [-77.717803, 38.339217], + [-77.718068, 38.339464], + [-77.718208, 38.339656], + [-77.718591, 38.339947], + [-77.718675, 38.340122], + [-77.718752, 38.340441], + [-77.718815, 38.340572], + [-77.718745, 38.341292], + [-77.718648, 38.34161], + [-77.718411, 38.341846], + [-77.718091, 38.342022], + [-77.717958, 38.342071], + [-77.717428, 38.342198], + [-77.717247, 38.342308], + [-77.716982, 38.342884], + [-77.71685, 38.343071], + [-77.716767, 38.343269], + [-77.716697, 38.343335], + [-77.716691, 38.343337], + [-77.71646, 38.343411], + [-77.715979, 38.343494], + [-77.715923, 38.343565], + [-77.715903, 38.343645], + [-77.715833, 38.343933], + [-77.715756, 38.344016], + [-77.715512, 38.344147], + [-77.715303, 38.344175], + [-77.715059, 38.344164], + [-77.71492, 38.344137], + [-77.714564, 38.344029], + [-77.714376, 38.343972], + [-77.714257, 38.343972], + [-77.714123, 38.344027], + [-77.714116, 38.344027], + [-77.714097, 38.344038], + [-77.713797, 38.344055], + [-77.713546, 38.344274], + [-77.713379, 38.344587], + [-77.713219, 38.344686], + [-77.713087, 38.34473], + [-77.712884, 38.344906], + [-77.712641, 38.345241], + [-77.712452, 38.345455], + [-77.712418, 38.345697], + [-77.712383, 38.345801], + [-77.712397, 38.346026], + [-77.712453, 38.346152], + [-77.71269, 38.346525], + [-77.712948, 38.347085], + [-77.713039, 38.347173], + [-77.713171, 38.347371], + [-77.713262, 38.347475], + [-77.713422, 38.347596], + [-77.713562, 38.347673], + [-77.714085, 38.347898], + [-77.714329, 38.347974], + [-77.714399, 38.348046], + [-77.714492, 38.348189], + [-77.714531, 38.348249], + [-77.714671, 38.348441], + [-77.714706, 38.348611], + [-77.714667, 38.348959], + [-77.714664, 38.348985], + [-77.714601, 38.349166], + [-77.714253, 38.349567], + [-77.714037, 38.349742], + [-77.713786, 38.349836], + [-77.713312, 38.35005], + [-77.713264, 38.350084], + [-77.713096, 38.350204], + [-77.71311, 38.350286], + [-77.713192, 38.350455], + [-77.713256, 38.350588], + [-77.713249, 38.350654], + [-77.713189, 38.350725], + [-77.713033, 38.350907], + [-77.713006, 38.351082], + [-77.713043, 38.351172], + [-77.71311, 38.351335], + [-77.713089, 38.351395], + [-77.713034, 38.351439], + [-77.712657, 38.351379], + [-77.712357, 38.351242], + [-77.711981, 38.351165], + [-77.711723, 38.351028], + [-77.7115, 38.350934], + [-77.711199, 38.350873], + [-77.711018, 38.350836], + [-77.710851, 38.350951], + [-77.710782, 38.351077], + [-77.710768, 38.351549], + [-77.710705, 38.351786], + [-77.710726, 38.351895], + [-77.710998, 38.352428], + [-77.710999, 38.352449], + [-77.711005, 38.352603], + [-77.710949, 38.352642], + [-77.710071, 38.352499], + [-77.709325, 38.35245], + [-77.708997, 38.352395], + [-77.708267, 38.352245], + [-77.70796, 38.352344], + [-77.707708, 38.352597], + [-77.707637, 38.352877], + [-77.70783, 38.353233], + [-77.70796, 38.353834], + [-77.70828, 38.354246], + [-77.708478, 38.354364], + [-77.708689, 38.35449], + [-77.709162, 38.35467], + [-77.709591, 38.355116], + [-77.709465, 38.355333], + [-77.709086, 38.355531], + [-77.70758, 38.355341], + [-77.706536, 38.355002], + [-77.705493, 38.354845], + [-77.705213, 38.355021], + [-77.705151, 38.355258], + [-77.705134, 38.355366], + [-77.705109, 38.355466], + [-77.705082, 38.355531], + [-77.704955, 38.355548], + [-77.705064, 38.355624], + [-77.705146, 38.355847], + [-77.705584, 38.356349], + [-77.705522, 38.356594], + [-77.705324, 38.356819], + [-77.705299, 38.357106], + [-77.705661, 38.357161], + [-77.70615, 38.357089], + [-77.706686, 38.357206], + [-77.706941, 38.357499], + [-77.707016, 38.357764], + [-77.7078, 38.358573], + [-77.707765, 38.358713], + [-77.707548, 38.358826], + [-77.707077, 38.358828], + [-77.706669, 38.358766], + [-77.705987, 38.358482], + [-77.705533, 38.358414], + [-77.705271, 38.35852], + [-77.704737, 38.358585], + [-77.704529, 38.358663], + [-77.70374, 38.358617], + [-77.703578, 38.358701], + [-77.703542, 38.358841], + [-77.704154, 38.359588], + [-77.704066, 38.359938], + [-77.703466, 38.360357], + [-77.703458, 38.360362], + [-77.703451, 38.360367], + [-77.703209, 38.360536], + [-77.703197, 38.36058], + [-77.703191, 38.360606], + [-77.702, 38.360368], + [-77.701894, 38.360347], + [-77.701301, 38.360155], + [-77.701244, 38.360137], + [-77.701038, 38.36007], + [-77.700328, 38.359586], + [-77.697592, 38.357077], + [-77.697111, 38.356731], + [-77.696786, 38.356655], + [-77.695785, 38.356473], + [-77.695473, 38.356429], + [-77.694619, 38.356501], + [-77.694116, 38.356629], + [-77.693231, 38.357125], + [-77.692963, 38.357351], + [-77.691846, 38.35816], + [-77.690704, 38.35873], + [-77.690672, 38.358721], + [-77.688953, 38.359189], + [-77.688274, 38.359269], + [-77.688111, 38.359353], + [-77.687495, 38.359369], + [-77.687224, 38.35951], + [-77.686444, 38.359429], + [-77.685983, 38.359578], + [-77.685899, 38.359622], + [-77.685793, 38.359677], + [-77.685681, 38.359651], + [-77.685548, 38.359621], + [-77.685168, 38.359819], + [-77.684643, 38.359849], + [-77.68341, 38.359699], + [-77.683065, 38.359756], + [-77.682282, 38.359744], + [-77.681987, 38.359739], + [-77.68177, 38.359852], + [-77.681362, 38.359791], + [-77.681018, 38.359848], + [-77.680555, 38.359814], + [-77.680293, 38.35992], + [-77.679885, 38.359859], + [-77.679541, 38.359916], + [-77.679338, 38.360021], + [-77.679107, 38.360141], + [-77.678629, 38.360542], + [-77.678288, 38.361145], + [-77.678213, 38.362188], + [-77.678037, 38.363071], + [-77.678075, 38.363295], + [-77.677764, 38.364339], + [-77.67762, 38.364535], + [-77.677647, 38.364612], + [-77.677467, 38.364767], + [-77.677144, 38.3653], + [-77.676657, 38.365735], + [-77.675863, 38.36627], + [-77.67449, 38.367045], + [-77.674192, 38.367291], + [-77.673995, 38.367697], + [-77.673796, 38.367827], + [-77.673769, 38.367845], + [-77.673688, 38.367978], + [-77.673466, 38.368672], + [-77.673088, 38.369233], + [-77.67244, 38.369935], + [-77.671799, 38.37033], + [-77.671609, 38.370428], + [-77.671446, 38.370513], + [-77.671364, 38.370464], + [-77.67093, 38.370508], + [-77.670514, 38.370663], + [-77.670332, 38.370636], + [-77.670169, 38.37072], + [-77.66988, 38.370749], + [-77.668346, 38.370482], + [-77.668066, 38.370658], + [-77.667794, 38.370616], + [-77.667713, 38.370659], + [-77.667077, 38.370472], + [-77.666507, 38.370677], + [-77.66619, 38.370629], + [-77.665719, 38.370813], + [-77.665583, 38.370792], + [-77.664716, 38.371243], + [-77.663271, 38.372207], + [-77.661906, 38.372855], + [-77.66167, 38.372856], + [-77.661245, 38.373047], + [-77.661055, 38.373054], + [-77.660513, 38.373336], + [-77.660331, 38.373309], + [-77.660006, 38.373478], + [-77.659862, 38.373674], + [-77.659482, 38.373871], + [-77.65933, 38.374103], + [-77.659113, 38.374228], + [-77.658778, 38.37442], + [-77.658633, 38.374434], + [-77.657657, 38.374942], + [-77.657633, 38.375008], + [-77.657622, 38.375108], + [-77.656935, 38.375404], + [-77.656572, 38.37535], + [-77.65612, 38.375554], + [-77.655655, 38.375491], + [-77.65561, 38.375485], + [-77.655601, 38.375484], + [-77.655587, 38.375482], + [-77.655572, 38.37548], + [-77.655229, 38.375434], + [-77.654959, 38.375397], + [-77.65485, 38.375453], + [-77.654569, 38.375447], + [-77.653608, 38.375339], + [-77.653391, 38.375451], + [-77.653028, 38.375397], + [-77.652774, 38.375467], + [-77.652013, 38.375781], + [-77.651933, 38.375813], + [-77.65159, 38.376004], + [-77.650234, 38.376757], + [-77.64933, 38.377166], + [-77.649194, 38.377145], + [-77.648236, 38.377582], + [-77.6481, 38.377562], + [-77.647948, 38.377641], + [-77.647666, 38.377787], + [-77.647257, 38.377725], + [-77.646959, 38.377789], + [-77.646687, 38.37793], + [-77.646071, 38.377946], + [-77.645746, 38.378115], + [-77.645097, 38.378017], + [-77.644748, 38.377965], + [-77.644514, 38.377875], + [-77.644275, 38.377784], + [-77.642969, 38.377551], + [-77.64285, 38.37746], + [-77.642487, 38.377405], + [-77.642325, 38.37749], + [-77.642097, 38.377481], + [-77.641998, 38.377477], + [-77.641689, 38.377394], + [-77.641667, 38.377378], + [-77.641407, 38.377206], + [-77.641364, 38.377199], + [-77.641181, 38.377171], + [-77.641084, 38.377065], + [-77.64015, 38.376034], + [-77.64005, 38.376055], + [-77.639312, 38.375253], + [-77.639185, 38.375197], + [-77.639075, 38.375072], + [-77.639092, 38.375009], + [-77.639083, 38.374828], + [-77.638517, 38.374088], + [-77.638516, 38.373906], + [-77.638086, 38.373187], + [-77.638112, 38.373081], + [-77.637145, 38.371881], + [-77.637107, 38.371657], + [-77.637196, 38.371307], + [-77.637494, 38.371061], + [-77.638253, 38.370666], + [-77.638697, 38.370588], + [-77.63906, 38.370643], + [-77.639794, 38.370535], + [-77.640119, 38.370366], + [-77.641196, 38.37002], + [-77.642443, 38.369372], + [-77.642741, 38.369126], + [-77.643571, 38.368144], + [-77.643614, 38.368094], + [-77.644, 38.367316], + [-77.644214, 38.366658], + [-77.644505, 38.365138], + [-77.644522, 38.365068], + [-77.644482, 38.364298], + [-77.644588, 38.363878], + [-77.644524, 38.363759], + [-77.644586, 38.363514], + [-77.644503, 38.363283], + [-77.644509, 38.362702], + [-77.644413, 38.362453], + [-77.644169, 38.361815], + [-77.643858, 38.361368], + [-77.643731, 38.361312], + [-77.643476, 38.361019], + [-77.643158, 38.360971], + [-77.642849, 38.360706], + [-77.641995, 38.360359], + [-77.641849, 38.360192], + [-77.641532, 38.360144], + [-77.641177, 38.359872], + [-77.640541, 38.359594], + [-77.640358, 38.359385], + [-77.640086, 38.359343], + [-77.63985, 38.359162], + [-77.639504, 38.359037], + [-77.638552, 38.358893], + [-77.638262, 38.358922], + [-77.6381, 38.359007], + [-77.637991, 38.359063], + [-77.637719, 38.359022], + [-77.637321, 38.359107], + [-77.637104, 38.35922], + [-77.636696, 38.359158], + [-77.636297, 38.359244], + [-77.63608, 38.359356], + [-77.635573, 38.359316], + [-77.635193, 38.359513], + [-77.634966, 38.359479], + [-77.634089, 38.359783], + [-77.63342, 38.360191], + [-77.633096, 38.360542], + [-77.632925, 38.360843], + [-77.632817, 38.3609], + [-77.632448, 38.361426], + [-77.632152, 38.362035], + [-77.631424, 38.363053], + [-77.631137, 38.363627], + [-77.630995, 38.36437], + [-77.630887, 38.364426], + [-77.630663, 38.364938], + [-77.630383, 38.365305], + [-77.630349, 38.36535], + [-77.63024, 38.365492], + [-77.630023, 38.365605], + [-77.629825, 38.365829], + [-77.629646, 38.366348], + [-77.62943, 38.366642], + [-77.629142, 38.366853], + [-77.628974, 38.367066], + [-77.628947, 38.367101], + [-77.62892, 38.367135], + [-77.62887, 38.367199], + [-77.628814, 38.36727], + [-77.628655, 38.367471], + [-77.628575, 38.367786], + [-77.628359, 38.36808], + [-77.627248, 38.368749], + [-77.626795, 38.368862], + [-77.62656, 38.368863], + [-77.625979, 38.368739], + [-77.625795, 38.368642], + [-77.625634, 38.368558], + [-77.625397, 38.368433], + [-77.625236, 38.368409], + [-77.624989, 38.368371], + [-77.624881, 38.368427], + [-77.624731, 38.368404], + [-77.624723, 38.368403], + [-77.624695, 38.368399], + [-77.624605, 38.368385], + [-77.624518, 38.368372], + [-77.624406, 38.368396], + [-77.624233, 38.368433], + [-77.623197, 38.368436], + [-77.623079, 38.368473], + [-77.622859, 38.36846], + [-77.622779, 38.36844], + [-77.622107, 38.368269], + [-77.62192, 38.368221], + [-77.621907, 38.368218], + [-77.621884, 38.368213], + [-77.621634, 38.368158], + [-77.620704, 38.368061], + [-77.620165, 38.368038], + [-77.619973, 38.368031], + [-77.619477, 38.36801], + [-77.619197, 38.367948], + [-77.618918, 38.367885], + [-77.618811, 38.367861], + [-77.618729, 38.367843], + [-77.618748, 38.367912], + [-77.618766, 38.367982], + [-77.618835, 38.36825], + [-77.618849, 38.368275], + [-77.619123, 38.368704], + [-77.619187, 38.368946], + [-77.619296, 38.36942], + [-77.619212, 38.369748], + [-77.619112, 38.370446], + [-77.619121, 38.371147], + [-77.619497, 38.371877], + [-77.61986, 38.372374], + [-77.620145, 38.372724], + [-77.620246, 38.37312], + [-77.62028, 38.373329], + [-77.620115, 38.373814], + [-77.61978, 38.374406], + [-77.619459, 38.374675], + [-77.619261, 38.374842], + [-77.619063, 38.375008], + [-77.619012, 38.37505], + [-77.618962, 38.375093], + [-77.618912, 38.375135], + [-77.619112, 38.375335], + [-77.619012, 38.375535], + [-77.618912, 38.375835], + [-77.619012, 38.376135], + [-77.619012, 38.376835], + [-77.619212, 38.377635], + [-77.619612, 38.378235], + [-77.620212, 38.379035], + [-77.620712, 38.379735], + [-77.620912, 38.380035], + [-77.621012, 38.380935], + [-77.621112, 38.381635], + [-77.620912, 38.382235], + [-77.620812, 38.382635], + [-77.620812, 38.383435], + [-77.620712, 38.384035], + [-77.620512, 38.384635], + [-77.620512, 38.385635], + [-77.620812, 38.386235], + [-77.621012, 38.386735], + [-77.621112, 38.387135], + [-77.621112, 38.387535], + [-77.621212, 38.388135], + [-77.621412, 38.388735], + [-77.621812, 38.389235], + [-77.622312, 38.389835], + [-77.623312, 38.390635], + [-77.623912, 38.390835], + [-77.624412, 38.391035], + [-77.624712, 38.391297], + [-77.628254, 38.391749], + [-77.628983, 38.391842], + [-77.629709, 38.391935], + [-77.630312, 38.392135], + [-77.630912, 38.392235], + [-77.631512, 38.392435], + [-77.632012, 38.392435], + [-77.632412, 38.392535], + [-77.632712, 38.392635], + [-77.632912, 38.392735], + [-77.633112, 38.392935], + [-77.633198, 38.393106], + [-77.633212, 38.393135], + [-77.633253, 38.393251], + [-77.633298, 38.393435], + [-77.633324, 38.393618], + [-77.633377, 38.393993], + [-77.633378, 38.394], + [-77.633389, 38.394081], + [-77.633368, 38.394371], + [-77.633278, 38.394797], + [-77.633148, 38.395279], + [-77.633012, 38.395735], + [-77.632812, 38.396135], + [-77.632612, 38.396335], + [-77.632512, 38.396535], + [-77.632312, 38.396735], + [-77.63239, 38.396971], + [-77.632397, 38.396992], + [-77.632413, 38.397008], + [-77.63243, 38.397026], + [-77.632456, 38.397053], + [-77.632607, 38.397144], + [-77.632799, 38.397381], + [-77.632826, 38.397414], + [-77.632831, 38.39742], + [-77.632836, 38.397427], + [-77.632954, 38.397577], + [-77.633256, 38.397891], + [-77.633374, 38.397987], + [-77.633474, 38.398023], + [-77.633481, 38.398026], + [-77.633494, 38.39803], + [-77.633501, 38.398032], + [-77.633519, 38.398038], + [-77.633797, 38.398161], + [-77.634049, 38.398251], + [-77.634061, 38.398257], + [-77.634078, 38.398261], + [-77.634123, 38.398298], + [-77.634129, 38.398303], + [-77.634212, 38.398369], + [-77.634218, 38.398374], + [-77.634261, 38.398452], + [-77.634279, 38.398496], + [-77.634391, 38.398741], + [-77.634499, 38.399128], + [-77.634477, 38.399488], + [-77.634431, 38.399714], + [-77.634353, 38.400027], + [-77.634343, 38.400241], + [-77.634341, 38.400248], + [-77.634312, 38.400335], + [-77.634112, 38.401135], + [-77.634012, 38.401635], + [-77.634012, 38.402035], + [-77.634112, 38.402435], + [-77.634112, 38.402735], + [-77.634066, 38.402908], + [-77.634023, 38.403134], + [-77.633868, 38.403526], + [-77.633714, 38.403864], + [-77.63347, 38.404293], + [-77.633321, 38.404694], + [-77.633207, 38.405003], + [-77.633094, 38.405207], + [-77.63309, 38.405214], + [-77.632911, 38.405931], + [-77.632738, 38.4064], + [-77.632651, 38.406601], + [-77.632608, 38.406768], + [-77.632564, 38.406902], + [-77.632554, 38.406917], + [-77.632518, 38.406969], + [-77.632512, 38.407003], + [-77.632495, 38.407093], + [-77.632459, 38.407281], + [-77.632456, 38.407297], + [-77.63244, 38.407378], + [-77.632503, 38.407592], + [-77.632507, 38.407605], + [-77.632511, 38.407619], + [-77.632514, 38.407627], + [-77.632516, 38.407635], + [-77.632525, 38.407665], + [-77.632607, 38.40794], + [-77.632643, 38.408064], + [-77.632926, 38.408434], + [-77.63313, 38.408811], + [-77.633202, 38.408945], + [-77.633212, 38.408963], + [-77.633247, 38.409027], + [-77.633341, 38.409136], + [-77.633423, 38.40923], + [-77.633521, 38.409342], + [-77.633526, 38.409348], + [-77.633575, 38.409404], + [-77.63364, 38.409432], + [-77.633891, 38.409542], + [-77.633957, 38.409571], + [-77.634021, 38.409581], + [-77.634198, 38.409608], + [-77.634256, 38.409617], + [-77.634277, 38.40962], + [-77.63429, 38.409622], + [-77.634293, 38.409622], + [-77.634364, 38.409633], + [-77.634384, 38.409636], + [-77.634411, 38.40964], + [-77.634422, 38.409647], + [-77.634451, 38.409664], + [-77.634458, 38.409668], + [-77.634476, 38.409679], + [-77.634594, 38.409693], + [-77.634837, 38.409721], + [-77.634834, 38.40975], + [-77.63483, 38.409789], + [-77.634826, 38.409825], + [-77.634822, 38.409864], + [-77.634821, 38.409871], + [-77.63482, 38.409883], + [-77.634904, 38.409999], + [-77.634943, 38.410053], + [-77.634944, 38.410068], + [-77.63495, 38.410129], + [-77.634936, 38.4103], + [-77.634914, 38.410481], + [-77.63488, 38.410623], + [-77.634818, 38.410794], + [-77.634816, 38.410799], + [-77.634782, 38.410892], + [-77.634687, 38.411091], + [-77.634656, 38.411156], + [-77.634509, 38.411381], + [-77.634342, 38.411606], + [-77.633957, 38.411974], + [-77.633839, 38.412182], + [-77.633832, 38.412207], + [-77.633828, 38.412221], + [-77.633811, 38.412281], + [-77.633825, 38.412336], + [-77.633866, 38.412418], + [-77.634027, 38.412693], + [-77.634103, 38.412858], + [-77.634152, 38.412995], + [-77.634208, 38.413495], + [-77.634214, 38.413742], + [-77.634256, 38.413961], + [-77.634312, 38.414175], + [-77.634361, 38.414313], + [-77.634416, 38.414395], + [-77.634681, 38.414686], + [-77.634918, 38.4149], + [-77.635002, 38.414944], + [-77.635107, 38.415016], + [-77.635239, 38.415175], + [-77.635252, 38.415249], + [-77.635267, 38.415329], + [-77.635253, 38.415395], + [-77.635218, 38.415472], + [-77.635085, 38.41562], + [-77.635016, 38.41573], + [-77.634932, 38.415922], + [-77.634785, 38.416059], + [-77.634701, 38.416114], + [-77.634555, 38.41624], + [-77.634359, 38.41647], + [-77.63424, 38.416668], + [-77.634219, 38.416767], + [-77.634219, 38.416844], + [-77.63424, 38.416954], + [-77.634316, 38.417224], + [-77.634364, 38.417392], + [-77.6344, 38.417519], + [-77.634525, 38.418057], + [-77.634483, 38.418216], + [-77.634407, 38.41842], + [-77.634211, 38.419172], + [-77.634155, 38.419314], + [-77.634099, 38.419408], + [-77.634061, 38.419451], + [-77.634022, 38.419495], + [-77.633875, 38.419616], + [-77.633847, 38.419627], + [-77.633722, 38.419644], + [-77.633247, 38.419835], + [-77.632828, 38.419967], + [-77.632437, 38.420121], + [-77.632193, 38.420175], + [-77.631886, 38.420258], + [-77.631559, 38.420352], + [-77.631519, 38.420364], + [-77.631258, 38.420439], + [-77.631193, 38.42045], + [-77.63113, 38.420461], + [-77.631006, 38.420482], + [-77.630888, 38.420521], + [-77.630783, 38.420581], + [-77.630553, 38.420762], + [-77.630441, 38.420905], + [-77.630418, 38.420941], + [-77.63038, 38.421001], + [-77.630371, 38.421015], + [-77.630342, 38.421082], + [-77.63021, 38.421386], + [-77.630203, 38.421402], + [-77.630034, 38.421787], + [-77.629958, 38.421964], + [-77.629804, 38.42227], + [-77.629777, 38.422324], + [-77.62977, 38.422337], + [-77.629707, 38.422486], + [-77.6297, 38.422535], + [-77.629707, 38.42259], + [-77.62979, 38.422755], + [-77.630153, 38.423342], + [-77.630257, 38.423469], + [-77.630425, 38.423606], + [-77.630488, 38.423672], + [-77.630627, 38.423831], + [-77.630766, 38.424034], + [-77.630808, 38.424232], + [-77.630792, 38.424347], + [-77.630787, 38.42438], + [-77.630703, 38.424671], + [-77.630696, 38.424863], + [-77.63071, 38.424935], + [-77.630773, 38.4251], + [-77.631044, 38.425649], + [-77.631156, 38.425929], + [-77.631163, 38.426006], + [-77.631156, 38.426072], + [-77.631114, 38.426137], + [-77.630953, 38.426302], + [-77.630925, 38.42634], + [-77.630911, 38.426406], + [-77.630939, 38.4265], + [-77.63112, 38.426714], + [-77.631148, 38.426791], + [-77.631141, 38.426835], + [-77.631009, 38.42695], + [-77.630939, 38.427032], + [-77.630925, 38.427076], + [-77.630925, 38.427126], + [-77.630973, 38.427362], + [-77.631036, 38.427582], + [-77.631037, 38.427587], + [-77.63105, 38.427631], + [-77.631175, 38.427872], + [-77.631231, 38.427933], + [-77.631427, 38.428076], + [-77.631643, 38.428158], + [-77.631706, 38.428191], + [-77.631754, 38.42823], + [-77.631789, 38.428317], + [-77.631733, 38.428449], + [-77.631384, 38.428828], + [-77.630979, 38.429239], + [-77.630867, 38.429333], + [-77.630742, 38.42942], + [-77.630497, 38.429656], + [-77.630343, 38.429788], + [-77.630225, 38.42987], + [-77.629876, 38.430079], + [-77.629771, 38.430117], + [-77.62968, 38.430139], + [-77.629561, 38.430139], + [-77.629524, 38.430135], + [-77.629449, 38.430127], + [-77.62915, 38.430095], + [-77.629115, 38.4301], + [-77.629045, 38.430144], + [-77.62902, 38.430182], + [-77.628928, 38.430323], + [-77.628877, 38.430402], + [-77.628689, 38.430638], + [-77.628605, 38.430775], + [-77.628535, 38.431017], + [-77.628521, 38.43127], + [-77.628492, 38.431489], + [-77.628464, 38.431643], + [-77.628422, 38.43178], + [-77.628371, 38.431843], + [-77.62833, 38.431932], + [-77.628281, 38.432118], + [-77.628285, 38.432172], + [-77.628289, 38.432218], + [-77.6283, 38.432268], + [-77.628359, 38.432274], + [-77.628416, 38.432335], + [-77.62843, 38.43235], + [-77.6284, 38.432343], + [-77.628312, 38.432321], + [-77.628282, 38.432314], + [-77.628311, 38.432755], + [-77.628132, 38.433092], + [-77.628093, 38.433356], + [-77.628065, 38.433427], + [-77.628072, 38.433487], + [-77.628226, 38.433811], + [-77.628302, 38.434113], + [-77.628344, 38.434223], + [-77.628407, 38.434344], + [-77.628595, 38.434613], + [-77.628909, 38.434959], + [-77.628964, 38.435036], + [-77.628978, 38.435097], + [-77.628985, 38.435173], + [-77.628845, 38.435728], + [-77.628782, 38.436205], + [-77.628775, 38.436304], + [-77.628803, 38.436623], + [-77.62876, 38.437089], + [-77.628781, 38.437309], + [-77.628907, 38.437567], + [-77.628928, 38.437649], + [-77.628934, 38.437831], + [-77.628927, 38.438094], + [-77.628892, 38.438451], + [-77.628909, 38.438529], + [-77.628927, 38.43861], + [-77.628969, 38.438687], + [-77.629045, 38.438792], + [-77.629115, 38.438846], + [-77.62931, 38.438973], + [-77.629834, 38.439275], + [-77.630266, 38.439517], + [-77.630343, 38.439533], + [-77.630469, 38.439605], + [-77.631083, 38.439896], + [-77.631181, 38.439956], + [-77.63139, 38.440143], + [-77.631599, 38.440363], + [-77.631725, 38.440533], + [-77.631892, 38.440896], + [-77.632038, 38.441093], + [-77.632157, 38.441203], + [-77.63238, 38.441368], + [-77.633204, 38.441857], + [-77.633287, 38.441885], + [-77.633371, 38.441956], + [-77.633776, 38.442192], + [-77.633846, 38.442253], + [-77.633894, 38.442329], + [-77.633901, 38.442384], + [-77.633894, 38.44245], + [-77.633854, 38.442561], + [-77.633842, 38.442594], + [-77.633817, 38.442665], + [-77.633803, 38.442703], + [-77.633793, 38.442755], + [-77.633782, 38.442818], + [-77.633803, 38.443003], + [-77.633804, 38.443016], + [-77.63381, 38.443065], + [-77.633803, 38.443191], + [-77.633761, 38.443384], + [-77.633691, 38.443614], + [-77.633649, 38.443707], + [-77.633509, 38.443905], + [-77.633488, 38.443982], + [-77.633481, 38.444081], + [-77.633516, 38.444245], + [-77.633614, 38.44452], + [-77.633638, 38.444576], + [-77.633656, 38.444617], + [-77.633676, 38.444663], + [-77.633683, 38.444729], + [-77.633781, 38.444877], + [-77.633823, 38.44502], + [-77.633823, 38.445047], + [-77.633802, 38.445091], + [-77.633725, 38.445212], + [-77.633599, 38.445245], + [-77.632824, 38.445277], + [-77.63272, 38.445288], + [-77.632559, 38.445327], + [-77.632405, 38.445343], + [-77.632231, 38.445343], + [-77.63207, 38.445321], + [-77.631966, 38.445299], + [-77.6317, 38.445205], + [-77.631589, 38.4452], + [-77.631351, 38.445222], + [-77.631198, 38.44526], + [-77.631054, 38.445305], + [-77.630883, 38.445359], + [-77.630339, 38.445666], + [-77.630185, 38.445781], + [-77.629968, 38.445968], + [-77.629843, 38.446171], + [-77.629717, 38.446577], + [-77.62971, 38.446698], + [-77.629717, 38.446786], + [-77.629793, 38.446961], + [-77.629961, 38.447198], + [-77.630086, 38.447439], + [-77.630121, 38.447692], + [-77.630118, 38.44774], + [-77.630107, 38.447917], + [-77.630065, 38.448219], + [-77.630014, 38.448371], + [-77.62999, 38.448445], + [-77.629889, 38.448987], + [-77.629854, 38.449081], + [-77.629785, 38.449147], + [-77.629666, 38.449212], + [-77.629414, 38.449295], + [-77.629226, 38.449377], + [-77.629023, 38.449514], + [-77.62887, 38.449585], + [-77.628786, 38.449618], + [-77.628402, 38.449689], + [-77.628283, 38.449722], + [-77.62815, 38.449805], + [-77.628101, 38.449854], + [-77.628074, 38.44992], + [-77.628073, 38.449997], + [-77.628118, 38.450154], + [-77.628129, 38.450194], + [-77.628172, 38.450299], + [-77.628373, 38.450788], + [-77.62861, 38.451249], + [-77.628617, 38.451424], + [-77.6286, 38.451488], + [-77.628596, 38.451501], + [-77.628573, 38.451562], + [-77.628547, 38.451633], + [-77.628428, 38.451847], + [-77.628407, 38.451935], + [-77.62841, 38.451979], + [-77.628414, 38.452028], + [-77.628435, 38.452083], + [-77.628464, 38.452118], + [-77.628558, 38.452231], + [-77.628658, 38.452353], + [-77.628694, 38.452396], + [-77.628721, 38.452429], + [-77.628812, 38.452517], + [-77.62923, 38.452819], + [-77.629426, 38.453039], + [-77.629586, 38.453187], + [-77.629698, 38.45327], + [-77.629802, 38.453363], + [-77.629914, 38.453495], + [-77.630087, 38.453776], + [-77.630137, 38.453857], + [-77.630179, 38.454044], + [-77.630202, 38.454075], + [-77.630207, 38.454082], + [-77.630266, 38.454139], + [-77.630332, 38.454203], + [-77.630479, 38.454407], + [-77.630528, 38.454445], + [-77.630821, 38.454566], + [-77.630891, 38.454604], + [-77.630995, 38.454709], + [-77.631081, 38.454854], + [-77.631085, 38.454861], + [-77.631184, 38.455027], + [-77.631253, 38.455175], + [-77.63133, 38.455269], + [-77.631526, 38.455423], + [-77.631595, 38.455489], + [-77.631686, 38.455604], + [-77.631763, 38.455824], + [-77.631797, 38.45612], + [-77.63179, 38.456466], + [-77.631699, 38.457169], + [-77.631587, 38.457498], + [-77.631405, 38.457866], + [-77.631363, 38.457981], + [-77.631265, 38.458327], + [-77.631223, 38.458673], + [-77.631167, 38.458903], + [-77.631111, 38.459068], + [-77.631146, 38.459249], + [-77.631188, 38.459326], + [-77.631278, 38.459463], + [-77.631397, 38.459595], + [-77.631435, 38.459626], + [-77.631557, 38.459727], + [-77.631739, 38.459897], + [-77.631864, 38.460002], + [-77.631971, 38.46007], + [-77.632081, 38.460139], + [-77.632167, 38.460185], + [-77.632174, 38.460189], + [-77.632234, 38.460221], + [-77.632325, 38.460249], + [-77.632472, 38.460266], + [-77.632814, 38.460282], + [-77.632926, 38.460304], + [-77.633016, 38.46037], + [-77.633117, 38.460538], + [-77.633167, 38.460623], + [-77.633177, 38.460639], + [-77.633254, 38.4607], + [-77.633456, 38.460815], + [-77.633533, 38.460903], + [-77.63357, 38.460959], + [-77.633586, 38.460983], + [-77.633609, 38.461018], + [-77.633637, 38.461101], + [-77.63363, 38.461127], + [-77.633626, 38.461144], + [-77.633616, 38.461183], + [-77.633581, 38.461249], + [-77.633532, 38.461309], + [-77.633414, 38.461391], + [-77.633267, 38.461468], + [-77.632876, 38.461572], + [-77.632282, 38.461693], + [-77.63215, 38.461748], + [-77.632003, 38.461836], + [-77.631898, 38.461918], + [-77.631849, 38.462011], + [-77.631758, 38.462291], + [-77.631751, 38.462357], + [-77.631758, 38.462428], + [-77.631786, 38.462478], + [-77.63181, 38.462502], + [-77.631815, 38.462508], + [-77.631838, 38.462531], + [-77.631866, 38.46256], + [-77.632051, 38.462752], + [-77.632198, 38.462868], + [-77.632344, 38.462934], + [-77.632498, 38.462989], + [-77.6327, 38.463038], + [-77.632999, 38.463082], + [-77.633029, 38.463086], + [-77.633224, 38.463115], + [-77.633336, 38.463154], + [-77.633468, 38.463225], + [-77.633594, 38.463341], + [-77.633685, 38.463439], + [-77.633901, 38.463769], + [-77.633985, 38.46395], + [-77.634131, 38.464318], + [-77.634152, 38.4644], + [-77.634159, 38.464516], + [-77.634047, 38.464785], + [-77.633949, 38.465213], + [-77.633942, 38.465356], + [-77.633949, 38.465455], + [-77.634025, 38.465877], + [-77.634053, 38.466174], + [-77.634018, 38.466278], + [-77.633948, 38.46636], + [-77.633843, 38.466563], + [-77.633822, 38.466618], + [-77.633822, 38.466701], + [-77.6332, 38.467123], + [-77.632949, 38.46731], + [-77.632817, 38.467364], + [-77.632757, 38.467388], + [-77.632655, 38.46743], + [-77.632599, 38.467463], + [-77.632544, 38.467524], + [-77.632488, 38.467606], + [-77.63246, 38.467672], + [-77.632453, 38.467831], + [-77.632519, 38.46804], + [-77.632521, 38.468046], + [-77.632557, 38.468161], + [-77.632606, 38.468259], + [-77.632669, 38.468441], + [-77.632697, 38.468605], + [-77.632682, 38.468704], + [-77.632571, 38.468984], + [-77.632298, 38.469385], + [-77.632053, 38.46967], + [-77.631907, 38.469818], + [-77.631725, 38.469967], + [-77.631616, 38.470068], + [-77.627698, 38.470252], + [-77.627688, 38.470252], + [-77.627297, 38.47027], + [-77.627294, 38.470281], + [-77.626641, 38.472963], + [-77.626435, 38.47381], + [-77.625878, 38.475483], + [-77.623691, 38.475361], + [-77.618802, 38.479386], + [-77.615087, 38.482445], + [-77.612817, 38.484314], + [-77.612649, 38.484453], + [-77.612638, 38.484462], + [-77.611061, 38.485766], + [-77.608424, 38.487947], + [-77.602127, 38.493158], + [-77.602096, 38.493184], + [-77.601886, 38.493358], + [-77.601548, 38.493637], + [-77.601542, 38.493642], + [-77.601536, 38.493648], + [-77.601525, 38.493657], + [-77.601508, 38.493671], + [-77.601479, 38.493695], + [-77.601446, 38.493722], + [-77.60144, 38.493727], + [-77.601435, 38.493731], + [-77.601356, 38.493796], + [-77.60129, 38.493851], + [-77.600439, 38.494555], + [-77.600274, 38.494692], + [-77.600087, 38.494847], + [-77.599821, 38.495067], + [-77.59952, 38.495316], + [-77.599335, 38.495469], + [-77.599289, 38.495507], + [-77.596093, 38.498169], + [-77.594865, 38.499192], + [-77.594701, 38.499329], + [-77.594573, 38.499436], + [-77.594508, 38.49949], + [-77.59449, 38.499505], + [-77.594482, 38.499511], + [-77.594476, 38.499516], + [-77.594393, 38.499585], + [-77.592888, 38.500839], + [-77.588935, 38.504135], + [-77.588653, 38.50437], + [-77.583061, 38.508929], + [-77.583031, 38.508954], + [-77.582759, 38.509176], + [-77.582677, 38.509243], + [-77.582656, 38.50926], + [-77.582649, 38.509265], + [-77.582638, 38.509274], + [-77.582541, 38.509353], + [-77.582436, 38.509439], + [-77.581764, 38.509987], + [-77.581674, 38.510061], + [-77.581479, 38.51022], + [-77.581015, 38.510599], + [-77.580623, 38.510919], + [-77.580593, 38.510943], + [-77.580586, 38.510949], + [-77.580574, 38.510959], + [-77.580205, 38.51126], + [-77.579715, 38.51166], + [-77.579664, 38.511704], + [-77.579149, 38.512062], + [-77.579136, 38.512071], + [-77.579052, 38.512132], + [-77.579014, 38.512158], + [-77.578867, 38.512258], + [-77.578365, 38.512603], + [-77.577723, 38.513089], + [-77.577078, 38.513577], + [-77.576968, 38.51366], + [-77.576826, 38.513768], + [-77.576821, 38.513772], + [-77.576813, 38.513778], + [-77.576763, 38.513816], + [-77.576739, 38.513834], + [-77.57278, 38.516841], + [-77.572175, 38.517294], + [-77.571167, 38.51805], + [-77.571132, 38.518076], + [-77.571046, 38.518141], + [-77.571004, 38.518173], + [-77.568351, 38.520185], + [-77.56562, 38.522665], + [-77.565523, 38.522753], + [-77.562341, 38.525643], + [-77.560869, 38.52706], + [-77.560838, 38.52709], + [-77.554598, 38.533107], + [-77.549182, 38.538326], + [-77.549171, 38.538336], + [-77.549164, 38.538342], + [-77.549104, 38.538395], + [-77.549032, 38.538465], + [-77.548771, 38.538721], + [-77.548591, 38.538901], + [-77.546491, 38.540997], + [-77.543387, 38.544094], + [-77.539108, 38.548364], + [-77.536317, 38.55115], + [-77.536133, 38.551313], + [-77.533422, 38.553716], + [-77.530916, 38.555937], + [-77.530909, 38.555943], + [-77.530085, 38.556609], + [-77.529535, 38.557062], + [-77.529191, 38.557345], + [-77.529076, 38.557439], + [-77.528939, 38.55755], + [-77.527454, 38.558747], + [-77.525242, 38.560531], + [-77.517442, 38.566819], + [-77.51681, 38.567329], + [-77.515835, 38.568104], + [-77.513914, 38.569624], + [-77.50481, 38.577629], + [-77.504675, 38.577749], + [-77.503966, 38.578379], + [-77.50391, 38.578429], + [-77.497525, 38.582947], + [-77.497464, 38.583043], + [-77.497216, 38.583355], + [-77.497039, 38.583502], + [-77.49687, 38.583681], + [-77.496863, 38.584082], + [-77.496891, 38.58428], + [-77.496886, 38.584543], + [-77.496768, 38.58498], + [-77.496733, 38.585173], + [-77.496767, 38.585556], + [-77.496655, 38.585746], + [-77.496598, 38.585928], + [-77.496648, 38.586169], + [-77.496651, 38.586438], + [-77.496585, 38.586565], + [-77.496465, 38.586727], + [-77.496289, 38.586907], + [-77.495985, 38.587232], + [-77.495412, 38.58765], + [-77.495187, 38.587826], + [-77.494957, 38.58805], + [-77.494878, 38.588195], + [-77.494809, 38.588416], + [-77.494754, 38.588648], + [-77.494646, 38.58876], + [-77.494521, 38.588795], + [-77.494353, 38.588794], + [-77.493802, 38.588641], + [-77.493641, 38.588644], + [-77.493587, 38.5887], + [-77.493589, 38.588766], + [-77.493608, 38.588892], + [-77.493599, 38.589035], + [-77.493448, 38.589137], + [-77.493221, 38.58923], + [-77.493032, 38.589256], + [-77.492718, 38.589284], + [-77.492567, 38.589353], + [-77.492444, 38.589427], + [-77.492316, 38.589573], + [-77.492163, 38.589807], + [-77.491826, 38.590385], + [-77.49174, 38.59075], + [-77.491667, 38.590856], + [-77.491571, 38.590907], + [-77.491342, 38.59095], + [-77.490393, 38.591047], + [-77.490072, 38.591065], + [-77.489515, 38.59116], + [-77.488995, 38.591302], + [-77.488721, 38.591462], + [-77.488279, 38.591625], + [-77.488043, 38.59168], + [-77.487829, 38.591783], + [-77.487533, 38.591905], + [-77.487318, 38.591964], + [-77.486822, 38.592013], + [-77.486506, 38.591959], + [-77.486153, 38.591874], + [-77.485977, 38.591861], + [-77.485639, 38.591994], + [-77.485513, 38.591992], + [-77.485359, 38.591978], + [-77.485184, 38.591999], + [-77.485012, 38.592068], + [-77.4849, 38.592082], + [-77.484765, 38.592024], + [-77.484622, 38.591928], + [-77.483894, 38.591526], + [-77.483793, 38.591418], + [-77.483684, 38.591316], + [-77.483572, 38.591302], + [-77.483405, 38.59135], + [-77.483228, 38.591474], + [-77.483058, 38.591626], + [-77.482969, 38.591689], + [-77.48283, 38.591703], + [-77.482652, 38.591624], + [-77.482568, 38.591631], + [-77.482465, 38.591666], + [-77.482377, 38.591756], + [-77.482198, 38.591859], + [-77.482045, 38.591868], + [-77.48192, 38.591909], + [-77.481797, 38.59201], + [-77.481739, 38.592127], + [-77.481709, 38.592287], + [-77.481684, 38.592364], + [-77.481594, 38.59241], + [-77.48149, 38.59244], + [-77.48128, 38.592433], + [-77.480884, 38.592507], + [-77.480806, 38.592471], + [-77.48064, 38.592348], + [-77.480487, 38.592164], + [-77.480114, 38.591903], + [-77.479951, 38.59184], + [-77.479545, 38.591833], + [-77.479252, 38.591861], + [-77.478761, 38.591827], + [-77.478515, 38.591789], + [-77.478208, 38.591839], + [-77.478048, 38.591842], + [-77.477893, 38.591813], + [-77.477725, 38.591827], + [-77.477601, 38.59189], + [-77.477427, 38.592103], + [-77.477344, 38.592143], + [-77.477288, 38.592144], + [-77.477141, 38.592125], + [-77.477109, 38.592136], + [-77.477051, 38.592155], + [-77.476919, 38.592185], + [-77.476772, 38.592199], + [-77.476659, 38.592152], + [-77.476621, 38.592065], + [-77.47652, 38.591996], + [-77.476387, 38.591982], + [-77.476115, 38.59201], + [-77.475974, 38.591787], + [-77.47588, 38.591685], + [-77.47578, 38.591638], + [-77.475667, 38.591618], + [-77.475547, 38.591582], + [-77.475409, 38.591437], + [-77.475246, 38.591369], + [-77.475041, 38.591307], + [-77.474954, 38.59121], + [-77.474852, 38.590916], + [-77.474756, 38.590753], + [-77.47459, 38.590597], + [-77.474425, 38.590496], + [-77.474057, 38.590367], + [-77.47373, 38.59022], + [-77.473569, 38.590234], + [-77.473417, 38.590271], + [-77.473222, 38.590297], + [-77.473068, 38.5903], + [-77.472948, 38.59027], + [-77.47284, 38.5902], + [-77.472379, 38.589798], + [-77.472165, 38.589682], + [-77.471769, 38.589575], + [-77.471417, 38.589522], + [-77.47131, 38.589442], + [-77.47124, 38.589246], + [-77.471212, 38.589054], + [-77.471166, 38.588912], + [-77.47107, 38.588788], + [-77.470875, 38.5886], + [-77.470854, 38.588391], + [-77.470919, 38.587852], + [-77.470965, 38.587746], + [-77.4711, 38.587623], + [-77.471146, 38.587523], + [-77.471026, 38.587278], + [-77.471008, 38.587174], + [-77.47101, 38.587021], + [-77.470929, 38.586907], + [-77.470762, 38.586729], + [-77.470584, 38.586656], + [-77.470313, 38.586491], + [-77.470226, 38.586405], + [-77.470189, 38.586346], + [-77.47015, 38.586248], + [-77.470179, 38.586071], + [-77.47018, 38.585879], + [-77.470091, 38.585749], + [-77.469955, 38.585648], + [-77.469734, 38.585543], + [-77.469444, 38.58545], + [-77.468937, 38.585356], + [-77.468816, 38.585287], + [-77.468675, 38.585274], + [-77.468404, 38.585307], + [-77.468248, 38.585255], + [-77.468176, 38.585202], + [-77.46811, 38.585121], + [-77.468127, 38.585], + [-77.468275, 38.584821], + [-77.468464, 38.584625], + [-77.46857, 38.584447], + [-77.468585, 38.58426], + [-77.468509, 38.584085], + [-77.468305, 38.583848], + [-77.468141, 38.583769], + [-77.467782, 38.5837], + [-77.467502, 38.583513], + [-77.467336, 38.583363], + [-77.467197, 38.583168], + [-77.467023, 38.582985], + [-77.466824, 38.582693], + [-77.466642, 38.582493], + [-77.466495, 38.582288], + [-77.466491, 38.582167], + [-77.466538, 38.582117], + [-77.466635, 38.582082], + [-77.466823, 38.58205], + [-77.466912, 38.581999], + [-77.466916, 38.581906], + [-77.466711, 38.581641], + [-77.466472, 38.58142], + [-77.466153, 38.581301], + [-77.46592, 38.581245], + [-77.465737, 38.581216], + [-77.465617, 38.581164], + [-77.46543, 38.581009], + [-77.465382, 38.580642], + [-77.465295, 38.580545], + [-77.465159, 38.580465], + [-77.465094, 38.5804], + [-77.46502, 38.580276], + [-77.464986, 38.580123], + [-77.464975, 38.579986], + [-77.464857, 38.579823], + [-77.464591, 38.579604], + [-77.464552, 38.579506], + [-77.464566, 38.579291], + [-77.464459, 38.579024], + [-77.464377, 38.578889], + [-77.464247, 38.578771], + [-77.464119, 38.578713], + [-77.463951, 38.578694], + [-77.463722, 38.578765], + [-77.463454, 38.578886], + [-77.462961, 38.579204], + [-77.462829, 38.57924], + [-77.46271, 38.579231], + [-77.462519, 38.579175], + [-77.4624, 38.579172], + [-77.462201, 38.579302], + [-77.462077, 38.579355], + [-77.46182, 38.579404], + [-77.461583, 38.579425], + [-77.461421, 38.579412], + [-77.461323, 38.579184], + [-77.461258, 38.579136], + [-77.461019, 38.579097], + [-77.460781, 38.579102], + [-77.460546, 38.579183], + [-77.460367, 38.57927], + [-77.460174, 38.579351], + [-77.460076, 38.579364], + [-77.459908, 38.579362], + [-77.459646, 38.579466], + [-77.459471, 38.579453], + [-77.459365, 38.579434], + [-77.459202, 38.579371], + [-77.459105, 38.579406], + [-77.458955, 38.579503], + [-77.458884, 38.579685], + [-77.458821, 38.579901], + [-77.458747, 38.579996], + [-77.458631, 38.580059], + [-77.458456, 38.580068], + [-77.458226, 38.580095], + [-77.458139, 38.580206], + [-77.458036, 38.580263], + [-77.457876, 38.5803], + [-77.457729, 38.580286], + [-77.457425, 38.580205], + [-77.457251, 38.58023], + [-77.45701, 38.580225], + [-77.456992, 38.580225], + [-77.456897, 38.58023], + [-77.456817, 38.580234], + [-77.45662, 38.580392], + [-77.456488, 38.580411], + [-77.456341, 38.580425], + [-77.456189, 38.580467], + [-77.456113, 38.580507], + [-77.45606, 38.580585], + [-77.455992, 38.58085], + [-77.455868, 38.580929], + [-77.455743, 38.580954], + [-77.455645, 38.58094], + [-77.455546, 38.580903], + [-77.455449, 38.580933], + [-77.455305, 38.581029], + [-77.455165, 38.581038], + [-77.45496, 38.580971], + [-77.454819, 38.580941], + [-77.454718, 38.580833], + [-77.454572, 38.580666], + [-77.454423, 38.580592], + [-77.453426, 38.580508], + [-77.45316, 38.580503], + [-77.452919, 38.580607], + [-77.452806, 38.580598], + [-77.452687, 38.580579], + [-77.452583, 38.580614], + [-77.452473, 38.580677], + [-77.452369, 38.580695], + [-77.452278, 38.580686], + [-77.452193, 38.580666], + [-77.452138, 38.580684], + [-77.452097, 38.580723], + [-77.452093, 38.580811], + [-77.452166, 38.580903], + [-77.452154, 38.580969], + [-77.452066, 38.581053], + [-77.451817, 38.581141], + [-77.451572, 38.581146], + [-77.451204, 38.581], + [-77.451056, 38.580981], + [-77.450882, 38.581012], + [-77.450758, 38.581053], + [-77.450556, 38.58109], + [-77.45038, 38.581061], + [-77.449932, 38.580851], + [-77.449785, 38.580843], + [-77.449577, 38.580891], + [-77.449069, 38.581193], + [-77.448945, 38.581239], + [-77.44884, 38.581247], + [-77.448762, 38.581227], + [-77.448711, 38.581151], + [-77.448673, 38.581069], + [-77.448719, 38.580986], + [-77.448722, 38.580876], + [-77.448685, 38.5808], + [-77.448556, 38.580731], + [-77.448422, 38.580696], + [-77.448262, 38.580704], + [-77.447924, 38.580635], + [-77.447567, 38.580428], + [-77.447414, 38.580261], + [-77.447306, 38.580164], + [-77.447192, 38.580112], + [-77.447134, 38.580052], + [-77.447088, 38.579949], + [-77.447008, 38.579852], + [-77.446929, 38.579782], + [-77.44687, 38.579701], + [-77.446818, 38.579603], + [-77.446738, 38.579522], + [-77.446643, 38.579404], + [-77.44657, 38.579323], + [-77.446533, 38.579252], + [-77.446564, 38.579131], + [-77.446687, 38.578826], + [-77.446736, 38.578622], + [-77.446745, 38.578484], + [-77.446691, 38.578348], + [-77.44658, 38.578158], + [-77.446541, 38.578038], + [-77.446543, 38.577895], + [-77.446642, 38.577509], + [-77.446615, 38.577328], + [-77.446519, 38.577204], + [-77.446218, 38.576979], + [-77.445953, 38.576804], + [-77.445781, 38.576675], + [-77.445632, 38.576607], + [-77.445552, 38.576526], + [-77.445511, 38.576346], + [-77.44545, 38.576193], + [-77.445303, 38.575988], + [-77.445108, 38.575827], + [-77.444695, 38.575605], + [-77.444255, 38.575411], + [-77.444133, 38.575337], + [-77.444032, 38.575251], + [-77.44389, 38.575193], + [-77.443742, 38.575164], + [-77.443339, 38.575232], + [-77.443122, 38.575237], + [-77.442869, 38.575193], + [-77.442697, 38.575081], + [-77.442589, 38.574984], + [-77.442487, 38.574866], + [-77.442408, 38.574801], + [-77.442309, 38.574771], + [-77.442176, 38.574773], + [-77.442029, 38.574765], + [-77.441672, 38.574564], + [-77.441551, 38.57449], + [-77.441322, 38.574404], + [-77.441253, 38.574378], + [-77.441217, 38.574365], + [-77.441179, 38.574358], + [-77.441105, 38.574345], + [-77.44097, 38.574277], + [-77.440855, 38.574197], + [-77.440754, 38.574105], + [-77.440695, 38.574024], + [-77.440627, 38.573883], + [-77.440569, 38.573818], + [-77.440383, 38.573674], + [-77.440216, 38.573513], + [-77.440024, 38.573407], + [-77.439875, 38.573349], + [-77.439671, 38.573326], + [-77.439295, 38.573383], + [-77.439143, 38.573431], + [-77.439052, 38.573432], + [-77.438979, 38.573352], + [-77.438899, 38.573249], + [-77.438819, 38.573179], + [-77.43872, 38.573132], + [-77.438594, 38.573129], + [-77.438463, 38.573186], + [-77.438271, 38.573295], + [-77.438148, 38.573407], + [-77.437996, 38.57346], + [-77.437857, 38.573479], + [-77.437702, 38.573444], + [-77.437545, 38.573343], + [-77.43745, 38.573246], + [-77.437124, 38.573116], + [-77.437003, 38.573041], + [-77.436902, 38.57295], + [-77.436727, 38.57275], + [-77.436659, 38.572603], + [-77.436619, 38.572445], + [-77.436561, 38.57238], + [-77.436447, 38.572328], + [-77.436381, 38.572252], + [-77.436312, 38.57205], + [-77.435939, 38.571591], + [-77.43587, 38.571395], + [-77.435804, 38.571309], + [-77.435733, 38.571068], + [-77.435579, 38.570874], + [-77.435512, 38.570743], + [-77.43547, 38.570552], + [-77.435338, 38.570373], + [-77.435182, 38.570305], + [-77.435077, 38.570302], + [-77.434905, 38.570388], + [-77.434714, 38.570546], + [-77.434612, 38.570614], + [-77.434438, 38.570639], + [-77.434149, 38.570569], + [-77.433914, 38.570447], + [-77.43354, 38.570153], + [-77.43344, 38.5701], + [-77.43316, 38.5701], + [-77.43306, 38.570036], + [-77.432816, 38.569437], + [-77.432524, 38.568861], + [-77.43241, 38.568594], + [-77.432316, 38.568091], + [-77.43219, 38.567885], + [-77.431999, 38.567614], + [-77.431744, 38.567328], + [-77.431569, 38.567107], + [-77.431353, 38.566936], + [-77.431223, 38.566812], + [-77.43081, 38.56637], + [-77.430608, 38.566215], + [-77.430346, 38.566105], + [-77.430077, 38.566028], + [-77.429838, 38.565973], + [-77.428817, 38.565796], + [-77.428569, 38.565686], + [-77.428304, 38.565521], + [-77.427816, 38.565147], + [-77.42756, 38.565032], + [-77.427185, 38.564902], + [-77.426804, 38.564806], + [-77.426615, 38.564804], + [-77.426381, 38.564908], + [-77.426181, 38.565011], + [-77.426002, 38.565075], + [-77.425975, 38.565079], + [-77.425859, 38.565097], + [-77.425842, 38.5651], + [-77.425644, 38.56506], + [-77.425446, 38.564993], + [-77.42521, 38.564817], + [-77.425155, 38.56479], + [-77.424882, 38.564653], + [-77.424636, 38.564625], + [-77.424378, 38.564631], + [-77.423981, 38.564677], + [-77.42372, 38.564639], + [-77.423501, 38.564572], + [-77.423415, 38.564497], + [-77.423363, 38.564399], + [-77.423495, 38.563979], + [-77.423504, 38.563814], + [-77.423426, 38.563568], + [-77.423321, 38.563373], + [-77.423227, 38.563292], + [-77.423093, 38.563251], + [-77.422892, 38.563294], + [-77.422539, 38.563422], + [-77.422201, 38.563566], + [-77.421968, 38.563697], + [-77.421794, 38.563734], + [-77.421508, 38.563762], + [-77.421172, 38.563763], + [-77.421015, 38.563739], + [-77.420948, 38.563729], + [-77.420833, 38.563666], + [-77.420844, 38.563561], + [-77.421217, 38.563213], + [-77.421372, 38.56304], + [-77.421516, 38.562751], + [-77.421626, 38.56248], + [-77.421792, 38.562218], + [-77.421906, 38.562062], + [-77.422082, 38.561888], + [-77.422147, 38.561733], + [-77.422109, 38.56164], + [-77.421996, 38.561615], + [-77.421822, 38.561657], + [-77.42146, 38.561709], + [-77.421124, 38.56171], + [-77.420878, 38.561671], + [-77.420511, 38.561558], + [-77.420247, 38.561421], + [-77.419925, 38.561202], + [-77.419759, 38.561041], + [-77.419659, 38.560966], + [-77.419589, 38.560358], + [-77.4195, 38.560211], + [-77.419363, 38.560093], + [-77.419035, 38.559897], + [-77.418948, 38.559794], + [-77.418889, 38.55951], + [-77.418811, 38.559264], + [-77.418719, 38.559036], + [-77.41866, 38.558932], + [-77.418574, 38.558885], + [-77.418462, 38.558882], + [-77.418247, 38.558919], + [-77.418135, 38.558916], + [-77.417994, 38.558886], + [-77.417892, 38.558778], + [-77.417661, 38.558568], + [-77.417595, 38.558471], + [-77.417516, 38.558198], + [-77.417005, 38.558176], + [-77.416501, 38.55817], + [-77.416262, 38.558147], + [-77.416001, 38.558081], + [-77.415823, 38.557975], + [-77.415713, 38.557818], + [-77.415631, 38.557468], + [-77.41564, 38.557325], + [-77.415587, 38.557211], + [-77.4153, 38.556975], + [-77.41507, 38.556595], + [-77.415023, 38.556448], + [-77.414865, 38.556325], + [-77.414367, 38.556077], + [-77.414037, 38.556029], + [-77.413829, 38.556105], + [-77.413426, 38.556184], + [-77.413066, 38.55629], + [-77.412516, 38.556565], + [-77.412364, 38.556629], + [-77.412182, 38.556638], + [-77.412034, 38.556581], + [-77.411911, 38.556479], + [-77.411677, 38.556374], + [-77.411386, 38.556259], + [-77.410922, 38.555983], + [-77.410365, 38.555632], + [-77.41012, 38.555401], + [-77.409833, 38.554978], + [-77.40968, 38.554822], + [-77.409542, 38.554649], + [-77.409465, 38.554442], + [-77.409491, 38.554184], + [-77.409505, 38.55376], + [-77.4095, 38.553618], + [-77.409448, 38.553525], + [-77.409342, 38.553495], + [-77.409181, 38.553481], + [-77.409036, 38.553528], + [-77.408822, 38.553632], + [-77.408658, 38.55375], + [-77.408336, 38.553938], + [-77.408074, 38.554059], + [-77.407817, 38.554097], + [-77.40762, 38.554085], + [-77.407267, 38.553982], + [-77.406898, 38.553831], + [-77.406584, 38.553639], + [-77.406298, 38.553431], + [-77.405962, 38.55324], + [-77.405498, 38.552937], + [-77.404692, 38.552492], + [-77.404336, 38.552279], + [-77.403757, 38.551929], + [-77.403431, 38.551798], + [-77.403317, 38.551724], + [-77.403158, 38.551578], + [-77.402977, 38.55139], + [-77.402765, 38.551125], + [-77.402582, 38.550871], + [-77.402344, 38.550661], + [-77.402214, 38.550527], + [-77.401935, 38.55034], + [-77.401579, 38.550144], + [-77.401414, 38.550038], + [-77.401293, 38.54998], + [-77.40097, 38.549932], + [-77.400779, 38.54987], + [-77.400572, 38.549742], + [-77.400376, 38.549532], + [-77.40027, 38.549292], + [-77.400237, 38.549145], + [-77.4003, 38.54894], + [-77.400416, 38.548855], + [-77.400514, 38.548698], + [-77.400575, 38.5486], + [-77.400589, 38.548577], + [-77.40073, 38.548393], + [-77.401062, 38.547878], + [-77.401135, 38.547765], + [-77.401355, 38.547425], + [-77.40126, 38.547289], + [-77.400844, 38.547402], + [-77.399998, 38.547826], + [-77.399282, 38.547956], + [-77.397607, 38.547458], + [-77.396006, 38.545999], + [-77.395826, 38.545835], + [-77.394785, 38.54439], + [-77.394816, 38.543659], + [-77.395778, 38.543337], + [-77.396088, 38.54299], + [-77.396045, 38.542733], + [-77.395408, 38.541241], + [-77.394866, 38.540505], + [-77.394383, 38.540301], + [-77.393057, 38.539984], + [-77.392543, 38.539861], + [-77.392569, 38.538937], + [-77.392779, 38.538318], + [-77.392645, 38.537859], + [-77.392013, 38.537169], + [-77.391813, 38.536874], + [-77.391734, 38.536757], + [-77.391645, 38.53665], + [-77.391472, 38.536444], + [-77.391386, 38.536397], + [-77.391255, 38.536325], + [-77.391066, 38.536222], + [-77.39076, 38.536074], + [-77.390363, 38.535912], + [-77.38981, 38.53566], + [-77.389098, 38.535295], + [-77.388857, 38.535185], + [-77.3887, 38.535089], + [-77.388607, 38.53502], + [-77.388561, 38.534911], + [-77.388563, 38.534757], + [-77.388626, 38.534536], + [-77.388676, 38.534172], + [-77.388675, 38.533931], + [-77.388611, 38.533685], + [-77.388515, 38.533527], + [-77.388363, 38.53336], + [-77.38824, 38.533253], + [-77.388077, 38.533174], + [-77.387895, 38.533156], + [-77.387615, 38.533167], + [-77.387225, 38.533213], + [-77.386794, 38.533277], + [-77.386378, 38.533328], + [-77.386312, 38.533336], + [-77.386129, 38.533358], + [-77.386097, 38.533362], + [-77.385887, 38.53335], + [-77.385857, 38.533345], + [-77.385676, 38.533316], + [-77.385389, 38.533311], + [-77.385095, 38.533284], + [-77.384904, 38.533222], + [-77.384614, 38.533113], + [-77.384428, 38.532996], + [-77.384347, 38.532865], + [-77.384348, 38.532695], + [-77.384417, 38.532463], + [-77.38447, 38.532352], + [-77.384758, 38.531995], + [-77.385002, 38.531753], + [-77.38521, 38.531486], + [-77.385232, 38.531438], + [-77.385282, 38.531325], + [-77.385284, 38.531182], + [-77.385239, 38.531084], + [-77.385187, 38.531003], + [-77.385072, 38.530906], + [-77.384301, 38.530636], + [-77.383981, 38.530535], + [-77.383891, 38.530507], + [-77.383171, 38.530308], + [-77.382826, 38.530227], + [-77.38276, 38.530202], + [-77.382609, 38.530146], + [-77.382536, 38.530118], + [-77.382055, 38.529957], + [-77.381624, 38.529839], + [-77.381185, 38.529667], + [-77.381063, 38.529571], + [-77.381002, 38.529413], + [-77.381045, 38.529242], + [-77.381575, 38.528775], + [-77.382011, 38.528439], + [-77.38238, 38.528154], + [-77.382537, 38.528052], + [-77.382633, 38.527973], + [-77.382684, 38.527824], + [-77.382571, 38.527376], + [-77.38248, 38.526955], + [-77.382524, 38.526591], + [-77.382421, 38.526423], + [-77.382181, 38.526357], + [-77.381936, 38.526356], + [-77.381515, 38.52631], + [-77.381275, 38.526238], + [-77.381051, 38.526226], + [-77.380696, 38.526283], + [-77.380448, 38.526381], + [-77.380316, 38.526422], + [-77.380176, 38.52642], + [-77.379648, 38.526309], + [-77.379543, 38.526306], + [-77.379378, 38.526381], + [-77.379036, 38.526399], + [-77.378768, 38.526338], + [-77.378401, 38.52623], + [-77.378163, 38.526241], + [-77.377963, 38.5263], + [-77.377935, 38.526317], + [-77.377771, 38.526419], + [-77.377614, 38.526543], + [-77.377519, 38.526627], + [-77.377409, 38.52669], + [-77.377313, 38.52673], + [-77.377194, 38.526738], + [-77.377067, 38.526702], + [-77.376923, 38.526573], + [-77.376805, 38.526406], + [-77.376692, 38.526348], + [-77.376496, 38.52634], + [-77.376184, 38.526435], + [-77.375982, 38.52645], + [-77.375869, 38.526408], + [-77.37579, 38.52636], + [-77.375726, 38.526323], + [-77.375609, 38.526172], + [-77.375513, 38.52602], + [-77.375419, 38.525923], + [-77.375249, 38.525844], + [-77.374864, 38.525616], + [-77.374701, 38.525559], + [-77.374227, 38.525376], + [-77.374142, 38.525141], + [-77.374137, 38.525004], + [-77.374094, 38.524763], + [-77.373897, 38.524498], + [-77.373593, 38.524197], + [-77.373235, 38.523929], + [-77.373115, 38.523668], + [-77.373186, 38.523508], + [-77.373323, 38.523422], + [-77.373404, 38.523327], + [-77.373526, 38.523215], + [-77.373518, 38.523177], + [-77.373528, 38.523098], + [-77.373549, 38.522936], + [-77.373551, 38.522918], + [-77.37346, 38.522695], + [-77.372833, 38.522323], + [-77.372222, 38.522039], + [-77.371898, 38.521759], + [-77.371624, 38.521555], + [-77.37149, 38.521455], + [-77.37126, 38.521273], + [-77.370905, 38.52089], + [-77.370825, 38.520809], + [-77.37071, 38.520696], + [-77.370672, 38.520658], + [-77.370623, 38.52061], + [-77.370491, 38.520415], + [-77.370313, 38.520122], + [-77.370144, 38.519873], + [-77.370015, 38.519765], + [-77.369808, 38.519632], + [-77.36947, 38.519557], + [-77.369249, 38.519446], + [-77.368833, 38.519344], + [-77.368432, 38.519259], + [-77.368242, 38.519219], + [-77.368102, 38.519194], + [-77.367487, 38.519223], + [-77.367219, 38.51935], + [-77.36694, 38.519388], + [-77.366857, 38.519401], + [-77.365968, 38.519375], + [-77.365697, 38.51943], + [-77.365669, 38.51943], + [-77.36527, 38.519625], + [-77.364976, 38.519834], + [-77.364732, 38.520075], + [-77.364564, 38.520255], + [-77.36438, 38.520423], + [-77.364274, 38.520585], + [-77.364342, 38.520737], + [-77.364205, 38.520844], + [-77.363934, 38.520877], + [-77.362956, 38.520913], + [-77.362731, 38.520879], + [-77.362416, 38.520847], + [-77.362233, 38.520823], + [-77.361987, 38.520779], + [-77.361832, 38.520738], + [-77.361514, 38.52064], + [-77.361336, 38.520556], + [-77.361158, 38.520439], + [-77.361032, 38.520361], + [-77.360879, 38.520268], + [-77.360708, 38.520151], + [-77.360577, 38.520011], + [-77.360183, 38.519711], + [-77.359997, 38.519578], + [-77.359735, 38.519473], + [-77.359312, 38.519355], + [-77.359079, 38.519289], + [-77.358704, 38.518961], + [-77.358731, 38.518691], + [-77.358687, 38.518418], + [-77.358593, 38.518348], + [-77.358452, 38.518291], + [-77.358289, 38.518217], + [-77.358019, 38.518085], + [-77.357841, 38.518012], + [-77.357678, 38.517933], + [-77.357521, 38.517832], + [-77.357345, 38.517802], + [-77.357135, 38.517795], + [-77.356898, 38.5178], + [-77.356709, 38.517787], + [-77.356567, 38.51773], + [-77.3564, 38.517557], + [-77.356319, 38.517411], + [-77.356217, 38.517292], + [-77.356052, 38.516944], + [-77.355987, 38.516885], + [-77.355838, 38.516827], + [-77.355521, 38.516735], + [-77.354918, 38.516697], + [-77.354588, 38.516666], + [-77.354239, 38.516684], + [-77.353786, 38.51672], + [-77.353425, 38.516804], + [-77.353066, 38.516943], + [-77.352817, 38.517003], + [-77.352454, 38.517038], + [-77.351945, 38.51707], + [-77.351758, 38.517118], + [-77.351285, 38.517188], + [-77.350496, 38.517215], + [-77.350195, 38.517204], + [-77.349704, 38.517176], + [-77.349407, 38.517072], + [-77.348938, 38.516818], + [-77.348593, 38.516544], + [-77.348286, 38.516336], + [-77.34802, 38.516127], + [-77.347978, 38.516128], + [-77.347726, 38.516111], + [-77.347397, 38.516096], + [-77.347074, 38.516064], + [-77.346805, 38.51596], + [-77.346568, 38.515767], + [-77.346318, 38.51559], + [-77.346073, 38.515584], + [-77.346003, 38.515586], + [-77.345781, 38.515623], + [-77.345391, 38.515669], + [-77.345251, 38.515672], + [-77.345026, 38.515638], + [-77.344068, 38.515399], + [-77.343497, 38.515262], + [-77.343229, 38.51518], + [-77.341505, 38.514632], + [-77.341294, 38.514587], + [-77.340771, 38.514422], + [-77.340322, 38.51437], + [-77.340148, 38.514385], + [-77.339707, 38.514371], + [-77.339437, 38.514229], + [-77.339226, 38.514211], + [-77.339012, 38.514303], + [-77.338754, 38.514517], + [-77.338018, 38.514894], + [-77.337408, 38.515044], + [-77.336733, 38.515145], + [-77.336601, 38.514955], + [-77.336493, 38.51488], + [-77.336458, 38.514865], + [-77.336422, 38.51485], + [-77.33638, 38.514833], + [-77.33626, 38.514839], + [-77.336213, 38.514842], + [-77.336065, 38.514834], + [-77.336053, 38.514832], + [-77.335876, 38.51481], + [-77.335728, 38.51478], + [-77.335553, 38.514762], + [-77.335222, 38.514692], + [-77.335122, 38.514663], + [-77.33506, 38.514645], + [-77.334904, 38.514577], + [-77.334814, 38.514392], + [-77.334829, 38.514253], + [-77.33483, 38.514244], + [-77.334717, 38.513977], + [-77.334662, 38.513866], + [-77.334657, 38.513857], + [-77.334543, 38.513793], + [-77.334407, 38.513697], + [-77.33436, 38.513653], + [-77.334345, 38.513639], + [-77.334299, 38.513595], + [-77.332442, 38.510837], + [-77.33157, 38.510315], + [-77.331147, 38.510106], + [-77.330892, 38.509981], + [-77.330391, 38.509734], + [-77.329853, 38.509374], + [-77.32981, 38.509348], + [-77.327057, 38.507667], + [-77.325647, 38.505722], + [-77.323879, 38.504895], + [-77.323377, 38.504661], + [-77.323159, 38.504559], + [-77.320825, 38.50478], + [-77.320261, 38.504559], + [-77.319166, 38.503801], + [-77.319142, 38.503788], + [-77.319042, 38.503731], + [-77.31892, 38.503629], + [-77.318768, 38.503458], + [-77.318704, 38.503415], + [-77.318641, 38.503416], + [-77.318066, 38.503067], + [-77.317785, 38.502897], + [-77.316733, 38.502326], + [-77.316394, 38.50217], + [-77.315056, 38.50166], + [-77.314473, 38.501456], + [-77.313247, 38.501029], + [-77.313183, 38.500992], + [-77.31297, 38.500919], + [-77.312658, 38.500809], + [-77.312123, 38.50071], + [-77.311218, 38.500359], + [-77.310872, 38.500225], + [-77.310762, 38.500183], + [-77.310539, 38.500122], + [-77.310233, 38.50004], + [-77.309732, 38.49987], + [-77.309093, 38.499732], + [-77.308454, 38.49968], + [-77.30814, 38.499707], + [-77.308016, 38.50013], + [-77.307956, 38.500401], + [-77.307916, 38.500949], + [-77.307936, 38.501093], + [-77.307834, 38.501117], + [-77.307793, 38.501194], + [-77.307793, 38.501311], + [-77.307988, 38.501467], + [-77.30893, 38.502098], + [-77.309026, 38.502162], + [-77.309481, 38.502468], + [-77.309621, 38.502561], + [-77.309693, 38.502591], + [-77.309774, 38.502625], + [-77.310071, 38.50275], + [-77.310427, 38.503287], + [-77.310916, 38.504252], + [-77.310958, 38.504601], + [-77.310814, 38.504952], + [-77.31053, 38.505297], + [-77.309904, 38.505628], + [-77.309467, 38.505629], + [-77.308449, 38.505629], + [-77.307895, 38.505798], + [-77.307466, 38.505952], + [-77.306283, 38.506027], + [-77.305281, 38.505835], + [-77.304608, 38.505524], + [-77.303607, 38.505098], + [-77.302075, 38.504555], + [-77.301647, 38.504476], + [-77.300993, 38.504553], + [-77.300531, 38.504708], + [-77.300299, 38.504784], + [-77.299776, 38.50505], + [-77.299423, 38.505321], + [-77.299011, 38.505894], + [-77.298728, 38.506287], + [-77.298482, 38.507138], + [-77.298523, 38.508148], + [-77.298727, 38.508535], + [-77.299217, 38.509348], + [-77.299399, 38.509849], + [-77.299445, 38.510184], + [-77.29924, 38.510461], + [-77.298666, 38.510816], + [-77.297767, 38.511472], + [-77.296828, 38.511895], + [-77.296399, 38.511972], + [-77.296051, 38.511973], + [-77.295888, 38.511818], + [-77.295408, 38.509247], + [-77.295046, 38.509792], + [-77.294981, 38.50989], + [-77.294948, 38.509939], + [-77.294888, 38.51003], + [-77.294885, 38.510035], + [-77.294873, 38.510053], + [-77.294832, 38.510115], + [-77.294685, 38.510337], + [-77.292888, 38.513043], + [-77.291105, 38.515728], + [-77.29109, 38.515751], + [-77.290894, 38.515716], + [-77.290722, 38.515724], + [-77.28974, 38.518064], + [-77.28862, 38.519159], + [-77.288231, 38.519194], + [-77.288165, 38.51927], + [-77.28791, 38.519565], + [-77.287887, 38.519592], + [-77.287876, 38.519598], + [-77.287496, 38.519814], + [-77.287213, 38.520265], + [-77.287123, 38.520409], + [-77.285641, 38.51996], + [-77.28569, 38.519767], + [-77.285526, 38.519739], + [-77.285311, 38.519703], + [-77.285008, 38.520285], + [-77.285367, 38.520383], + [-77.285532, 38.520286], + [-77.287474, 38.520913], + [-77.287338, 38.521245], + [-77.287296, 38.521471], + [-77.287062, 38.521805], + [-77.286676, 38.521961], + [-77.286388, 38.522159], + [-77.286133, 38.522274], + [-77.286115, 38.522356], + [-77.286061, 38.522649], + [-77.285889, 38.523157], + [-77.285793, 38.523439], + [-77.284614, 38.524638], + [-77.284421, 38.52474], + [-77.284305, 38.524808], + [-77.284204, 38.524844], + [-77.284012, 38.524915], + [-77.283766, 38.525001], + [-77.283752, 38.525006], + [-77.283412, 38.525106], + [-77.283331, 38.525196], + [-77.283217, 38.525363], + [-77.283102, 38.525425], + [-77.283039, 38.525459], + [-77.282916, 38.525566], + [-77.282811, 38.525788], + [-77.282761, 38.525965], + [-77.282756, 38.526261], + [-77.282631, 38.527593], + [-77.282717, 38.527699], + [-77.281805, 38.529127], + [-77.281501, 38.529688], + [-77.281197, 38.530252], + [-77.281074, 38.53048], + [-77.281052, 38.530521], + [-77.281048, 38.53053], + [-77.280927, 38.530754], + [-77.280919, 38.530768], + [-77.280822, 38.530948], + [-77.280466, 38.531608], + [-77.279795, 38.532849], + [-77.27979, 38.53286], + [-77.279816, 38.532942], + [-77.280131, 38.533915], + [-77.279963, 38.533927], + [-77.279929, 38.533929], + [-77.279424, 38.533955], + [-77.279413, 38.533956], + [-77.279191, 38.533975], + [-77.279001, 38.533991], + [-77.279134, 38.534208], + [-77.279192, 38.534268], + [-77.279264, 38.534354], + [-77.279309, 38.534458], + [-77.279299, 38.534568], + [-77.279206, 38.534723], + [-77.279115, 38.53553], + [-77.279114, 38.535543], + [-77.279015, 38.53643], + [-77.278976, 38.536518], + [-77.278923, 38.536618], + [-77.278582, 38.536883], + [-77.278277, 38.537208], + [-77.277937, 38.537494], + [-77.277775, 38.53769], + [-77.277648, 38.537874], + [-77.277452, 38.538081], + [-77.27729, 38.53826], + [-77.276737, 38.539155], + [-77.276676, 38.539211], + [-77.276566, 38.539268], + [-77.276463, 38.539314], + [-77.276381, 38.539387], + [-77.276341, 38.539453], + [-77.276222, 38.540093], + [-77.276158, 38.540314], + [-77.276069, 38.540568], + [-77.276038, 38.540712], + [-77.276035, 38.540822], + [-77.276003, 38.540932], + [-77.275929, 38.541032], + [-77.275833, 38.541754], + [-77.275776, 38.542612], + [-77.275725, 38.543189], + [-77.275802, 38.543419], + [-77.276071, 38.543979], + [-77.276229, 38.544328], + [-77.276399, 38.544841], + [-77.276556, 38.546271], + [-77.276493, 38.546492], + [-77.276366, 38.546901], + [-77.276362, 38.546921], + [-77.276357, 38.546945], + [-77.276336, 38.547045], + [-77.276305, 38.54716], + [-77.276183, 38.547306], + [-77.276124, 38.547428], + [-77.276008, 38.547523], + [-77.275866, 38.547669], + [-77.275763, 38.547737], + [-77.275572, 38.547872], + [-77.275356, 38.548135], + [-77.275222, 38.548313], + [-77.275015, 38.548416], + [-77.274872, 38.548523], + [-77.274465, 38.548937], + [-77.274401, 38.549103], + [-77.27422, 38.54981], + [-77.274035, 38.55016], + [-77.273898, 38.55025], + [-77.273579, 38.550558], + [-77.27295, 38.551252], + [-77.272586, 38.551446], + [-77.272381, 38.551598], + [-77.272064, 38.551747], + [-77.271686, 38.551974], + [-77.271611, 38.55203], + [-77.271482, 38.552148], + [-77.270491, 38.552667], + [-77.269904, 38.552926], + [-77.269531, 38.553059], + [-77.269351, 38.553112], + [-77.269053, 38.553217], + [-77.268577, 38.553407], + [-77.268218, 38.553568], + [-77.267827, 38.553806], + [-77.26746, 38.553929], + [-77.267039, 38.554107], + [-77.266723, 38.5543], + [-77.265685, 38.554864], + [-77.265358, 38.555055], + [-77.265334, 38.555069], + [-77.264843, 38.555226], + [-77.264579, 38.555297], + [-77.264252, 38.555359], + [-77.26403, 38.555407], + [-77.263828, 38.555444], + [-77.263591, 38.555465], + [-77.263382, 38.555507], + [-77.263334, 38.555526], + [-77.263203, 38.555577], + [-77.263113, 38.555622], + [-77.263017, 38.555685], + [-77.262928, 38.555768], + [-77.262922, 38.555774], + [-77.262813, 38.555864], + [-77.262663, 38.555977], + [-77.26241, 38.556087], + [-77.2622, 38.556178], + [-77.261975, 38.556342], + [-77.261811, 38.556482], + [-77.261636, 38.5567], + [-77.261545, 38.556921], + [-77.261487, 38.557296], + [-77.261496, 38.558032], + [-77.261592, 38.558849], + [-77.261541, 38.559025], + [-77.261441, 38.559164], + [-77.261251, 38.559366], + [-77.26075, 38.559672], + [-77.260352, 38.559838], + [-77.260322, 38.559851], + [-77.259655, 38.560023], + [-77.259644, 38.560026], + [-77.259625, 38.560031], + [-77.259612, 38.560034], + [-77.259581, 38.560042], + [-77.259571, 38.560045], + [-77.259554, 38.560049], + [-77.259546, 38.560051], + [-77.259517, 38.560059], + [-77.258837, 38.560225], + [-77.257798, 38.560355], + [-77.257611, 38.560369], + [-77.257372, 38.560386], + [-77.257046, 38.560458], + [-77.256955, 38.56047], + [-77.256906, 38.56046], + [-77.256731, 38.560464], + [-77.256523, 38.560501], + [-77.256456, 38.560595], + [-77.25646, 38.560738], + [-77.256576, 38.560857], + [-77.256847, 38.561016], + [-77.256968, 38.56114], + [-77.257032, 38.561205], + [-77.255705, 38.563326], + [-77.255056, 38.56525], + [-77.254418, 38.567142], + [-77.254408, 38.567173], + [-77.254379, 38.567259], + [-77.250609, 38.57844], + [-77.246905, 38.589424], + [-77.246598, 38.590971], + [-77.246444, 38.592936], + [-77.246364, 38.593449], + [-77.244482, 38.594583], + [-77.241323, 38.596485], + [-77.238105, 38.598425], + [-77.232443, 38.60166], + [-77.228809, 38.603737], + [-77.225505, 38.605625], + [-77.216197, 38.610983], + [-77.206906, 38.616333], + [-77.205293, 38.617262], + [-77.204307, 38.617829], + [-77.203698, 38.61818], + [-77.20359, 38.618104], + [-77.203501, 38.618056], + [-77.203345, 38.617955], + [-77.20305, 38.61782], + [-77.203011, 38.617817], + [-77.202882, 38.617779], + [-77.2028, 38.617767], + [-77.202775, 38.617754], + [-77.202769, 38.617736], + [-77.202768, 38.617713], + [-77.202755, 38.617685], + [-77.202716, 38.617687], + [-77.20268, 38.617716], + [-77.20265, 38.617717], + [-77.20262, 38.617709], + [-77.20258, 38.617692], + [-77.202516, 38.617692], + [-77.202454, 38.617684], + [-77.202307, 38.617679], + [-77.202289, 38.617651], + [-77.20221, 38.617653], + [-77.201971, 38.617683], + [-77.201908, 38.617696], + [-77.201874, 38.617723], + [-77.201778, 38.617746], + [-77.201736, 38.617767], + [-77.201698, 38.617801], + [-77.201661, 38.61785], + [-77.201635, 38.617902], + [-77.201571, 38.618006], + [-77.201549, 38.61811], + [-77.201517, 38.618167], + [-77.201481, 38.618213], + [-77.201453, 38.618228], + [-77.201352, 38.618234], + [-77.201324, 38.618248], + [-77.201199, 38.618359], + [-77.20113, 38.618405], + [-77.201074, 38.618454], + [-77.201008, 38.618494], + [-77.200937, 38.618517], + [-77.200823, 38.618566], + [-77.200706, 38.618579], + [-77.200687, 38.61859], + [-77.200649, 38.618624], + [-77.200582, 38.618669], + [-77.200538, 38.618708], + [-77.200492, 38.618733], + [-77.200359, 38.618823], + [-77.200304, 38.618855], + [-77.200266, 38.618893], + [-77.200181, 38.618937], + [-77.200121, 38.618953], + [-77.19991, 38.618967], + [-77.199802, 38.618968], + [-77.199771, 38.618973], + [-77.199781, 38.618998], + [-77.199757, 38.619026], + [-77.199673, 38.619055], + [-77.199611, 38.619076], + [-77.199506, 38.619126], + [-77.199429, 38.619156], + [-77.199348, 38.619174], + [-77.199279, 38.61919], + [-77.199169, 38.619206], + [-77.199076, 38.61921], + [-77.198975, 38.61922], + [-77.198924, 38.619221], + [-77.198783, 38.619268], + [-77.19877, 38.619289], + [-77.198709, 38.619306], + [-77.198637, 38.619322], + [-77.198567, 38.619337], + [-77.198519, 38.619354], + [-77.198377, 38.619366], + [-77.198321, 38.619379], + [-77.198227, 38.619393], + [-77.198144, 38.619394], + [-77.198058, 38.619395], + [-77.198004, 38.619402], + [-77.197941, 38.619404], + [-77.197889, 38.619421], + [-77.19785, 38.61944], + [-77.197639, 38.61945], + [-77.197467, 38.619451], + [-77.197329, 38.619459], + [-77.197269, 38.619458], + [-77.197185, 38.619467], + [-77.197067, 38.619503], + [-77.197029, 38.619539], + [-77.196983, 38.619548], + [-77.196804, 38.619547], + [-77.196704, 38.619547], + [-77.196463, 38.619535], + [-77.196368, 38.619529], + [-77.196222, 38.619521], + [-77.195997, 38.619508], + [-77.195872, 38.619501], + [-77.195829, 38.619504], + [-77.195809, 38.619519], + [-77.19576, 38.61953], + [-77.195637, 38.619524], + [-77.195512, 38.619517], + [-77.195449, 38.619498], + [-77.195337, 38.619493], + [-77.195167, 38.619486], + [-77.195097, 38.619495], + [-77.195063, 38.619503], + [-77.194953, 38.619502], + [-77.194664, 38.619469], + [-77.194476, 38.61946], + [-77.19429, 38.619435], + [-77.194162, 38.619433], + [-77.194122, 38.619438], + [-77.193992, 38.619438], + [-77.193825, 38.619445], + [-77.193583, 38.619441], + [-77.193529, 38.619427], + [-77.193376, 38.619414], + [-77.193316, 38.619405], + [-77.193251, 38.6194], + [-77.192821, 38.619333], + [-77.192654, 38.61932], + [-77.192599, 38.619311], + [-77.19257, 38.619307], + [-77.192308, 38.619276], + [-77.19165, 38.619176], + [-77.191558, 38.619175], + [-77.191489, 38.619183], + [-77.191449, 38.619205], + [-77.191421, 38.619235], + [-77.191408, 38.619263], + [-77.191361, 38.619323], + [-77.191329, 38.619343], + [-77.191288, 38.619352], + [-77.191236, 38.619385], + [-77.19104, 38.619466], + [-77.190979, 38.619478], + [-77.190871, 38.619519], + [-77.190841, 38.619527], + [-77.190772, 38.619537], + [-77.190709, 38.619552], + [-77.190449, 38.61958], + [-77.190406, 38.619599], + [-77.19035, 38.619648], + [-77.190305, 38.619722], + [-77.190238, 38.619832], + [-77.190131, 38.619991], + [-77.190112, 38.620022], + [-77.190087, 38.620062], + [-77.190048, 38.620126], + [-77.189951, 38.620249], + [-77.189913, 38.620314], + [-77.189887, 38.620358], + [-77.189823, 38.6204], + [-77.189645, 38.620551], + [-77.189561, 38.620581], + [-77.189492, 38.620599], + [-77.189306, 38.620668], + [-77.188812, 38.620749], + [-77.188747, 38.620753], + [-77.188559, 38.620753], + [-77.188499, 38.620758], + [-77.188468, 38.620786], + [-77.188243, 38.62081], + [-77.188165, 38.620825], + [-77.188133, 38.620841], + [-77.188125, 38.620866], + [-77.188086, 38.620895], + [-77.187938, 38.620955], + [-77.187681, 38.620989], + [-77.187488, 38.621006], + [-77.187431, 38.621007], + [-77.187353, 38.621038], + [-77.187319, 38.621057], + [-77.187322, 38.621075], + [-77.187289, 38.621093], + [-77.187266, 38.621098], + [-77.187229, 38.621099], + [-77.187215, 38.621132], + [-77.187041, 38.621162], + [-77.186914, 38.621214], + [-77.186889, 38.621233], + [-77.186858, 38.621271], + [-77.186798, 38.621316], + [-77.186745, 38.621338], + [-77.186732, 38.621354], + [-77.186572, 38.621416], + [-77.18634, 38.621457], + [-77.185905, 38.621524], + [-77.185761, 38.621536], + [-77.185664, 38.621538], + [-77.185643, 38.621547], + [-77.18563, 38.621575], + [-77.185607, 38.621587], + [-77.185578, 38.62159], + [-77.185555, 38.621587], + [-77.185429, 38.621628], + [-77.185289, 38.621687], + [-77.185211, 38.621694], + [-77.184439, 38.621654], + [-77.184379, 38.621651], + [-77.184044, 38.621656], + [-77.183891, 38.621676], + [-77.183804, 38.621692], + [-77.183435, 38.621702], + [-77.183052, 38.621738], + [-77.182612, 38.6218], + [-77.182567, 38.621819], + [-77.182534, 38.621872], + [-77.182514, 38.621884], + [-77.182461, 38.621903], + [-77.182398, 38.621953], + [-77.18238, 38.62196], + [-77.182364, 38.621966], + [-77.182223, 38.621988], + [-77.182103, 38.622006], + [-77.182001, 38.622031], + [-77.181828, 38.622098], + [-77.18173, 38.62214], + [-77.181606, 38.622187], + [-77.181542, 38.622217], + [-77.181481, 38.622251], + [-77.181254, 38.622396], + [-77.181164, 38.622449], + [-77.181123, 38.622486], + [-77.181002, 38.622613], + [-77.18093, 38.622699], + [-77.1809, 38.62274], + [-77.180881, 38.622767], + [-77.180848, 38.622798], + [-77.180779, 38.622849], + [-77.18072, 38.622883], + [-77.180677, 38.622946], + [-77.180624, 38.62298], + [-77.180558, 38.623066], + [-77.180536, 38.623082], + [-77.180499, 38.623101], + [-77.180455, 38.623152], + [-77.180385, 38.623199], + [-77.180274, 38.623254], + [-77.180209, 38.62327], + [-77.179873, 38.623282], + [-77.179821, 38.6233], + [-77.179779, 38.623344], + [-77.179702, 38.623364], + [-77.179661, 38.623385], + [-77.179413, 38.623406], + [-77.179158, 38.623446], + [-77.179064, 38.623453], + [-77.179006, 38.623471], + [-77.178876, 38.623529], + [-77.178784, 38.62355], + [-77.178684, 38.623562], + [-77.178391, 38.623555], + [-77.178119, 38.623583], + [-77.178091, 38.623596], + [-77.178004, 38.623612], + [-77.177713, 38.623692], + [-77.177601, 38.623699], + [-77.177579, 38.623707], + [-77.177558, 38.623723], + [-77.177102, 38.623861], + [-77.17708, 38.623868], + [-77.176796, 38.623954], + [-77.176493, 38.624048], + [-77.176299, 38.624087], + [-77.175947, 38.62412], + [-77.175722, 38.624117], + [-77.175448, 38.624103], + [-77.175221, 38.624092], + [-77.175049, 38.624128], + [-77.174963, 38.624166], + [-77.174897, 38.624216], + [-77.174854, 38.624248], + [-77.174733, 38.624291], + [-77.174629, 38.62429], + [-77.17454, 38.624289], + [-77.174325, 38.624276], + [-77.17385, 38.624263], + [-77.173702, 38.62427], + [-77.173573, 38.624255], + [-77.173372, 38.624248], + [-77.173268, 38.624248], + [-77.173151, 38.624255], + [-77.168431, 38.624853], + [-77.166367, 38.625114], + [-77.162556, 38.626112], + [-77.162525, 38.62612], + [-77.162297, 38.62618], + [-77.162154, 38.626217], + [-77.160101, 38.626755], + [-77.159929, 38.6268], + [-77.149818, 38.629447], + [-77.147559, 38.630038], + [-77.147348, 38.630093], + [-77.136358, 38.632967], + [-77.136253, 38.632994], + [-77.130279, 38.634556], + [-77.129684, 38.634712], + [-77.129721, 38.63479], + [-77.129875, 38.635112], + [-77.130092, 38.635454], + [-77.130145, 38.635535], + [-77.130193, 38.635594], + [-77.130244, 38.635664], + [-77.130296, 38.635735], + [-77.1303, 38.635741], + [-77.130371, 38.635828], + [-77.130801, 38.636359], + [-77.130923, 38.636537], + [-77.131021, 38.636728], + [-77.131094, 38.636892], + [-77.131186, 38.637176], + [-77.131257, 38.637491], + [-77.131306, 38.637675], + [-77.13134, 38.637799], + [-77.13137, 38.637885], + [-77.131405, 38.637959], + [-77.131474, 38.638182], + [-77.13148, 38.638205], + [-77.131481, 38.638236], + [-77.131458, 38.638407], + [-77.13146, 38.63844], + [-77.131466, 38.638462], + [-77.131496, 38.638569], + [-77.131505, 38.638627], + [-77.131489, 38.638684], + [-77.131531, 38.638786], + [-77.131603, 38.638892], + [-77.131672, 38.639015], + [-77.13186, 38.639386], + [-77.131898, 38.639446], + [-77.131925, 38.639511], + [-77.131951, 38.639638], + [-77.131913, 38.639838], + [-77.131887, 38.639872], + [-77.131883, 38.639901], + [-77.131901, 38.639932], + [-77.131941, 38.63997], + [-77.132016, 38.640015], + [-77.132029, 38.640023], + [-77.132154, 38.640099], + [-77.132231, 38.640146], + [-77.13229, 38.640183], + [-77.13234, 38.640226], + [-77.132369, 38.64026], + [-77.132391, 38.640308], + [-77.132419, 38.640368], + [-77.132444, 38.640423], + [-77.132484, 38.64047], + [-77.132545, 38.640543], + [-77.132599, 38.640613], + [-77.132636, 38.640662], + [-77.132686, 38.640743], + [-77.132784, 38.640863], + [-77.132829, 38.640918], + [-77.132891, 38.641008], + [-77.132894, 38.641013], + [-77.132968, 38.64112], + [-77.133058, 38.641279], + [-77.133073, 38.641323], + [-77.133084, 38.641383], + [-77.133084, 38.641414], + [-77.133081, 38.641433], + [-77.133053, 38.641575], + [-77.133038, 38.641722], + [-77.133027, 38.641747], + [-77.133043, 38.641856], + [-77.133093, 38.641972], + [-77.133183, 38.642105], + [-77.133383, 38.642374], + [-77.133447, 38.642474], + [-77.133509, 38.642533], + [-77.13353, 38.642634], + [-77.133528, 38.642663], + [-77.133523, 38.642685], + [-77.13352, 38.642796], + [-77.133499, 38.642881], + [-77.133436, 38.643008], + [-77.133398, 38.643044], + [-77.133232, 38.643289], + [-77.13323, 38.643323], + [-77.133255, 38.64346], + [-77.133249, 38.643542], + [-77.133237, 38.643588], + [-77.133207, 38.643661], + [-77.13319, 38.643721], + [-77.133186, 38.643757], + [-77.133111, 38.64379], + [-77.133108, 38.643808], + [-77.133096, 38.64383], + [-77.133061, 38.643846], + [-77.133033, 38.643868], + [-77.133, 38.643921], + [-77.132962, 38.644084], + [-77.132934, 38.644104], + [-77.132921, 38.644156], + [-77.132881, 38.644184], + [-77.132847, 38.644174], + [-77.132814, 38.644225], + [-77.132806, 38.64432], + [-77.132809, 38.644392], + [-77.132812, 38.644479], + [-77.132832, 38.644506], + [-77.132889, 38.64453], + [-77.132909, 38.64461], + [-77.132934, 38.644723], + [-77.13309, 38.644908], + [-77.133399, 38.645257], + [-77.13382, 38.645501], + [-77.134252, 38.645722], + [-77.134339, 38.645748], + [-77.1345, 38.64582], + [-77.134607, 38.64586], + [-77.135, 38.646092], + [-77.135112, 38.646149], + [-77.135211, 38.64621], + [-77.135281, 38.646245], + [-77.135351, 38.646298], + [-77.135419, 38.646343], + [-77.135485, 38.646381], + [-77.135535, 38.646445], + [-77.135621, 38.646516], + [-77.135682, 38.646552], + [-77.135722, 38.646587], + [-77.13579, 38.646666], + [-77.13602, 38.646901], + [-77.13608, 38.647011], + [-77.136254, 38.647176], + [-77.136275, 38.647209], + [-77.136295, 38.647239], + [-77.136308, 38.647288], + [-77.136316, 38.647353], + [-77.136346, 38.647466], + [-77.136355, 38.647557], + [-77.136318, 38.647672], + [-77.136368, 38.647826], + [-77.136354, 38.647885], + [-77.136358, 38.647945], + [-77.136352, 38.648011], + [-77.136285, 38.648382], + [-77.136246, 38.64851], + [-77.136241, 38.648579], + [-77.136243, 38.648637], + [-77.136262, 38.648768], + [-77.136266, 38.648822], + [-77.136276, 38.648876], + [-77.136268, 38.648989], + [-77.136256, 38.649067], + [-77.136252, 38.649172], + [-77.136231, 38.649285], + [-77.136258, 38.649405], + [-77.136262, 38.649457], + [-77.136273, 38.649585], + [-77.136275, 38.649652], + [-77.136277, 38.649729], + [-77.136282, 38.649737], + [-77.136295, 38.64976], + [-77.136286, 38.649782], + [-77.136278, 38.649803], + [-77.136276, 38.649809], + [-77.13628, 38.649816], + [-77.136291, 38.649835], + [-77.136318, 38.649917], + [-77.136352, 38.650057], + [-77.136355, 38.650074], + [-77.136374, 38.650184], + [-77.136385, 38.650203], + [-77.136425, 38.650234], + [-77.136423, 38.650244], + [-77.1359, 38.652782], + [-77.135349, 38.656194], + [-77.134734, 38.660014], + [-77.133857, 38.665469], + [-77.133627, 38.666792], + [-77.133448, 38.667825], + [-77.133047, 38.670133], + [-77.132466, 38.673989], + [-77.132459, 38.674034], + [-77.132441, 38.674151], + [-77.132343, 38.6742], + [-77.132228, 38.674285], + [-77.132072, 38.674426], + [-77.131945, 38.674549], + [-77.131907, 38.674576], + [-77.131828, 38.67465], + [-77.131761, 38.674702], + [-77.13171, 38.674754], + [-77.131595, 38.674873], + [-77.13153, 38.67492], + [-77.131525, 38.674924], + [-77.131481, 38.674955], + [-77.131431, 38.675016], + [-77.131279, 38.675201], + [-77.131195, 38.675271], + [-77.131165, 38.675302], + [-77.131089, 38.675358], + [-77.131037, 38.675389], + [-77.130946, 38.675418], + [-77.130718, 38.675549], + [-77.13056, 38.675658], + [-77.130446, 38.67576], + [-77.130342, 38.675838], + [-77.130264, 38.675888], + [-77.130166, 38.675964], + [-77.130075, 38.676067], + [-77.13, 38.676185], + [-77.129971, 38.676248], + [-77.129904, 38.676365], + [-77.129879, 38.676399], + [-77.129835, 38.676459], + [-77.129816, 38.676476], + [-77.129731, 38.676551], + [-77.129718, 38.676586], + [-77.129681, 38.676626], + [-77.129654, 38.676672], + [-77.129577, 38.67677], + [-77.129555, 38.676777], + [-77.129516, 38.676797], + [-77.129486, 38.676837], + [-77.129407, 38.676875], + [-77.129364, 38.676913], + [-77.129241, 38.676994], + [-77.129184, 38.677036], + [-77.129139, 38.677076], + [-77.129086, 38.677107], + [-77.129082, 38.677111], + [-77.129076, 38.677115], + [-77.129067, 38.677125], + [-77.128999, 38.677201], + [-77.128951, 38.677231], + [-77.128945, 38.677235], + [-77.128916, 38.677264], + [-77.128907, 38.677272], + [-77.128745, 38.677392], + [-77.128635, 38.677455], + [-77.128616, 38.67747], + [-77.128584, 38.677506], + [-77.12858, 38.67751], + [-77.128535, 38.677546], + [-77.128494, 38.67758], + [-77.12843, 38.677669], + [-77.128409, 38.677717], + [-77.128362, 38.677785], + [-77.128302, 38.67783], + [-77.12823, 38.677932], + [-77.128161, 38.678002], + [-77.12811, 38.678048], + [-77.12808, 38.678075], + [-77.128015, 38.678117], + [-77.127941, 38.678165], + [-77.12792, 38.678186], + [-77.12785, 38.678228], + [-77.127796, 38.67827], + [-77.127743, 38.678305], + [-77.127701, 38.67834], + [-77.127662, 38.678358], + [-77.127568, 38.678423], + [-77.127519, 38.678466], + [-77.127465, 38.678502], + [-77.127384, 38.678572], + [-77.12732, 38.67861], + [-77.127313, 38.678637], + [-77.127267, 38.678689], + [-77.127263, 38.678768], + [-77.127246, 38.678826], + [-77.127182, 38.678963], + [-77.127114, 38.679057], + [-77.127063, 38.679171], + [-77.127045, 38.679195], + [-77.126969, 38.679237], + [-77.126951, 38.679268], + [-77.126915, 38.679264], + [-77.126891, 38.679281], + [-77.12691, 38.679323], + [-77.126909, 38.679341], + [-77.126901, 38.679362], + [-77.126799, 38.679494], + [-77.126698, 38.679593], + [-77.126647, 38.679669], + [-77.126596, 38.679717], + [-77.126577, 38.679742], + [-77.126478, 38.679833], + [-77.126422, 38.679936], + [-77.126289, 38.680149], + [-77.126266, 38.680206], + [-77.126228, 38.680261], + [-77.126152, 38.680342], + [-77.126115, 38.680396], + [-77.126072, 38.680484], + [-77.125953, 38.680649], + [-77.125925, 38.68068], + [-77.125806, 38.680812], + [-77.125752, 38.680872], + [-77.12562, 38.680986], + [-77.125419, 38.681151], + [-77.125328, 38.681211], + [-77.125321, 38.681216], + [-77.125295, 38.681234], + [-77.125253, 38.681271], + [-77.125224, 38.681297], + [-77.125196, 38.681319], + [-77.125191, 38.681323], + [-77.12504, 38.681443], + [-77.125005, 38.681491], + [-77.124973, 38.68152], + [-77.124937, 38.681576], + [-77.124906, 38.681648], + [-77.124721, 38.681978], + [-77.124699, 38.682038], + [-77.124558, 38.682433], + [-77.124496, 38.682606], + [-77.124444, 38.682653], + [-77.124393, 38.682712], + [-77.12426, 38.682934], + [-77.124182, 38.683021], + [-77.124112, 38.683121], + [-77.124057, 38.683213], + [-77.12398, 38.683273], + [-77.12382, 38.68343], + [-77.123791, 38.683497], + [-77.123703, 38.683586], + [-77.123594, 38.683683], + [-77.12356, 38.68372], + [-77.123526, 38.683795], + [-77.123522, 38.683824], + [-77.123531, 38.683845], + [-77.123526, 38.683915], + [-77.123484, 38.684009], + [-77.123445, 38.684098], + [-77.123437, 38.684132], + [-77.12341, 38.684239], + [-77.123377, 38.68432], + [-77.123279, 38.684479], + [-77.123172, 38.684601], + [-77.123152, 38.684632], + [-77.123041, 38.684767], + [-77.122933, 38.684877], + [-77.122892, 38.68493], + [-77.122888, 38.684935], + [-77.122634, 38.685264], + [-77.122532, 38.685332], + [-77.122085, 38.685628], + [-77.116642, 38.689243], + [-77.116605, 38.689268], + [-77.108677, 38.694532], + [-77.108627, 38.694569], + [-77.108596, 38.694572], + [-77.105676, 38.696426], + [-77.104724, 38.697051], + [-77.10431, 38.697322], + [-77.104235, 38.697356], + [-77.104162, 38.697399], + [-77.104082, 38.697437], + [-77.1041, 38.697476], + [-77.104031, 38.697497], + [-77.104008, 38.697526], + [-77.103918, 38.697605], + [-77.103866, 38.697679], + [-77.103841, 38.697716], + [-77.103839, 38.697734], + [-77.103858, 38.697771], + [-77.103863, 38.697794], + [-77.103865, 38.697801], + [-77.103853, 38.697817], + [-77.103767, 38.697868], + [-77.103713, 38.697878], + [-77.103671, 38.697881], + [-77.103647, 38.697883], + [-77.103613, 38.697861], + [-77.103563, 38.697863], + [-77.103598, 38.697915], + [-77.103603, 38.697923], + [-77.103579, 38.697934], + [-77.103573, 38.697926], + [-77.103536, 38.69788], + [-77.103391, 38.697922], + [-77.103307, 38.697941], + [-77.103228, 38.697965], + [-77.102543, 38.698112], + [-77.102473, 38.698133], + [-77.102412, 38.698168], + [-77.102381, 38.698196], + [-77.102275, 38.698203], + [-77.102248, 38.698183], + [-77.102195, 38.69817], + [-77.1021, 38.698182], + [-77.102009, 38.698184], + [-77.101936, 38.698178], + [-77.101761, 38.698146], + [-77.101588, 38.69812], + [-77.101512, 38.6981], + [-77.101431, 38.69807], + [-77.101393, 38.698064], + [-77.101325, 38.698066], + [-77.101252, 38.698077], + [-77.10113, 38.698074], + [-77.101064, 38.698076], + [-77.101022, 38.698081], + [-77.100881, 38.698114], + [-77.100854, 38.698126], + [-77.100751, 38.698185], + [-77.100646, 38.698239], + [-77.100556, 38.698265], + [-77.100448, 38.698315], + [-77.100368, 38.698346], + [-77.100311, 38.698362], + [-77.099836, 38.698468], + [-77.099741, 38.698507], + [-77.099676, 38.698539], + [-77.099574, 38.698576], + [-77.099323, 38.698666], + [-77.099213, 38.6987], + [-77.099187, 38.698717], + [-77.098957, 38.698792], + [-77.098828, 38.698844], + [-77.098548, 38.698942], + [-77.098431, 38.698999], + [-77.098405, 38.699019], + [-77.098341, 38.699045], + [-77.098324, 38.699052], + [-77.098274, 38.699061], + [-77.098045, 38.699222], + [-77.098004, 38.699246], + [-77.097806, 38.699335], + [-77.097746, 38.699383], + [-77.097674, 38.699472], + [-77.097607, 38.699555], + [-77.097438, 38.699694], + [-77.097311, 38.699778], + [-77.097242, 38.699818], + [-77.097155, 38.69986], + [-77.097027, 38.699978], + [-77.09697, 38.700018], + [-77.096777, 38.700126], + [-77.096772, 38.700173], + [-77.096748, 38.700199], + [-77.096579, 38.700316], + [-77.096529, 38.700334], + [-77.096268, 38.700384], + [-77.096252, 38.700397], + [-77.096252, 38.700417], + [-77.096272, 38.700438], + [-77.096328, 38.700453], + [-77.096332, 38.700473], + [-77.09633, 38.700529], + [-77.096261, 38.700489], + [-77.096233, 38.70049], + [-77.096101, 38.700524], + [-77.095985, 38.700579], + [-77.095971, 38.700564], + [-77.095951, 38.700542], + [-77.095852, 38.700584], + [-77.095879, 38.700623], + [-77.095872, 38.700648], + [-77.095798, 38.700748], + [-77.095767, 38.700816], + [-77.095675, 38.700919], + [-77.09548, 38.701103], + [-77.095437, 38.701139], + [-77.095249, 38.701297], + [-77.095233, 38.70131], + [-77.095183, 38.701352], + [-77.09513, 38.701443], + [-77.095072, 38.7015], + [-77.094922, 38.701619], + [-77.094703, 38.70177], + [-77.094522, 38.701873], + [-77.09446, 38.7019], + [-77.094264, 38.701972], + [-77.094242, 38.701959], + [-77.094172, 38.701994], + [-77.094027, 38.702083], + [-77.093933, 38.702152], + [-77.093864, 38.702101], + [-77.093806, 38.702131], + [-77.093726, 38.702171], + [-77.093715, 38.702177], + [-77.093707, 38.702184], + [-77.093643, 38.702237], + [-77.093583, 38.702287], + [-77.093577, 38.702321], + [-77.093559, 38.702414], + [-77.093427, 38.702558], + [-77.093386, 38.702664], + [-77.093351, 38.702701], + [-77.0933, 38.702727], + [-77.09316, 38.702765], + [-77.093102, 38.702787], + [-77.093053, 38.702811], + [-77.092891, 38.702905], + [-77.092307, 38.703184], + [-77.092242, 38.703208], + [-77.092046, 38.703263], + [-77.092003, 38.703275], + [-77.091909, 38.703307], + [-77.091513, 38.703381], + [-77.091452, 38.703381], + [-77.091428, 38.703394], + [-77.091399, 38.70343], + [-77.091169, 38.703547], + [-77.091015, 38.703632], + [-77.090978, 38.703656], + [-77.090615, 38.703892], + [-77.090452, 38.704027], + [-77.090402, 38.704057], + [-77.09036, 38.704076], + [-77.090267, 38.704134], + [-77.090154, 38.704232], + [-77.090017, 38.704341], + [-77.089952, 38.704405], + [-77.089876, 38.704463], + [-77.089811, 38.704503], + [-77.089735, 38.704537], + [-77.089671, 38.704555], + [-77.089526, 38.704661], + [-77.089413, 38.704743], + [-77.089381, 38.704768], + [-77.089261, 38.704861], + [-77.089205, 38.704904], + [-77.088963, 38.705092], + [-77.088742, 38.705133], + [-77.088692, 38.705159], + [-77.088664, 38.705194], + [-77.088314, 38.70519], + [-77.08828, 38.705127], + [-77.088138, 38.704868], + [-77.088156, 38.704824], + [-77.088119, 38.704763], + [-77.087987, 38.704715], + [-77.087948, 38.704826], + [-77.087996, 38.70489], + [-77.088045, 38.704895], + [-77.088115, 38.70503], + [-77.088195, 38.705183], + [-77.088217, 38.705225], + [-77.088038, 38.705384], + [-77.087855, 38.705532], + [-77.08773, 38.705614], + [-77.087609, 38.705679], + [-77.086893, 38.706022], + [-77.086393, 38.706235], + [-77.086082, 38.706368], + [-77.085796, 38.706479], + [-77.085755, 38.706493], + [-77.084853, 38.706809], + [-77.084809, 38.706813], + [-77.084298, 38.706828], + [-77.084142, 38.706842], + [-77.08365, 38.707003], + [-77.083399, 38.70707], + [-77.083246, 38.707125], + [-77.083225, 38.707142], + [-77.08317, 38.70721], + [-77.083179, 38.707228], + [-77.08315, 38.707244], + [-77.083118, 38.707256], + [-77.083032, 38.707338], + [-77.082999, 38.707363], + [-77.082873, 38.707419], + [-77.082736, 38.707457], + [-77.082675, 38.70749], + [-77.082605, 38.707514], + [-77.082574, 38.707538], + [-77.082487, 38.707571], + [-77.082394, 38.707601], + [-77.082347, 38.707607], + [-77.082248, 38.707636], + [-77.082148, 38.707688], + [-77.082089, 38.707708], + [-77.082048, 38.707729], + [-77.082003, 38.707739], + [-77.081965, 38.70776], + [-77.081933, 38.707768], + [-77.081845, 38.70782], + [-77.081773, 38.707847], + [-77.081679, 38.707907], + [-77.08164, 38.707919], + [-77.081616, 38.707934], + [-77.081609, 38.707983], + [-77.081558, 38.708025], + [-77.081552, 38.708056], + [-77.081467, 38.708108], + [-77.081423, 38.708151], + [-77.081331, 38.708215], + [-77.081256, 38.708277], + [-77.081172, 38.708331], + [-77.081108, 38.708356], + [-77.081048, 38.708393], + [-77.080928, 38.708457], + [-77.080911, 38.708478], + [-77.080871, 38.708509], + [-77.080779, 38.70856], + [-77.080607, 38.708634], + [-77.080414, 38.708748], + [-77.080346, 38.708777], + [-77.080268, 38.70883], + [-77.080039, 38.708932], + [-77.080006, 38.708955], + [-77.07998, 38.708996], + [-77.07995, 38.709018], + [-77.07993, 38.709072], + [-77.079947, 38.709105], + [-77.079947, 38.709148], + [-77.079956, 38.709177], + [-77.079985, 38.709201], + [-77.080029, 38.709305], + [-77.080046, 38.709361], + [-77.080082, 38.709399], + [-77.080122, 38.709412], + [-77.080166, 38.709566], + [-77.080169, 38.709595], + [-77.080164, 38.709623], + [-77.080139, 38.709687], + [-77.080133, 38.70972], + [-77.080142, 38.709774], + [-77.080192, 38.709871], + [-77.080218, 38.709995], + [-77.08025, 38.710037], + [-77.08028, 38.710063], + [-77.080318, 38.710083], + [-77.080366, 38.710134], + [-77.080408, 38.710159], + [-77.080623, 38.710175], + [-77.080683, 38.710199], + [-77.080733, 38.710228], + [-77.080779, 38.710265], + [-77.080804, 38.710316], + [-77.080832, 38.710391], + [-77.080818, 38.710425], + [-77.080812, 38.710461], + [-77.080835, 38.710548], + [-77.080819, 38.710672], + [-77.080823, 38.710762], + [-77.080819, 38.710801], + [-77.080824, 38.710832], + [-77.080807, 38.710915], + [-77.080811, 38.710947], + [-77.080794, 38.710987], + [-77.080793, 38.711026], + [-77.080803, 38.711056], + [-77.080802, 38.711133], + [-77.080798, 38.711151], + [-77.080761, 38.711207], + [-77.080726, 38.711285], + [-77.080616, 38.711434], + [-77.080576, 38.711474], + [-77.080531, 38.711508], + [-77.080509, 38.711534], + [-77.080497, 38.711563], + [-77.08044, 38.711621], + [-77.080374, 38.711657], + [-77.080271, 38.711763], + [-77.080243, 38.711782], + [-77.080185, 38.711802], + [-77.080107, 38.711873], + [-77.07999, 38.711936], + [-77.079933, 38.711991], + [-77.07987, 38.712088], + [-77.079842, 38.712193], + [-77.079822, 38.712217], + [-77.079798, 38.712299], + [-77.079775, 38.712407], + [-77.079779, 38.712472], + [-77.079803, 38.712496], + [-77.079808, 38.712527], + [-77.079802, 38.712564], + [-77.079815, 38.712638], + [-77.079816, 38.71268], + [-77.079805, 38.712703], + [-77.079777, 38.712723], + [-77.079703, 38.712749], + [-77.079639, 38.712802], + [-77.079565, 38.712843], + [-77.079494, 38.712895], + [-77.07947, 38.712902], + [-77.07935, 38.712969], + [-77.079297, 38.713004], + [-77.079234, 38.71306], + [-77.079056, 38.713124], + [-77.078957, 38.713165], + [-77.078916, 38.713167], + [-77.078858, 38.713206], + [-77.078774, 38.713242], + [-77.078688, 38.713267], + [-77.078646, 38.713268], + [-77.07859, 38.713283], + [-77.078526, 38.713317], + [-77.078482, 38.71333], + [-77.078403, 38.713335], + [-77.07838, 38.713335], + [-77.078347, 38.713344], + [-77.078342, 38.713362], + [-77.078312, 38.713383], + [-77.078271, 38.713399], + [-77.0782, 38.713417], + [-77.078064, 38.713435], + [-77.077925, 38.713466], + [-77.077828, 38.713465], + [-77.077707, 38.713473], + [-77.077476, 38.713471], + [-77.077435, 38.713462], + [-77.077415, 38.713448], + [-77.077338, 38.713431], + [-77.07727, 38.7134], + [-77.077276, 38.713382], + [-77.077315, 38.713383], + [-77.077336, 38.713374], + [-77.077382, 38.713378], + [-77.077376, 38.713329], + [-77.077364, 38.713303], + [-77.077342, 38.713287], + [-77.077221, 38.713225], + [-77.077182, 38.713197], + [-77.077166, 38.713176], + [-77.077173, 38.713121], + [-77.07711, 38.713099], + [-77.077059, 38.713121], + [-77.076959, 38.713115], + [-77.076908, 38.71309], + [-77.076878, 38.713085], + [-77.07685, 38.713072], + [-77.076779, 38.713082], + [-77.076687, 38.71306], + [-77.076654, 38.713048], + [-77.076643, 38.713018], + [-77.076614, 38.713], + [-77.07658, 38.71299], + [-77.076529, 38.712986], + [-77.07637, 38.712992], + [-77.076232, 38.712924], + [-77.076186, 38.712913], + [-77.076104, 38.712875], + [-77.076056, 38.712877], + [-77.075833, 38.712865], + [-77.075767, 38.712839], + [-77.075685, 38.71283], + [-77.075656, 38.71284], + [-77.075622, 38.712826], + [-77.075529, 38.7128], + [-77.075486, 38.712801], + [-77.075457, 38.712797], + [-77.075381, 38.712759], + [-77.075345, 38.712746], + [-77.075323, 38.712717], + [-77.075298, 38.712699], + [-77.075228, 38.712682], + [-77.075194, 38.712663], + [-77.075166, 38.71263], + [-77.075134, 38.712611], + [-77.075095, 38.712612], + [-77.075046, 38.712662], + [-77.07498, 38.7127], + [-77.074836, 38.712713], + [-77.074805, 38.712724], + [-77.074742, 38.712732], + [-77.074696, 38.712732], + [-77.07467, 38.712716], + [-77.074639, 38.712725], + [-77.074604, 38.712747], + [-77.074586, 38.712766], + [-77.074509, 38.712805], + [-77.074425, 38.71286], + [-77.074341, 38.7129], + [-77.074306, 38.71291], + [-77.074188, 38.712832], + [-77.074159, 38.712812], + [-77.074143, 38.712796], + [-77.074159, 38.712779], + [-77.074168, 38.712746], + [-77.074198, 38.71269], + [-77.074211, 38.712619], + [-77.074192, 38.712418], + [-77.074164, 38.712331], + [-77.07413, 38.712271], + [-77.074115, 38.712216], + [-77.074123, 38.712199], + [-77.074169, 38.712145], + [-77.074192, 38.712124], + [-77.074224, 38.712109], + [-77.074229, 38.712091], + [-77.074225, 38.712043], + [-77.074251, 38.712021], + [-77.074257, 38.711993], + [-77.074235, 38.711985], + [-77.074208, 38.711995], + [-77.074185, 38.711995], + [-77.074157, 38.711974], + [-77.074147, 38.711953], + [-77.074148, 38.711932], + [-77.074135, 38.71191], + [-77.074094, 38.7119], + [-77.074046, 38.711868], + [-77.074022, 38.711844], + [-77.073991, 38.711828], + [-77.073919, 38.711767], + [-77.073887, 38.711732], + [-77.073874, 38.7117], + [-77.073826, 38.711663], + [-77.073824, 38.711645], + [-77.073747, 38.711596], + [-77.073692, 38.71157], + [-77.073688, 38.711544], + [-77.073623, 38.711444], + [-77.07353, 38.71134], + [-77.073503, 38.711322], + [-77.073435, 38.711252], + [-77.07341, 38.71122], + [-77.073354, 38.711181], + [-77.073338, 38.711151], + [-77.073293, 38.711098], + [-77.073274, 38.711069], + [-77.073275, 38.711047], + [-77.073262, 38.711026], + [-77.07325, 38.710988], + [-77.073231, 38.710918], + [-77.07321, 38.710884], + [-77.073159, 38.710819], + [-77.073012, 38.71071], + [-77.072861, 38.710632], + [-77.072832, 38.710591], + [-77.072805, 38.710576], + [-77.072699, 38.710537], + [-77.072651, 38.710501], + [-77.072584, 38.710463], + [-77.072518, 38.710427], + [-77.072453, 38.710379], + [-77.072407, 38.710351], + [-77.072367, 38.710335], + [-77.072331, 38.710306], + [-77.072228, 38.710261], + [-77.072109, 38.710215], + [-77.072006, 38.710182], + [-77.071896, 38.710129], + [-77.071836, 38.710093], + [-77.071633, 38.710034], + [-77.071505, 38.71002], + [-77.071435, 38.709989], + [-77.071379, 38.709982], + [-77.071323, 38.709981], + [-77.071241, 38.709989], + [-77.071198, 38.709981], + [-77.071145, 38.709978], + [-77.071091, 38.709981], + [-77.071034, 38.709996], + [-77.070961, 38.709995], + [-77.070898, 38.710003], + [-77.070851, 38.709993], + [-77.070747, 38.710014], + [-77.070682, 38.710005], + [-77.070439, 38.710015], + [-77.070282, 38.710034], + [-77.070241, 38.710014], + [-77.070183, 38.710033], + [-77.070007, 38.710032], + [-77.06982, 38.710051], + [-77.069636, 38.710053], + [-77.069595, 38.710061], + [-77.069404, 38.710053], + [-77.069239, 38.710074], + [-77.06912, 38.71009], + [-77.069082, 38.71009], + [-77.068965, 38.710077], + [-77.068887, 38.710061], + [-77.068775, 38.710026], + [-77.068732, 38.710018], + [-77.068583, 38.71002], + [-77.068541, 38.710015], + [-77.068483, 38.71], + [-77.068386, 38.710001], + [-77.068316, 38.709991], + [-77.068288, 38.709994], + [-77.068158, 38.709985], + [-77.067984, 38.709952], + [-77.06777, 38.709976], + [-77.067683, 38.709963], + [-77.067328, 38.709967], + [-77.067273, 38.70996], + [-77.067246, 38.709951], + [-77.067163, 38.709945], + [-77.066988, 38.709957], + [-77.066938, 38.709955], + [-77.066807, 38.709934], + [-77.066767, 38.709934], + [-77.066745, 38.709941], + [-77.066601, 38.709936], + [-77.06651, 38.709943], + [-77.066469, 38.709939], + [-77.066235, 38.709945], + [-77.06609, 38.709936], + [-77.065954, 38.709936], + [-77.065813, 38.709928], + [-77.065767, 38.709935], + [-77.06565, 38.709922], + [-77.06554, 38.70992], + [-77.065451, 38.70991], + [-77.065288, 38.709909], + [-77.065269, 38.709921], + [-77.065151, 38.709925], + [-77.064795, 38.709925], + [-77.064076, 38.709899], + [-77.063601, 38.709865], + [-77.063539, 38.709856], + [-77.063161, 38.709834], + [-77.0631, 38.709821], + [-77.063041, 38.709815], + [-77.062836, 38.709822], + [-77.062806, 38.709817], + [-77.062707, 38.709819], + [-77.062641, 38.709808], + [-77.062427, 38.709819], + [-77.062392, 38.709813], + [-77.062331, 38.709811], + [-77.062271, 38.709815], + [-77.062225, 38.709825], + [-77.062198, 38.709837], + [-77.062164, 38.709854], + [-77.062119, 38.709856], + [-77.062099, 38.709865], + [-77.062061, 38.709872], + [-77.061963, 38.709861], + [-77.061928, 38.709851], + [-77.061899, 38.709831], + [-77.06186, 38.709821], + [-77.061794, 38.709818], + [-77.061482, 38.709833], + [-77.061414, 38.709852], + [-77.06139, 38.709845], + [-77.061326, 38.709842], + [-77.061315, 38.709841], + [-77.061206, 38.709858], + [-77.061178, 38.709862], + [-77.060851, 38.709881], + [-77.059918, 38.709936], + [-77.059685, 38.709946], + [-77.059271, 38.709956], + [-77.059214, 38.709974], + [-77.0592, 38.709989], + [-77.059172, 38.710071], + [-77.059138, 38.710056], + [-77.059125, 38.710009], + [-77.059102, 38.710008], + [-77.059068, 38.710027], + [-77.058985, 38.710033], + [-77.058902, 38.710031], + [-77.058837, 38.710023], + [-77.058773, 38.710027], + [-77.058712, 38.710018], + [-77.05853, 38.710026], + [-77.058468, 38.710035], + [-77.058406, 38.710025], + [-77.058366, 38.710038], + [-77.058314, 38.710007], + [-77.058241, 38.71001], + [-77.058203, 38.710001], + [-77.058161, 38.709977], + [-77.058123, 38.70994], + [-77.058104, 38.709929], + [-77.058067, 38.709923], + [-77.057985, 38.709921], + [-77.05795, 38.709904], + [-77.057882, 38.70991], + [-77.057796, 38.709906], + [-77.05764, 38.709924], + [-77.057527, 38.709951], + [-77.057369, 38.710006], + [-77.05722, 38.710037], + [-77.05712, 38.710084], + [-77.057058, 38.710106], + [-77.056993, 38.710123], + [-77.056952, 38.710126], + [-77.056706, 38.710198], + [-77.05661, 38.710205], + [-77.05651, 38.710224], + [-77.056382, 38.710191], + [-77.0563, 38.710192], + [-77.056109, 38.710159], + [-77.05589, 38.71009], + [-77.055814, 38.710074], + [-77.055777, 38.710094], + [-77.055726, 38.710099], + [-77.055681, 38.710093], + [-77.055658, 38.710098], + [-77.055624, 38.710087], + [-77.055523, 38.710074], + [-77.055492, 38.710059], + [-77.055401, 38.71005], + [-77.055353, 38.710035], + [-77.05528, 38.710001], + [-77.055243, 38.710003], + [-77.055205, 38.710015], + [-77.055158, 38.710018], + [-77.05511, 38.710013], + [-77.055059, 38.709995], + [-77.055016, 38.709993], + [-77.054993, 38.709984], + [-77.054842, 38.709954], + [-77.054783, 38.709927], + [-77.054722, 38.709929], + [-77.054611, 38.709905], + [-77.054554, 38.709904], + [-77.054479, 38.709874], + [-77.054376, 38.709875], + [-77.054324, 38.709865], + [-77.054203, 38.709866], + [-77.054055, 38.709845], + [-77.053958, 38.709836], + [-77.053732, 38.709831], + [-77.053681, 38.709833], + [-77.053658, 38.709841], + [-77.053635, 38.70984], + [-77.053575, 38.709824], + [-77.053547, 38.70981], + [-77.053524, 38.709812], + [-77.053506, 38.709824], + [-77.053458, 38.709835], + [-77.053361, 38.709842], + [-77.053323, 38.709858], + [-77.053144, 38.709899], + [-77.05307, 38.70993], + [-77.053019, 38.70994], + [-77.052899, 38.71002], + [-77.052846, 38.710063], + [-77.052828, 38.710096], + [-77.052783, 38.710134], + [-77.052701, 38.710215], + [-77.05267, 38.710264], + [-77.05261, 38.710298], + [-77.052578, 38.710343], + [-77.052561, 38.710415], + [-77.05255, 38.710434], + [-77.052507, 38.71047], + [-77.052474, 38.710514], + [-77.052436, 38.710535], + [-77.052436, 38.710584], + [-77.052353, 38.710667], + [-77.052334, 38.710694], + [-77.052309, 38.710764], + [-77.052291, 38.710792], + [-77.052266, 38.710816], + [-77.052098, 38.710936], + [-77.052053, 38.710982], + [-77.051973, 38.711035], + [-77.051898, 38.711095], + [-77.051775, 38.711156], + [-77.051738, 38.711186], + [-77.051654, 38.711235], + [-77.051497, 38.711304], + [-77.051319, 38.711396], + [-77.051271, 38.711417], + [-77.051141, 38.711455], + [-77.051034, 38.71151], + [-77.050921, 38.711549], + [-77.050893, 38.711575], + [-77.050885, 38.711592], + [-77.050783, 38.711638], + [-77.050683, 38.711698], + [-77.050519, 38.711766], + [-77.05043, 38.711809], + [-77.050403, 38.711836], + [-77.050339, 38.711857], + [-77.05031, 38.711882], + [-77.050263, 38.71189], + [-77.050091, 38.712015], + [-77.050047, 38.712029], + [-77.050028, 38.712046], + [-77.049899, 38.7121], + [-77.049809, 38.712145], + [-77.049783, 38.712152], + [-77.049745, 38.712175], + [-77.049699, 38.712191], + [-77.049618, 38.712246], + [-77.049492, 38.712309], + [-77.049414, 38.712336], + [-77.049326, 38.71238], + [-77.049035, 38.712495], + [-77.048892, 38.712567], + [-77.048859, 38.71257], + [-77.048823, 38.712607], + [-77.048781, 38.712635], + [-77.048735, 38.712658], + [-77.04867, 38.712677], + [-77.048621, 38.712698], + [-77.04858, 38.712728], + [-77.048456, 38.712764], + [-77.048411, 38.712781], + [-77.048383, 38.712798], + [-77.048337, 38.712805], + [-77.048317, 38.712815], + [-77.048264, 38.712887], + [-77.048235, 38.7129], + [-77.048132, 38.712932], + [-77.048093, 38.712981], + [-77.048073, 38.712991], + [-77.048018, 38.713068], + [-77.047975, 38.713105], + [-77.047885, 38.713165], + [-77.047842, 38.713214], + [-77.047813, 38.713268], + [-77.047808, 38.713299], + [-77.047784, 38.713323], + [-77.047754, 38.713339], + [-77.047683, 38.713412], + [-77.047606, 38.713464], + [-77.04756, 38.713489], + [-77.047443, 38.713584], + [-77.047354, 38.713664], + [-77.047309, 38.713693], + [-77.047235, 38.713759], + [-77.047166, 38.71383], + [-77.046973, 38.714], + [-77.046921, 38.714037], + [-77.046758, 38.714135], + [-77.046681, 38.71417], + [-77.046584, 38.714229], + [-77.046417, 38.714309], + [-77.046198, 38.714439], + [-77.046182, 38.714454], + [-77.046167, 38.714468], + [-77.046145, 38.714503], + [-77.046134, 38.714531], + [-77.0461, 38.714576], + [-77.046077, 38.714619], + [-77.046067, 38.714679], + [-77.046041, 38.714736], + [-77.046038, 38.714813], + [-77.045992, 38.714977], + [-77.045952, 38.715025], + [-77.045916, 38.715053], + [-77.045905, 38.715095], + [-77.045885, 38.715123], + [-77.045877, 38.715162], + [-77.045839, 38.715205], + [-77.045803, 38.715263], + [-77.045769, 38.715287], + [-77.045728, 38.71535], + [-77.045647, 38.715441], + [-77.045631, 38.715474], + [-77.045598, 38.715519], + [-77.045561, 38.71556], + [-77.045543, 38.715573], + [-77.045474, 38.715586], + [-77.045494, 38.715627], + [-77.045472, 38.715715], + [-77.045445, 38.715774], + [-77.045361, 38.715882], + [-77.0453, 38.715941], + [-77.045282, 38.715981], + [-77.045209, 38.716057], + [-77.045136, 38.71615], + [-77.045097, 38.716184], + [-77.045092, 38.716205], + [-77.045044, 38.716279], + [-77.044958, 38.71638], + [-77.044931, 38.716436], + [-77.044887, 38.716485], + [-77.044849, 38.716512], + [-77.044819, 38.716546], + [-77.044777, 38.716607], + [-77.044701, 38.716693], + [-77.044684, 38.716732], + [-77.044638, 38.716787], + [-77.044563, 38.71689], + [-77.044513, 38.716941], + [-77.044467, 38.717015], + [-77.044385, 38.717093], + [-77.044345, 38.717148], + [-77.044309, 38.71718], + [-77.04422, 38.717281], + [-77.044175, 38.71735], + [-77.044154, 38.717425], + [-77.044095, 38.717467], + [-77.044016, 38.717559], + [-77.044012, 38.717563], + [-77.044006, 38.71757], + [-77.044003, 38.717574], + [-77.043967, 38.717616], + [-77.043894, 38.717663], + [-77.043879, 38.717682], + [-77.04386, 38.717719], + [-77.04385, 38.717751], + [-77.043801, 38.717807], + [-77.0438, 38.717842], + [-77.043785, 38.717894], + [-77.043761, 38.717927], + [-77.04373, 38.717955], + [-77.043687, 38.717977], + [-77.043679, 38.718003], + [-77.043689, 38.71802], + [-77.043697, 38.718076], + [-77.043683, 38.718109], + [-77.043644, 38.718115], + [-77.043624, 38.718126], + [-77.043612, 38.718155], + [-77.043608, 38.718215], + [-77.043597, 38.718234], + [-77.043551, 38.718281], + [-77.043459, 38.718337], + [-77.043411, 38.718389], + [-77.043386, 38.718443], + [-77.043346, 38.718448], + [-77.04334, 38.718476], + [-77.043368, 38.718543], + [-77.043326, 38.718587], + [-77.0433, 38.71868], + [-77.043253, 38.718724], + [-77.043248, 38.718742], + [-77.043291, 38.718773], + [-77.043296, 38.718793], + [-77.043291, 38.718871], + [-77.043304, 38.718952], + [-77.043303, 38.718989], + [-77.043294, 38.719007], + [-77.043256, 38.719019], + [-77.043252, 38.719037], + [-77.043292, 38.719038], + [-77.043342, 38.719005], + [-77.043396, 38.718997], + [-77.043449, 38.718999], + [-77.043475, 38.719006], + [-77.04353, 38.719003], + [-77.043572, 38.719016], + [-77.04361, 38.71904], + [-77.043627, 38.719065], + [-77.043628, 38.719083], + [-77.043647, 38.719107], + [-77.043723, 38.719168], + [-77.043724, 38.719198], + [-77.043715, 38.719229], + [-77.043695, 38.719238], + [-77.043659, 38.719217], + [-77.043595, 38.719204], + [-77.043581, 38.719189], + [-77.043569, 38.719149], + [-77.04351, 38.719098], + [-77.043442, 38.719102], + [-77.043381, 38.719122], + [-77.04336, 38.719137], + [-77.043353, 38.719166], + [-77.043314, 38.719181], + [-77.043299, 38.719242], + [-77.043265, 38.719283], + [-77.043219, 38.719287], + [-77.043189, 38.719329], + [-77.043181, 38.719357], + [-77.043189, 38.719388], + [-77.04323, 38.719452], + [-77.043232, 38.71947], + [-77.043206, 38.719573], + [-77.043192, 38.719731], + [-77.04318, 38.719787], + [-77.043084, 38.719991], + [-77.043072, 38.720046], + [-77.04304, 38.720104], + [-77.043021, 38.720163], + [-77.043018, 38.720203], + [-77.042995, 38.720269], + [-77.042992, 38.720288], + [-77.042986, 38.720322], + [-77.04297, 38.720348], + [-77.042941, 38.720373], + [-77.042885, 38.72059], + [-77.042853, 38.720662], + [-77.042838, 38.720812], + [-77.042762, 38.720998], + [-77.042712, 38.721032], + [-77.04268, 38.721066], + [-77.042666, 38.721244], + [-77.042648, 38.721318], + [-77.042625, 38.721371], + [-77.04262, 38.721413], + [-77.042625, 38.721455], + [-77.042637, 38.721492], + [-77.042638, 38.721531], + [-77.042614, 38.721561], + [-77.042575, 38.721662], + [-77.042569, 38.721777], + [-77.042556, 38.721813], + [-77.042538, 38.721827], + [-77.042536, 38.721851], + [-77.042546, 38.721883], + [-77.042526, 38.722027], + [-77.042494, 38.722086], + [-77.042478, 38.722143], + [-77.042475, 38.722206], + [-77.042442, 38.722281], + [-77.042434, 38.722346], + [-77.042436, 38.722472], + [-77.042423, 38.72255], + [-77.042395, 38.722639], + [-77.042388, 38.722678], + [-77.042399, 38.722778], + [-77.04232, 38.723223], + [-77.042298, 38.723449], + [-77.04229, 38.723593], + [-77.04227, 38.723735], + [-77.042153, 38.724263], + [-77.042067, 38.724506], + [-77.042055, 38.7246], + [-77.042023, 38.724685], + [-77.041897, 38.724935], + [-77.041828, 38.725045], + [-77.041805, 38.725105], + [-77.041748, 38.725317], + [-77.041727, 38.725377], + [-77.041702, 38.725435], + [-77.041664, 38.725525], + [-77.041636, 38.72557], + [-77.041528, 38.725706], + [-77.041497, 38.725746], + [-77.041487, 38.725773], + [-77.041481, 38.725829], + [-77.041471, 38.725855], + [-77.041489, 38.725918], + [-77.041551, 38.72627], + [-77.041625, 38.726504], + [-77.041635, 38.726549], + [-77.041672, 38.726907], + [-77.041678, 38.727129], + [-77.041665, 38.72722], + [-77.041635, 38.727726], + [-77.041632, 38.727887], + [-77.041636, 38.728004], + [-77.041658, 38.728219], + [-77.041671, 38.728429], + [-77.041686, 38.728544], + [-77.04169, 38.728572], + [-77.04169, 38.728575], + [-77.041696, 38.728622], + [-77.041712, 38.728818], + [-77.041706, 38.729057], + [-77.041688, 38.729335], + [-77.041658, 38.729818], + [-77.04166, 38.729837], + [-77.04168, 38.730031], + [-77.041682, 38.730202], + [-77.041665, 38.730396], + [-77.041712, 38.730645], + [-77.041748, 38.730835], + [-77.041752, 38.73086], + [-77.041696, 38.731069], + [-77.041665, 38.73137], + [-77.041709, 38.731521], + [-77.041744, 38.732269], + [-77.041763, 38.732331], + [-77.041767, 38.732466], + [-77.041734, 38.732942], + [-77.041692, 38.733116], + [-77.04166, 38.733246], + [-77.041616, 38.733515], + [-77.041608, 38.73367], + [-77.041625, 38.733819], + [-77.04162, 38.733887], + [-77.041623, 38.733971], + [-77.04168, 38.734293], + [-77.041683, 38.734433], + [-77.041701, 38.734531], + [-77.041736, 38.734635], + [-77.041736, 38.73466], + [-77.041716, 38.734682], + [-77.041655, 38.734695], + [-77.041698, 38.735254], + [-77.041714, 38.735316], + [-77.041766, 38.735436], + [-77.041763, 38.735523], + [-77.041752, 38.735551], + [-77.041743, 38.7356], + [-77.041744, 38.735728], + [-77.041755, 38.735788], + [-77.041772, 38.735821], + [-77.041797, 38.735896], + [-77.0418, 38.736068], + [-77.041816, 38.736234], + [-77.041818, 38.736309], + [-77.041833, 38.736361], + [-77.041842, 38.736421], + [-77.041836, 38.736442], + [-77.041766, 38.73653], + [-77.041708, 38.736641], + [-77.041639, 38.736713], + [-77.041609, 38.736751], + [-77.04159, 38.736795], + [-77.041592, 38.736825], + [-77.04164, 38.736946], + [-77.041743, 38.737128], + [-77.041754, 38.737147], + [-77.041767, 38.737171], + [-77.041829, 38.737259], + [-77.041891, 38.737334], + [-77.042157, 38.737601], + [-77.042281, 38.737685], + [-77.04231, 38.737709], + [-77.042384, 38.737793], + [-77.042568, 38.738061], + [-77.042532, 38.738081], + [-77.042652, 38.738214], + [-77.042811, 38.738391], + [-77.042837, 38.738384], + [-77.042858, 38.738415], + [-77.042958, 38.738515], + [-77.043127, 38.738651], + [-77.043233, 38.73872], + [-77.043297, 38.73878], + [-77.043301, 38.738786], + [-77.043312, 38.738803], + [-77.043313, 38.738804], + [-77.043355, 38.738868], + [-77.043422, 38.739012], + [-77.043469, 38.739155], + [-77.04348, 38.739249], + [-77.043467, 38.73936], + [-77.043454, 38.739409], + [-77.043423, 38.739471], + [-77.043356, 38.739546], + [-77.043313, 38.739582], + [-77.043243, 38.739669], + [-77.043186, 38.739707], + [-77.043135, 38.73975], + [-77.043081, 38.739805], + [-77.043035, 38.739852], + [-77.042974, 38.739915], + [-77.042822, 38.740053], + [-77.042726, 38.74017], + [-77.042334, 38.740878], + [-77.042292, 38.741032], + [-77.04227, 38.741163], + [-77.042284, 38.741293], + [-77.042174, 38.743514], + [-77.042043, 38.74617], + [-77.042024, 38.746729], + [-77.041911, 38.750123], + [-77.04185, 38.751814], + [-77.04185, 38.751819], + [-77.041587, 38.759106], + [-77.041569, 38.759589], + [-77.041562, 38.759793], + [-77.041562, 38.759795], + [-77.041516, 38.761046], + [-77.04141, 38.764011], + [-77.041366, 38.765682], + [-77.041366, 38.768562], + [-77.041364, 38.785423], + [-77.040252, 38.785224], + [-77.040097, 38.78992], + [-77.040467, 38.790413], + [-77.040048, 38.79044], + [-77.03983, 38.790456], + [-77.039633, 38.790475], + [-77.039549, 38.790493], + [-77.039472, 38.790747], + [-77.039428, 38.790817], + [-77.039447, 38.790886], + [-77.03944, 38.791094], + [-77.039364, 38.791175], + [-77.039392, 38.791326], + [-77.039394, 38.791333], + [-77.039386, 38.791462], + [-77.039373, 38.791529], + [-77.039362, 38.791583], + [-77.039368, 38.791598], + [-77.039008, 38.791653], + [-77.038976, 38.793187], + [-77.038979, 38.793297], + [-77.03899, 38.793681], + [-77.038991, 38.793709], + [-77.039011, 38.794418], + [-77.039012, 38.794549], + [-77.039017, 38.794742], + [-77.039076, 38.796884], + [-77.039076, 38.796911], + [-77.039082, 38.797168], + [-77.039086, 38.797296], + [-77.039094, 38.797579], + [-77.039096, 38.797597], + [-77.0391, 38.797657], + [-77.039116, 38.798177], + [-77.03916, 38.799515], + [-77.039166, 38.79975], + [-77.039178, 38.800042], + [-77.039186, 38.800308], + [-77.039193, 38.800504], + [-77.039132, 38.800825], + [-77.038969, 38.801685], + [-77.038968, 38.801685], + [-77.038622, 38.803488], + [-77.038415, 38.804563], + [-77.03838, 38.804747], + [-77.038318, 38.805052], + [-77.038185, 38.80571], + [-77.038002, 38.806589], + [-77.037722, 38.808152], + [-77.037644, 38.808582], + [-77.03729, 38.810535], + [-77.037308, 38.812245], + [-77.03734, 38.813413], + [-77.037358, 38.814195], + [-77.03736, 38.814485], + [-77.037358, 38.814543], + [-77.037345, 38.814643], + [-77.037364, 38.814712], + [-77.037391, 38.814747], + [-77.037419, 38.814794], + [-77.037429, 38.81486], + [-77.037439, 38.814947], + [-77.037475, 38.815005], + [-77.037525, 38.815052], + [-77.037596, 38.815097], + [-77.037675, 38.815151], + [-77.037743, 38.815191], + [-77.037828, 38.815256], + [-77.037909, 38.815329], + [-77.038028, 38.815444], + [-77.038081, 38.815522], + [-77.038148, 38.815621], + [-77.038225, 38.81578], + [-77.038276, 38.815881], + [-77.038317, 38.815977], + [-77.038353, 38.816037], + [-77.03838, 38.816079], + [-77.038414, 38.816098], + [-77.038423, 38.816147], + [-77.038428, 38.816207], + [-77.038433, 38.816216], + [-77.038434, 38.81622], + [-77.038449, 38.816249], + [-77.03846, 38.816301], + [-77.038489, 38.816523], + [-77.038508, 38.816629], + [-77.038525, 38.816723], + [-77.038542, 38.816819], + [-77.038555, 38.816906], + [-77.038561, 38.816986], + [-77.038568, 38.817057], + [-77.038542, 38.817072], + [-77.038546, 38.817087], + [-77.03857, 38.817097], + [-77.038578, 38.817116], + [-77.038609, 38.817191], + [-77.038633, 38.817276], + [-77.038662, 38.817348], + [-77.038677, 38.817415], + [-77.038693, 38.817465], + [-77.038706, 38.817521], + [-77.038713, 38.817568], + [-77.038702, 38.817597], + [-77.038704, 38.817604], + [-77.038713, 38.817651], + [-77.038745, 38.817643], + [-77.038779, 38.817693], + [-77.038754, 38.817713], + [-77.038753, 38.817744], + [-77.03878, 38.817816], + [-77.038791, 38.817863], + [-77.038828, 38.817883], + [-77.038839, 38.81793], + [-77.038814, 38.817954], + [-77.038802, 38.817986], + [-77.038811, 38.818009], + [-77.038858, 38.818045], + [-77.038846, 38.818122], + [-77.038823, 38.818144], + [-77.038822, 38.818145], + [-77.038858, 38.818173], + [-77.038869, 38.818216], + [-77.038871, 38.818253], + [-77.038875, 38.818329], + [-77.038884, 38.818386], + [-77.0389, 38.818436], + [-77.038911, 38.818477], + [-77.038929, 38.81852], + [-77.038953, 38.818585], + [-77.03897, 38.818633], + [-77.038979, 38.818676], + [-77.038987, 38.81869], + [-77.038994, 38.818708], + [-77.038993, 38.818734], + [-77.038983, 38.818763], + [-77.038972, 38.818787], + [-77.039085, 38.818828], + [-77.039063, 38.818873], + [-77.039122, 38.818893], + [-77.039103, 38.818947], + [-77.03904, 38.818929], + [-77.039032, 38.818937], + [-77.039008, 38.818959], + [-77.038987, 38.818984], + [-77.038955, 38.819019], + [-77.038927, 38.819044], + [-77.038909, 38.81907], + [-77.038888, 38.819097], + [-77.038874, 38.819133], + [-77.038864, 38.819175], + [-77.038866, 38.819267], + [-77.038869, 38.819337], + [-77.038901, 38.819376], + [-77.038907, 38.819406], + [-77.038894, 38.819435], + [-77.038922, 38.819481], + [-77.038921, 38.819507], + [-77.038925, 38.819512], + [-77.038944, 38.819541], + [-77.038962, 38.819544], + [-77.038985, 38.819547], + [-77.039027, 38.819534], + [-77.039134, 38.819614], + [-77.039218, 38.819677], + [-77.039279, 38.819734], + [-77.039342, 38.819797], + [-77.039376, 38.819825], + [-77.039431, 38.819853], + [-77.039498, 38.819875], + [-77.039557, 38.819883], + [-77.039609, 38.819896], + [-77.039667, 38.819899], + [-77.039731, 38.819893], + [-77.039815, 38.819982], + [-77.039902, 38.820081], + [-77.039907, 38.820143], + [-77.039974, 38.820262], + [-77.039937, 38.820469], + [-77.039972, 38.820509], + [-77.039997, 38.820534], + [-77.04001, 38.820571], + [-77.040015, 38.820597], + [-77.040042, 38.820622], + [-77.040046, 38.820661], + [-77.040031, 38.820684], + [-77.04, 38.820706], + [-77.039984, 38.820736], + [-77.03997, 38.820773], + [-77.039957, 38.820816], + [-77.039936, 38.820866], + [-77.0399, 38.82091], + [-77.039847, 38.820957], + [-77.039804, 38.821014], + [-77.039742, 38.821069], + [-77.039675, 38.821099], + [-77.039623, 38.821129], + [-77.03957, 38.821148], + [-77.039555, 38.82117], + [-77.039549, 38.821216], + [-77.039546, 38.821263], + [-77.039544, 38.821284], + [-77.039518, 38.821299], + [-77.039518, 38.821322], + [-77.03951, 38.821344], + [-77.0395, 38.821368], + [-77.039488, 38.821412], + [-77.039461, 38.82144], + [-77.039446, 38.821464], + [-77.039461, 38.821565], + [-77.039494, 38.821592], + [-77.03949, 38.821612], + [-77.039498, 38.821664], + [-77.039556, 38.821707], + [-77.039586, 38.821713], + [-77.039636, 38.82174], + [-77.03966, 38.821776], + [-77.039713, 38.821825], + [-77.039766, 38.821832], + [-77.039819, 38.821852], + [-77.039891, 38.82186], + [-77.039938, 38.821889], + [-77.040061, 38.821903], + [-77.040106, 38.821924], + [-77.040238, 38.821978], + [-77.04039, 38.821999], + [-77.040525, 38.821976], + [-77.0406, 38.821998], + [-77.040652, 38.822031], + [-77.040688, 38.822045], + [-77.04074, 38.822091], + [-77.04076, 38.822098], + [-77.040828, 38.822184], + [-77.040869, 38.822244], + [-77.040875, 38.822347], + [-77.040916, 38.822424], + [-77.040983, 38.822567], + [-77.040984, 38.822598], + [-77.040999, 38.822616], + [-77.041006, 38.822673], + [-77.041041, 38.822726], + [-77.041088, 38.822893], + [-77.04109, 38.822935], + [-77.041109, 38.822948], + [-77.041096, 38.823057], + [-77.041101, 38.82309], + [-77.041082, 38.823199], + [-77.04107, 38.823237], + [-77.041069, 38.823265], + [-77.041046, 38.823302], + [-77.041021, 38.823324], + [-77.040984, 38.823345], + [-77.040955, 38.82338], + [-77.040902, 38.823388], + [-77.040892, 38.823391], + [-77.040797, 38.823454], + [-77.040782, 38.823491], + [-77.040688, 38.823562], + [-77.040652, 38.823575], + [-77.040631, 38.823597], + [-77.04062, 38.823612], + [-77.040595, 38.823623], + [-77.040533, 38.823627], + [-77.040519, 38.823644], + [-77.04044, 38.823646], + [-77.04042, 38.823662], + [-77.040386, 38.82367], + [-77.040344, 38.82369], + [-77.040291, 38.82369], + [-77.040265, 38.823715], + [-77.040198, 38.823721], + [-77.04017, 38.823731], + [-77.040139, 38.823729], + [-77.040111, 38.823744], + [-77.040068, 38.823754], + [-77.040051, 38.82376], + [-77.040015, 38.82376], + [-77.039973, 38.823752], + [-77.039817, 38.823747], + [-77.039797, 38.823759], + [-77.039771, 38.823759], + [-77.039751, 38.823774], + [-77.03972, 38.823789], + [-77.039698, 38.823798], + [-77.039678, 38.823815], + [-77.039675, 38.823837], + [-77.039674, 38.823852], + [-77.039683, 38.823865], + [-77.039688, 38.823879], + [-77.039671, 38.823896], + [-77.03967, 38.823935], + [-77.039644, 38.823961], + [-77.039602, 38.823972], + [-77.039602, 38.823991], + [-77.039537, 38.824015], + [-77.039511, 38.824034], + [-77.039461, 38.824033], + [-77.039413, 38.82405], + [-77.039376, 38.82405], + [-77.039337, 38.824067], + [-77.039258, 38.82407], + [-77.039219, 38.824094], + [-77.039184, 38.824096], + [-77.039129, 38.824099], + [-77.039087, 38.824112], + [-77.03907, 38.824132], + [-77.039052, 38.824151], + [-77.039032, 38.824177], + [-77.039014, 38.824236], + [-77.038979, 38.82428], + [-77.038942, 38.824324], + [-77.038902, 38.824366], + [-77.038883, 38.824379], + [-77.038873, 38.824416], + [-77.038838, 38.82443], + [-77.038803, 38.824452], + [-77.038786, 38.824481], + [-77.038791, 38.824514], + [-77.038804, 38.824543], + [-77.038812, 38.82456], + [-77.03884, 38.824566], + [-77.038829, 38.824596], + [-77.038813, 38.82462], + [-77.038793, 38.824651], + [-77.038801, 38.824701], + [-77.038766, 38.82475], + [-77.038751, 38.824898], + [-77.038762, 38.824982], + [-77.038667, 38.825074], + [-77.038628, 38.825427], + [-77.038618, 38.825512], + [-77.038657, 38.825576], + [-77.038668, 38.82568], + [-77.03863, 38.825776], + [-77.03861, 38.82593], + [-77.038541, 38.826044], + [-77.03858, 38.826097], + [-77.038564, 38.826201], + [-77.038522, 38.826265], + [-77.038508, 38.826357], + [-77.038466, 38.82645], + [-77.038451, 38.826534], + [-77.038404, 38.826836], + [-77.038339, 38.826931], + [-77.038305, 38.827106], + [-77.038336, 38.827135], + [-77.038384, 38.82718], + [-77.038369, 38.827274], + [-77.038314, 38.827324], + [-77.038304, 38.82736], + [-77.038288, 38.827425], + [-77.038274, 38.82749], + [-77.038279, 38.827511], + [-77.03828, 38.827516], + [-77.038265, 38.827531], + [-77.038238, 38.827555], + [-77.038207, 38.827578], + [-77.038198, 38.827599], + [-77.038191, 38.827622], + [-77.038181, 38.827644], + [-77.038172, 38.827656], + [-77.038153, 38.827671], + [-77.038143, 38.827688], + [-77.038137, 38.827701], + [-77.038138, 38.827719], + [-77.038143, 38.827737], + [-77.038147, 38.82775], + [-77.038144, 38.82776], + [-77.038143, 38.827779], + [-77.038144, 38.827791], + [-77.038153, 38.827808], + [-77.038158, 38.827821], + [-77.038162, 38.827844], + [-77.038164, 38.827869], + [-77.038158, 38.827881], + [-77.038154, 38.827902], + [-77.038149, 38.827944], + [-77.038133, 38.827958], + [-77.038133, 38.82801], + [-77.038127, 38.828031], + [-77.038117, 38.82805], + [-77.038096, 38.828065], + [-77.038089, 38.828075], + [-77.03808, 38.828083], + [-77.038072, 38.828096], + [-77.038065, 38.828113], + [-77.038058, 38.828125], + [-77.038058, 38.828134], + [-77.03806, 38.828149], + [-77.038067, 38.828163], + [-77.038073, 38.828174], + [-77.038074, 38.828186], + [-77.038066, 38.828204], + [-77.038058, 38.828217], + [-77.038043, 38.828235], + [-77.03803, 38.828253], + [-77.038023, 38.828268], + [-77.038021, 38.828297], + [-77.038036, 38.828341], + [-77.038045, 38.828356], + [-77.038052, 38.828373], + [-77.038051, 38.828388], + [-77.038033, 38.8284], + [-77.038009, 38.828426], + [-77.03801, 38.828443], + [-77.038019, 38.828463], + [-77.038016, 38.828477], + [-77.038008, 38.828484], + [-77.037976, 38.828582], + [-77.037971, 38.8286], + [-77.037983, 38.828625], + [-77.037985, 38.828644], + [-77.037986, 38.828661], + [-77.037977, 38.828682], + [-77.037967, 38.828709], + [-77.037956, 38.82873], + [-77.037949, 38.82876], + [-77.037949, 38.828781], + [-77.037956, 38.828806], + [-77.03795, 38.828829], + [-77.037941, 38.82884], + [-77.037934, 38.828851], + [-77.037915, 38.828902], + [-77.037888, 38.828954], + [-77.037882, 38.828978], + [-77.037867, 38.828983], + [-77.037856, 38.828988], + [-77.037845, 38.829003], + [-77.037839, 38.829019], + [-77.037838, 38.829036], + [-77.037852, 38.829064], + [-77.037851, 38.82909], + [-77.037828, 38.829149], + [-77.037808, 38.829172], + [-77.037788, 38.829189], + [-77.037775, 38.829205], + [-77.037766, 38.829221], + [-77.037764, 38.829237], + [-77.037765, 38.829247], + [-77.037771, 38.829256], + [-77.03779, 38.829281], + [-77.037807, 38.829304], + [-77.037806, 38.829323], + [-77.037794, 38.829334], + [-77.037757, 38.82939], + [-77.037763, 38.829426], + [-77.037771, 38.829441], + [-77.037767, 38.829458], + [-77.037732, 38.829476], + [-77.037701, 38.829508], + [-77.037715, 38.82955], + [-77.037718, 38.829604], + [-77.037748, 38.82964], + [-77.037745, 38.82975], + [-77.037772, 38.82978], + [-77.037778, 38.829819], + [-77.037743, 38.829857], + [-77.037739, 38.829872], + [-77.03775, 38.82992], + [-77.037741, 38.830012], + [-77.037751, 38.830039], + [-77.037757, 38.830146], + [-77.037786, 38.830188], + [-77.037801, 38.830203], + [-77.037828, 38.830204], + [-77.037827, 38.830225], + [-77.037824, 38.83025], + [-77.037817, 38.830299], + [-77.03784, 38.830323], + [-77.037847, 38.83035], + [-77.037846, 38.83035], + [-77.037828, 38.830411], + [-77.03786, 38.830466], + [-77.037883, 38.83049], + [-77.037865, 38.830503], + [-77.03787, 38.830547], + [-77.037968, 38.830625], + [-77.038024, 38.830677], + [-77.038026, 38.830725], + [-77.038007, 38.830748], + [-77.038081, 38.830832], + [-77.038141, 38.830899], + [-77.038152, 38.830935], + [-77.038204, 38.830998], + [-77.038245, 38.831043], + [-77.03826, 38.831055], + [-77.038262, 38.831118], + [-77.038287, 38.83118], + [-77.038351, 38.83122], + [-77.038419, 38.831248], + [-77.038415, 38.831301], + [-77.038481, 38.831388], + [-77.0385, 38.831415], + [-77.038537, 38.831437], + [-77.038548, 38.831485], + [-77.038566, 38.831521], + [-77.038623, 38.831556], + [-77.03863, 38.83156], + [-77.038621, 38.831604], + [-77.038648, 38.831617], + [-77.038686, 38.831638], + [-77.038711, 38.831707], + [-77.03876, 38.83174], + [-77.038798, 38.831741], + [-77.038824, 38.831762], + [-77.03882, 38.831783], + [-77.038857, 38.831819], + [-77.038861, 38.831837], + [-77.038898, 38.831864], + [-77.038901, 38.831894], + [-77.038954, 38.831936], + [-77.039006, 38.831964], + [-77.039041, 38.832041], + [-77.039118, 38.832108], + [-77.039174, 38.832156], + [-77.039231, 38.832202], + [-77.039339, 38.832275], + [-77.039559, 38.832397], + [-77.039685, 38.832482], + [-77.039715, 38.832524], + [-77.039741, 38.832542], + [-77.039775, 38.832557], + [-77.039783, 38.83256], + [-77.039858, 38.832579], + [-77.03993, 38.832589], + [-77.039961, 38.832598], + [-77.040412, 38.832878], + [-77.040469, 38.832884], + [-77.040544, 38.832942], + [-77.040604, 38.832978], + [-77.040646, 38.832991], + [-77.040708, 38.833039], + [-77.04077, 38.83307], + [-77.04083, 38.833121], + [-77.040831, 38.833122], + [-77.040913, 38.833164], + [-77.041003, 38.833213], + [-77.041714, 38.833642], + [-77.041789, 38.833684], + [-77.041891, 38.833718], + [-77.042009, 38.833729], + [-77.042038, 38.833726], + [-77.04212, 38.833718], + [-77.042196, 38.833701], + [-77.042281, 38.833669], + [-77.042377, 38.83362], + [-77.042458, 38.833555], + [-77.042528, 38.833485], + [-77.042564, 38.833414], + [-77.042581, 38.83334], + [-77.042579, 38.833247], + [-77.042554, 38.833172], + [-77.04256, 38.833133], + [-77.042532, 38.833089], + [-77.042526, 38.833056], + [-77.042537, 38.833037], + [-77.042504, 38.832984], + [-77.042497, 38.83296], + [-77.042464, 38.832918], + [-77.042437, 38.832845], + [-77.042399, 38.8327], + [-77.042347, 38.832672], + [-77.042349, 38.83263], + [-77.042335, 38.832603], + [-77.042295, 38.832571], + [-77.042297, 38.832514], + [-77.042275, 38.832479], + [-77.042245, 38.832418], + [-77.042244, 38.832383], + [-77.042217, 38.832325], + [-77.042222, 38.832251], + [-77.042196, 38.832227], + [-77.042201, 38.832173], + [-77.042153, 38.832095], + [-77.042149, 38.831973], + [-77.042089, 38.831853], + [-77.042062, 38.831843], + [-77.042037, 38.831796], + [-77.042023, 38.831751], + [-77.041997, 38.831682], + [-77.042002, 38.831641], + [-77.041991, 38.831614], + [-77.041961, 38.831595], + [-77.041981, 38.831575], + [-77.041974, 38.831527], + [-77.041986, 38.831492], + [-77.042014, 38.831453], + [-77.042044, 38.831439], + [-77.04209, 38.831433], + [-77.042117, 38.831419], + [-77.042106, 38.831383], + [-77.042111, 38.831341], + [-77.042276, 38.831281], + [-77.042391, 38.831232], + [-77.042425, 38.831235], + [-77.042463, 38.831256], + [-77.042513, 38.831254], + [-77.042551, 38.831225], + [-77.042807, 38.831198], + [-77.042887, 38.831214], + [-77.042913, 38.831232], + [-77.043, 38.831257], + [-77.043049, 38.831299], + [-77.043101, 38.831356], + [-77.043131, 38.83136], + [-77.04315, 38.831378], + [-77.043186, 38.831431], + [-77.043209, 38.831438], + [-77.043276, 38.831517], + [-77.04328, 38.83154], + [-77.04332, 38.831624], + [-77.043316, 38.831648], + [-77.043342, 38.831687], + [-77.04334, 38.831721], + [-77.043359, 38.831741], + [-77.043372, 38.831854], + [-77.043414, 38.831876], + [-77.043466, 38.831909], + [-77.043477, 38.832093], + [-77.043504, 38.832133], + [-77.043508, 38.832198], + [-77.043525, 38.832225], + [-77.04355, 38.832315], + [-77.043545, 38.832378], + [-77.043574, 38.832435], + [-77.043603, 38.832477], + [-77.043601, 38.832576], + [-77.043616, 38.832602], + [-77.043613, 38.832654], + [-77.043644, 38.832706], + [-77.043666, 38.832763], + [-77.043673, 38.832859], + [-77.04369, 38.832901], + [-77.043716, 38.832952], + [-77.043738, 38.832973], + [-77.043748, 38.833029], + [-77.043793, 38.833084], + [-77.043788, 38.833116], + [-77.043757, 38.833151], + [-77.04377, 38.833187], + [-77.043844, 38.833203], + [-77.043843, 38.833236], + [-77.043797, 38.833259], + [-77.043799, 38.833325], + [-77.043776, 38.833369], + [-77.043794, 38.83339], + [-77.043836, 38.833418], + [-77.043915, 38.833448], + [-77.04393, 38.833478], + [-77.043974, 38.833524], + [-77.044058, 38.833534], + [-77.044169, 38.833529], + [-77.044195, 38.833538], + [-77.044217, 38.833568], + [-77.04424, 38.833592], + [-77.044258, 38.833599], + [-77.044307, 38.833629], + [-77.044348, 38.833695], + [-77.0444, 38.833755], + [-77.044444, 38.833827], + [-77.044458, 38.833893], + [-77.044488, 38.833938], + [-77.044546, 38.834064], + [-77.044536, 38.834107], + [-77.044579, 38.834148], + [-77.044638, 38.834238], + [-77.044637, 38.834262], + [-77.044651, 38.834345], + [-77.044669, 38.834372], + [-77.044702, 38.834453], + [-77.044728, 38.83448], + [-77.044734, 38.834584], + [-77.044786, 38.834651], + [-77.04478, 38.834722], + [-77.044821, 38.834767], + [-77.044818, 38.834808], + [-77.044861, 38.834887], + [-77.044867, 38.834946], + [-77.044885, 38.83499], + [-77.044896, 38.835012], + [-77.044898, 38.83505], + [-77.044907, 38.835066], + [-77.044903, 38.835088], + [-77.04491, 38.835102], + [-77.044915, 38.835194], + [-77.044953, 38.83521], + [-77.044966, 38.83527], + [-77.044993, 38.835302], + [-77.044995, 38.835389], + [-77.04501, 38.835419], + [-77.04502, 38.835478], + [-77.04502, 38.83553], + [-77.045026, 38.835547], + [-77.045031, 38.835616], + [-77.045047, 38.835634], + [-77.04505, 38.835681], + [-77.045048, 38.835783], + [-77.045089, 38.835834], + [-77.045105, 38.835869], + [-77.045132, 38.83589], + [-77.04522, 38.835936], + [-77.045196, 38.835967], + [-77.045111, 38.836032], + [-77.045055, 38.836086], + [-77.045057, 38.836126], + [-77.045082, 38.836173], + [-77.045126, 38.836184], + [-77.045144, 38.83625], + [-77.045153, 38.836323], + [-77.045154, 38.836389], + [-77.045149, 38.836454], + [-77.045197, 38.836511], + [-77.045208, 38.836535], + [-77.045226, 38.836595], + [-77.045214, 38.836634], + [-77.045232, 38.836664], + [-77.045243, 38.836696], + [-77.04522, 38.836744], + [-77.045251, 38.836854], + [-77.045269, 38.836932], + [-77.045263, 38.836976], + [-77.045286, 38.837022], + [-77.045283, 38.83705], + [-77.04531, 38.837153], + [-77.045332, 38.837189], + [-77.045319, 38.837254], + [-77.0453, 38.837272], + [-77.045277, 38.837281], + [-77.045268, 38.837319], + [-77.045272, 38.837343], + [-77.045331, 38.837427], + [-77.045326, 38.837677], + [-77.045329, 38.837725], + [-77.045359, 38.837755], + [-77.045396, 38.837779], + [-77.045429, 38.837836], + [-77.045433, 38.837851], + [-77.045444, 38.837878], + [-77.045447, 38.837902], + [-77.045431, 38.837941], + [-77.04543, 38.837976], + [-77.045438, 38.837991], + [-77.045436, 38.838051], + [-77.045442, 38.838137], + [-77.045426, 38.838164], + [-77.045418, 38.838194], + [-77.045422, 38.838215], + [-77.045405, 38.838268], + [-77.045359, 38.838303], + [-77.045347, 38.83833], + [-77.045323, 38.838365], + [-77.045292, 38.838424], + [-77.045275, 38.838484], + [-77.045317, 38.838502], + [-77.04533, 38.838538], + [-77.045338, 38.838598], + [-77.045375, 38.838658], + [-77.045381, 38.8387], + [-77.045411, 38.838754], + [-77.045467, 38.838775], + [-77.045516, 38.838803], + [-77.045545, 38.838846], + [-77.04559, 38.838872], + [-77.045635, 38.838883], + [-77.045681, 38.838863], + [-77.045765, 38.83894], + [-77.04592, 38.839004], + [-77.045958, 38.839055], + [-77.046016, 38.839092], + [-77.04606, 38.839184], + [-77.046064, 38.839214], + [-77.046184, 38.839296], + [-77.04621, 38.839323], + [-77.046213, 38.839362], + [-77.046198, 38.83938], + [-77.046178, 38.839406], + [-77.046204, 38.839445], + [-77.046215, 38.839454], + [-77.046253, 38.839467], + [-77.04626, 38.839503], + [-77.046309, 38.839545], + [-77.046305, 38.839667], + [-77.046347, 38.839697], + [-77.046362, 38.839729], + [-77.046396, 38.839761], + [-77.04642, 38.839781], + [-77.04641, 38.839823], + [-77.046424, 38.839847], + [-77.046485, 38.839872], + [-77.046515, 38.839902], + [-77.046503, 38.839929], + [-77.046476, 38.839949], + [-77.046479, 38.839973], + [-77.046456, 38.839982], + [-77.046443, 38.840053], + [-77.046421, 38.840057], + [-77.046414, 38.840082], + [-77.046375, 38.840076], + [-77.046336, 38.840081], + [-77.046309, 38.840101], + [-77.04625, 38.84009], + [-77.046135, 38.840007], + [-77.04607, 38.839981], + [-77.045992, 38.839964], + [-77.045965, 38.84001], + [-77.045854, 38.840019], + [-77.045846, 38.840055], + [-77.045872, 38.840156], + [-77.045981, 38.840333], + [-77.046121, 38.840422], + [-77.046193, 38.840437], + [-77.046207, 38.84044], + [-77.04627, 38.840453], + [-77.046433, 38.840543], + [-77.046738, 38.84064], + [-77.047021, 38.840667], + [-77.047455, 38.840667], + [-77.047491, 38.840663], + [-77.047629, 38.840835], + [-77.047753, 38.84097], + [-77.048023, 38.841264], + [-77.048027, 38.841267], + [-77.048011, 38.841274], + [-77.047971, 38.841275], + [-77.047936, 38.841278], + [-77.047893, 38.841282], + [-77.047861, 38.841285], + [-77.047819, 38.841289], + [-77.047786, 38.841293], + [-77.047761, 38.841297], + [-77.04773, 38.8413], + [-77.047707, 38.841304], + [-77.047683, 38.84131], + [-77.047641, 38.841315], + [-77.047607, 38.841317], + [-77.047567, 38.841316], + [-77.047527, 38.841314], + [-77.047485, 38.841316], + [-77.047443, 38.841316], + [-77.047407, 38.841318], + [-77.047366, 38.841319], + [-77.047332, 38.84132], + [-77.047291, 38.841322], + [-77.047257, 38.841322], + [-77.047213, 38.841324], + [-77.047176, 38.841328], + [-77.047131, 38.841328], + [-77.047093, 38.841327], + [-77.047053, 38.841324], + [-77.047013, 38.841322], + [-77.046973, 38.841319], + [-77.046948, 38.841318], + [-77.04691, 38.841315], + [-77.046868, 38.841313], + [-77.046831, 38.841311], + [-77.046799, 38.841307], + [-77.04676, 38.841303], + [-77.04673, 38.841298], + [-77.046693, 38.841293], + [-77.046658, 38.841287], + [-77.046629, 38.841277], + [-77.046594, 38.841271], + [-77.046558, 38.841269], + [-77.046526, 38.841263], + [-77.04649, 38.841255], + [-77.046425, 38.841242], + [-77.04639, 38.841232], + [-77.046361, 38.841224], + [-77.046329, 38.841216], + [-77.046295, 38.841206], + [-77.046268, 38.841196], + [-77.04624, 38.841188], + [-77.04621, 38.84118], + [-77.046183, 38.841173], + [-77.046148, 38.841191], + [-77.046143, 38.841163], + [-77.046114, 38.841155], + [-77.046083, 38.841146], + [-77.046053, 38.841137], + [-77.046022, 38.841126], + [-77.04599, 38.841114], + [-77.045962, 38.841103], + [-77.045928, 38.841091], + [-77.045896, 38.841081], + [-77.045865, 38.84107], + [-77.045831, 38.841059], + [-77.0458, 38.841045], + [-77.04577, 38.841029], + [-77.045737, 38.841012], + [-77.045711, 38.840997], + [-77.045687, 38.840989], + [-77.045663, 38.841002], + [-77.045643, 38.840992], + [-77.045651, 38.84097], + [-77.04562, 38.840957], + [-77.045596, 38.840943], + [-77.04557, 38.840928], + [-77.045541, 38.840909], + [-77.045514, 38.840892], + [-77.045487, 38.840876], + [-77.045457, 38.840855], + [-77.045429, 38.840836], + [-77.045401, 38.840818], + [-77.045376, 38.840797], + [-77.045348, 38.840776], + [-77.045294, 38.84074], + [-77.045267, 38.840717], + [-77.045242, 38.840698], + [-77.045213, 38.840682], + [-77.045189, 38.840661], + [-77.045164, 38.840639], + [-77.045137, 38.840617], + [-77.045111, 38.840592], + [-77.045091, 38.840569], + [-77.04507, 38.840547], + [-77.045022, 38.840503], + [-77.045001, 38.840482], + [-77.044985, 38.84046], + [-77.044968, 38.840439], + [-77.044949, 38.840418], + [-77.044931, 38.840396], + [-77.04491, 38.840376], + [-77.044891, 38.840358], + [-77.044879, 38.840337], + [-77.044866, 38.840318], + [-77.044853, 38.840298], + [-77.044837, 38.840277], + [-77.044814, 38.840259], + [-77.044791, 38.840242], + [-77.044769, 38.840229], + [-77.044741, 38.840222], + [-77.04471, 38.840219], + [-77.044681, 38.840218], + [-77.044646, 38.840217], + [-77.044615, 38.840215], + [-77.044583, 38.84021], + [-77.044552, 38.840205], + [-77.044525, 38.8402], + [-77.044496, 38.840194], + [-77.044457, 38.84019], + [-77.04442, 38.840182], + [-77.044376, 38.840178], + [-77.044338, 38.840177], + [-77.044297, 38.840182], + [-77.044256, 38.840186], + [-77.044223, 38.840193], + [-77.044186, 38.840202], + [-77.044154, 38.840213], + [-77.044121, 38.840223], + [-77.04409, 38.84023], + [-77.04406, 38.840234], + [-77.044029, 38.840233], + [-77.044003, 38.840224], + [-77.043976, 38.840212], + [-77.043941, 38.840205], + [-77.043906, 38.840206], + [-77.04388, 38.840216], + [-77.043849, 38.840231], + [-77.043821, 38.840242], + [-77.043795, 38.840253], + [-77.04377, 38.840268], + [-77.043746, 38.840285], + [-77.04372, 38.840303], + [-77.043692, 38.840319], + [-77.04367, 38.840334], + [-77.043634, 38.84037], + [-77.043614, 38.840391], + [-77.043596, 38.84041], + [-77.04358, 38.840431], + [-77.04356, 38.84045], + [-77.043523, 38.840487], + [-77.043503, 38.840504], + [-77.043477, 38.840519], + [-77.043453, 38.840534], + [-77.043434, 38.840551], + [-77.043408, 38.840566], + [-77.043385, 38.840558], + [-77.043388, 38.84053], + [-77.043401, 38.840514], + [-77.043403, 38.840492], + [-77.0434, 38.840473], + [-77.043388, 38.84045], + [-77.04337, 38.840416], + [-77.04336, 38.840398], + [-77.043347, 38.840381], + [-77.043338, 38.840362], + [-77.043334, 38.84034], + [-77.043326, 38.840319], + [-77.043294, 38.840289], + [-77.043287, 38.840269], + [-77.043283, 38.840244], + [-77.043283, 38.840222], + [-77.043289, 38.840204], + [-77.043295, 38.840167], + [-77.043287, 38.840148], + [-77.043273, 38.840131], + [-77.04326, 38.840111], + [-77.043246, 38.840094], + [-77.043235, 38.840074], + [-77.043229, 38.840049], + [-77.043223, 38.840029], + [-77.043211, 38.840013], + [-77.043195, 38.839996], + [-77.043177, 38.839976], + [-77.043156, 38.839957], + [-77.043137, 38.83994], + [-77.043124, 38.839923], + [-77.04312, 38.839904], + [-77.043117, 38.839881], + [-77.043108, 38.83986], + [-77.043095, 38.83984], + [-77.043081, 38.839819], + [-77.043067, 38.839803], + [-77.043011, 38.839771], + [-77.042989, 38.839763], + [-77.042962, 38.839753], + [-77.042934, 38.839742], + [-77.04291, 38.839736], + [-77.042882, 38.839728], + [-77.042858, 38.839721], + [-77.042833, 38.839713], + [-77.042806, 38.839703], + [-77.042778, 38.839695], + [-77.042748, 38.839689], + [-77.042714, 38.839685], + [-77.042686, 38.839679], + [-77.042663, 38.839673], + [-77.042636, 38.839668], + [-77.04261, 38.839664], + [-77.042583, 38.839662], + [-77.042558, 38.839658], + [-77.042529, 38.839654], + [-77.042499, 38.83965], + [-77.042473, 38.839647], + [-77.042441, 38.839645], + [-77.042411, 38.83964], + [-77.042382, 38.839636], + [-77.04235, 38.839633], + [-77.042321, 38.839629], + [-77.042298, 38.839625], + [-77.042269, 38.839618], + [-77.042238, 38.839615], + [-77.042213, 38.839611], + [-77.042184, 38.839607], + [-77.042154, 38.8396], + [-77.042127, 38.839595], + [-77.042104, 38.83959], + [-77.042077, 38.839585], + [-77.042049, 38.83958], + [-77.042022, 38.839575], + [-77.041993, 38.83957], + [-77.041965, 38.839566], + [-77.041939, 38.839562], + [-77.041914, 38.839557], + [-77.041886, 38.83955], + [-77.041862, 38.839546], + [-77.041838, 38.83954], + [-77.041812, 38.83953], + [-77.041786, 38.839524], + [-77.04176, 38.839522], + [-77.041736, 38.83952], + [-77.041681, 38.83952], + [-77.041655, 38.839521], + [-77.041625, 38.839522], + [-77.041596, 38.839521], + [-77.041572, 38.839523], + [-77.041545, 38.839524], + [-77.041516, 38.839526], + [-77.041491, 38.839528], + [-77.041457, 38.839528], + [-77.04143, 38.83953], + [-77.041404, 38.839531], + [-77.04138, 38.839533], + [-77.041351, 38.839537], + [-77.041326, 38.839539], + [-77.041301, 38.839542], + [-77.041276, 38.839544], + [-77.041252, 38.839547], + [-77.041227, 38.839549], + [-77.041203, 38.839553], + [-77.041178, 38.839559], + [-77.041154, 38.839568], + [-77.041134, 38.839578], + [-77.041111, 38.839596], + [-77.041094, 38.839616], + [-77.041054, 38.839622], + [-77.040943, 38.839585], + [-77.040919, 38.839566], + [-77.040898, 38.839546], + [-77.040873, 38.839531], + [-77.040795, 38.839504], + [-77.040771, 38.839494], + [-77.040739, 38.839487], + [-77.040708, 38.839476], + [-77.040685, 38.839464], + [-77.040637, 38.839443], + [-77.04061, 38.839429], + [-77.040584, 38.839419], + [-77.040558, 38.839411], + [-77.040536, 38.8394], + [-77.040508, 38.839388], + [-77.040479, 38.839381], + [-77.040456, 38.839374], + [-77.040396, 38.839349], + [-77.040382, 38.839331], + [-77.040321, 38.839327], + [-77.040296, 38.839329], + [-77.0402, 38.839319], + [-77.040177, 38.839314], + [-77.040152, 38.83931], + [-77.040129, 38.839301], + [-77.039977, 38.839285], + [-77.039953, 38.839286], + [-77.039887, 38.839291], + [-77.039827, 38.839287], + [-77.039792, 38.839289], + [-77.039762, 38.839288], + [-77.039709, 38.839283], + [-77.03967, 38.839284], + [-77.039619, 38.839288], + [-77.039593, 38.839292], + [-77.039516, 38.839295], + [-77.039467, 38.839295], + [-77.03941, 38.839293], + [-77.039354, 38.839289], + [-77.039267, 38.839278], + [-77.039201, 38.839274], + [-77.039177, 38.839275], + [-77.039127, 38.83927], + [-77.039094, 38.839269], + [-77.039031, 38.839263], + [-77.038998, 38.839261], + [-77.038968, 38.839258], + [-77.038937, 38.839256], + [-77.038905, 38.839256], + [-77.038665, 38.839273], + [-77.038636, 38.839267], + [-77.038603, 38.839264], + [-77.038551, 38.83927], + [-77.03846, 38.839279], + [-77.038385, 38.839285], + [-77.038358, 38.839288], + [-77.038272, 38.839294], + [-77.038208, 38.839304], + [-77.038181, 38.839299], + [-77.038157, 38.839286], + [-77.038113, 38.839282], + [-77.038059, 38.839288], + [-77.03803, 38.839293], + [-77.037973, 38.8393], + [-77.037918, 38.839309], + [-77.037829, 38.839318], + [-77.037783, 38.839321], + [-77.037722, 38.839328], + [-77.037632, 38.839336], + [-77.03757, 38.83934], + [-77.03754, 38.839341], + [-77.037487, 38.839345], + [-77.037436, 38.839353], + [-77.03742, 38.839367], + [-77.037401, 38.839382], + [-77.037317, 38.839376], + [-77.037285, 38.839375], + [-77.037219, 38.839376], + [-77.037045, 38.839388], + [-77.03697, 38.839394], + [-77.036806, 38.839413], + [-77.036781, 38.839421], + [-77.036757, 38.839432], + [-77.036735, 38.839448], + [-77.036698, 38.839482], + [-77.036658, 38.839513], + [-77.036634, 38.839537], + [-77.036635, 38.83956], + [-77.036618, 38.839579], + [-77.036585, 38.839581], + [-77.036551, 38.839572], + [-77.036512, 38.839566], + [-77.036481, 38.83956], + [-77.036434, 38.839556], + [-77.036353, 38.839556], + [-77.036322, 38.839554], + [-77.036265, 38.839556], + [-77.036205, 38.839563], + [-77.036176, 38.839568], + [-77.036119, 38.839586], + [-77.036091, 38.839594], + [-77.036061, 38.839605], + [-77.036037, 38.839617], + [-77.036013, 38.839632], + [-77.035985, 38.839646], + [-77.03596, 38.839661], + [-77.035933, 38.839675], + [-77.035904, 38.839687], + [-77.035877, 38.839695], + [-77.03582, 38.83971], + [-77.035794, 38.839718], + [-77.035768, 38.839724], + [-77.035742, 38.839734], + [-77.03572, 38.839747], + [-77.035675, 38.83976], + [-77.035652, 38.839762], + [-77.035614, 38.839756], + [-77.035573, 38.839751], + [-77.035527, 38.839756], + [-77.035503, 38.839762], + [-77.035479, 38.83977], + [-77.035431, 38.839791], + [-77.035376, 38.839809], + [-77.035301, 38.839846], + [-77.035278, 38.839856], + [-77.035227, 38.839874], + [-77.035203, 38.839881], + [-77.035151, 38.839891], + [-77.035125, 38.839901], + [-77.035039, 38.839944], + [-77.035008, 38.839956], + [-77.034974, 38.839966], + [-77.034873, 38.839989], + [-77.034842, 38.839998], + [-77.03481, 38.840009], + [-77.03478, 38.840018], + [-77.034695, 38.840035], + [-77.03467, 38.840042], + [-77.034646, 38.840052], + [-77.034626, 38.840068], + [-77.034595, 38.840109], + [-77.034582, 38.840128], + [-77.034572, 38.840149], + [-77.034556, 38.840191], + [-77.034553, 38.840212], + [-77.034551, 38.840257], + [-77.034551, 38.840277], + [-77.034555, 38.840322], + [-77.034552, 38.840366], + [-77.034545, 38.840409], + [-77.034543, 38.84046], + [-77.034543, 38.840481], + [-77.034552, 38.840581], + [-77.034554, 38.84063], + [-77.03456, 38.840724], + [-77.034557, 38.840765], + [-77.034552, 38.840787], + [-77.034545, 38.840807], + [-77.034533, 38.840823], + [-77.034518, 38.840839], + [-77.034502, 38.840852], + [-77.034427, 38.840881], + [-77.034387, 38.840892], + [-77.034354, 38.840896], + [-77.034289, 38.840885], + [-77.034258, 38.840883], + [-77.034232, 38.84089], + [-77.034214, 38.840877], + [-77.034212, 38.840904], + [-77.034201, 38.840926], + [-77.034195, 38.840945], + [-77.034196, 38.840965], + [-77.03421, 38.840991], + [-77.034254, 38.841043], + [-77.034268, 38.841074], + [-77.034277, 38.8411], + [-77.034281, 38.841129], + [-77.034277, 38.841155], + [-77.034268, 38.841177], + [-77.034253, 38.841196], + [-77.034235, 38.841212], + [-77.034214, 38.84122], + [-77.034187, 38.841237], + [-77.034173, 38.841261], + [-77.03416, 38.841325], + [-77.034145, 38.841408], + [-77.034142, 38.841437], + [-77.034135, 38.841489], + [-77.034131, 38.841557], + [-77.034132, 38.841576], + [-77.034138, 38.841596], + [-77.034109, 38.84161], + [-77.034078, 38.841621], + [-77.03405, 38.841638], + [-77.034032, 38.841661], + [-77.034019, 38.841698], + [-77.034014, 38.841718], + [-77.034012, 38.84174], + [-77.034014, 38.841765], + [-77.034016, 38.841787], + [-77.034018, 38.84181], + [-77.034018, 38.841836], + [-77.034015, 38.841858], + [-77.034011, 38.841882], + [-77.034006, 38.841908], + [-77.033999, 38.841929], + [-77.033995, 38.841953], + [-77.033992, 38.841979], + [-77.033989, 38.842003], + [-77.033985, 38.842053], + [-77.033984, 38.842076], + [-77.033982, 38.842102], + [-77.03398, 38.842125], + [-77.033977, 38.842149], + [-77.033975, 38.842175], + [-77.033972, 38.842198], + [-77.033966, 38.842246], + [-77.033963, 38.842268], + [-77.033961, 38.84229], + [-77.03396, 38.842313], + [-77.033956, 38.842357], + [-77.033956, 38.84238], + [-77.033957, 38.842402], + [-77.033957, 38.842445], + [-77.033955, 38.842466], + [-77.033949, 38.842508], + [-77.033947, 38.842527], + [-77.033945, 38.842556], + [-77.033946, 38.842581], + [-77.033948, 38.8426], + [-77.033948, 38.842622], + [-77.033945, 38.842654], + [-77.033936, 38.842685], + [-77.033927, 38.842719], + [-77.033922, 38.842753], + [-77.033915, 38.842785], + [-77.033904, 38.842818], + [-77.033889, 38.84285], + [-77.033872, 38.842882], + [-77.033856, 38.842918], + [-77.033849, 38.842936], + [-77.033833, 38.842972], + [-77.033823, 38.842989], + [-77.03381, 38.843004], + [-77.033796, 38.84302], + [-77.033784, 38.843036], + [-77.033751, 38.843084], + [-77.033742, 38.843103], + [-77.033731, 38.843122], + [-77.03372, 38.843142], + [-77.03371, 38.843162], + [-77.033694, 38.843202], + [-77.033685, 38.843223], + [-77.033678, 38.843243], + [-77.033672, 38.843264], + [-77.033664, 38.843286], + [-77.033654, 38.843308], + [-77.033645, 38.843328], + [-77.033637, 38.843349], + [-77.033625, 38.84337], + [-77.033613, 38.843392], + [-77.033602, 38.843414], + [-77.033591, 38.843437], + [-77.033577, 38.84346], + [-77.033543, 38.843502], + [-77.033528, 38.843524], + [-77.033515, 38.843545], + [-77.033507, 38.843566], + [-77.0335, 38.843588], + [-77.033497, 38.843609], + [-77.033492, 38.84363], + [-77.033483, 38.843652], + [-77.033472, 38.843675], + [-77.033458, 38.843696], + [-77.033445, 38.843717], + [-77.033435, 38.843738], + [-77.033424, 38.843759], + [-77.033413, 38.843781], + [-77.033403, 38.843804], + [-77.033392, 38.843827], + [-77.033372, 38.843875], + [-77.033364, 38.843897], + [-77.033357, 38.84392], + [-77.033348, 38.843943], + [-77.033338, 38.843967], + [-77.033328, 38.84399], + [-77.033317, 38.844012], + [-77.033308, 38.844034], + [-77.033298, 38.844056], + [-77.033292, 38.844079], + [-77.033286, 38.844101], + [-77.033278, 38.844123], + [-77.033269, 38.844147], + [-77.03326, 38.844169], + [-77.03325, 38.844192], + [-77.033238, 38.844216], + [-77.033224, 38.844239], + [-77.033209, 38.844262], + [-77.033195, 38.844284], + [-77.033184, 38.844305], + [-77.033175, 38.844326], + [-77.033169, 38.844347], + [-77.033162, 38.844369], + [-77.033158, 38.844391], + [-77.033161, 38.844409], + [-77.033132, 38.84449], + [-77.033105, 38.844503], + [-77.033081, 38.844524], + [-77.033068, 38.844557], + [-77.033066, 38.844578], + [-77.033065, 38.844598], + [-77.033064, 38.84462], + [-77.033059, 38.844642], + [-77.033053, 38.844664], + [-77.033044, 38.844685], + [-77.033035, 38.844707], + [-77.033029, 38.84473], + [-77.033023, 38.844752], + [-77.033019, 38.844774], + [-77.033015, 38.844799], + [-77.033009, 38.844849], + [-77.033004, 38.844874], + [-77.032998, 38.844898], + [-77.032992, 38.844925], + [-77.032987, 38.84495], + [-77.032981, 38.844975], + [-77.032975, 38.845002], + [-77.032968, 38.845028], + [-77.03296, 38.845054], + [-77.032956, 38.84508], + [-77.032952, 38.845103], + [-77.032946, 38.845153], + [-77.032941, 38.845178], + [-77.032936, 38.845205], + [-77.03293, 38.845231], + [-77.032921, 38.845256], + [-77.032912, 38.845282], + [-77.032905, 38.845304], + [-77.032896, 38.845327], + [-77.032888, 38.845352], + [-77.032882, 38.845377], + [-77.032877, 38.845403], + [-77.032873, 38.845429], + [-77.032869, 38.845454], + [-77.032865, 38.845481], + [-77.032859, 38.845507], + [-77.032855, 38.845526], + [-77.032851, 38.845555], + [-77.032848, 38.845574], + [-77.032843, 38.845594], + [-77.032836, 38.845614], + [-77.03283, 38.845635], + [-77.032826, 38.845656], + [-77.032824, 38.845681], + [-77.032821, 38.845705], + [-77.032816, 38.845729], + [-77.032811, 38.845752], + [-77.032808, 38.845773], + [-77.032806, 38.845792], + [-77.03281, 38.84582], + [-77.032798, 38.845864], + [-77.032781, 38.845891], + [-77.032775, 38.845925], + [-77.032773, 38.845944], + [-77.032763, 38.845984], + [-77.032757, 38.846003], + [-77.03275, 38.846024], + [-77.032734, 38.846066], + [-77.032728, 38.846087], + [-77.032724, 38.846109], + [-77.032719, 38.84613], + [-77.032711, 38.846168], + [-77.032706, 38.846187], + [-77.0327, 38.846205], + [-77.032695, 38.846223], + [-77.032689, 38.846241], + [-77.032684, 38.84626], + [-77.032679, 38.84628], + [-77.032671, 38.846322], + [-77.032667, 38.846342], + [-77.032663, 38.846363], + [-77.032658, 38.846388], + [-77.03265, 38.846417], + [-77.032644, 38.846438], + [-77.032636, 38.84648], + [-77.032629, 38.846502], + [-77.032622, 38.846526], + [-77.032617, 38.846551], + [-77.032611, 38.846576], + [-77.032607, 38.846603], + [-77.032601, 38.846628], + [-77.032594, 38.846656], + [-77.032587, 38.846681], + [-77.032579, 38.846709], + [-77.032572, 38.846735], + [-77.032563, 38.846758], + [-77.032553, 38.846784], + [-77.032545, 38.846809], + [-77.032538, 38.846835], + [-77.032532, 38.846863], + [-77.032529, 38.84689], + [-77.032527, 38.846917], + [-77.032525, 38.846943], + [-77.032522, 38.84697], + [-77.032519, 38.846996], + [-77.032515, 38.84702], + [-77.03251, 38.847045], + [-77.032502, 38.847071], + [-77.032495, 38.847097], + [-77.032488, 38.847122], + [-77.032482, 38.847149], + [-77.032478, 38.847176], + [-77.032477, 38.847202], + [-77.032475, 38.847226], + [-77.032467, 38.847274], + [-77.032462, 38.847296], + [-77.032457, 38.847317], + [-77.032452, 38.847337], + [-77.032449, 38.847358], + [-77.032445, 38.847378], + [-77.032442, 38.8474], + [-77.032438, 38.84742], + [-77.032427, 38.847451], + [-77.032416, 38.847474], + [-77.032418, 38.847497], + [-77.032415, 38.847524], + [-77.032408, 38.847549], + [-77.032396, 38.84757], + [-77.032392, 38.847601], + [-77.032392, 38.847622], + [-77.032391, 38.847644], + [-77.032388, 38.847668], + [-77.032384, 38.847718], + [-77.032383, 38.847744], + [-77.03238, 38.847769], + [-77.032376, 38.847821], + [-77.032375, 38.847847], + [-77.032373, 38.847873], + [-77.032269, 38.848024], + [-77.032303, 38.848144], + [-77.032297, 38.848196], + [-77.032296, 38.848214], + [-77.032298, 38.848233], + [-77.0323, 38.848254], + [-77.032301, 38.848275], + [-77.032302, 38.848295], + [-77.032305, 38.848314], + [-77.032306, 38.848334], + [-77.032308, 38.848357], + [-77.032309, 38.848379], + [-77.03231, 38.848409], + [-77.032311, 38.848427], + [-77.032311, 38.848445], + [-77.03231, 38.848464], + [-77.03231, 38.848505], + [-77.032305, 38.848533], + [-77.032304, 38.848602], + [-77.032299, 38.848702], + [-77.032294, 38.848797], + [-77.032294, 38.848816], + [-77.032293, 38.848839], + [-77.032292, 38.848864], + [-77.03229, 38.84889], + [-77.032289, 38.848919], + [-77.032288, 38.848949], + [-77.032288, 38.84898], + [-77.032286, 38.849012], + [-77.032283, 38.849044], + [-77.032281, 38.849077], + [-77.03228, 38.849111], + [-77.03228, 38.849146], + [-77.032279, 38.849182], + [-77.032275, 38.849249], + [-77.032276, 38.849277], + [-77.032275, 38.849301], + [-77.032273, 38.849328], + [-77.032271, 38.849353], + [-77.032271, 38.849432], + [-77.032272, 38.849457], + [-77.032271, 38.849475], + [-77.032269, 38.849515], + [-77.032267, 38.849534], + [-77.032266, 38.849556], + [-77.032265, 38.84958], + [-77.032261, 38.84963], + [-77.032257, 38.849656], + [-77.032251, 38.849684], + [-77.032247, 38.849713], + [-77.032244, 38.849742], + [-77.03224, 38.849771], + [-77.032235, 38.849801], + [-77.03223, 38.849826], + [-77.032223, 38.849849], + [-77.032214, 38.84987], + [-77.032202, 38.849888], + [-77.032188, 38.850082], + [-77.032198, 38.850104], + [-77.032145, 38.850295], + [-77.032149, 38.850321], + [-77.032153, 38.850348], + [-77.032156, 38.850374], + [-77.03216, 38.850402], + [-77.032165, 38.85043], + [-77.032169, 38.850459], + [-77.032173, 38.850489], + [-77.032178, 38.850517], + [-77.032183, 38.850548], + [-77.032188, 38.850578], + [-77.032204, 38.850702], + [-77.032213, 38.850795], + [-77.032215, 38.850825], + [-77.032216, 38.850855], + [-77.032218, 38.850876], + [-77.032222, 38.850908], + [-77.032224, 38.850934], + [-77.032225, 38.850962], + [-77.032224, 38.850992], + [-77.032222, 38.851023], + [-77.03222, 38.851055], + [-77.03222, 38.851086], + [-77.032219, 38.851116], + [-77.032218, 38.851147], + [-77.032218, 38.851178], + [-77.032222, 38.851238], + [-77.03222, 38.851268], + [-77.032216, 38.8513], + [-77.032211, 38.851333], + [-77.032206, 38.851364], + [-77.032202, 38.851396], + [-77.0322, 38.851427], + [-77.0322, 38.851458], + [-77.032201, 38.85149], + [-77.032204, 38.851521], + [-77.032208, 38.851583], + [-77.03221, 38.851616], + [-77.032211, 38.851648], + [-77.032213, 38.85168], + [-77.032216, 38.85171], + [-77.032221, 38.851739], + [-77.032225, 38.85177], + [-77.032231, 38.851802], + [-77.032237, 38.851828], + [-77.032243, 38.851853], + [-77.03225, 38.851878], + [-77.032254, 38.851903], + [-77.032259, 38.851931], + [-77.032264, 38.851961], + [-77.032271, 38.851993], + [-77.032275, 38.852026], + [-77.03228, 38.852059], + [-77.032283, 38.852092], + [-77.032285, 38.852122], + [-77.032285, 38.852153], + [-77.032281, 38.85218], + [-77.032275, 38.852206], + [-77.032269, 38.85223], + [-77.032264, 38.852253], + [-77.032265, 38.852278], + [-77.032267, 38.852302], + [-77.032271, 38.852326], + [-77.032281, 38.852351], + [-77.032295, 38.852374], + [-77.032309, 38.852399], + [-77.032321, 38.852424], + [-77.032329, 38.852452], + [-77.032338, 38.852481], + [-77.032347, 38.852511], + [-77.032357, 38.852541], + [-77.032368, 38.85257], + [-77.032377, 38.852602], + [-77.032386, 38.852633], + [-77.032395, 38.852665], + [-77.032405, 38.852697], + [-77.032414, 38.852727], + [-77.032422, 38.852759], + [-77.032431, 38.85279], + [-77.032441, 38.852822], + [-77.032451, 38.852853], + [-77.032459, 38.852886], + [-77.032465, 38.852917], + [-77.032479, 38.852983], + [-77.032485, 38.853017], + [-77.032495, 38.853085], + [-77.032505, 38.853151], + [-77.032512, 38.853183], + [-77.032519, 38.853217], + [-77.032525, 38.85325], + [-77.03253, 38.853282], + [-77.032536, 38.853314], + [-77.032541, 38.853348], + [-77.032546, 38.85338], + [-77.032552, 38.85341], + [-77.032562, 38.853468], + [-77.032567, 38.853496], + [-77.032572, 38.853525], + [-77.032578, 38.853553], + [-77.032587, 38.85358], + [-77.032596, 38.853606], + [-77.032604, 38.853635], + [-77.032618, 38.853695], + [-77.032624, 38.853725], + [-77.032631, 38.853754], + [-77.032637, 38.853781], + [-77.032643, 38.853809], + [-77.032648, 38.853835], + [-77.032654, 38.853859], + [-77.032657, 38.853879], + [-77.03266, 38.853901], + [-77.032665, 38.853934], + [-77.032668, 38.853955], + [-77.03267, 38.85398], + [-77.032666, 38.854006], + [-77.032661, 38.854031], + [-77.032657, 38.854054], + [-77.032656, 38.854079], + [-77.032661, 38.854104], + [-77.032669, 38.854131], + [-77.032677, 38.854157], + [-77.032683, 38.854185], + [-77.032688, 38.854213], + [-77.032694, 38.854241], + [-77.032699, 38.854269], + [-77.032706, 38.854294], + [-77.032724, 38.854346], + [-77.032734, 38.854372], + [-77.032745, 38.854399], + [-77.032754, 38.854427], + [-77.032761, 38.854451], + [-77.032767, 38.85447], + [-77.032773, 38.85449], + [-77.032777, 38.854508], + [-77.032791, 38.854554], + [-77.032805, 38.854606], + [-77.032811, 38.854633], + [-77.032818, 38.854659], + [-77.032824, 38.854685], + [-77.03283, 38.854709], + [-77.032835, 38.854733], + [-77.032843, 38.854783], + [-77.032845, 38.854807], + [-77.032843, 38.854831], + [-77.032838, 38.854856], + [-77.032835, 38.854883], + [-77.032834, 38.854909], + [-77.032836, 38.854936], + [-77.032838, 38.85499], + [-77.032841, 38.855014], + [-77.032845, 38.855035], + [-77.032851, 38.855053], + [-77.032865, 38.855085], + [-77.032879, 38.855108], + [-77.032894, 38.85514], + [-77.032937, 38.855233], + [-77.03295, 38.855256], + [-77.032969, 38.855284], + [-77.03298, 38.8553], + [-77.03299, 38.855319], + [-77.033002, 38.85534], + [-77.033013, 38.855359], + [-77.033033, 38.855395], + [-77.033043, 38.855414], + [-77.033053, 38.855435], + [-77.033066, 38.855455], + [-77.033081, 38.855473], + [-77.033093, 38.855493], + [-77.033102, 38.855516], + [-77.033112, 38.855537], + [-77.033122, 38.855557], + [-77.033133, 38.855578], + [-77.033144, 38.855601], + [-77.033155, 38.855622], + [-77.033167, 38.855643], + [-77.033181, 38.855664], + [-77.033194, 38.855688], + [-77.033205, 38.85571], + [-77.033217, 38.85573], + [-77.033231, 38.855752], + [-77.033244, 38.855776], + [-77.033259, 38.855797], + [-77.033276, 38.855815], + [-77.033291, 38.855833], + [-77.033303, 38.855855], + [-77.033313, 38.855877], + [-77.033323, 38.855897], + [-77.033335, 38.855917], + [-77.033365, 38.855961], + [-77.033377, 38.855981], + [-77.033388, 38.856002], + [-77.0334, 38.856025], + [-77.033411, 38.856048], + [-77.033421, 38.856067], + [-77.033431, 38.856087], + [-77.033442, 38.85611], + [-77.033452, 38.856133], + [-77.033462, 38.856153], + [-77.033473, 38.856173], + [-77.033486, 38.856196], + [-77.033501, 38.856219], + [-77.033513, 38.85624], + [-77.033525, 38.85626], + [-77.033536, 38.856284], + [-77.033547, 38.856307], + [-77.033558, 38.856328], + [-77.033566, 38.856348], + [-77.033575, 38.856371], + [-77.033585, 38.856393], + [-77.033605, 38.856433], + [-77.033615, 38.856455], + [-77.033628, 38.856477], + [-77.033642, 38.856496], + [-77.033659, 38.856516], + [-77.033673, 38.856538], + [-77.033685, 38.856561], + [-77.033697, 38.85658], + [-77.03371, 38.856599], + [-77.033722, 38.856619], + [-77.033734, 38.856643], + [-77.033744, 38.856664], + [-77.033755, 38.856683], + [-77.033767, 38.856706], + [-77.033782, 38.856729], + [-77.033795, 38.85675], + [-77.033805, 38.85677], + [-77.033814, 38.856794], + [-77.033824, 38.856818], + [-77.033842, 38.856856], + [-77.033853, 38.856877], + [-77.033865, 38.856898], + [-77.033876, 38.856919], + [-77.033887, 38.856938], + [-77.033899, 38.856957], + [-77.033911, 38.856979], + [-77.033921, 38.857001], + [-77.033931, 38.857022], + [-77.033943, 38.857043], + [-77.033969, 38.857087], + [-77.033981, 38.857108], + [-77.033994, 38.857128], + [-77.034006, 38.85715], + [-77.034017, 38.85717], + [-77.034025, 38.85719], + [-77.034034, 38.857209], + [-77.034043, 38.857231], + [-77.034052, 38.857254], + [-77.034062, 38.857275], + [-77.034072, 38.857295], + [-77.034082, 38.857317], + [-77.034089, 38.85734], + [-77.034093, 38.857361], + [-77.034097, 38.857381], + [-77.034103, 38.857404], + [-77.034112, 38.857428], + [-77.034119, 38.857446], + [-77.034124, 38.857465], + [-77.034128, 38.857487], + [-77.034132, 38.857511], + [-77.034137, 38.857533], + [-77.034141, 38.857552], + [-77.034146, 38.857572], + [-77.03415, 38.857592], + [-77.034155, 38.857611], + [-77.034157, 38.857632], + [-77.034161, 38.85766], + [-77.034172, 38.857688], + [-77.034199, 38.857715], + [-77.034219, 38.857744], + [-77.03423, 38.857762], + [-77.034242, 38.857778], + [-77.034267, 38.857808], + [-77.034281, 38.857823], + [-77.034297, 38.857839], + [-77.034315, 38.857855], + [-77.03433, 38.857871], + [-77.034359, 38.857897], + [-77.034374, 38.857911], + [-77.034389, 38.857928], + [-77.034405, 38.857944], + [-77.034419, 38.857959], + [-77.034432, 38.857974], + [-77.034444, 38.85799], + [-77.034455, 38.858008], + [-77.034464, 38.858027], + [-77.034482, 38.858057], + [-77.034491, 38.858074], + [-77.034504, 38.858091], + [-77.034516, 38.858112], + [-77.034526, 38.858131], + [-77.034546, 38.858161], + [-77.034557, 38.858179], + [-77.03457, 38.858198], + [-77.034588, 38.858229], + [-77.0346, 38.858266], + [-77.034607, 38.858287], + [-77.034616, 38.858304], + [-77.034635, 38.858335], + [-77.034644, 38.858354], + [-77.034653, 38.858372], + [-77.034661, 38.858389], + [-77.03468, 38.858422], + [-77.03469, 38.858441], + [-77.0347, 38.858463], + [-77.034709, 38.85848], + [-77.034727, 38.858512], + [-77.034737, 38.858531], + [-77.034746, 38.858551], + [-77.034755, 38.858568], + [-77.034774, 38.858601], + [-77.034782, 38.858622], + [-77.03479, 38.858641], + [-77.034798, 38.858658], + [-77.034819, 38.858692], + [-77.034828, 38.858711], + [-77.034836, 38.85873], + [-77.034851, 38.858762], + [-77.03486, 38.85878], + [-77.034869, 38.858801], + [-77.034878, 38.858818], + [-77.034895, 38.858847], + [-77.034903, 38.858864], + [-77.03491, 38.858884], + [-77.034918, 38.858903], + [-77.034935, 38.858933], + [-77.034951, 38.858969], + [-77.03496, 38.858987], + [-77.034977, 38.859017], + [-77.034986, 38.859034], + [-77.034994, 38.859052], + [-77.035001, 38.85907], + [-77.035013, 38.859102], + [-77.035019, 38.85912], + [-77.035025, 38.859139], + [-77.035032, 38.859157], + [-77.035044, 38.859186], + [-77.03505, 38.859223], + [-77.035051, 38.859243], + [-77.035054, 38.859274], + [-77.035057, 38.859307], + [-77.03506, 38.859325], + [-77.035067, 38.859356], + [-77.035086, 38.859384], + [-77.035102, 38.859399], + [-77.035118, 38.859416], + [-77.035132, 38.859432], + [-77.035156, 38.85946], + [-77.035168, 38.859476], + [-77.035182, 38.859492], + [-77.035206, 38.85952], + [-77.035228, 38.85955], + [-77.035239, 38.859568], + [-77.035252, 38.859584], + [-77.035275, 38.859611], + [-77.035298, 38.859643], + [-77.03531, 38.859662], + [-77.035321, 38.859678], + [-77.035334, 38.859693], + [-77.035361, 38.859723], + [-77.035376, 38.859741], + [-77.035389, 38.859757], + [-77.035414, 38.859781], + [-77.035442, 38.859802], + [-77.035477, 38.859824], + [-77.035515, 38.859842], + [-77.03555, 38.859861], + [-77.035583, 38.859881], + [-77.035616, 38.859903], + [-77.035647, 38.859925], + [-77.035679, 38.859946], + [-77.035695, 38.85996], + [-77.035714, 38.859973], + [-77.035731, 38.859987], + [-77.035746, 38.860001], + [-77.035762, 38.860014], + [-77.035793, 38.860039], + [-77.035809, 38.860054], + [-77.035839, 38.860082], + [-77.035869, 38.860106], + [-77.035897, 38.860135], + [-77.035912, 38.860151], + [-77.035927, 38.860166], + [-77.035946, 38.860182], + [-77.035965, 38.860202], + [-77.035986, 38.860223], + [-77.036012, 38.860245], + [-77.036037, 38.860271], + [-77.036063, 38.860295], + [-77.036089, 38.860316], + [-77.036116, 38.860338], + [-77.036147, 38.860362], + [-77.036177, 38.860385], + [-77.036207, 38.860404], + [-77.036263, 38.86045], + [-77.036293, 38.860473], + [-77.036323, 38.860497], + [-77.03634, 38.86051], + [-77.03637, 38.860533], + [-77.036402, 38.860556], + [-77.036433, 38.86058], + [-77.036467, 38.860602], + [-77.036498, 38.860623], + [-77.036527, 38.860645], + [-77.036558, 38.860667], + [-77.03659, 38.860691], + [-77.036619, 38.860714], + [-77.036649, 38.860735], + [-77.036665, 38.860749], + [-77.036693, 38.860776], + [-77.036723, 38.860801], + [-77.036751, 38.860827], + [-77.036776, 38.860855], + [-77.036797, 38.860884], + [-77.036817, 38.860913], + [-77.036831, 38.860943], + [-77.036842, 38.860968], + [-77.036845, 38.860994], + [-77.036846, 38.861017], + [-77.036832, 38.861033], + [-77.036808, 38.861047], + [-77.036787, 38.86106], + [-77.036781, 38.861082], + [-77.036787, 38.861105], + [-77.036807, 38.861119], + [-77.036835, 38.86113], + [-77.036866, 38.861143], + [-77.0369, 38.861151], + [-77.036939, 38.861157], + [-77.036976, 38.861163], + [-77.037015, 38.861166], + [-77.037059, 38.861167], + [-77.0371, 38.861167], + [-77.037141, 38.861165], + [-77.037183, 38.861163], + [-77.037223, 38.861163], + [-77.037261, 38.86116], + [-77.037303, 38.861156], + [-77.037338, 38.861154], + [-77.037374, 38.861155], + [-77.037405, 38.86116], + [-77.037432, 38.861168], + [-77.037462, 38.861177], + [-77.037488, 38.861189], + [-77.037515, 38.861209], + [-77.037545, 38.861231], + [-77.037566, 38.861249], + [-77.037587, 38.861273], + [-77.037606, 38.861302], + [-77.037622, 38.861326], + [-77.037633, 38.861345], + [-77.037635, 38.861369], + [-77.037635, 38.861392], + [-77.037637, 38.861418], + [-77.03764, 38.861443], + [-77.037649, 38.861471], + [-77.037661, 38.861498], + [-77.037673, 38.861532], + [-77.037685, 38.861563], + [-77.037697, 38.861588], + [-77.0377, 38.861608], + [-77.03769, 38.861625], + [-77.037681, 38.861648], + [-77.037691, 38.861671], + [-77.037717, 38.861678], + [-77.037734, 38.861699], + [-77.037744, 38.86173], + [-77.03775, 38.861749], + [-77.037756, 38.861767], + [-77.037768, 38.861802], + [-77.037774, 38.86182], + [-77.037779, 38.861839], + [-77.037784, 38.861857], + [-77.037794, 38.86189], + [-77.037805, 38.861924], + [-77.037813, 38.861956], + [-77.03782, 38.861989], + [-77.037825, 38.862008], + [-77.037828, 38.862026], + [-77.037834, 38.862057], + [-77.037842, 38.862091], + [-77.03785, 38.862124], + [-77.037856, 38.862156], + [-77.03786, 38.862174], + [-77.037863, 38.862192], + [-77.037868, 38.862225], + [-77.037872, 38.86226], + [-77.037875, 38.862279], + [-77.037878, 38.862297], + [-77.03788, 38.862315], + [-77.037885, 38.86235], + [-77.037887, 38.862368], + [-77.037891, 38.8624], + [-77.037895, 38.862435], + [-77.037898, 38.862455], + [-77.037901, 38.862473], + [-77.037905, 38.862505], + [-77.037908, 38.862523], + [-77.03791, 38.862543], + [-77.037917, 38.862576], + [-77.037922, 38.862611], + [-77.03793, 38.862645], + [-77.037937, 38.862675], + [-77.037946, 38.86271], + [-77.037954, 38.862742], + [-77.037962, 38.862771], + [-77.037966, 38.862806], + [-77.037966, 38.862836], + [-77.037969, 38.862865], + [-77.037973, 38.862898], + [-77.037978, 38.862928], + [-77.037984, 38.862957], + [-77.037993, 38.862988], + [-77.037998, 38.863015], + [-77.038002, 38.863043], + [-77.038006, 38.863078], + [-77.038005, 38.863106], + [-77.038002, 38.863135], + [-77.038, 38.863167], + [-77.038003, 38.863195], + [-77.03801, 38.863222], + [-77.038023, 38.863247], + [-77.038042, 38.863265], + [-77.038062, 38.863283], + [-77.038084, 38.863301], + [-77.038111, 38.86331], + [-77.038133, 38.863318], + [-77.038149, 38.863337], + [-77.038166, 38.86335], + [-77.038185, 38.863362], + [-77.038209, 38.86337], + [-77.038238, 38.863376], + [-77.038273, 38.86338], + [-77.038309, 38.863383], + [-77.038344, 38.863383], + [-77.038382, 38.863379], + [-77.038422, 38.863376], + [-77.03846, 38.863372], + [-77.038491, 38.863367], + [-77.038522, 38.863363], + [-77.038557, 38.863359], + [-77.038586, 38.863357], + [-77.038615, 38.863363], + [-77.038641, 38.863364], + [-77.038674, 38.863361], + [-77.038703, 38.863358], + [-77.038738, 38.863353], + [-77.038768, 38.863347], + [-77.038806, 38.863346], + [-77.038849, 38.863346], + [-77.038873, 38.863345], + [-77.038918, 38.863345], + [-77.038956, 38.863346], + [-77.038986, 38.863343], + [-77.039031, 38.863341], + [-77.039078, 38.863339], + [-77.039108, 38.863339], + [-77.03914, 38.863337], + [-77.039168, 38.863337], + [-77.039193, 38.863336], + [-77.039225, 38.863334], + [-77.03926, 38.863332], + [-77.039287, 38.863331], + [-77.039313, 38.863328], + [-77.039379, 38.863324], + [-77.039405, 38.863322], + [-77.039431, 38.863321], + [-77.039464, 38.863319], + [-77.039492, 38.863317], + [-77.039532, 38.863313], + [-77.039574, 38.863301], + [-77.039596, 38.863295], + [-77.039633, 38.863282], + [-77.039669, 38.863271], + [-77.039706, 38.86326], + [-77.03974, 38.863249], + [-77.039769, 38.863237], + [-77.039794, 38.863227], + [-77.039807, 38.863208], + [-77.039811, 38.863177], + [-77.039811, 38.86311], + [-77.03981, 38.863092], + [-77.039811, 38.863065], + [-77.03981, 38.863042], + [-77.039812, 38.863005], + [-77.039814, 38.862984], + [-77.039814, 38.862964], + [-77.039815, 38.862944], + [-77.039816, 38.862923], + [-77.039817, 38.8629], + [-77.039818, 38.86288], + [-77.039818, 38.862828], + [-77.039821, 38.862803], + [-77.039823, 38.862785], + [-77.03983, 38.862755], + [-77.039844, 38.862724], + [-77.03986, 38.862698], + [-77.039884, 38.86267], + [-77.039912, 38.862643], + [-77.039936, 38.862616], + [-77.039964, 38.862593], + [-77.039981, 38.86258], + [-77.039997, 38.862567], + [-77.040029, 38.862543], + [-77.040062, 38.862521], + [-77.040095, 38.862504], + [-77.04012, 38.862484], + [-77.040142, 38.862464], + [-77.040169, 38.862445], + [-77.040202, 38.862428], + [-77.040233, 38.862414], + [-77.040261, 38.862405], + [-77.04029, 38.862396], + [-77.040314, 38.862386], + [-77.040337, 38.862383], + [-77.040372, 38.862383], + [-77.040404, 38.862393], + [-77.040443, 38.862409], + [-77.04048, 38.862429], + [-77.0405, 38.862439], + [-77.04054, 38.862456], + [-77.040561, 38.862466], + [-77.040583, 38.862475], + [-77.040604, 38.862484], + [-77.040626, 38.862494], + [-77.040647, 38.862504], + [-77.040667, 38.862515], + [-77.040688, 38.862525], + [-77.040725, 38.862545], + [-77.040745, 38.862555], + [-77.040766, 38.862567], + [-77.040788, 38.862579], + [-77.040808, 38.862592], + [-77.040842, 38.862614], + [-77.040878, 38.862633], + [-77.040912, 38.862657], + [-77.040927, 38.862671], + [-77.040954, 38.862695], + [-77.040979, 38.862716], + [-77.041008, 38.86274], + [-77.041038, 38.862761], + [-77.04106, 38.862779], + [-77.04108, 38.862796], + [-77.04111, 38.862819], + [-77.04114, 38.862838], + [-77.041166, 38.862852], + [-77.041196, 38.862862], + [-77.041222, 38.862869], + [-77.041247, 38.86288], + [-77.041267, 38.862897], + [-77.041284, 38.862914], + [-77.041305, 38.862938], + [-77.041326, 38.86296], + [-77.041342, 38.862974], + [-77.041427, 38.863036], + [-77.041455, 38.863059], + [-77.041471, 38.863074], + [-77.041489, 38.863087], + [-77.041523, 38.863113], + [-77.041539, 38.863126], + [-77.041569, 38.863152], + [-77.0416, 38.863174], + [-77.041633, 38.863195], + [-77.041667, 38.863215], + [-77.041686, 38.863226], + [-77.041727, 38.863244], + [-77.041768, 38.863258], + [-77.041803, 38.863274], + [-77.041842, 38.86329], + [-77.041881, 38.8633], + [-77.041922, 38.86331], + [-77.041962, 38.86332], + [-77.041997, 38.863331], + [-77.042065, 38.863365], + [-77.0421, 38.863378], + [-77.042133, 38.863388], + [-77.042164, 38.863402], + [-77.042197, 38.863416], + [-77.042233, 38.863425], + [-77.04227, 38.863436], + [-77.042308, 38.863447], + [-77.042348, 38.863454], + [-77.042393, 38.86346], + [-77.042433, 38.863465], + [-77.04247, 38.863468], + [-77.042502, 38.863465], + [-77.042524, 38.863454], + [-77.042545, 38.863441], + [-77.042566, 38.863426], + [-77.04258, 38.863407], + [-77.04259, 38.863386], + [-77.042597, 38.863366], + [-77.042607, 38.863348], + [-77.04266, 38.863315], + [-77.042765, 38.86338], + [-77.042738, 38.863433], + [-77.042721, 38.863446], + [-77.042703, 38.863473], + [-77.042677, 38.863493], + [-77.04265, 38.863512], + [-77.042635, 38.863532], + [-77.042636, 38.863555], + [-77.042652, 38.863568], + [-77.042454, 38.863953], + [-77.042531, 38.863709], + [-77.042507, 38.863692], + [-77.042477, 38.863691], + [-77.042436, 38.863694], + [-77.042397, 38.863697], + [-77.042366, 38.863706], + [-77.042338, 38.863719], + [-77.042308, 38.863728], + [-77.042276, 38.863732], + [-77.042242, 38.863735], + [-77.042219, 38.863749], + [-77.042186, 38.863762], + [-77.042138, 38.863769], + [-77.042114, 38.863768], + [-77.042071, 38.863761], + [-77.042032, 38.863753], + [-77.041995, 38.863744], + [-77.041964, 38.863734], + [-77.041935, 38.86372], + [-77.041902, 38.863708], + [-77.041865, 38.863706], + [-77.04183, 38.863695], + [-77.041804, 38.86369], + [-77.041777, 38.863685], + [-77.041749, 38.863682], + [-77.041721, 38.86368], + [-77.041695, 38.863677], + [-77.041671, 38.863675], + [-77.041629, 38.863677], + [-77.04159, 38.863681], + [-77.04155, 38.863686], + [-77.041509, 38.863683], + [-77.041464, 38.863683], + [-77.041422, 38.863688], + [-77.041387, 38.863695], + [-77.041353, 38.863697], + [-77.041321, 38.86369], + [-77.041298, 38.863699], + [-77.041289, 38.863716], + [-77.041227, 38.863744], + [-77.041198, 38.863743], + [-77.041167, 38.863744], + [-77.041137, 38.863743], + [-77.041101, 38.863743], + [-77.041069, 38.863744], + [-77.040996, 38.863744], + [-77.040976, 38.863683], + [-77.040934, 38.863658], + [-77.040898, 38.863663], + [-77.040865, 38.863672], + [-77.04083, 38.86367], + [-77.040789, 38.863668], + [-77.040763, 38.863672], + [-77.040735, 38.863676], + [-77.040706, 38.86368], + [-77.040677, 38.863685], + [-77.040619, 38.863691], + [-77.040591, 38.863694], + [-77.040535, 38.863698], + [-77.040479, 38.8637], + [-77.040449, 38.863702], + [-77.040418, 38.863704], + [-77.040388, 38.863709], + [-77.040359, 38.863713], + [-77.040333, 38.863717], + [-77.040238, 38.863734], + [-77.040216, 38.86374], + [-77.04018, 38.863758], + [-77.040139, 38.86377], + [-77.040114, 38.863774], + [-77.040088, 38.863779], + [-77.040064, 38.863783], + [-77.04004, 38.863788], + [-77.039972, 38.863801], + [-77.039931, 38.86381], + [-77.039891, 38.863818], + [-77.039854, 38.863827], + [-77.039814, 38.863837], + [-77.039775, 38.863849], + [-77.039745, 38.863858], + [-77.039688, 38.863877], + [-77.039646, 38.86388], + [-77.039621, 38.863879], + [-77.039575, 38.86388], + [-77.039551, 38.863882], + [-77.039507, 38.86389], + [-77.039467, 38.863898], + [-77.039423, 38.863897], + [-77.039396, 38.863895], + [-77.039372, 38.863896], + [-77.039347, 38.863898], + [-77.039322, 38.863901], + [-77.039296, 38.863903], + [-77.039272, 38.863905], + [-77.039249, 38.863907], + [-77.039221, 38.86391], + [-77.039195, 38.863912], + [-77.039166, 38.863914], + [-77.039091, 38.86392], + [-77.039067, 38.863919], + [-77.039042, 38.86392], + [-77.038971, 38.863924], + [-77.038928, 38.863927], + [-77.038886, 38.863932], + [-77.038841, 38.863943], + [-77.038772, 38.863952], + [-77.038748, 38.863955], + [-77.038722, 38.863959], + [-77.0387, 38.863965], + [-77.038678, 38.863972], + [-77.038656, 38.863978], + [-77.038618, 38.863993], + [-77.038583, 38.864008], + [-77.038541, 38.864008], + [-77.038499, 38.864002], + [-77.038457, 38.864005], + [-77.038414, 38.864015], + [-77.03837, 38.86402], + [-77.038323, 38.864021], + [-77.038276, 38.864029], + [-77.038254, 38.864036], + [-77.038212, 38.864055], + [-77.038132, 38.864095], + [-77.038112, 38.864107], + [-77.038096, 38.86412], + [-77.038073, 38.864146], + [-77.038045, 38.864171], + [-77.038011, 38.864199], + [-77.037993, 38.864213], + [-77.037964, 38.864243], + [-77.037949, 38.864259], + [-77.037937, 38.864275], + [-77.037926, 38.864292], + [-77.037908, 38.86433], + [-77.037899, 38.864347], + [-77.037892, 38.864365], + [-77.037886, 38.864383], + [-77.037881, 38.864403], + [-77.037874, 38.864421], + [-77.037862, 38.864455], + [-77.037847, 38.864488], + [-77.037834, 38.86452], + [-77.037823, 38.864552], + [-77.037814, 38.864569], + [-77.037805, 38.864587], + [-77.037798, 38.864605], + [-77.03779, 38.864622], + [-77.037778, 38.864652], + [-77.037765, 38.864695], + [-77.037757, 38.864726], + [-77.037748, 38.864757], + [-77.037741, 38.864789], + [-77.037737, 38.864836], + [-77.037736, 38.864858], + [-77.037736, 38.86488], + [-77.037735, 38.864903], + [-77.037737, 38.864927], + [-77.03774, 38.864952], + [-77.037744, 38.864973], + [-77.03774, 38.865031], + [-77.037736, 38.865053], + [-77.037736, 38.865074], + [-77.037737, 38.865095], + [-77.037737, 38.865114], + [-77.037739, 38.865155], + [-77.037742, 38.865192], + [-77.037746, 38.865229], + [-77.03775, 38.865265], + [-77.03776, 38.865339], + [-77.037766, 38.865376], + [-77.03777, 38.865404], + [-77.037774, 38.865431], + [-77.037779, 38.865458], + [-77.037785, 38.865512], + [-77.037787, 38.865546], + [-77.037787, 38.865575], + [-77.037788, 38.865604], + [-77.037799, 38.865659], + [-77.037813, 38.865684], + [-77.037832, 38.865716], + [-77.037839, 38.865745], + [-77.03784, 38.865775], + [-77.037839, 38.865805], + [-77.037839, 38.865836], + [-77.037843, 38.865866], + [-77.037849, 38.865899], + [-77.037857, 38.865937], + [-77.037861, 38.865957], + [-77.037864, 38.865976], + [-77.037868, 38.865995], + [-77.037875, 38.866038], + [-77.037879, 38.86609], + [-77.037881, 38.866142], + [-77.037886, 38.866186], + [-77.037892, 38.866223], + [-77.0379, 38.86626], + [-77.037927, 38.866371], + [-77.037934, 38.866408], + [-77.037945, 38.866456], + [-77.037955, 38.866488], + [-77.037966, 38.866521], + [-77.037977, 38.866553], + [-77.037987, 38.866585], + [-77.037993, 38.866618], + [-77.038, 38.866672], + [-77.038009, 38.866701], + [-77.038019, 38.866729], + [-77.038031, 38.866757], + [-77.038043, 38.866784], + [-77.038054, 38.866812], + [-77.038069, 38.866847], + [-77.038085, 38.866881], + [-77.038102, 38.866915], + [-77.038117, 38.866949], + [-77.038129, 38.866983], + [-77.038137, 38.867018], + [-77.038142, 38.867051], + [-77.038149, 38.867075], + [-77.038157, 38.867099], + [-77.038177, 38.867147], + [-77.038187, 38.86717], + [-77.038204, 38.867207], + [-77.03823, 38.867255], + [-77.038241, 38.86728], + [-77.038251, 38.867304], + [-77.038258, 38.86733], + [-77.038264, 38.867359], + [-77.038269, 38.867382], + [-77.038276, 38.867405], + [-77.038284, 38.867427], + [-77.038293, 38.86745], + [-77.038339, 38.867535], + [-77.038351, 38.867559], + [-77.038364, 38.867583], + [-77.038387, 38.867633], + [-77.038413, 38.867684], + [-77.038434, 38.867718], + [-77.038457, 38.867752], + [-77.038479, 38.867785], + [-77.038498, 38.86782], + [-77.038512, 38.867856], + [-77.038529, 38.867904], + [-77.038545, 38.867937], + [-77.038563, 38.867969], + [-77.03858, 38.868002], + [-77.038593, 38.868035], + [-77.038601, 38.868069], + [-77.038608, 38.868107], + [-77.038618, 38.868132], + [-77.038631, 38.868156], + [-77.038644, 38.868181], + [-77.038654, 38.868205], + [-77.038661, 38.868231], + [-77.03867, 38.868271], + [-77.038686, 38.868296], + [-77.038722, 38.868346], + [-77.038737, 38.868372], + [-77.038744, 38.868399], + [-77.038752, 38.868438], + [-77.038767, 38.868469], + [-77.038787, 38.868499], + [-77.03881, 38.868529], + [-77.038832, 38.868559], + [-77.038852, 38.86859], + [-77.038875, 38.868628], + [-77.038899, 38.868667], + [-77.038922, 38.868705], + [-77.038945, 38.868744], + [-77.038966, 38.868783], + [-77.038986, 38.868823], + [-77.03901, 38.868876], + [-77.039027, 38.868912], + [-77.039046, 38.868948], + [-77.039064, 38.868983], + [-77.039083, 38.869019], + [-77.039102, 38.869054], + [-77.039116, 38.869079], + [-77.039132, 38.869104], + [-77.039147, 38.869129], + [-77.039161, 38.869154], + [-77.039174, 38.86918], + [-77.039185, 38.869206], + [-77.039197, 38.869239], + [-77.03923, 38.869305], + [-77.039242, 38.869327], + [-77.039253, 38.869348], + [-77.039316, 38.86947], + [-77.039332, 38.869496], + [-77.039378, 38.869579], + [-77.039393, 38.869603], + [-77.039409, 38.869625], + [-77.039425, 38.869646], + [-77.039438, 38.869668], + [-77.039442, 38.869687], + [-77.039466, 38.86974], + [-77.039483, 38.869762], + [-77.039498, 38.869784], + [-77.03951, 38.869805], + [-77.03952, 38.869824], + [-77.039529, 38.869844], + [-77.03954, 38.869865], + [-77.039552, 38.869886], + [-77.039564, 38.869908], + [-77.039576, 38.869928], + [-77.039589, 38.869945], + [-77.039605, 38.869962], + [-77.039622, 38.869981], + [-77.039638, 38.870001], + [-77.039654, 38.870023], + [-77.039667, 38.870044], + [-77.039679, 38.870062], + [-77.039692, 38.87008], + [-77.039705, 38.870097], + [-77.039717, 38.870115], + [-77.03973, 38.870135], + [-77.039746, 38.870155], + [-77.039761, 38.870176], + [-77.039776, 38.870198], + [-77.039841, 38.870323], + [-77.039855, 38.870342], + [-77.039867, 38.870364], + [-77.03988, 38.870392], + [-77.039891, 38.870419], + [-77.039903, 38.870445], + [-77.03992, 38.870469], + [-77.039935, 38.870496], + [-77.039952, 38.870524], + [-77.039973, 38.870548], + [-77.039993, 38.870569], + [-77.040012, 38.870589], + [-77.040032, 38.87061], + [-77.040053, 38.870635], + [-77.04007, 38.870662], + [-77.040083, 38.870684], + [-77.040098, 38.870709], + [-77.040107, 38.870729], + [-77.040122, 38.870752], + [-77.040137, 38.870778], + [-77.040173, 38.870832], + [-77.04019, 38.87086], + [-77.040209, 38.870888], + [-77.040229, 38.870916], + [-77.040253, 38.870937], + [-77.040276, 38.870956], + [-77.040298, 38.870975], + [-77.040322, 38.870992], + [-77.040346, 38.871012], + [-77.040366, 38.871036], + [-77.040381, 38.871064], + [-77.040398, 38.87109], + [-77.040414, 38.871115], + [-77.040431, 38.871141], + [-77.040447, 38.87117], + [-77.040468, 38.871198], + [-77.040489, 38.871223], + [-77.040509, 38.871248], + [-77.040533, 38.871271], + [-77.040562, 38.871293], + [-77.040589, 38.871315], + [-77.040609, 38.871339], + [-77.040645, 38.871395], + [-77.040665, 38.871422], + [-77.040686, 38.871449], + [-77.040708, 38.871472], + [-77.040731, 38.871495], + [-77.040754, 38.871519], + [-77.04078, 38.871542], + [-77.040807, 38.871564], + [-77.040837, 38.871585], + [-77.040868, 38.871607], + [-77.040895, 38.87163], + [-77.040916, 38.871654], + [-77.040936, 38.871678], + [-77.040961, 38.871699], + [-77.04098, 38.871715], + [-77.041013, 38.871753], + [-77.041042, 38.871787], + [-77.041065, 38.871816], + [-77.041105, 38.87186], + [-77.041183, 38.871952], + [-77.041256, 38.87204], + [-77.041292, 38.872081], + [-77.041332, 38.872127], + [-77.041408, 38.872217], + [-77.041431, 38.872243], + [-77.041444, 38.872258], + [-77.041476, 38.872295], + [-77.041527, 38.872354], + [-77.041565, 38.872399], + [-77.041639, 38.872485], + [-77.041673, 38.872538], + [-77.041674, 38.872541], + [-77.041712, 38.87258], + [-77.041764, 38.872617], + [-77.041821, 38.872652], + [-77.041879, 38.872686], + [-77.041931, 38.872723], + [-77.041983, 38.872757], + [-77.042041, 38.872791], + [-77.042098, 38.872825], + [-77.042149, 38.872859], + [-77.042169, 38.87288], + [-77.042188, 38.872899], + [-77.042207, 38.872946], + [-77.042214, 38.872965], + [-77.042284, 38.873059], + [-77.042337, 38.873126], + [-77.042393, 38.873182], + [-77.042489, 38.873261], + [-77.042577, 38.873337], + [-77.042657, 38.873416], + [-77.042692, 38.873452], + [-77.04273, 38.873489], + [-77.042765, 38.873525], + [-77.042802, 38.873562], + [-77.042836, 38.873601], + [-77.042866, 38.873638], + [-77.042917, 38.873692], + [-77.042967, 38.873748], + [-77.043016, 38.873802], + [-77.043067, 38.873852], + [-77.043119, 38.873905], + [-77.04317, 38.873955], + [-77.043276, 38.874061], + [-77.043336, 38.874118], + [-77.043396, 38.874167], + [-77.043504, 38.874245], + [-77.043869, 38.874285], + [-77.043937, 38.87433], + [-77.043992, 38.87437], + [-77.044052, 38.874414], + [-77.04411, 38.874459], + [-77.04417, 38.874503], + [-77.044229, 38.874547], + [-77.044289, 38.874591], + [-77.04435, 38.874634], + [-77.044405, 38.874673], + [-77.044462, 38.874713], + [-77.044517, 38.874752], + [-77.044573, 38.874791], + [-77.044631, 38.874829], + [-77.044687, 38.874869], + [-77.044724, 38.874896], + [-77.044763, 38.874922], + [-77.044837, 38.874974], + [-77.044874, 38.875002], + [-77.044912, 38.875028], + [-77.044961, 38.875067], + [-77.045009, 38.875106], + [-77.045058, 38.875144], + [-77.045106, 38.875184], + [-77.045154, 38.875223], + [-77.045203, 38.875261], + [-77.045237, 38.875285], + [-77.045272, 38.875309], + [-77.045307, 38.875332], + [-77.045341, 38.875356], + [-77.045376, 38.87538], + [-77.045406, 38.875408], + [-77.045422, 38.875423], + [-77.045441, 38.875439], + [-77.045476, 38.875462], + [-77.045513, 38.875482], + [-77.045554, 38.875504], + [-77.045577, 38.875513], + [-77.045601, 38.875523], + [-77.045625, 38.875532], + [-77.045646, 38.875545], + [-77.045665, 38.875558], + [-77.045693, 38.875578], + [-77.045736, 38.87559], + [-77.045761, 38.875594], + [-77.045784, 38.875598], + [-77.045809, 38.875604], + [-77.045839, 38.875615], + [-77.045871, 38.875621], + [-77.045903, 38.875624], + [-77.045971, 38.875624], + [-77.046007, 38.875625], + [-77.046044, 38.875625], + [-77.046084, 38.875622], + [-77.046125, 38.875618], + [-77.046165, 38.875613], + [-77.046203, 38.875608], + [-77.046241, 38.875602], + [-77.046278, 38.875595], + [-77.046301, 38.875588], + [-77.046332, 38.875575], + [-77.046358, 38.875564], + [-77.046383, 38.875555], + [-77.046405, 38.875547], + [-77.046436, 38.875535], + [-77.04646, 38.875522], + [-77.046483, 38.875509], + [-77.046505, 38.875498], + [-77.046538, 38.875483], + [-77.046596, 38.875455], + [-77.046628, 38.87544], + [-77.046664, 38.875423], + [-77.046699, 38.875406], + [-77.046745, 38.875385], + [-77.046773, 38.875373], + [-77.046803, 38.87536], + [-77.046831, 38.875347], + [-77.046919, 38.875292], + [-77.047002, 38.875239], + [-77.047059, 38.875184], + [-77.047075, 38.875165], + [-77.047107, 38.875142], + [-77.047137, 38.875117], + [-77.04715, 38.875101], + [-77.047161, 38.875081], + [-77.047173, 38.875061], + [-77.047199, 38.875027], + [-77.04721, 38.875007], + [-77.047216, 38.874988], + [-77.047221, 38.874966], + [-77.047226, 38.87493], + [-77.047226, 38.874907], + [-77.047225, 38.874884], + [-77.047221, 38.874865], + [-77.047215, 38.874844], + [-77.0472, 38.874807], + [-77.047191, 38.874786], + [-77.047183, 38.874766], + [-77.047174, 38.874744], + [-77.047165, 38.874727], + [-77.047159, 38.874708], + [-77.047153, 38.874691], + [-77.047145, 38.874669], + [-77.047135, 38.87465], + [-77.047122, 38.874626], + [-77.047078, 38.874565], + [-77.047064, 38.87455], + [-77.047051, 38.874535], + [-77.047029, 38.874518], + [-77.046991, 38.874493], + [-77.046974, 38.87448], + [-77.046955, 38.874468], + [-77.046937, 38.874453], + [-77.046919, 38.874436], + [-77.046905, 38.874419], + [-77.04689, 38.874402], + [-77.046876, 38.874386], + [-77.046848, 38.874356], + [-77.046831, 38.874337], + [-77.046813, 38.874319], + [-77.046796, 38.874303], + [-77.046779, 38.874286], + [-77.046762, 38.87427], + [-77.046744, 38.874252], + [-77.046728, 38.874235], + [-77.046712, 38.87422], + [-77.046693, 38.874203], + [-77.046676, 38.874188], + [-77.046643, 38.874149], + [-77.046613, 38.874113], + [-77.046596, 38.874096], + [-77.046581, 38.87408], + [-77.046567, 38.874065], + [-77.046551, 38.87405], + [-77.046481, 38.874035], + [-77.046457, 38.874031], + [-77.046433, 38.874024], + [-77.046412, 38.874012], + [-77.046402, 38.873994], + [-77.046396, 38.873974], + [-77.046394, 38.873953], + [-77.046393, 38.873932], + [-77.046391, 38.873911], + [-77.046389, 38.873886], + [-77.046388, 38.873865], + [-77.046385, 38.873827], + [-77.046383, 38.873804], + [-77.046382, 38.873739], + [-77.046385, 38.87372], + [-77.046387, 38.873702], + [-77.046389, 38.87368], + [-77.046392, 38.873661], + [-77.046402, 38.873623], + [-77.04641, 38.873601], + [-77.046419, 38.873579], + [-77.046427, 38.873558], + [-77.046434, 38.873539], + [-77.046442, 38.873517], + [-77.04645, 38.8735], + [-77.046459, 38.873479], + [-77.046486, 38.873417], + [-77.046494, 38.873398], + [-77.046505, 38.873377], + [-77.046513, 38.873358], + [-77.046519, 38.873339], + [-77.046525, 38.873316], + [-77.04653, 38.873296], + [-77.046533, 38.873277], + [-77.046537, 38.873258], + [-77.046542, 38.87324], + [-77.046546, 38.873221], + [-77.046548, 38.873203], + [-77.046549, 38.873185], + [-77.046549, 38.873164], + [-77.046546, 38.873096], + [-77.046542, 38.873054], + [-77.046534, 38.873018], + [-77.046527, 38.872994], + [-77.046519, 38.872971], + [-77.046512, 38.872953], + [-77.046504, 38.872935], + [-77.046494, 38.872917], + [-77.046484, 38.8729], + [-77.046472, 38.872879], + [-77.046459, 38.872859], + [-77.046448, 38.872842], + [-77.046438, 38.872824], + [-77.046428, 38.872803], + [-77.04642, 38.872784], + [-77.046411, 38.872764], + [-77.046403, 38.872743], + [-77.046395, 38.872726], + [-77.046372, 38.872689], + [-77.046361, 38.872673], + [-77.046348, 38.872654], + [-77.046336, 38.872633], + [-77.046324, 38.872614], + [-77.046312, 38.872593], + [-77.046301, 38.872572], + [-77.04629, 38.872554], + [-77.046279, 38.872535], + [-77.046268, 38.872518], + [-77.046258, 38.8725], + [-77.046249, 38.872481], + [-77.046242, 38.872463], + [-77.046251, 38.872368], + [-77.046264, 38.872349], + [-77.046278, 38.872329], + [-77.046302, 38.872297], + [-77.046316, 38.872279], + [-77.046331, 38.87226], + [-77.046344, 38.872244], + [-77.04636, 38.872225], + [-77.046373, 38.872209], + [-77.046403, 38.872175], + [-77.046419, 38.87216], + [-77.046438, 38.872145], + [-77.046459, 38.872129], + [-77.046478, 38.872111], + [-77.046492, 38.872096], + [-77.046504, 38.872081], + [-77.046519, 38.872065], + [-77.046537, 38.872049], + [-77.046554, 38.872035], + [-77.046575, 38.87202], + [-77.046594, 38.872007], + [-77.046618, 38.871993], + [-77.046657, 38.871963], + [-77.046718, 38.871918], + [-77.046754, 38.871894], + [-77.046809, 38.871862], + [-77.04683, 38.871853], + [-77.046854, 38.871845], + [-77.04688, 38.871838], + [-77.046906, 38.871832], + [-77.046928, 38.871827], + [-77.04695, 38.87182], + [-77.046975, 38.871813], + [-77.047001, 38.871806], + [-77.047028, 38.871801], + [-77.047052, 38.871799], + [-77.047078, 38.871797], + [-77.047106, 38.871793], + [-77.047133, 38.871788], + [-77.047157, 38.871782], + [-77.047183, 38.871777], + [-77.047213, 38.871771], + [-77.047244, 38.871765], + [-77.047272, 38.87176], + [-77.047362, 38.871744], + [-77.047391, 38.871741], + [-77.047418, 38.871738], + [-77.047449, 38.871734], + [-77.047482, 38.871727], + [-77.04751, 38.871721], + [-77.047537, 38.871714], + [-77.047566, 38.871707], + [-77.047597, 38.8717], + [-77.047624, 38.871695], + [-77.047651, 38.871689], + [-77.047683, 38.871683], + [-77.047716, 38.871679], + [-77.047772, 38.871672], + [-77.047805, 38.871668], + [-77.047834, 38.871663], + [-77.047859, 38.871659], + [-77.047885, 38.871654], + [-77.047921, 38.871647], + [-77.047963, 38.871637], + [-77.047986, 38.87163], + [-77.048076, 38.8716], + [-77.048119, 38.871591], + [-77.048144, 38.871587], + [-77.048166, 38.871584], + [-77.048217, 38.871575], + [-77.048285, 38.871561], + [-77.048324, 38.871553], + [-77.048364, 38.871543], + [-77.048424, 38.871527], + [-77.048464, 38.871514], + [-77.048501, 38.871499], + [-77.048537, 38.871489], + [-77.048567, 38.871485], + [-77.048636, 38.871467], + [-77.048672, 38.871457], + [-77.048705, 38.871449], + [-77.048734, 38.871441], + [-77.048759, 38.871434], + [-77.04879, 38.871424], + [-77.048816, 38.871413], + [-77.048837, 38.871401], + [-77.048917, 38.871362], + [-77.048935, 38.871348], + [-77.048977, 38.871367], + [-77.049031, 38.871354], + [-77.049055, 38.871348], + [-77.049084, 38.871343], + [-77.049122, 38.871333], + [-77.049156, 38.871322], + [-77.049185, 38.87132], + [-77.049215, 38.871319], + [-77.049249, 38.871318], + [-77.049283, 38.871322], + [-77.049345, 38.871332], + [-77.049389, 38.871339], + [-77.049435, 38.87135], + [-77.049461, 38.871357], + [-77.049486, 38.871363], + [-77.049509, 38.871372], + [-77.049531, 38.87138], + [-77.049554, 38.871389], + [-77.049579, 38.871399], + [-77.049601, 38.871408], + [-77.049643, 38.871428], + [-77.049666, 38.871436], + [-77.049693, 38.871445], + [-77.04974, 38.871465], + [-77.049763, 38.871475], + [-77.049787, 38.871485], + [-77.049813, 38.871494], + [-77.049835, 38.871504], + [-77.049856, 38.871514], + [-77.049877, 38.871525], + [-77.049897, 38.871535], + [-77.04992, 38.871545], + [-77.049943, 38.871554], + [-77.049965, 38.871563], + [-77.049986, 38.871573], + [-77.050024, 38.871595], + [-77.050046, 38.871607], + [-77.050067, 38.871617], + [-77.050089, 38.871627], + [-77.05011, 38.871637], + [-77.050132, 38.871646], + [-77.050157, 38.871655], + [-77.050234, 38.871703], + [-77.050256, 38.871715], + [-77.050277, 38.871727], + [-77.050315, 38.87176], + [-77.050331, 38.871775], + [-77.050359, 38.871801], + [-77.050375, 38.871815], + [-77.050406, 38.871842], + [-77.050451, 38.871887], + [-77.050463, 38.871904], + [-77.050481, 38.871922], + [-77.050501, 38.871941], + [-77.050538, 38.871974], + [-77.050554, 38.87199], + [-77.05057, 38.872009], + [-77.050586, 38.87203], + [-77.050604, 38.872051], + [-77.050619, 38.872068], + [-77.050706, 38.872183], + [-77.050786, 38.87235], + [-77.050805, 38.872387], + [-77.051037, 38.872736], + [-77.051222, 38.873026], + [-77.051411, 38.873325], + [-77.051424, 38.873362], + [-77.051451, 38.87337], + [-77.051492, 38.873448], + [-77.051506, 38.873472], + [-77.051521, 38.873502], + [-77.051531, 38.87353], + [-77.051568, 38.873589], + [-77.051604, 38.873674], + [-77.051628, 38.873747], + [-77.051638, 38.87379], + [-77.051645, 38.87381], + [-77.051661, 38.873852], + [-77.051669, 38.873875], + [-77.051677, 38.873895], + [-77.051684, 38.873914], + [-77.051687, 38.873933], + [-77.051688, 38.873952], + [-77.051688, 38.87397], + [-77.051691, 38.874003], + [-77.051691, 38.874027], + [-77.05169, 38.874049], + [-77.051691, 38.87407], + [-77.051693, 38.874091], + [-77.051696, 38.874117], + [-77.051696, 38.87414], + [-77.051695, 38.874162], + [-77.051694, 38.874186], + [-77.051694, 38.874213], + [-77.051693, 38.874237], + [-77.051694, 38.87426], + [-77.051696, 38.874285], + [-77.051697, 38.874313], + [-77.051695, 38.874359], + [-77.051693, 38.874386], + [-77.051694, 38.874411], + [-77.051701, 38.87448], + [-77.051702, 38.874504], + [-77.051706, 38.874548], + [-77.051708, 38.874575], + [-77.05171, 38.874598], + [-77.05171, 38.874619], + [-77.051709, 38.874642], + [-77.051707, 38.874668], + [-77.051704, 38.874691], + [-77.051702, 38.874712], + [-77.051699, 38.874736], + [-77.051695, 38.874763], + [-77.051692, 38.874787], + [-77.051688, 38.87481], + [-77.051685, 38.874837], + [-77.051681, 38.874865], + [-77.051677, 38.874889], + [-77.051674, 38.874915], + [-77.051671, 38.874944], + [-77.051668, 38.874969], + [-77.051664, 38.874993], + [-77.051659, 38.875019], + [-77.051654, 38.875046], + [-77.05165, 38.875067], + [-77.051647, 38.875087], + [-77.051645, 38.875109], + [-77.051641, 38.87513], + [-77.051634, 38.875149], + [-77.051627, 38.875167], + [-77.051615, 38.875215], + [-77.051612, 38.875233], + [-77.051608, 38.875269], + [-77.051604, 38.875288], + [-77.051557, 38.875303], + [-77.051555, 38.875321], + [-77.051554, 38.875339], + [-77.051552, 38.875358], + [-77.05155, 38.875378], + [-77.051548, 38.875396], + [-77.051545, 38.87543], + [-77.051543, 38.875451], + [-77.051541, 38.875476], + [-77.051538, 38.875505], + [-77.051535, 38.875535], + [-77.051531, 38.875579], + [-77.051567, 38.875625], + [-77.051543, 38.875668], + [-77.051533, 38.875699], + [-77.051526, 38.875733], + [-77.051519, 38.875768], + [-77.051514, 38.8758], + [-77.051508, 38.875826], + [-77.051501, 38.875851], + [-77.051496, 38.875875], + [-77.051491, 38.875896], + [-77.051485, 38.875914], + [-77.051476, 38.87594], + [-77.051469, 38.875969], + [-77.051459, 38.875996], + [-77.051445, 38.876022], + [-77.051432, 38.876047], + [-77.051427, 38.876071], + [-77.051425, 38.876094], + [-77.051422, 38.876115], + [-77.051422, 38.876137], + [-77.051423, 38.876161], + [-77.051427, 38.876187], + [-77.051431, 38.876216], + [-77.051436, 38.876245], + [-77.05144, 38.876273], + [-77.051444, 38.876299], + [-77.051448, 38.876324], + [-77.051454, 38.876348], + [-77.051465, 38.876371], + [-77.051474, 38.876394], + [-77.051481, 38.876416], + [-77.05149, 38.876439], + [-77.051499, 38.876464], + [-77.051507, 38.876492], + [-77.051515, 38.876521], + [-77.051523, 38.876548], + [-77.051533, 38.876572], + [-77.051545, 38.876595], + [-77.051561, 38.876617], + [-77.051578, 38.87664], + [-77.051594, 38.876663], + [-77.051607, 38.876686], + [-77.051621, 38.876708], + [-77.05164, 38.87673], + [-77.051656, 38.876754], + [-77.051668, 38.876775], + [-77.05168, 38.876797], + [-77.051693, 38.87682], + [-77.051706, 38.87684], + [-77.05172, 38.876856], + [-77.051733, 38.876877], + [-77.05175, 38.876904], + [-77.051768, 38.876927], + [-77.051791, 38.876947], + [-77.051815, 38.876964], + [-77.051841, 38.87698], + [-77.051864, 38.876998], + [-77.051906, 38.877034], + [-77.051927, 38.877056], + [-77.051949, 38.877078], + [-77.05197, 38.877098], + [-77.051988, 38.87712], + [-77.052005, 38.877147], + [-77.052029, 38.877176], + [-77.052056, 38.877203], + [-77.052082, 38.87723], + [-77.052105, 38.877259], + [-77.052125, 38.877292], + [-77.052148, 38.877324], + [-77.052172, 38.877354], + [-77.052196, 38.877381], + [-77.05222, 38.877406], + [-77.052242, 38.877432], + [-77.052265, 38.877459], + [-77.052286, 38.877485], + [-77.052309, 38.877512], + [-77.052363, 38.877564], + [-77.052388, 38.877593], + [-77.052411, 38.87762], + [-77.052431, 38.877648], + [-77.05245, 38.877674], + [-77.05247, 38.877701], + [-77.052492, 38.877724], + [-77.052516, 38.877746], + [-77.052536, 38.877769], + [-77.052554, 38.877794], + [-77.052572, 38.87782], + [-77.052592, 38.877846], + [-77.052612, 38.87787], + [-77.052634, 38.877895], + [-77.052656, 38.877918], + [-77.052677, 38.877941], + [-77.052698, 38.877965], + [-77.052719, 38.877988], + [-77.052743, 38.878014], + [-77.052772, 38.87804], + [-77.052804, 38.878064], + [-77.052835, 38.878089], + [-77.052864, 38.878116], + [-77.052892, 38.878144], + [-77.05292, 38.878171], + [-77.052947, 38.878197], + [-77.052973, 38.878223], + [-77.052999, 38.878248], + [-77.053026, 38.878272], + [-77.053056, 38.878297], + [-77.053091, 38.878321], + [-77.053121, 38.878346], + [-77.053147, 38.878371], + [-77.053174, 38.878396], + [-77.053196, 38.87842], + [-77.053216, 38.878443], + [-77.053175, 38.878525], + [-77.053245, 38.878554], + [-77.053302, 38.87858], + [-77.053337, 38.878606], + [-77.05335, 38.878623], + [-77.053364, 38.878641], + [-77.053378, 38.878664], + [-77.053394, 38.878692], + [-77.053411, 38.87872], + [-77.053429, 38.878746], + [-77.053463, 38.878798], + [-77.053478, 38.878821], + [-77.053493, 38.878845], + [-77.053507, 38.878868], + [-77.053518, 38.878892], + [-77.053524, 38.878917], + [-77.053531, 38.878942], + [-77.053538, 38.878963], + [-77.053541, 38.878992], + [-77.053542, 38.879014], + [-77.053578, 38.879017], + [-77.053609, 38.878996], + [-77.053619, 38.878979], + [-77.05363, 38.878962], + [-77.053638, 38.878934], + [-77.053638, 38.878875], + [-77.053637, 38.878856], + [-77.053654, 38.878836], + [-77.053691, 38.878834], + [-77.05371, 38.878845], + [-77.053732, 38.878863], + [-77.053753, 38.878884], + [-77.053768, 38.878909], + [-77.053778, 38.878933], + [-77.05378, 38.878953], + [-77.053776, 38.878972], + [-77.05376, 38.879004], + [-77.053739, 38.879029], + [-77.053715, 38.87903], + [-77.053696, 38.879047], + [-77.053682, 38.879073], + [-77.053665, 38.879097], + [-77.05366, 38.879115], + [-77.053664, 38.879134], + [-77.05368, 38.879152], + [-77.053702, 38.879185], + [-77.05371, 38.879202], + [-77.053718, 38.879229], + [-77.053731, 38.879244], + [-77.053751, 38.879266], + [-77.053766, 38.879285], + [-77.053791, 38.879317], + [-77.053826, 38.879355], + [-77.053864, 38.879405], + [-77.053901, 38.879456], + [-77.053915, 38.879471], + [-77.053939, 38.879499], + [-77.053964, 38.879531], + [-77.053993, 38.879561], + [-77.054025, 38.879593], + [-77.054053, 38.879624], + [-77.054082, 38.879656], + [-77.054114, 38.879689], + [-77.054143, 38.87972], + [-77.054175, 38.87975], + [-77.054205, 38.879777], + [-77.054242, 38.879805], + [-77.054281, 38.879833], + [-77.054318, 38.879865], + [-77.054357, 38.879892], + [-77.054395, 38.879921], + [-77.054455, 38.87996], + [-77.054504, 38.879993], + [-77.054527, 38.880008], + [-77.054573, 38.880039], + [-77.054609, 38.880061], + [-77.054674, 38.880094], + [-77.054715, 38.88012], + [-77.054759, 38.880142], + [-77.054802, 38.880163], + [-77.054844, 38.880182], + [-77.054888, 38.880198], + [-77.054936, 38.88021], + [-77.054981, 38.880223], + [-77.055025, 38.880235], + [-77.055072, 38.880249], + [-77.055123, 38.880261], + [-77.05515, 38.880267], + [-77.055214, 38.880282], + [-77.055255, 38.880292], + [-77.05529, 38.880297], + [-77.055314, 38.880301], + [-77.055341, 38.880293], + [-77.055331, 38.880273], + [-77.055314, 38.880251], + [-77.055285, 38.880223], + [-77.055332, 38.88023], + [-77.055359, 38.88024], + [-77.055384, 38.880253], + [-77.055411, 38.880267], + [-77.05547, 38.880257], + [-77.055502, 38.880283], + [-77.05552, 38.880299], + [-77.055583, 38.88035], + [-77.055652, 38.88034], + [-77.05571, 38.880332], + [-77.055733, 38.880329], + [-77.055776, 38.880367], + [-77.055818, 38.880375], + [-77.055863, 38.880381], + [-77.05591, 38.880386], + [-77.055939, 38.88039], + [-77.056001, 38.880396], + [-77.056032, 38.880397], + [-77.056076, 38.880399], + [-77.056129, 38.880402], + [-77.056179, 38.880404], + [-77.056228, 38.880406], + [-77.056282, 38.880407], + [-77.056334, 38.880406], + [-77.056406, 38.880433], + [-77.056459, 38.880397], + [-77.056497, 38.880371], + [-77.056554, 38.88039], + [-77.056602, 38.880385], + [-77.056658, 38.880379], + [-77.056709, 38.880376], + [-77.056771, 38.88037], + [-77.056805, 38.880366], + [-77.056828, 38.880363], + [-77.056876, 38.880358], + [-77.056954, 38.88035], + [-77.057049, 38.880335], + [-77.057154, 38.880322], + [-77.057221, 38.880313], + [-77.05731, 38.880301], + [-77.057411, 38.880288], + [-77.057473, 38.88028], + [-77.057517, 38.880273], + [-77.057587, 38.880267], + [-77.057636, 38.880264], + [-77.057668, 38.880262], + [-77.057733, 38.880261], + [-77.05779, 38.88026], + [-77.057844, 38.880261], + [-77.057909, 38.880265], + [-77.057933, 38.88027], + [-77.057997, 38.880286], + [-77.058064, 38.880307], + [-77.058145, 38.880332], + [-77.058202, 38.880352], + [-77.058263, 38.880372], + [-77.058317, 38.880388], + [-77.058352, 38.880397], + [-77.058409, 38.880411], + [-77.058519, 38.880438], + [-77.058599, 38.88046], + [-77.058641, 38.880472], + [-77.058683, 38.880486], + [-77.058711, 38.880501], + [-77.058733, 38.880522], + [-77.05876, 38.880547], + [-77.058783, 38.88057], + [-77.058801, 38.880587], + [-77.058843, 38.880628], + [-77.058863, 38.880649], + [-77.058893, 38.880677], + [-77.058913, 38.880697], + [-77.058936, 38.880719], + [-77.059015, 38.880798], + [-77.059047, 38.880828], + [-77.05908, 38.88086], + [-77.05911, 38.880891], + [-77.059143, 38.880922], + [-77.059202, 38.880993], + [-77.059238, 38.881068], + [-77.059248, 38.881087], + [-77.059262, 38.881109], + [-77.059277, 38.881133], + [-77.059291, 38.881155], + [-77.059307, 38.881181], + [-77.059324, 38.881208], + [-77.059341, 38.881236], + [-77.059361, 38.881271], + [-77.059427, 38.881358], + [-77.059448, 38.881387], + [-77.059485, 38.881446], + [-77.059514, 38.881495], + [-77.059531, 38.881524], + [-77.059554, 38.881562], + [-77.059574, 38.881595], + [-77.059606, 38.881629], + [-77.059642, 38.881666], + [-77.05967, 38.881704], + [-77.059685, 38.881727], + [-77.059701, 38.881751], + [-77.059714, 38.881777], + [-77.059723, 38.8818], + [-77.059732, 38.881822], + [-77.059742, 38.881841], + [-77.059763, 38.881873], + [-77.059783, 38.881893], + [-77.059799, 38.881915], + [-77.05982, 38.881948], + [-77.059833, 38.881972], + [-77.059859, 38.882018], + [-77.059877, 38.882049], + [-77.05989, 38.882076], + [-77.059898, 38.8821], + [-77.059913, 38.882123], + [-77.059935, 38.88215], + [-77.059949, 38.882174], + [-77.059962, 38.882198], + [-77.059976, 38.882219], + [-77.05999, 38.882244], + [-77.060011, 38.882286], + [-77.060019, 38.882306], + [-77.060026, 38.882332], + [-77.060034, 38.882355], + [-77.06005, 38.882394], + [-77.060066, 38.882425], + [-77.060081, 38.882456], + [-77.060097, 38.882484], + [-77.060115, 38.882513], + [-77.060132, 38.88254], + [-77.060149, 38.88257], + [-77.060169, 38.882605], + [-77.060188, 38.882635], + [-77.060206, 38.882669], + [-77.06024, 38.882726], + [-77.060258, 38.882756], + [-77.060276, 38.882784], + [-77.060287, 38.882805], + [-77.060307, 38.882842], + [-77.060342, 38.882912], + [-77.060356, 38.882937], + [-77.060368, 38.88296], + [-77.060401, 38.883007], + [-77.060417, 38.883032], + [-77.060428, 38.883052], + [-77.060456, 38.8831], + [-77.060471, 38.883131], + [-77.060488, 38.883165], + [-77.060501, 38.883192], + [-77.060515, 38.883229], + [-77.060525, 38.883247], + [-77.060537, 38.88327], + [-77.060554, 38.883297], + [-77.060587, 38.883337], + [-77.060609, 38.883366], + [-77.060636, 38.883401], + [-77.060657, 38.883431], + [-77.060675, 38.883465], + [-77.060692, 38.883504], + [-77.060709, 38.883541], + [-77.060728, 38.883576], + [-77.060749, 38.883615], + [-77.060766, 38.883653], + [-77.060774, 38.88367], + [-77.06079, 38.883705], + [-77.060803, 38.883733], + [-77.06081, 38.883751], + [-77.060835, 38.883805], + [-77.060849, 38.88383], + [-77.060862, 38.883849], + [-77.060878, 38.883868], + [-77.060892, 38.883885], + [-77.060911, 38.8839], + [-77.060936, 38.88391], + [-77.060964, 38.883918], + [-77.060991, 38.883924], + [-77.060904, 38.883926], + [-77.060877, 38.883931], + [-77.060873, 38.883949], + [-77.060875, 38.883977], + [-77.060899, 38.883989], + [-77.060907, 38.884011], + [-77.060943, 38.884029], + [-77.060977, 38.88404], + [-77.060987, 38.88406], + [-77.060999, 38.88408], + [-77.061029, 38.884117], + [-77.06105, 38.884148], + [-77.061067, 38.884172], + [-77.061096, 38.884209], + [-77.061119, 38.884239], + [-77.061146, 38.884272], + [-77.061168, 38.8843], + [-77.061189, 38.884325], + [-77.061221, 38.884359], + [-77.061246, 38.884387], + [-77.061274, 38.884427], + [-77.061313, 38.884488], + [-77.061345, 38.884536], + [-77.061363, 38.884571], + [-77.061376, 38.884608], + [-77.061392, 38.884642], + [-77.061409, 38.884674], + [-77.061427, 38.884706], + [-77.061446, 38.88474], + [-77.061467, 38.88477], + [-77.061484, 38.884786], + [-77.06151, 38.884812], + [-77.061536, 38.884832], + [-77.06156, 38.884849], + [-77.06158, 38.884868], + [-77.0616, 38.884891], + [-77.061622, 38.884926], + [-77.061648, 38.884971], + [-77.061734, 38.885085], + [-77.061807, 38.885186], + [-77.061816, 38.885203], + [-77.061845, 38.885245], + [-77.061865, 38.885274], + [-77.061876, 38.88529], + [-77.061895, 38.885321], + [-77.061906, 38.885337], + [-77.061919, 38.885358], + [-77.061941, 38.885389], + [-77.061959, 38.88542], + [-77.061993, 38.885469], + [-77.062009, 38.885495], + [-77.062026, 38.88552], + [-77.062047, 38.885553], + [-77.062066, 38.885582], + [-77.062097, 38.885627], + [-77.062119, 38.885663], + [-77.06214, 38.885694], + [-77.062156, 38.88572], + [-77.062177, 38.885751], + [-77.062197, 38.885782], + [-77.062213, 38.88581], + [-77.062232, 38.885834], + [-77.062257, 38.885877], + [-77.062274, 38.885902], + [-77.062295, 38.885933], + [-77.06231, 38.885958], + [-77.062329, 38.885988], + [-77.062344, 38.886011], + [-77.062356, 38.886034], + [-77.062377, 38.886065], + [-77.062395, 38.886093], + [-77.06241, 38.886118], + [-77.062436, 38.886157], + [-77.062453, 38.886184], + [-77.062467, 38.886212], + [-77.06248, 38.886229], + [-77.062503, 38.886272], + [-77.062524, 38.886306], + [-77.062542, 38.886336], + [-77.062558, 38.886364], + [-77.062568, 38.886379], + [-77.062594, 38.88642], + [-77.062615, 38.886453], + [-77.062633, 38.88648], + [-77.062648, 38.886501], + [-77.062663, 38.886525], + [-77.06269, 38.886563], + [-77.06271, 38.886595], + [-77.062742, 38.88664], + [-77.062757, 38.886662], + [-77.062776, 38.886692], + [-77.062786, 38.886712], + [-77.062799, 38.886733], + [-77.062809, 38.88675], + [-77.062831, 38.886786], + [-77.062852, 38.886814], + [-77.062863, 38.886831], + [-77.062889, 38.886869], + [-77.062904, 38.886891], + [-77.062919, 38.886919], + [-77.062934, 38.88694], + [-77.062948, 38.886962], + [-77.062959, 38.88698], + [-77.062972, 38.886997], + [-77.062985, 38.887013], + [-77.063, 38.887035], + [-77.063012, 38.887052], + [-77.063024, 38.887072], + [-77.063044, 38.887099], + [-77.063067, 38.887133], + [-77.063078, 38.887152], + [-77.063099, 38.88718], + [-77.063116, 38.887203], + [-77.063129, 38.887224], + [-77.063145, 38.887244], + [-77.063157, 38.887262], + [-77.063166, 38.887276], + [-77.063174, 38.887292], + [-77.06319, 38.887315], + [-77.06321, 38.887344], + [-77.063228, 38.887371], + [-77.063239, 38.887388], + [-77.063257, 38.887416], + [-77.063295, 38.887476], + [-77.063304, 38.887494], + [-77.06331, 38.887507], + [-77.063333, 38.887546], + [-77.063356, 38.887579], + [-77.063367, 38.887593], + [-77.063381, 38.887613], + [-77.063397, 38.887637], + [-77.063415, 38.887665], + [-77.063425, 38.88768], + [-77.063435, 38.887697], + [-77.063449, 38.887718], + [-77.063459, 38.887728], + [-77.063461, 38.887733], + [-77.063467, 38.887741], + [-77.063467, 38.887739], + [-77.063469, 38.887741], + [-77.063471, 38.887742], + [-77.063488, 38.88777], + [-77.063499, 38.887789], + [-77.063511, 38.887807], + [-77.063533, 38.887843], + [-77.063549, 38.887866], + [-77.06356, 38.887884], + [-77.063572, 38.887899], + [-77.063577, 38.887911], + [-77.063592, 38.88793], + [-77.063599, 38.887944], + [-77.06361, 38.887959], + [-77.063627, 38.887983], + [-77.063633, 38.887994], + [-77.063643, 38.888011], + [-77.06366, 38.888034], + [-77.063688, 38.888076], + [-77.063698, 38.888097], + [-77.063706, 38.888107], + [-77.063715, 38.888123], + [-77.063736, 38.888152], + [-77.063744, 38.888166], + [-77.063762, 38.888193], + [-77.063773, 38.888211], + [-77.063787, 38.888233], + [-77.063803, 38.888256], + [-77.06382, 38.888283], + [-77.063839, 38.888311], + [-77.063858, 38.888342], + [-77.063886, 38.888386], + [-77.063899, 38.888404], + [-77.063913, 38.888424], + [-77.063931, 38.888452], + [-77.063952, 38.888485], + [-77.063966, 38.888506], + [-77.063985, 38.888535], + [-77.064011, 38.888576], + [-77.064027, 38.888601], + [-77.064041, 38.888623], + [-77.064059, 38.88865], + [-77.064074, 38.888673], + [-77.064087, 38.888693], + [-77.064096, 38.888707], + [-77.064109, 38.888727], + [-77.064135, 38.888769], + [-77.064183, 38.888841], + [-77.064253, 38.888964], + [-77.064313, 38.889112], + [-77.064327, 38.889154], + [-77.064356, 38.889263], + [-77.064367, 38.889295], + [-77.064379, 38.889333], + [-77.064386, 38.889368], + [-77.064395, 38.889416], + [-77.064404, 38.88945], + [-77.064411, 38.889481], + [-77.064416, 38.88951], + [-77.06442, 38.889543], + [-77.064417, 38.889579], + [-77.064411, 38.889606], + [-77.064391, 38.889651], + [-77.06438, 38.889667], + [-77.064365, 38.889685], + [-77.064341, 38.88972], + [-77.06432, 38.889749], + [-77.064298, 38.889769], + [-77.064271, 38.889789], + [-77.064242, 38.889809], + [-77.064225, 38.889822], + [-77.064188, 38.889867], + [-77.064133, 38.889918], + [-77.064091, 38.889954], + [-77.064061, 38.889976], + [-77.064028, 38.889997], + [-77.064005, 38.890008], + [-77.063948, 38.890037], + [-77.063906, 38.890054], + [-77.063847, 38.890086], + [-77.063825, 38.890106], + [-77.063807, 38.890127], + [-77.06379, 38.890151], + [-77.06378, 38.890173], + [-77.063775, 38.890198], + [-77.063787, 38.890263], + [-77.063801, 38.890298], + [-77.063818, 38.890324], + [-77.063847, 38.890351], + [-77.063879, 38.890367], + [-77.06391, 38.890391], + [-77.063929, 38.890422], + [-77.063942, 38.890459], + [-77.063954, 38.890496], + [-77.063976, 38.890537], + [-77.063997, 38.890571], + [-77.064025, 38.89061], + [-77.064044, 38.890639], + [-77.064067, 38.890679], + [-77.064078, 38.890766], + [-77.06406, 38.890827], + [-77.064019, 38.890888], + [-77.064, 38.890911], + [-77.063992, 38.890952], + [-77.064012, 38.890998], + [-77.064039, 38.89102], + [-77.064068, 38.891034], + [-77.064105, 38.891051], + [-77.064142, 38.891081], + [-77.064161, 38.891101], + [-77.064185, 38.891129], + [-77.064204, 38.891163], + [-77.064225, 38.8912], + [-77.064248, 38.891243], + [-77.064277, 38.891305], + [-77.064291, 38.891343], + [-77.064304, 38.891379], + [-77.064326, 38.891415], + [-77.064345, 38.891421], + [-77.064394, 38.891421], + [-77.064419, 38.891422], + [-77.064437, 38.891431], + [-77.064456, 38.891457], + [-77.064465, 38.891478], + [-77.064474, 38.891496], + [-77.064491, 38.891517], + [-77.064532, 38.891555], + [-77.06454, 38.891565], + [-77.06455, 38.891585], + [-77.064557, 38.891598], + [-77.06457, 38.891623], + [-77.064591, 38.891652], + [-77.064603, 38.891669], + [-77.064645, 38.891723], + [-77.064698, 38.89186], + [-77.064705, 38.891892], + [-77.064702, 38.891903], + [-77.064694, 38.891931], + [-77.064691, 38.891946], + [-77.064692, 38.891962], + [-77.064693, 38.891977], + [-77.064694, 38.891986], + [-77.064695, 38.892023], + [-77.064694, 38.892043], + [-77.064696, 38.892059], + [-77.064701, 38.892084], + [-77.064707, 38.892108], + [-77.06471, 38.892122], + [-77.064714, 38.892148], + [-77.064729, 38.892235], + [-77.064747, 38.892264], + [-77.064749, 38.892293], + [-77.064735, 38.892329], + [-77.064704, 38.892364], + [-77.064698, 38.892384], + [-77.064722, 38.892487], + [-77.064758, 38.892592], + [-77.064775, 38.892615], + [-77.064796, 38.892631], + [-77.064817, 38.892652], + [-77.064829, 38.892673], + [-77.06484, 38.892697], + [-77.064844, 38.89272], + [-77.064837, 38.892757], + [-77.064841, 38.892788], + [-77.064857, 38.892837], + [-77.064863, 38.892859], + [-77.064872, 38.892884], + [-77.064911, 38.893003], + [-77.064954, 38.893115], + [-77.065002, 38.893261], + [-77.065017, 38.893303], + [-77.065033, 38.893339], + [-77.065051, 38.893382], + [-77.06507, 38.893419], + [-77.065088, 38.893455], + [-77.065104, 38.89349], + [-77.065114, 38.893513], + [-77.065126, 38.89354], + [-77.065135, 38.893565], + [-77.065159, 38.893613], + [-77.065181, 38.893645], + [-77.065201, 38.893675], + [-77.065231, 38.893737], + [-77.065249, 38.893761], + [-77.06527, 38.893783], + [-77.065286, 38.8938], + [-77.065308, 38.893817], + [-77.065335, 38.893852], + [-77.065344, 38.893876], + [-77.065362, 38.89391], + [-77.065382, 38.893941], + [-77.065399, 38.893973], + [-77.065468, 38.894061], + [-77.065518, 38.894146], + [-77.06557, 38.894234], + [-77.065616, 38.894308], + [-77.065702, 38.894467], + [-77.065793, 38.894547], + [-77.065817, 38.894562], + [-77.065856, 38.894568], + [-77.065891, 38.89456], + [-77.065917, 38.894545], + [-77.066007, 38.894538], + [-77.065991, 38.894609], + [-77.065954, 38.894636], + [-77.065935, 38.89465], + [-77.06591, 38.894671], + [-77.065889, 38.894698], + [-77.06588, 38.894726], + [-77.065907, 38.894841], + [-77.06595, 38.894895], + [-77.066027, 38.894996], + [-77.066108, 38.895112], + [-77.066175, 38.895229], + [-77.066198, 38.895269], + [-77.066215, 38.895299], + [-77.066233, 38.89533], + [-77.066263, 38.895384], + [-77.066278, 38.89541], + [-77.066292, 38.895438], + [-77.06631, 38.895476], + [-77.06632, 38.8955], + [-77.066332, 38.895525], + [-77.066343, 38.895548], + [-77.066349, 38.895568], + [-77.066357, 38.895585], + [-77.06637, 38.895639], + [-77.066376, 38.895658], + [-77.066384, 38.895681], + [-77.066404, 38.895728], + [-77.066434, 38.895779], + [-77.066445, 38.895805], + [-77.066459, 38.895837], + [-77.066467, 38.895858], + [-77.066482, 38.895887], + [-77.066506, 38.895909], + [-77.066533, 38.895949], + [-77.066546, 38.895976], + [-77.066555, 38.895993], + [-77.066611, 38.896081], + [-77.06663, 38.896113], + [-77.066646, 38.896144], + [-77.066667, 38.896186], + [-77.066689, 38.896221], + [-77.066717, 38.896277], + [-77.06674, 38.896322], + [-77.066759, 38.896359], + [-77.066785, 38.896413], + [-77.066805, 38.896452], + [-77.066824, 38.896485], + [-77.066837, 38.896505], + [-77.066862, 38.896542], + [-77.066895, 38.896594], + [-77.066914, 38.896626], + [-77.066925, 38.896644], + [-77.066936, 38.896663], + [-77.066948, 38.896682], + [-77.06697, 38.89673], + [-77.06698, 38.896753], + [-77.067002, 38.896797], + [-77.067014, 38.89682], + [-77.067027, 38.896845], + [-77.067041, 38.896867], + [-77.067054, 38.89689], + [-77.067084, 38.896936], + [-77.067097, 38.896959], + [-77.06711, 38.896983], + [-77.067124, 38.897008], + [-77.06714, 38.897031], + [-77.067155, 38.897054], + [-77.067167, 38.897078], + [-77.067177, 38.897099], + [-77.067185, 38.897117], + [-77.067197, 38.89714], + [-77.067208, 38.897157], + [-77.067226, 38.897169], + [-77.06722, 38.897235], + [-77.067252, 38.897302], + [-77.067258, 38.897321], + [-77.067263, 38.89734], + [-77.067269, 38.89736], + [-77.067274, 38.897379], + [-77.067278, 38.897399], + [-77.067284, 38.897418], + [-77.067289, 38.897438], + [-77.067294, 38.89746], + [-77.067299, 38.897481], + [-77.067303, 38.8975], + [-77.067307, 38.897534], + [-77.067309, 38.897554], + [-77.067315, 38.897592], + [-77.067316, 38.897611], + [-77.067319, 38.897643], + [-77.067323, 38.897672], + [-77.067325, 38.897726], + [-77.067331, 38.897757], + [-77.067339, 38.89779], + [-77.067348, 38.897826], + [-77.067352, 38.897845], + [-77.067357, 38.897863], + [-77.067371, 38.897896], + [-77.067391, 38.897923], + [-77.067409, 38.897947], + [-77.067423, 38.897971], + [-77.067432, 38.897991], + [-77.067446, 38.898007], + [-77.06746, 38.89803], + [-77.067463, 38.898058], + [-77.067466, 38.898089], + [-77.067471, 38.898107], + [-77.067498, 38.898108], + [-77.067509, 38.898091], + [-77.067527, 38.898077], + [-77.067552, 38.898065], + [-77.067575, 38.898056], + [-77.067597, 38.898102], + [-77.067532, 38.898128], + [-77.067495, 38.898142], + [-77.067478, 38.89816], + [-77.067472, 38.89819], + [-77.067467, 38.898222], + [-77.067472, 38.89824], + [-77.067478, 38.898258], + [-77.067484, 38.898278], + [-77.067488, 38.898296], + [-77.067499, 38.89833], + [-77.067514, 38.898365], + [-77.067522, 38.898384], + [-77.067531, 38.898403], + [-77.067541, 38.898421], + [-77.06755, 38.898438], + [-77.067562, 38.89847], + [-77.067572, 38.898501], + [-77.067582, 38.89853], + [-77.06759, 38.898564], + [-77.067594, 38.898582], + [-77.067599, 38.898613], + [-77.067603, 38.898648], + [-77.067608, 38.898682], + [-77.067611, 38.8987], + [-77.067614, 38.898731], + [-77.067615, 38.898763], + [-77.067616, 38.898782], + [-77.067618, 38.898801], + [-77.067621, 38.898835], + [-77.067621, 38.898854], + [-77.067623, 38.898883], + [-77.067624, 38.898916], + [-77.067618, 38.898951], + [-77.067609, 38.89897], + [-77.067599, 38.898989], + [-77.06759, 38.899006], + [-77.067573, 38.899036], + [-77.067555, 38.899064], + [-77.06754, 38.899087], + [-77.067538, 38.899136], + [-77.067574, 38.899237], + [-77.067586, 38.899255], + [-77.067608, 38.899291], + [-77.067621, 38.899311], + [-77.067633, 38.899332], + [-77.067644, 38.899353], + [-77.067655, 38.899373], + [-77.067666, 38.899394], + [-77.067677, 38.899414], + [-77.067686, 38.899432], + [-77.067693, 38.89945], + [-77.067701, 38.899469], + [-77.067712, 38.899488], + [-77.067722, 38.899507], + [-77.067744, 38.899543], + [-77.067828, 38.899615], + [-77.06785, 38.899627], + [-77.067873, 38.899638], + [-77.067896, 38.899648], + [-77.067948, 38.899668], + [-77.067974, 38.899676], + [-77.067997, 38.899684], + [-77.068019, 38.899692], + [-77.068055, 38.899715], + [-77.068072, 38.89973], + [-77.068086, 38.899746], + [-77.068099, 38.899761], + [-77.068117, 38.899784], + [-77.068134, 38.899804], + [-77.068151, 38.899823], + [-77.068161, 38.899841], + [-77.068163, 38.899862], + [-77.068164, 38.899882], + [-77.068163, 38.899901], + [-77.068166, 38.899929], + [-77.06821, 38.899958], + [-77.068247, 38.899973], + [-77.068266, 38.899985], + [-77.068286, 38.899997], + [-77.068306, 38.90001], + [-77.068326, 38.900025], + [-77.068343, 38.90004], + [-77.068356, 38.900057], + [-77.06837, 38.900074], + [-77.068384, 38.90009], + [-77.068401, 38.900106], + [-77.068417, 38.900122], + [-77.068434, 38.900138], + [-77.068452, 38.900154], + [-77.068471, 38.90017], + [-77.068493, 38.900186], + [-77.068517, 38.900202], + [-77.068539, 38.900218], + [-77.068561, 38.900233], + [-77.068621, 38.900281], + [-77.068643, 38.900296], + [-77.068694, 38.90033], + [-77.068721, 38.900347], + [-77.068746, 38.900362], + [-77.068772, 38.900378], + [-77.068796, 38.900395], + [-77.068822, 38.900412], + [-77.068849, 38.900429], + [-77.068877, 38.900444], + [-77.068901, 38.900459], + [-77.068923, 38.900473], + [-77.068946, 38.900483], + [-77.068968, 38.900492], + [-77.069011, 38.900506], + [-77.069034, 38.900511], + [-77.069058, 38.900515], + [-77.069102, 38.900522], + [-77.069125, 38.900528], + [-77.069162, 38.900542], + [-77.069195, 38.900558], + [-77.069271, 38.90059], + [-77.069347, 38.900602], + [-77.069378, 38.900606], + [-77.069409, 38.900611], + [-77.069443, 38.900621], + [-77.069467, 38.900631], + [-77.069493, 38.900643], + [-77.06952, 38.900656], + [-77.069549, 38.900669], + [-77.069582, 38.900682], + [-77.069614, 38.900695], + [-77.069647, 38.900709], + [-77.069679, 38.900724], + [-77.069706, 38.900738], + [-77.069732, 38.90075], + [-77.06976, 38.900763], + [-77.069788, 38.900777], + [-77.069842, 38.900807], + [-77.06987, 38.90082], + [-77.069897, 38.900832], + [-77.069921, 38.900844], + [-77.069955, 38.900859], + [-77.069983, 38.900871], + [-77.070011, 38.900882], + [-77.070038, 38.900892], + [-77.070066, 38.900903], + [-77.070093, 38.900916], + [-77.07012, 38.900928], + [-77.070144, 38.90094], + [-77.070166, 38.90095], + [-77.070189, 38.900959], + [-77.070212, 38.900967], + [-77.070235, 38.900976], + [-77.070259, 38.900985], + [-77.070285, 38.900993], + [-77.070308, 38.901001], + [-77.070328, 38.901017], + [-77.070362, 38.901042], + [-77.070471, 38.901112], + [-77.070585, 38.901186], + [-77.070659, 38.901203], + [-77.070689, 38.901202], + [-77.07072, 38.901201], + [-77.070746, 38.9012], + [-77.07077, 38.901194], + [-77.070818, 38.901174], + [-77.070842, 38.901167], + [-77.070882, 38.901163], + [-77.070926, 38.901158], + [-77.070949, 38.901154], + [-77.070997, 38.901152], + [-77.071023, 38.901152], + [-77.071048, 38.901151], + [-77.071075, 38.90115], + [-77.071101, 38.901149], + [-77.071125, 38.901148], + [-77.07115, 38.901147], + [-77.071175, 38.901147], + [-77.071204, 38.901146], + [-77.071311, 38.901149], + [-77.071343, 38.901148], + [-77.071377, 38.901147], + [-77.071413, 38.901146], + [-77.071447, 38.901145], + [-77.071476, 38.901145], + [-77.071503, 38.901143], + [-77.071531, 38.90114], + [-77.071618, 38.901128], + [-77.071644, 38.901124], + [-77.071667, 38.901118], + [-77.071689, 38.901112], + [-77.071712, 38.901106], + [-77.071738, 38.901101], + [-77.071768, 38.901095], + [-77.071798, 38.901091], + [-77.071828, 38.901088], + [-77.071857, 38.901087], + [-77.071888, 38.901086], + [-77.071921, 38.901084], + [-77.071953, 38.901083], + [-77.071984, 38.901082], + [-77.072013, 38.901081], + [-77.072073, 38.901079], + [-77.072104, 38.901078], + [-77.072134, 38.901078], + [-77.072162, 38.901077], + [-77.072187, 38.901077], + [-77.072211, 38.901076], + [-77.072237, 38.901076], + [-77.072264, 38.901077], + [-77.072294, 38.901077], + [-77.072324, 38.901076], + [-77.072353, 38.901076], + [-77.072411, 38.901074], + [-77.072441, 38.901073], + [-77.07247, 38.901073], + [-77.072495, 38.901072], + [-77.072519, 38.901071], + [-77.072543, 38.901071], + [-77.072568, 38.90107], + [-77.072594, 38.90107], + [-77.072622, 38.901069], + [-77.07265, 38.901069], + [-77.072674, 38.901068], + [-77.072713, 38.901069], + [-77.072752, 38.901072], + [-77.072777, 38.901074], + [-77.072805, 38.901076], + [-77.072851, 38.90108], + [-77.072896, 38.901087], + [-77.072922, 38.901091], + [-77.072953, 38.901095], + [-77.072987, 38.901099], + [-77.073022, 38.901102], + [-77.073053, 38.901104], + [-77.073085, 38.901107], + [-77.073118, 38.90111], + [-77.073155, 38.901112], + [-77.073188, 38.901115], + [-77.073217, 38.901118], + [-77.073245, 38.90112], + [-77.073272, 38.901122], + [-77.073299, 38.901125], + [-77.073324, 38.901126], + [-77.073349, 38.901128], + [-77.073375, 38.901131], + [-77.073402, 38.901136], + [-77.07343, 38.901143], + [-77.073461, 38.901151], + [-77.073494, 38.901159], + [-77.07353, 38.901167], + [-77.073563, 38.901176], + [-77.073593, 38.901184], + [-77.073622, 38.901192], + [-77.073652, 38.901198], + [-77.073679, 38.901204], + [-77.073704, 38.901211], + [-77.073728, 38.901217], + [-77.073804, 38.901241], + [-77.07385, 38.901253], + [-77.073878, 38.901259], + [-77.073905, 38.901266], + [-77.073928, 38.901273], + [-77.073953, 38.901281], + [-77.073977, 38.90129], + [-77.074002, 38.9013], + [-77.074027, 38.901309], + [-77.074053, 38.901317], + [-77.074079, 38.901324], + [-77.074131, 38.901334], + [-77.074158, 38.90134], + [-77.074188, 38.901347], + [-77.074258, 38.901361], + [-77.074291, 38.901369], + [-77.074322, 38.901379], + [-77.074355, 38.901388], + [-77.074392, 38.901396], + [-77.074428, 38.901404], + [-77.074459, 38.901412], + [-77.074489, 38.90142], + [-77.074521, 38.901427], + [-77.074557, 38.901433], + [-77.074593, 38.901438], + [-77.074626, 38.901443], + [-77.074657, 38.901448], + [-77.07469, 38.901453], + [-77.074729, 38.901459], + [-77.074768, 38.901466], + [-77.074802, 38.901472], + [-77.075036, 38.90153], + [-77.075177, 38.901569], + [-77.075222, 38.901581], + [-77.075256, 38.901587], + [-77.075291, 38.901594], + [-77.075324, 38.901602], + [-77.075354, 38.90161], + [-77.075418, 38.901626], + [-77.075449, 38.901634], + [-77.075479, 38.901644], + [-77.075508, 38.901655], + [-77.075539, 38.901666], + [-77.075569, 38.901676], + [-77.075598, 38.901686], + [-77.075627, 38.901695], + [-77.075656, 38.901703], + [-77.075683, 38.90171], + [-77.075739, 38.901724], + [-77.075764, 38.901734], + [-77.075787, 38.901746], + [-77.075811, 38.901758], + [-77.075859, 38.90178], + [-77.075881, 38.90179], + [-77.075902, 38.901798], + [-77.075942, 38.901809], + [-77.075979, 38.901817], + [-77.076006, 38.901819], + [-77.076031, 38.901815], + [-77.07607, 38.901818], + [-77.076116, 38.901826], + [-77.076145, 38.901837], + [-77.076222, 38.901861], + [-77.076253, 38.90187], + [-77.076285, 38.901878], + [-77.076316, 38.901886], + [-77.076346, 38.901892], + [-77.076374, 38.901898], + [-77.076406, 38.901909], + [-77.07644, 38.901921], + [-77.076468, 38.901933], + [-77.076494, 38.901945], + [-77.076521, 38.901955], + [-77.076548, 38.901962], + [-77.076577, 38.901967], + [-77.07661, 38.901967], + [-77.076646, 38.901969], + [-77.076682, 38.901973], + [-77.076717, 38.901978], + [-77.07675, 38.901986], + [-77.076783, 38.901997], + [-77.076809, 38.902011], + [-77.076832, 38.902028], + [-77.076859, 38.902044], + [-77.076889, 38.902057], + [-77.076922, 38.902072], + [-77.076961, 38.902088], + [-77.076997, 38.902103], + [-77.077034, 38.902114], + [-77.07707, 38.902123], + [-77.077108, 38.90213], + [-77.077152, 38.902138], + [-77.077192, 38.902147], + [-77.077232, 38.902153], + [-77.077276, 38.902158], + [-77.077324, 38.902163], + [-77.077369, 38.902165], + [-77.077411, 38.902168], + [-77.077451, 38.902172], + [-77.07749, 38.902177], + [-77.077524, 38.902181], + [-77.077552, 38.90219], + [-77.077569, 38.902206], + [-77.07758, 38.902226], + [-77.077613, 38.902256], + [-77.07764, 38.902265], + [-77.077666, 38.902267], + [-77.077693, 38.902263], + [-77.077721, 38.902257], + [-77.077752, 38.902253], + [-77.077785, 38.902252], + [-77.077824, 38.902254], + [-77.077864, 38.902258], + [-77.077901, 38.902262], + [-77.077935, 38.902264], + [-77.077969, 38.902268], + [-77.078003, 38.902276], + [-77.078035, 38.902285], + [-77.078064, 38.902295], + [-77.078118, 38.902317], + [-77.078141, 38.902331], + [-77.078162, 38.902344], + [-77.078181, 38.902356], + [-77.07825, 38.902376], + [-77.078275, 38.902378], + [-77.078301, 38.902377], + [-77.07833, 38.902374], + [-77.078358, 38.902369], + [-77.078381, 38.902362], + [-77.078431, 38.902352], + [-77.078455, 38.902346], + [-77.078486, 38.902341], + [-77.078526, 38.902339], + [-77.078567, 38.902336], + [-77.078607, 38.902334], + [-77.078644, 38.902328], + [-77.078686, 38.902324], + [-77.078726, 38.902321], + [-77.07876, 38.902318], + [-77.078796, 38.902313], + [-77.078834, 38.902308], + [-77.078876, 38.902307], + [-77.078914, 38.902309], + [-77.07895, 38.902313], + [-77.078982, 38.902317], + [-77.079019, 38.902326], + [-77.079054, 38.902336], + [-77.079082, 38.902346], + [-77.079105, 38.902354], + [-77.079138, 38.902371], + [-77.079158, 38.902398], + [-77.079165, 38.902427], + [-77.079175, 38.902446], + [-77.079217, 38.902462], + [-77.079254, 38.902467], + [-77.079284, 38.902448], + [-77.079315, 38.902426], + [-77.079363, 38.90241], + [-77.079387, 38.902406], + [-77.079466, 38.902406], + [-77.079492, 38.902405], + [-77.079524, 38.902405], + [-77.079558, 38.902404], + [-77.079588, 38.902398], + [-77.07962, 38.902388], + [-77.07965, 38.902378], + [-77.079684, 38.902368], + [-77.07977, 38.90235], + [-77.079807, 38.902344], + [-77.079844, 38.902337], + [-77.079884, 38.902331], + [-77.079926, 38.902326], + [-77.079966, 38.902323], + [-77.080004, 38.902318], + [-77.080039, 38.902313], + [-77.080075, 38.902308], + [-77.080108, 38.902306], + [-77.080168, 38.902305], + [-77.080196, 38.902309], + [-77.080227, 38.902316], + [-77.080259, 38.902323], + [-77.080292, 38.902329], + [-77.080328, 38.902331], + [-77.080363, 38.902332], + [-77.080404, 38.902331], + [-77.08045, 38.902332], + [-77.080496, 38.902334], + [-77.080537, 38.902336], + [-77.080622, 38.902336], + [-77.08069, 38.90233], + [-77.080758, 38.90233], + [-77.080783, 38.902333], + [-77.080863, 38.902333], + [-77.080892, 38.902332], + [-77.080923, 38.90233], + [-77.080955, 38.90233], + [-77.080986, 38.902329], + [-77.08101, 38.902327], + [-77.081036, 38.902327], + [-77.081084, 38.902325], + [-77.081109, 38.902325], + [-77.081135, 38.902326], + [-77.08116, 38.902325], + [-77.081194, 38.902327], + [-77.081241, 38.902327], + [-77.081274, 38.902326], + [-77.081312, 38.902325], + [-77.081343, 38.902324], + [-77.081365, 38.902323], + [-77.081433, 38.902323], + [-77.081467, 38.902322], + [-77.081501, 38.902319], + [-77.081528, 38.902321], + [-77.08154, 38.902319], + [-77.081617, 38.902319], + [-77.081647, 38.902318], + [-77.08168, 38.902316], + [-77.081758, 38.902316], + [-77.081788, 38.902315], + [-77.081816, 38.902313], + [-77.081878, 38.902313], + [-77.081916, 38.902312], + [-77.08196, 38.902311], + [-77.081988, 38.902311], + [-77.082015, 38.90231], + [-77.082053, 38.902309], + [-77.082083, 38.902309], + [-77.082114, 38.902308], + [-77.082143, 38.902307], + [-77.082169, 38.902307], + [-77.082227, 38.902305], + [-77.082261, 38.902305], + [-77.082297, 38.902304], + [-77.082317, 38.902304], + [-77.082336, 38.902302], + [-77.082407, 38.902302], + [-77.082445, 38.902301], + [-77.08248, 38.902299], + [-77.08253, 38.902299], + [-77.082559, 38.902298], + [-77.082592, 38.902298], + [-77.082645, 38.902288], + [-77.082658, 38.902282], + [-77.082764, 38.902317], + [-77.082778, 38.902322], + [-77.0828, 38.90233], + [-77.082824, 38.902343], + [-77.082857, 38.902361], + [-77.08289, 38.902374], + [-77.082925, 38.902386], + [-77.082963, 38.9024], + [-77.082998, 38.902409], + [-77.083034, 38.902423], + [-77.083069, 38.902437], + [-77.083091, 38.902444], + [-77.083111, 38.902448], + [-77.083149, 38.902456], + [-77.083182, 38.902457], + [-77.083217, 38.902469], + [-77.083249, 38.902479], + [-77.083289, 38.902493], + [-77.083311, 38.9025], + [-77.083349, 38.902512], + [-77.083383, 38.902524], + [-77.083403, 38.90253], + [-77.08344, 38.902541], + [-77.083474, 38.902554], + [-77.083505, 38.902564], + [-77.083541, 38.902575], + [-77.083565, 38.902583], + [-77.083594, 38.902592], + [-77.083629, 38.902605], + [-77.083668, 38.902617], + [-77.083705, 38.90263], + [-77.083747, 38.902644], + [-77.083781, 38.902654], + [-77.083811, 38.902665], + [-77.083842, 38.902675], + [-77.083868, 38.902683], + [-77.083886, 38.90269], + [-77.083912, 38.902699], + [-77.083944, 38.902708], + [-77.083977, 38.90272], + [-77.084, 38.902727], + [-77.084019, 38.902733], + [-77.084051, 38.902744], + [-77.084084, 38.902755], + [-77.084113, 38.902765], + [-77.084137, 38.902772], + [-77.084158, 38.90278], + [-77.084178, 38.902786], + [-77.084191, 38.902791], + [-77.084212, 38.902797], + [-77.084242, 38.902808], + [-77.084275, 38.902819], + [-77.084301, 38.902827], + [-77.084324, 38.902834], + [-77.084351, 38.902843], + [-77.084383, 38.902854], + [-77.084411, 38.902863], + [-77.084441, 38.902873], + [-77.084466, 38.902882], + [-77.08451, 38.902896], + [-77.084532, 38.902902], + [-77.084555, 38.90291], + [-77.084577, 38.902918], + [-77.084601, 38.902925], + [-77.084623, 38.902932], + [-77.084659, 38.902945], + [-77.084687, 38.902955], + [-77.084715, 38.902963], + [-77.084737, 38.90297], + [-77.084763, 38.90298], + [-77.084805, 38.902994], + [-77.084822, 38.902999], + [-77.084841, 38.903006], + [-77.08487, 38.903014], + [-77.084894, 38.903023], + [-77.084916, 38.90303], + [-77.08494, 38.903038], + [-77.084974, 38.90305], + [-77.084996, 38.903056], + [-77.085019, 38.903064], + [-77.085047, 38.903074], + [-77.085068, 38.903081], + [-77.085096, 38.90309], + [-77.085125, 38.903099], + [-77.08516, 38.903111], + [-77.085199, 38.903124], + [-77.085236, 38.903136], + [-77.085255, 38.903141], + [-77.085289, 38.903154], + [-77.08532, 38.903163], + [-77.085343, 38.903172], + [-77.085368, 38.90318], + [-77.085396, 38.903189], + [-77.085418, 38.903195], + [-77.085452, 38.903208], + [-77.085491, 38.90322], + [-77.085525, 38.903232], + [-77.085564, 38.903245], + [-77.085587, 38.903251], + [-77.085612, 38.903259], + [-77.085649, 38.903273], + [-77.085687, 38.903285], + [-77.085726, 38.903298], + [-77.085758, 38.903309], + [-77.085792, 38.903319], + [-77.085824, 38.903329], + [-77.085858, 38.903341], + [-77.085874, 38.903346], + [-77.085916, 38.903361], + [-77.085972, 38.903379], + [-77.086004, 38.90339], + [-77.086029, 38.903397], + [-77.086059, 38.903408], + [-77.086094, 38.90342], + [-77.086139, 38.903435], + [-77.086161, 38.903442], + [-77.086201, 38.903455], + [-77.086235, 38.903465], + [-77.086271, 38.903478], + [-77.086306, 38.90349], + [-77.086333, 38.903499], + [-77.086351, 38.903504], + [-77.086385, 38.903515], + [-77.086409, 38.903523], + [-77.08643, 38.903531], + [-77.086459, 38.90354], + [-77.086482, 38.903548], + [-77.086519, 38.90356], + [-77.086542, 38.903568], + [-77.086561, 38.903574], + [-77.086592, 38.903583], + [-77.086625, 38.903594], + [-77.086648, 38.903602], + [-77.086672, 38.903611], + [-77.086691, 38.903616], + [-77.086721, 38.903626], + [-77.086728, 38.903628], + [-77.086752, 38.903636], + [-77.086775, 38.903644], + [-77.0868, 38.903652], + [-77.086839, 38.903665], + [-77.086859, 38.903672], + [-77.086887, 38.903681], + [-77.086908, 38.903688], + [-77.086958, 38.903704], + [-77.087, 38.903718], + [-77.087031, 38.903728], + [-77.087053, 38.903736], + [-77.087073, 38.903742], + [-77.087101, 38.903752], + [-77.087157, 38.90377], + [-77.087192, 38.903782], + [-77.087229, 38.903794], + [-77.087268, 38.903807], + [-77.087308, 38.90382], + [-77.087346, 38.903832], + [-77.08738, 38.903844], + [-77.087449, 38.903867], + [-77.087466, 38.903872], + [-77.087478, 38.903876], + [-77.08749, 38.903881], + [-77.087501, 38.903884], + [-77.087529, 38.903893], + [-77.087563, 38.903905], + [-77.087589, 38.903914], + [-77.087624, 38.903925], + [-77.087647, 38.903933], + [-77.087681, 38.903944], + [-77.087718, 38.903957], + [-77.087748, 38.903967], + [-77.087777, 38.903976], + [-77.087815, 38.903988], + [-77.087872, 38.904007], + [-77.087906, 38.904019], + [-77.087946, 38.904032], + [-77.087966, 38.904038], + [-77.088002, 38.90405], + [-77.088041, 38.904064], + [-77.088058, 38.904069], + [-77.088096, 38.904081], + [-77.088134, 38.904094], + [-77.088171, 38.904106], + [-77.088205, 38.904117], + [-77.088241, 38.904129], + [-77.088261, 38.904136], + [-77.088287, 38.904145], + [-77.088308, 38.904151], + [-77.088344, 38.904164], + [-77.088367, 38.904171], + [-77.088383, 38.904176], + [-77.088401, 38.904182], + [-77.088435, 38.904193], + [-77.088469, 38.904205], + [-77.088495, 38.904213], + [-77.088542, 38.904229], + [-77.088582, 38.904243], + [-77.088616, 38.904254], + [-77.088655, 38.904266], + [-77.088674, 38.904272], + [-77.088702, 38.904282], + [-77.088737, 38.904294], + [-77.088775, 38.904306], + [-77.08881, 38.904317], + [-77.088841, 38.904328], + [-77.088867, 38.904337], + [-77.088885, 38.904342], + [-77.088913, 38.904351], + [-77.089015, 38.904385], + [-77.089055, 38.904399], + [-77.089091, 38.90441], + [-77.089125, 38.904421], + [-77.089148, 38.904429], + [-77.089167, 38.904435], + [-77.089207, 38.904449], + [-77.089243, 38.90446], + [-77.089278, 38.904472], + [-77.089319, 38.904486], + [-77.089342, 38.904493], + [-77.089364, 38.9045], + [-77.089406, 38.904514], + [-77.089437, 38.904525], + [-77.08948, 38.904539], + [-77.089499, 38.904545], + [-77.089524, 38.904553], + [-77.089584, 38.904573], + [-77.089609, 38.904582], + [-77.089684, 38.904607], + [-77.089707, 38.904614], + [-77.089728, 38.904621], + [-77.089753, 38.904629], + [-77.089775, 38.904637], + [-77.089798, 38.904645], + [-77.089822, 38.904652], + [-77.089845, 38.904659], + [-77.089863, 38.904666], + [-77.089899, 38.904677], + [-77.089933, 38.904689], + [-77.089966, 38.9047], + [-77.089993, 38.904708], + [-77.090034, 38.904722], + [-77.090066, 38.904733], + [-77.090085, 38.904739], + [-77.090129, 38.904753], + [-77.090147, 38.904759], + [-77.090172, 38.904767], + [-77.090274, 38.904801], + [-77.090314, 38.904815], + [-77.090338, 38.904823], + [-77.090364, 38.904831], + [-77.090394, 38.904841], + [-77.090414, 38.904848], + [-77.090465, 38.904865], + [-77.090483, 38.90487], + [-77.090504, 38.904877], + [-77.090532, 38.904886], + [-77.090554, 38.904894], + [-77.090565, 38.904897], + [-77.090585, 38.904904], + [-77.09061, 38.904913], + [-77.090627, 38.904918], + [-77.090647, 38.904925], + [-77.09067, 38.904932], + [-77.090692, 38.904939], + [-77.090713, 38.904947], + [-77.09074, 38.904956], + [-77.090766, 38.904964], + [-77.090794, 38.904973], + [-77.090826, 38.904984], + [-77.090852, 38.904993], + [-77.090904, 38.905009], + [-77.090937, 38.905021], + [-77.090961, 38.905028], + [-77.090983, 38.905035], + [-77.090994, 38.905039], + [-77.090996, 38.90504], + [-77.091049, 38.905057], + [-77.091091, 38.905071], + [-77.091113, 38.905079], + [-77.091146, 38.90509], + [-77.091164, 38.905095], + [-77.091185, 38.905102], + [-77.09121, 38.905112], + [-77.091244, 38.905122], + [-77.09127, 38.90513], + [-77.091303, 38.905141], + [-77.091329, 38.90515], + [-77.091354, 38.905158], + [-77.091377, 38.905166], + [-77.09141, 38.905177], + [-77.091433, 38.905184], + [-77.091464, 38.905195], + [-77.091494, 38.905204], + [-77.091542, 38.90522], + [-77.091559, 38.905226], + [-77.091591, 38.905237], + [-77.091624, 38.905247], + [-77.091661, 38.90526], + [-77.091694, 38.905271], + [-77.091736, 38.905284], + [-77.091772, 38.905296], + [-77.091807, 38.905308], + [-77.091841, 38.905319], + [-77.091878, 38.905332], + [-77.091918, 38.905344], + [-77.091942, 38.905353], + [-77.091978, 38.905364], + [-77.092062, 38.905392], + [-77.092091, 38.905402], + [-77.092114, 38.905409], + [-77.092153, 38.905423], + [-77.092172, 38.905429], + [-77.092193, 38.905436], + [-77.092216, 38.905443], + [-77.092238, 38.90545], + [-77.092278, 38.905464], + [-77.0923, 38.905471], + [-77.092319, 38.905477], + [-77.092341, 38.905484], + [-77.092383, 38.905498], + [-77.092403, 38.905505], + [-77.092425, 38.905512], + [-77.092443, 38.905519], + [-77.092464, 38.905526], + [-77.092488, 38.905533], + [-77.092511, 38.905541], + [-77.092531, 38.905547], + [-77.092555, 38.905555], + [-77.092578, 38.905563], + [-77.0926, 38.905571], + [-77.092645, 38.905586], + [-77.092667, 38.905592], + [-77.092691, 38.9056], + [-77.092708, 38.905606], + [-77.092736, 38.905615], + [-77.092758, 38.905623], + [-77.092781, 38.90563], + [-77.092806, 38.905639], + [-77.092831, 38.905647], + [-77.092853, 38.905654], + [-77.092876, 38.905662], + [-77.092893, 38.905668], + [-77.092925, 38.905678], + [-77.092947, 38.905686], + [-77.092971, 38.905693], + [-77.092997, 38.905702], + [-77.093042, 38.905717], + [-77.093064, 38.905724], + [-77.093089, 38.905733], + [-77.093106, 38.905738], + [-77.09313, 38.905746], + [-77.093156, 38.905755], + [-77.093179, 38.905762], + [-77.093218, 38.905775], + [-77.093251, 38.905796], + [-77.093314, 38.905819], + [-77.093344, 38.905837], + [-77.093365, 38.905847], + [-77.093383, 38.905857], + [-77.09342, 38.905876], + [-77.093451, 38.905893], + [-77.093479, 38.905907], + [-77.093512, 38.905927], + [-77.093544, 38.905943], + [-77.093582, 38.905975], + [-77.093584, 38.905978], + [-77.093586, 38.905976], + [-77.093597, 38.905986], + [-77.093625, 38.906011], + [-77.093673, 38.90605], + [-77.093701, 38.90607], + [-77.093717, 38.906082], + [-77.093738, 38.906097], + [-77.093771, 38.90612], + [-77.093807, 38.906146], + [-77.093828, 38.90616], + [-77.09385, 38.906176], + [-77.093867, 38.906188], + [-77.093887, 38.9062], + [-77.093906, 38.906214], + [-77.093929, 38.906228], + [-77.093949, 38.906241], + [-77.093968, 38.906253], + [-77.093993, 38.906266], + [-77.094013, 38.906279], + [-77.094034, 38.90629], + [-77.094052, 38.906301], + [-77.094072, 38.906315], + [-77.094092, 38.906328], + [-77.094126, 38.906354], + [-77.094142, 38.906365], + [-77.094158, 38.906377], + [-77.094193, 38.906402], + [-77.094213, 38.906416], + [-77.094229, 38.906428], + [-77.094249, 38.906442], + [-77.094264, 38.906453], + [-77.094288, 38.90647], + [-77.094306, 38.906484], + [-77.094327, 38.906498], + [-77.094345, 38.906511], + [-77.094366, 38.906526], + [-77.094385, 38.90654], + [-77.094405, 38.906554], + [-77.094423, 38.906567], + [-77.094445, 38.906583], + [-77.094464, 38.906597], + [-77.094484, 38.906611], + [-77.094505, 38.906626], + [-77.094523, 38.906639], + [-77.094553, 38.906661], + [-77.094592, 38.906689], + [-77.094624, 38.906712], + [-77.094648, 38.906729], + [-77.094674, 38.906748], + [-77.094722, 38.906782], + [-77.094745, 38.906799], + [-77.094773, 38.906819], + [-77.094805, 38.906842], + [-77.094832, 38.906861], + [-77.094858, 38.906881], + [-77.094886, 38.9069], + [-77.094952, 38.906948], + [-77.09498, 38.906968], + [-77.095013, 38.906992], + [-77.095031, 38.907005], + [-77.095075, 38.907037], + [-77.095104, 38.907058], + [-77.095132, 38.907078], + [-77.095158, 38.907097], + [-77.095173, 38.907109], + [-77.095198, 38.907126], + [-77.095221, 38.907143], + [-77.095241, 38.907158], + [-77.09526, 38.907171], + [-77.095274, 38.907182], + [-77.095299, 38.907199], + [-77.095322, 38.907216], + [-77.095347, 38.907233], + [-77.095367, 38.907248], + [-77.095392, 38.907266], + [-77.095414, 38.907281], + [-77.095432, 38.907294], + [-77.095449, 38.907308], + [-77.095466, 38.90732], + [-77.095493, 38.907338], + [-77.095521, 38.907358], + [-77.095544, 38.907375], + [-77.095567, 38.907393], + [-77.095589, 38.90741], + [-77.095623, 38.907432], + [-77.095651, 38.907454], + [-77.095678, 38.907471], + [-77.095696, 38.907486], + [-77.095719, 38.907503], + [-77.095747, 38.907523], + [-77.095769, 38.907539], + [-77.095798, 38.907559], + [-77.095822, 38.907576], + [-77.095847, 38.907593], + [-77.095868, 38.907609], + [-77.095888, 38.907624], + [-77.095914, 38.907642], + [-77.095958, 38.907674], + [-77.095982, 38.907691], + [-77.096, 38.907705], + [-77.096017, 38.907717], + [-77.096039, 38.907732], + [-77.096062, 38.907749], + [-77.09609, 38.90777], + [-77.096123, 38.907793], + [-77.096147, 38.90781], + [-77.096173, 38.907829], + [-77.096205, 38.907852], + [-77.096235, 38.907874], + [-77.096291, 38.907914], + [-77.09631, 38.907928], + [-77.096332, 38.907944], + [-77.096355, 38.90796], + [-77.096377, 38.907977], + [-77.096399, 38.907992], + [-77.096416, 38.908004], + [-77.096434, 38.908018], + [-77.096455, 38.908032], + [-77.096478, 38.908049], + [-77.096496, 38.908063], + [-77.096522, 38.908081], + [-77.096545, 38.908097], + [-77.096567, 38.908113], + [-77.096603, 38.908139], + [-77.096622, 38.908153], + [-77.096646, 38.90817], + [-77.096664, 38.908184], + [-77.096685, 38.908198], + [-77.096709, 38.908217], + [-77.096731, 38.908231], + [-77.096751, 38.908246], + [-77.096775, 38.908263], + [-77.096796, 38.908278], + [-77.096814, 38.908291], + [-77.096833, 38.908305], + [-77.096856, 38.908322], + [-77.096876, 38.908336], + [-77.096901, 38.908354], + [-77.096918, 38.908367], + [-77.096939, 38.908381], + [-77.096961, 38.908397], + [-77.096972, 38.908406], + [-77.096993, 38.90842], + [-77.097008, 38.908431], + [-77.097029, 38.908446], + [-77.097047, 38.908461], + [-77.097063, 38.908471], + [-77.097087, 38.908488], + [-77.097132, 38.908521], + [-77.097164, 38.908544], + [-77.097191, 38.908564], + [-77.097205, 38.908575], + [-77.097225, 38.908589], + [-77.097252, 38.908608], + [-77.097276, 38.908625], + [-77.097301, 38.908644], + [-77.097343, 38.908673], + [-77.097357, 38.908685], + [-77.097378, 38.908699], + [-77.097398, 38.908713], + [-77.097413, 38.908724], + [-77.097451, 38.908752], + [-77.097472, 38.908767], + [-77.09749, 38.90878], + [-77.097507, 38.908792], + [-77.097526, 38.908806], + [-77.097546, 38.90882], + [-77.097559, 38.908831], + [-77.097581, 38.908845], + [-77.097599, 38.908859], + [-77.097619, 38.908873], + [-77.097638, 38.908887], + [-77.09766, 38.908902], + [-77.097682, 38.908918], + [-77.097702, 38.908933], + [-77.097723, 38.908949], + [-77.097748, 38.908966], + [-77.097771, 38.908983], + [-77.097795, 38.909], + [-77.097824, 38.909021], + [-77.097845, 38.909037], + [-77.097869, 38.909054], + [-77.097894, 38.909072], + [-77.097914, 38.909087], + [-77.097939, 38.909104], + [-77.097962, 38.909121], + [-77.097986, 38.909138], + [-77.098004, 38.909152], + [-77.098027, 38.909169], + [-77.098052, 38.909186], + [-77.098076, 38.909203], + [-77.0981, 38.909221], + [-77.098142, 38.909251], + [-77.098164, 38.909267], + [-77.098188, 38.909284], + [-77.098211, 38.909301], + [-77.098237, 38.90932], + [-77.098257, 38.909335], + [-77.09828, 38.909351], + [-77.098305, 38.909369], + [-77.098327, 38.909385], + [-77.098351, 38.909402], + [-77.098374, 38.909419], + [-77.098398, 38.909436], + [-77.098421, 38.909453], + [-77.098445, 38.90947], + [-77.098464, 38.909484], + [-77.098482, 38.909497], + [-77.098507, 38.909514], + [-77.09853, 38.909531], + [-77.098554, 38.909548], + [-77.09858, 38.909567], + [-77.098603, 38.909584], + [-77.098659, 38.909624], + [-77.098682, 38.909641], + [-77.098732, 38.909677], + [-77.098759, 38.909697], + [-77.098786, 38.909715], + [-77.098811, 38.909734], + [-77.098836, 38.909752], + [-77.098859, 38.909768], + [-77.098887, 38.909788], + [-77.098941, 38.909828], + [-77.098965, 38.909845], + [-77.098978, 38.909854], + [-77.098994, 38.909866], + [-77.099011, 38.909878], + [-77.099028, 38.909891], + [-77.099045, 38.909903], + [-77.099065, 38.909918], + [-77.099083, 38.90993], + [-77.099125, 38.90996], + [-77.099163, 38.909988], + [-77.099185, 38.910004], + [-77.099204, 38.910018], + [-77.099242, 38.910044], + [-77.099264, 38.91006], + [-77.099283, 38.910075], + [-77.099304, 38.910089], + [-77.099323, 38.910103], + [-77.099345, 38.91012], + [-77.099367, 38.910134], + [-77.099393, 38.910154], + [-77.099413, 38.910168], + [-77.099432, 38.910181], + [-77.099459, 38.910201], + [-77.099483, 38.91022], + [-77.099511, 38.910238], + [-77.099599, 38.910302], + [-77.099619, 38.910317], + [-77.099641, 38.910332], + [-77.099663, 38.910348], + [-77.099682, 38.910362], + [-77.099707, 38.91038], + [-77.099736, 38.910401], + [-77.099764, 38.910421], + [-77.099783, 38.910435], + [-77.099819, 38.910461], + [-77.099833, 38.910472], + [-77.099861, 38.910491], + [-77.099888, 38.910511], + [-77.099911, 38.910528], + [-77.09993, 38.910541], + [-77.099958, 38.910562], + [-77.099974, 38.910573], + [-77.099992, 38.910586], + [-77.100002, 38.910593], + [-77.100017, 38.910604], + [-77.10005, 38.91063], + [-77.100066, 38.91064], + [-77.100079, 38.910649], + [-77.100102, 38.910666], + [-77.100125, 38.910682], + [-77.100154, 38.910703], + [-77.100201, 38.910738], + [-77.100204, 38.910737], + [-77.100218, 38.910747], + [-77.100254, 38.910773], + [-77.100268, 38.910784], + [-77.100286, 38.910797], + [-77.100312, 38.910815], + [-77.100319, 38.91082], + [-77.100341, 38.910836], + [-77.100362, 38.910851], + [-77.100384, 38.910867], + [-77.100404, 38.910882], + [-77.100462, 38.910925], + [-77.100464, 38.910925], + [-77.10049, 38.910944], + [-77.100512, 38.91096], + [-77.100529, 38.910971], + [-77.100559, 38.910993], + [-77.100588, 38.911014], + [-77.10059, 38.911015], + [-77.100615, 38.911033], + [-77.100637, 38.911049], + [-77.100643, 38.911053], + [-77.100714, 38.91111], + [-77.100715, 38.911121], + [-77.100725, 38.911129], + [-77.100749, 38.911146], + [-77.100777, 38.911161], + [-77.100813, 38.91117], + [-77.100838, 38.911188], + [-77.100861, 38.911217], + [-77.100899, 38.911233], + [-77.100924, 38.911241], + [-77.100949, 38.911252], + [-77.100973, 38.911265], + [-77.100995, 38.911279], + [-77.101017, 38.911291], + [-77.101039, 38.911304], + [-77.10106, 38.911316], + [-77.101092, 38.911336], + [-77.101109, 38.911356], + [-77.101107, 38.911376], + [-77.101143, 38.91138], + [-77.101165, 38.911393], + [-77.101189, 38.911409], + [-77.101216, 38.911407], + [-77.10125, 38.911424], + [-77.101275, 38.911442], + [-77.101308, 38.911452], + [-77.101336, 38.911463], + [-77.101346, 38.91149], + [-77.101365, 38.911514], + [-77.101386, 38.911538], + [-77.101409, 38.911548], + [-77.101434, 38.911557], + [-77.101446, 38.911573], + [-77.101462, 38.911589], + [-77.101477, 38.911575], + [-77.101498, 38.911562], + [-77.101525, 38.911557], + [-77.101555, 38.91157], + [-77.101576, 38.911583], + [-77.101596, 38.911597], + [-77.101614, 38.911611], + [-77.101632, 38.911626], + [-77.101659, 38.911648], + [-77.10168, 38.911663], + [-77.101714, 38.911687], + [-77.101732, 38.9117], + [-77.101748, 38.911713], + [-77.101768, 38.911734], + [-77.101776, 38.911755], + [-77.101789, 38.911772], + [-77.101818, 38.911775], + [-77.101848, 38.911793], + [-77.101881, 38.911813], + [-77.101899, 38.911826], + [-77.10192, 38.911843], + [-77.101941, 38.911856], + [-77.101965, 38.911878], + [-77.101984, 38.911902], + [-77.102006, 38.911914], + [-77.102034, 38.911924], + [-77.102052, 38.91194], + [-77.10207, 38.911957], + [-77.102087, 38.911973], + [-77.102102, 38.912002], + [-77.102114, 38.912029], + [-77.102144, 38.912044], + [-77.102159, 38.91206], + [-77.102188, 38.912063], + [-77.102208, 38.912085], + [-77.102228, 38.912108], + [-77.102247, 38.912132], + [-77.102269, 38.912157], + [-77.102292, 38.912181], + [-77.102313, 38.912203], + [-77.102333, 38.912225], + [-77.102351, 38.912248], + [-77.102369, 38.91227], + [-77.102385, 38.912292], + [-77.102399, 38.912312], + [-77.102413, 38.91233], + [-77.102431, 38.912343], + [-77.102467, 38.912351], + [-77.102491, 38.912351], + [-77.102519, 38.912355], + [-77.102545, 38.912362], + [-77.102569, 38.912374], + [-77.102589, 38.91239], + [-77.102611, 38.912411], + [-77.102634, 38.912434], + [-77.102654, 38.912455], + [-77.102672, 38.912476], + [-77.102686, 38.912494], + [-77.102693, 38.912513], + [-77.102694, 38.912531], + [-77.102691, 38.912563], + [-77.102718, 38.912586], + [-77.102757, 38.912607], + [-77.102781, 38.912615], + [-77.102805, 38.912624], + [-77.102835, 38.912631], + [-77.102867, 38.91264], + [-77.102893, 38.912649], + [-77.10292, 38.912661], + [-77.10295, 38.912676], + [-77.102981, 38.912697], + [-77.103007, 38.912716], + [-77.103032, 38.912738], + [-77.103055, 38.91276], + [-77.103075, 38.912787], + [-77.103091, 38.912813], + [-77.103106, 38.91284], + [-77.103125, 38.912869], + [-77.103147, 38.912898], + [-77.103169, 38.912925], + [-77.103189, 38.912954], + [-77.103209, 38.912982], + [-77.103226, 38.913009], + [-77.103245, 38.913038], + [-77.103265, 38.913066], + [-77.103284, 38.913093], + [-77.103304, 38.913121], + [-77.103322, 38.91315], + [-77.103342, 38.913177], + [-77.103362, 38.913205], + [-77.103383, 38.913235], + [-77.1034, 38.913261], + [-77.103417, 38.913289], + [-77.10343, 38.913316], + [-77.103434, 38.91333], + [-77.103438, 38.91334], + [-77.103441, 38.913364], + [-77.103442, 38.913392], + [-77.103449, 38.913418], + [-77.103461, 38.91344], + [-77.103472, 38.913463], + [-77.103476, 38.913489], + [-77.103476, 38.913538], + [-77.103475, 38.913569], + [-77.103473, 38.9136], + [-77.103471, 38.913629], + [-77.103469, 38.913661], + [-77.103469, 38.913691], + [-77.103473, 38.913786], + [-77.103476, 38.913813], + [-77.103482, 38.913832], + [-77.103489, 38.913851], + [-77.103499, 38.913885], + [-77.103504, 38.91392], + [-77.103505, 38.913949], + [-77.103506, 38.913968], + [-77.103506, 38.914004], + [-77.103505, 38.914026], + [-77.103503, 38.914045], + [-77.103503, 38.914064], + [-77.1035, 38.914084], + [-77.103499, 38.914108], + [-77.103499, 38.914129], + [-77.103496, 38.914148], + [-77.103493, 38.914166], + [-77.103492, 38.914187], + [-77.103494, 38.914209], + [-77.103496, 38.914229], + [-77.103499, 38.914249], + [-77.103503, 38.914269], + [-77.103507, 38.914292], + [-77.10351, 38.914312], + [-77.103514, 38.914331], + [-77.103522, 38.914351], + [-77.103531, 38.914373], + [-77.10354, 38.914393], + [-77.103549, 38.914412], + [-77.103563, 38.914452], + [-77.103582, 38.91449], + [-77.10359, 38.914507], + [-77.103595, 38.914526], + [-77.103598, 38.914547], + [-77.103599, 38.914566], + [-77.103603, 38.914601], + [-77.103607, 38.91462], + [-77.103612, 38.914642], + [-77.103614, 38.914661], + [-77.103616, 38.914681], + [-77.103619, 38.914701], + [-77.103624, 38.914724], + [-77.103632, 38.914745], + [-77.10364, 38.914765], + [-77.103649, 38.914786], + [-77.103656, 38.914808], + [-77.103665, 38.914829], + [-77.103677, 38.914849], + [-77.103688, 38.91487], + [-77.103697, 38.914893], + [-77.103706, 38.914915], + [-77.103718, 38.914935], + [-77.10373, 38.914954], + [-77.103741, 38.914972], + [-77.10375, 38.914994], + [-77.103757, 38.915014], + [-77.103766, 38.915035], + [-77.103776, 38.915056], + [-77.103787, 38.915079], + [-77.103796, 38.915099], + [-77.103806, 38.915118], + [-77.103819, 38.915138], + [-77.103833, 38.915158], + [-77.103847, 38.915179], + [-77.103861, 38.915198], + [-77.103874, 38.915216], + [-77.10389, 38.915232], + [-77.103906, 38.915252], + [-77.10392, 38.915272], + [-77.103939, 38.91531], + [-77.103973, 38.915374], + [-77.103985, 38.91541], + [-77.10399, 38.915432], + [-77.103993, 38.915452], + [-77.103997, 38.915471], + [-77.103999, 38.91549], + [-77.104002, 38.91551], + [-77.104003, 38.91553], + [-77.104005, 38.91555], + [-77.104008, 38.915569], + [-77.104009, 38.915589], + [-77.104012, 38.915611], + [-77.104018, 38.915631], + [-77.104023, 38.91565], + [-77.104029, 38.915668], + [-77.104037, 38.915685], + [-77.104046, 38.915704], + [-77.104062, 38.915738], + [-77.104073, 38.915773], + [-77.10408, 38.915794], + [-77.104088, 38.915813], + [-77.104096, 38.915833], + [-77.104105, 38.915852], + [-77.104113, 38.915873], + [-77.10412, 38.915893], + [-77.104127, 38.915912], + [-77.104136, 38.915931], + [-77.104146, 38.91595], + [-77.104159, 38.915969], + [-77.104173, 38.915987], + [-77.104187, 38.916003], + [-77.104198, 38.91602], + [-77.104209, 38.916039], + [-77.104218, 38.916057], + [-77.104235, 38.916086], + [-77.104244, 38.91611], + [-77.10425, 38.916144], + [-77.104263, 38.916161], + [-77.10428, 38.916177], + [-77.104299, 38.916191], + [-77.104316, 38.916205], + [-77.104332, 38.91622], + [-77.104346, 38.916236], + [-77.104359, 38.916251], + [-77.104373, 38.916268], + [-77.104384, 38.916284], + [-77.104397, 38.916301], + [-77.104411, 38.916318], + [-77.104427, 38.916332], + [-77.104444, 38.916347], + [-77.104461, 38.916363], + [-77.104474, 38.916379], + [-77.10449, 38.916396], + [-77.104508, 38.916413], + [-77.104528, 38.916431], + [-77.104547, 38.916447], + [-77.104565, 38.916463], + [-77.10458, 38.916478], + [-77.104592, 38.916495], + [-77.104621, 38.916525], + [-77.104653, 38.916555], + [-77.104675, 38.916584], + [-77.10469, 38.916602], + [-77.104703, 38.916626], + [-77.104722, 38.91665], + [-77.104745, 38.916675], + [-77.10477, 38.9167], + [-77.104792, 38.916727], + [-77.104816, 38.916751], + [-77.104828, 38.916774], + [-77.104846, 38.916799], + [-77.104888, 38.916857], + [-77.104911, 38.916885], + [-77.104932, 38.916915], + [-77.104972, 38.916963], + [-77.104998, 38.91699], + [-77.105013, 38.917007], + [-77.105026, 38.917023], + [-77.105045, 38.917052], + [-77.105062, 38.917079], + [-77.105075, 38.917095], + [-77.105095, 38.917118], + [-77.105103, 38.917144], + [-77.105101, 38.917171], + [-77.105115, 38.917196], + [-77.105146, 38.917208], + [-77.105168, 38.917232], + [-77.10517, 38.917256], + [-77.105159, 38.917279], + [-77.105146, 38.917298], + [-77.105163, 38.917313], + [-77.105169, 38.917339], + [-77.105194, 38.917354], + [-77.105222, 38.917355], + [-77.105243, 38.917344], + [-77.105268, 38.917346], + [-77.105296, 38.917349], + [-77.105316, 38.917366], + [-77.105337, 38.91738], + [-77.105352, 38.917397], + [-77.105355, 38.917421], + [-77.105359, 38.917455], + [-77.105373, 38.917471], + [-77.105395, 38.917461], + [-77.105419, 38.917461], + [-77.105441, 38.917472], + [-77.105448, 38.917492], + [-77.105452, 38.917514], + [-77.10547, 38.917534], + [-77.105493, 38.917553], + [-77.105512, 38.917571], + [-77.105519, 38.917592], + [-77.105531, 38.917613], + [-77.105556, 38.917627], + [-77.105589, 38.917638], + [-77.105593, 38.917664], + [-77.105588, 38.917685], + [-77.105609, 38.917703], + [-77.1056, 38.917722], + [-77.105598, 38.91774], + [-77.105598, 38.917759], + [-77.105615, 38.917773], + [-77.10562, 38.917806], + [-77.105626, 38.917825], + [-77.105622, 38.917843], + [-77.105624, 38.917863], + [-77.105634, 38.917885], + [-77.105638, 38.917904], + [-77.10566, 38.917918], + [-77.105688, 38.917926], + [-77.105672, 38.917947], + [-77.105685, 38.917964], + [-77.105671, 38.917987], + [-77.105675, 38.918005], + [-77.105711, 38.918014], + [-77.105714, 38.918036], + [-77.105706, 38.918053], + [-77.105718, 38.918072], + [-77.105732, 38.918095], + [-77.105746, 38.91812], + [-77.105728, 38.918142], + [-77.105739, 38.918158], + [-77.105726, 38.918178], + [-77.105725, 38.918202], + [-77.105738, 38.918225], + [-77.105747, 38.91825], + [-77.10573, 38.918262], + [-77.10573, 38.918285], + [-77.105736, 38.91831], + [-77.105754, 38.918325], + [-77.10577, 38.91831], + [-77.105786, 38.918324], + [-77.105815, 38.918337], + [-77.105825, 38.918354], + [-77.105836, 38.918372], + [-77.105839, 38.918396], + [-77.10584, 38.918417], + [-77.105841, 38.918439], + [-77.10586, 38.918456], + [-77.105866, 38.91848], + [-77.105872, 38.9185], + [-77.10588, 38.918521], + [-77.105903, 38.918533], + [-77.105928, 38.91854], + [-77.105945, 38.918553], + [-77.105943, 38.918573], + [-77.105946, 38.918592], + [-77.105963, 38.91861], + [-77.105988, 38.918613], + [-77.106011, 38.918611], + [-77.106025, 38.91863], + [-77.106041, 38.918648], + [-77.106045, 38.918672], + [-77.106063, 38.918687], + [-77.106079, 38.918707], + [-77.106101, 38.91873], + [-77.106123, 38.918755], + [-77.106142, 38.918788], + [-77.106152, 38.918807], + [-77.106162, 38.918824], + [-77.106169, 38.918841], + [-77.106177, 38.918859], + [-77.106191, 38.918894], + [-77.106196, 38.918912], + [-77.106201, 38.918931], + [-77.10622, 38.918963], + [-77.106227, 38.918983], + [-77.106234, 38.919015], + [-77.10622, 38.919042], + [-77.106212, 38.919072], + [-77.106229, 38.919094], + [-77.106247, 38.919109], + [-77.106265, 38.919127], + [-77.106277, 38.919148], + [-77.106268, 38.919172], + [-77.106277, 38.919193], + [-77.106302, 38.919195], + [-77.106333, 38.919212], + [-77.106342, 38.919236], + [-77.106343, 38.919266], + [-77.106348, 38.919284], + [-77.10637, 38.919301], + [-77.106399, 38.919312], + [-77.106421, 38.919326], + [-77.106445, 38.919333], + [-77.106468, 38.919355], + [-77.106477, 38.919377], + [-77.106471, 38.919399], + [-77.10648, 38.919426], + [-77.106499, 38.91945], + [-77.106521, 38.919472], + [-77.106545, 38.919485], + [-77.106573, 38.919497], + [-77.106579, 38.919519], + [-77.106574, 38.919545], + [-77.106586, 38.919562], + [-77.10661, 38.919548], + [-77.106637, 38.919553], + [-77.106661, 38.919564], + [-77.10667, 38.919592], + [-77.106678, 38.919609], + [-77.106694, 38.919641], + [-77.106708, 38.919668], + [-77.106729, 38.919695], + [-77.106751, 38.919723], + [-77.106774, 38.919748], + [-77.106798, 38.919773], + [-77.106821, 38.919799], + [-77.106837, 38.919821], + [-77.106853, 38.919847], + [-77.10687, 38.91987], + [-77.10688, 38.919897], + [-77.106874, 38.919916], + [-77.106828, 38.919946], + [-77.106811, 38.919965], + [-77.106802, 38.919989], + [-77.106796, 38.920013], + [-77.106803, 38.920034], + [-77.10683, 38.920041], + [-77.106854, 38.920039], + [-77.106875, 38.920024], + [-77.106897, 38.92001], + [-77.10692, 38.919997], + [-77.106951, 38.919984], + [-77.106977, 38.919991], + [-77.106993, 38.92001], + [-77.107003, 38.920038], + [-77.107012, 38.920065], + [-77.107021, 38.920091], + [-77.107035, 38.920114], + [-77.107046, 38.920132], + [-77.107063, 38.920154], + [-77.107088, 38.920171], + [-77.107091, 38.920173], + [-77.107113, 38.920183], + [-77.107132, 38.920194], + [-77.107165, 38.920183], + [-77.107222, 38.920235], + [-77.10726, 38.920265], + [-77.107247, 38.920284], + [-77.107263, 38.920305], + [-77.107286, 38.920319], + [-77.107312, 38.920336], + [-77.107341, 38.920349], + [-77.107368, 38.920363], + [-77.107393, 38.92038], + [-77.10742, 38.920396], + [-77.107449, 38.920419], + [-77.107478, 38.920441], + [-77.1075, 38.920467], + [-77.107519, 38.920496], + [-77.107537, 38.920523], + [-77.107555, 38.920551], + [-77.107567, 38.92058], + [-77.107582, 38.92061], + [-77.107605, 38.920641], + [-77.107628, 38.920669], + [-77.107648, 38.920695], + [-77.107656, 38.920725], + [-77.10767, 38.920747], + [-77.107681, 38.920766], + [-77.107671, 38.920789], + [-77.107694, 38.920791], + [-77.107719, 38.920782], + [-77.107738, 38.920799], + [-77.107741, 38.920824], + [-77.107758, 38.920843], + [-77.10778, 38.920864], + [-77.107804, 38.920874], + [-77.107829, 38.920882], + [-77.107842, 38.9209], + [-77.107872, 38.920907], + [-77.107899, 38.92092], + [-77.107921, 38.920933], + [-77.107941, 38.920949], + [-77.107973, 38.920957], + [-77.107995, 38.920966], + [-77.108017, 38.920986], + [-77.108048, 38.921007], + [-77.108062, 38.921022], + [-77.108085, 38.921047], + [-77.108114, 38.921067], + [-77.108136, 38.921087], + [-77.108148, 38.921109], + [-77.108172, 38.921126], + [-77.108188, 38.921148], + [-77.108201, 38.921178], + [-77.108207, 38.921211], + [-77.10821, 38.921241], + [-77.108206, 38.921263], + [-77.10821, 38.921285], + [-77.108237, 38.921287], + [-77.108255, 38.9213], + [-77.10828, 38.921325], + [-77.108293, 38.921344], + [-77.108325, 38.921347], + [-77.108355, 38.921357], + [-77.108375, 38.921377], + [-77.108389, 38.921396], + [-77.108411, 38.921417], + [-77.10843, 38.921438], + [-77.10843, 38.921466], + [-77.108445, 38.921486], + [-77.108461, 38.921498], + [-77.108478, 38.921526], + [-77.108492, 38.921546], + [-77.108487, 38.921568], + [-77.108489, 38.921589], + [-77.108515, 38.921602], + [-77.108531, 38.921625], + [-77.108515, 38.921644], + [-77.108533, 38.921656], + [-77.108555, 38.921649], + [-77.108573, 38.921634], + [-77.108594, 38.921618], + [-77.108617, 38.921636], + [-77.108634, 38.921654], + [-77.108654, 38.921671], + [-77.108671, 38.921687], + [-77.108683, 38.921709], + [-77.108705, 38.921725], + [-77.108729, 38.921728], + [-77.108757, 38.921732], + [-77.10876, 38.921752], + [-77.108757, 38.921775], + [-77.108748, 38.921798], + [-77.108748, 38.921821], + [-77.108769, 38.921836], + [-77.108792, 38.921842], + [-77.108819, 38.921831], + [-77.10885, 38.921836], + [-77.108847, 38.921856], + [-77.108848, 38.921879], + [-77.108878, 38.921878], + [-77.108904, 38.921867], + [-77.108929, 38.921873], + [-77.108957, 38.921864], + [-77.108976, 38.921848], + [-77.109001, 38.921864], + [-77.109008, 38.921886], + [-77.109024, 38.921901], + [-77.109046, 38.921913], + [-77.10907, 38.921922], + [-77.109095, 38.921933], + [-77.109116, 38.921948], + [-77.109131, 38.921966], + [-77.10914, 38.921989], + [-77.109143, 38.922009], + [-77.10916, 38.922024], + [-77.10918, 38.922047], + [-77.109194, 38.922062], + [-77.109216, 38.922076], + [-77.10924, 38.922083], + [-77.109262, 38.922093], + [-77.109286, 38.922105], + [-77.109321, 38.922117], + [-77.109346, 38.922137], + [-77.109383, 38.922174], + [-77.10939, 38.922197], + [-77.10938, 38.922216], + [-77.109369, 38.922234], + [-77.109369, 38.922255], + [-77.10939, 38.922247], + [-77.109404, 38.922231], + [-77.109428, 38.922236], + [-77.109456, 38.922248], + [-77.109491, 38.922257], + [-77.109517, 38.922272], + [-77.109547, 38.922293], + [-77.10958, 38.922312], + [-77.109614, 38.922331], + [-77.109655, 38.922344], + [-77.10969, 38.922364], + [-77.109714, 38.922389], + [-77.109721, 38.922411], + [-77.109737, 38.922425], + [-77.109775, 38.922434], + [-77.109812, 38.922453], + [-77.109844, 38.922466], + [-77.10987, 38.922486], + [-77.109891, 38.922514], + [-77.109899, 38.922531], + [-77.109907, 38.922563], + [-77.109913, 38.922592], + [-77.109924, 38.92262], + [-77.109941, 38.92264], + [-77.109968, 38.922653], + [-77.109998, 38.922666], + [-77.11002, 38.922682], + [-77.110023, 38.922706], + [-77.110039, 38.922722], + [-77.110067, 38.922721], + [-77.110098, 38.922724], + [-77.110124, 38.92274], + [-77.110136, 38.922763], + [-77.110157, 38.922774], + [-77.110188, 38.922786], + [-77.11021, 38.922803], + [-77.110234, 38.922816], + [-77.110257, 38.922813], + [-77.110283, 38.922821], + [-77.110301, 38.922838], + [-77.110318, 38.922862], + [-77.110342, 38.922876], + [-77.110359, 38.922901], + [-77.110374, 38.922925], + [-77.110386, 38.922943], + [-77.110388, 38.922964], + [-77.110407, 38.922981], + [-77.110431, 38.922969], + [-77.110456, 38.922987], + [-77.11048, 38.923001], + [-77.110511, 38.923012], + [-77.110544, 38.923023], + [-77.11057, 38.923039], + [-77.110585, 38.923072], + [-77.110605, 38.923104], + [-77.110631, 38.923134], + [-77.110646, 38.923161], + [-77.110648, 38.923182], + [-77.110676, 38.923196], + [-77.110694, 38.923217], + [-77.110717, 38.923226], + [-77.110746, 38.923242], + [-77.110778, 38.923259], + [-77.110807, 38.923278], + [-77.110837, 38.923296], + [-77.110863, 38.92332], + [-77.110885, 38.923348], + [-77.110904, 38.923374], + [-77.110906, 38.923401], + [-77.110896, 38.923423], + [-77.110911, 38.92344], + [-77.110942, 38.923434], + [-77.110967, 38.923434], + [-77.110975, 38.923455], + [-77.111001, 38.923468], + [-77.111031, 38.923477], + [-77.111064, 38.923486], + [-77.11109, 38.923491], + [-77.111113, 38.923501], + [-77.111136, 38.923509], + [-77.111165, 38.923518], + [-77.111177, 38.923543], + [-77.111186, 38.923564], + [-77.111216, 38.923575], + [-77.111227, 38.923592], + [-77.111254, 38.923593], + [-77.111275, 38.923607], + [-77.11127, 38.923632], + [-77.11128, 38.923657], + [-77.111298, 38.923677], + [-77.111322, 38.923674], + [-77.111346, 38.923688], + [-77.11136, 38.923715], + [-77.111383, 38.923746], + [-77.111395, 38.923763], + [-77.111404, 38.923794], + [-77.111407, 38.92382], + [-77.111419, 38.923846], + [-77.111452, 38.923843], + [-77.111475, 38.923856], + [-77.1115, 38.923861], + [-77.111527, 38.92387], + [-77.111555, 38.923879], + [-77.111557, 38.923904], + [-77.111588, 38.923912], + [-77.111614, 38.923927], + [-77.111633, 38.923943], + [-77.111662, 38.923948], + [-77.111681, 38.92396], + [-77.111694, 38.92398], + [-77.111721, 38.923992], + [-77.111746, 38.924003], + [-77.111774, 38.924012], + [-77.1118, 38.924022], + [-77.111827, 38.924032], + [-77.111837, 38.92405], + [-77.111829, 38.924073], + [-77.111838, 38.924103], + [-77.111866, 38.924109], + [-77.111897, 38.924101], + [-77.111918, 38.924119], + [-77.111947, 38.924125], + [-77.111964, 38.924139], + [-77.11198, 38.92416], + [-77.111976, 38.924193], + [-77.111973, 38.924211], + [-77.111989, 38.924224], + [-77.11201, 38.924232], + [-77.112013, 38.924252], + [-77.112021, 38.924271], + [-77.112054, 38.924266], + [-77.112089, 38.924265], + [-77.112094, 38.924284], + [-77.112113, 38.924296], + [-77.112137, 38.924295], + [-77.112169, 38.924299], + [-77.112176, 38.924322], + [-77.112183, 38.924346], + [-77.112196, 38.924363], + [-77.112222, 38.924377], + [-77.112233, 38.924407], + [-77.112254, 38.92443], + [-77.112275, 38.924448], + [-77.112297, 38.924459], + [-77.112325, 38.92445], + [-77.11236, 38.924445], + [-77.112398, 38.924452], + [-77.112426, 38.924467], + [-77.112434, 38.924491], + [-77.112439, 38.924514], + [-77.112463, 38.924525], + [-77.112484, 38.924541], + [-77.11251, 38.924553], + [-77.112527, 38.924577], + [-77.11254, 38.924599], + [-77.112565, 38.924615], + [-77.112588, 38.924635], + [-77.112614, 38.924651], + [-77.11264, 38.924655], + [-77.112661, 38.924665], + [-77.11268, 38.924696], + [-77.112704, 38.924728], + [-77.112717, 38.924745], + [-77.112729, 38.924761], + [-77.112753, 38.924799], + [-77.112769, 38.924816], + [-77.112785, 38.924832], + [-77.1128, 38.92486], + [-77.112798, 38.924881], + [-77.112772, 38.924885], + [-77.112747, 38.924889], + [-77.112742, 38.924911], + [-77.112751, 38.924928], + [-77.112758, 38.924947], + [-77.112786, 38.92495], + [-77.112808, 38.924958], + [-77.112831, 38.924969], + [-77.112848, 38.924993], + [-77.112861, 38.925015], + [-77.112842, 38.925033], + [-77.112856, 38.925053], + [-77.112881, 38.925053], + [-77.112896, 38.925076], + [-77.112911, 38.925093], + [-77.112922, 38.92507], + [-77.11295, 38.925067], + [-77.112969, 38.92509], + [-77.112993, 38.925119], + [-77.113016, 38.925134], + [-77.113034, 38.925155], + [-77.11303, 38.925178], + [-77.113032, 38.9252], + [-77.113065, 38.925204], + [-77.113087, 38.925216], + [-77.113094, 38.925235], + [-77.1131, 38.925249], + [-77.113102, 38.925248], + [-77.113106, 38.925257], + [-77.113122, 38.925273], + [-77.113149, 38.925262], + [-77.113166, 38.925281], + [-77.113176, 38.925297], + [-77.113189, 38.925321], + [-77.113218, 38.925324], + [-77.113233, 38.925338], + [-77.113248, 38.925358], + [-77.11327, 38.925368], + [-77.113295, 38.925373], + [-77.11333, 38.925371], + [-77.113353, 38.925376], + [-77.11337, 38.925392], + [-77.113382, 38.925411], + [-77.113408, 38.925426], + [-77.113408, 38.92548], + [-77.113427, 38.925495], + [-77.113428, 38.925515], + [-77.113436, 38.925537], + [-77.11345, 38.925562], + [-77.113472, 38.925584], + [-77.113489, 38.925606], + [-77.113508, 38.925627], + [-77.11352, 38.925645], + [-77.113532, 38.925664], + [-77.113548, 38.925679], + [-77.113554, 38.925707], + [-77.113555, 38.92574], + [-77.113568, 38.925762], + [-77.113593, 38.925758], + [-77.113619, 38.925749], + [-77.113634, 38.925774], + [-77.113655, 38.92579], + [-77.113663, 38.925814], + [-77.113666, 38.925834], + [-77.113684, 38.925854], + [-77.113699, 38.925873], + [-77.113717, 38.92586], + [-77.113741, 38.925854], + [-77.11376, 38.925877], + [-77.11376, 38.925902], + [-77.113759, 38.925923], + [-77.113758, 38.925949], + [-77.11376, 38.925976], + [-77.113782, 38.925994], + [-77.113806, 38.926008], + [-77.113832, 38.926013], + [-77.113863, 38.926024], + [-77.113881, 38.926039], + [-77.113901, 38.926062], + [-77.113926, 38.92608], + [-77.113943, 38.9261], + [-77.113955, 38.92612], + [-77.113956, 38.926141], + [-77.11398, 38.926138], + [-77.114005, 38.926147], + [-77.114023, 38.926169], + [-77.114024, 38.926196], + [-77.114025, 38.926218], + [-77.114022, 38.926239], + [-77.114024, 38.926266], + [-77.11404, 38.926287], + [-77.114071, 38.926287], + [-77.114086, 38.926301], + [-77.114103, 38.926318], + [-77.114119, 38.926339], + [-77.114127, 38.926367], + [-77.114133, 38.926394], + [-77.114138, 38.926422], + [-77.114154, 38.926445], + [-77.114172, 38.926468], + [-77.114182, 38.926493], + [-77.114197, 38.926512], + [-77.114215, 38.926531], + [-77.114231, 38.926549], + [-77.114251, 38.926571], + [-77.114252, 38.926593], + [-77.114253, 38.926616], + [-77.114279, 38.926625], + [-77.114298, 38.926613], + [-77.114321, 38.92663], + [-77.11435, 38.926641], + [-77.114372, 38.926657], + [-77.11439, 38.926673], + [-77.114406, 38.926697], + [-77.114408, 38.926722], + [-77.114423, 38.926744], + [-77.114436, 38.92677], + [-77.114451, 38.926793], + [-77.114464, 38.926816], + [-77.114483, 38.926833], + [-77.114493, 38.926859], + [-77.114517, 38.926876], + [-77.114528, 38.926895], + [-77.114524, 38.926919], + [-77.11453, 38.926943], + [-77.114552, 38.926956], + [-77.114589, 38.926968], + [-77.114624, 38.926985], + [-77.114641, 38.927013], + [-77.114644, 38.927041], + [-77.11467, 38.927063], + [-77.114702, 38.927065], + [-77.114737, 38.927075], + [-77.114764, 38.927097], + [-77.114784, 38.927126], + [-77.114787, 38.927158], + [-77.114789, 38.927177], + [-77.11478, 38.927197], + [-77.114762, 38.92721], + [-77.114776, 38.92723], + [-77.114798, 38.927222], + [-77.114824, 38.92722], + [-77.114803, 38.927245], + [-77.114816, 38.92726], + [-77.11483, 38.927284], + [-77.114843, 38.927306], + [-77.114864, 38.927327], + [-77.114887, 38.927329], + [-77.114905, 38.927347], + [-77.114901, 38.927366], + [-77.114905, 38.927384], + [-77.114931, 38.927396], + [-77.114955, 38.927386], + [-77.114946, 38.927367], + [-77.114943, 38.927349], + [-77.114971, 38.927364], + [-77.114997, 38.927372], + [-77.115057, 38.92738], + [-77.115086, 38.927398], + [-77.115122, 38.927409], + [-77.11515, 38.927417], + [-77.115179, 38.927442], + [-77.115204, 38.927468], + [-77.11522, 38.927495], + [-77.115238, 38.927518], + [-77.115261, 38.927538], + [-77.115279, 38.927565], + [-77.115288, 38.927591], + [-77.115308, 38.927608], + [-77.115329, 38.92763], + [-77.115332, 38.927654], + [-77.115337, 38.927675], + [-77.115367, 38.927664], + [-77.11539, 38.927649], + [-77.115415, 38.927658], + [-77.115443, 38.927676], + [-77.11545, 38.927701], + [-77.115471, 38.927721], + [-77.115496, 38.927722], + [-77.11552, 38.927718], + [-77.115532, 38.927734], + [-77.115522, 38.927762], + [-77.115517, 38.927795], + [-77.11552, 38.927826], + [-77.11555, 38.927835], + [-77.115576, 38.927851], + [-77.115608, 38.927864], + [-77.115621, 38.927883], + [-77.115646, 38.927907], + [-77.115676, 38.927926], + [-77.115701, 38.927945], + [-77.115716, 38.927967], + [-77.115737, 38.927987], + [-77.115746, 38.928017], + [-77.115767, 38.928027], + [-77.115799, 38.928029], + [-77.115823, 38.928048], + [-77.115832, 38.928071], + [-77.115815, 38.928093], + [-77.11583, 38.928113], + [-77.115862, 38.928102], + [-77.115884, 38.92811], + [-77.115903, 38.928127], + [-77.115909, 38.928154], + [-77.115928, 38.928168], + [-77.115959, 38.928173], + [-77.115972, 38.928194], + [-77.115982, 38.92822], + [-77.115992, 38.928245], + [-77.116005, 38.92827], + [-77.116024, 38.928294], + [-77.116041, 38.928319], + [-77.116048, 38.928338], + [-77.116046, 38.928356], + [-77.116031, 38.928372], + [-77.116015, 38.928385], + [-77.116017, 38.928403], + [-77.116029, 38.92842], + [-77.116054, 38.928409], + [-77.116083, 38.92841], + [-77.116107, 38.928419], + [-77.116121, 38.928439], + [-77.116134, 38.92846], + [-77.116137, 38.928481], + [-77.116158, 38.928491], + [-77.116182, 38.928507], + [-77.116195, 38.928528], + [-77.116209, 38.928553], + [-77.116214, 38.92858], + [-77.116214, 38.928599], + [-77.116189, 38.928658], + [-77.116194, 38.928684], + [-77.116208, 38.928707], + [-77.116228, 38.92873], + [-77.116244, 38.928757], + [-77.116251, 38.928783], + [-77.116263, 38.928809], + [-77.116285, 38.928825], + [-77.116312, 38.928839], + [-77.116333, 38.928858], + [-77.11634, 38.928877], + [-77.116324, 38.928899], + [-77.116317, 38.928923], + [-77.116324, 38.928952], + [-77.11633, 38.929004], + [-77.116353, 38.929108], + [-77.116367, 38.929126], + [-77.116376, 38.929146], + [-77.11639, 38.929172], + [-77.116409, 38.929194], + [-77.116423, 38.929219], + [-77.116437, 38.929248], + [-77.116442, 38.929277], + [-77.116439, 38.92931], + [-77.116444, 38.929339], + [-77.116455, 38.929366], + [-77.116446, 38.929397], + [-77.116441, 38.929425], + [-77.116436, 38.929447], + [-77.116411, 38.92946], + [-77.11641, 38.929486], + [-77.116417, 38.92951], + [-77.116438, 38.929579], + [-77.116468, 38.929639], + [-77.116515, 38.929707], + [-77.116526, 38.929722], + [-77.116544, 38.929747], + [-77.11656, 38.929771], + [-77.116573, 38.929789], + [-77.116589, 38.929812], + [-77.1166, 38.929828], + [-77.11661, 38.929843], + [-77.116623, 38.92986], + [-77.116639, 38.929885], + [-77.116656, 38.929909], + [-77.116672, 38.929932], + [-77.116691, 38.929958], + [-77.116708, 38.929982], + [-77.11673, 38.930014], + [-77.116746, 38.930039], + [-77.116758, 38.930054], + [-77.11677, 38.930071], + [-77.116785, 38.930093], + [-77.116796, 38.93011], + [-77.116804, 38.93012], + [-77.11682, 38.930143], + [-77.116832, 38.93016], + [-77.116843, 38.930175], + [-77.116874, 38.930222], + [-77.116886, 38.930239], + [-77.116919, 38.930287], + [-77.116933, 38.930304], + [-77.116944, 38.93032], + [-77.116956, 38.930338], + [-77.116971, 38.930361], + [-77.116982, 38.930377], + [-77.116999, 38.9304], + [-77.117012, 38.930417], + [-77.117023, 38.930434], + [-77.11704, 38.930458], + [-77.117046, 38.930467], + [-77.117057, 38.930482], + [-77.117077, 38.930513], + [-77.117089, 38.93053], + [-77.117106, 38.930555], + [-77.117124, 38.930577], + [-77.117136, 38.930596], + [-77.117146, 38.930611], + [-77.117153, 38.93062], + [-77.117166, 38.930641], + [-77.11718, 38.930661], + [-77.117191, 38.930677], + [-77.117209, 38.9307], + [-77.117226, 38.930725], + [-77.117239, 38.930745], + [-77.117247, 38.930757], + [-77.117254, 38.930765], + [-77.117271, 38.930788], + [-77.117291, 38.930819], + [-77.11731, 38.930845], + [-77.117326, 38.93087], + [-77.117338, 38.930884], + [-77.11735, 38.930901], + [-77.117361, 38.930918], + [-77.11737, 38.930932], + [-77.117383, 38.93095], + [-77.1174, 38.930974], + [-77.117421, 38.931005], + [-77.117438, 38.93103], + [-77.117451, 38.931047], + [-77.117462, 38.931063], + [-77.117482, 38.931094], + [-77.117496, 38.931112], + [-77.117509, 38.931133], + [-77.117524, 38.931151], + [-77.117541, 38.931176], + [-77.117562, 38.931208], + [-77.11758, 38.931232], + [-77.117592, 38.931249], + [-77.117597, 38.931257], + [-77.117608, 38.931272], + [-77.117625, 38.931297], + [-77.117645, 38.931326], + [-77.117665, 38.931354], + [-77.117686, 38.931385], + [-77.117704, 38.93141], + [-77.11772, 38.931435], + [-77.117732, 38.93145], + [-77.117747, 38.931474], + [-77.11776, 38.931489], + [-77.117774, 38.931512], + [-77.117786, 38.93153], + [-77.117804, 38.931554], + [-77.117817, 38.931572], + [-77.117834, 38.931596], + [-77.117856, 38.931627], + [-77.117877, 38.93166], + [-77.11789, 38.931677], + [-77.117905, 38.9317], + [-77.11792, 38.931722], + [-77.117935, 38.931741], + [-77.117951, 38.931765], + [-77.117963, 38.931781], + [-77.117974, 38.931796], + [-77.117988, 38.931818], + [-77.118, 38.931835], + [-77.118011, 38.931852], + [-77.118029, 38.931878], + [-77.118047, 38.931902], + [-77.118059, 38.931919], + [-77.118076, 38.931942], + [-77.118096, 38.931973], + [-77.118113, 38.931998], + [-77.118132, 38.932024], + [-77.118149, 38.932048], + [-77.11816, 38.932063], + [-77.118175, 38.932087], + [-77.118183, 38.932097], + [-77.118199, 38.93212], + [-77.118216, 38.932144], + [-77.118232, 38.932169], + [-77.118244, 38.932184], + [-77.11826, 38.932209], + [-77.118277, 38.932234], + [-77.118295, 38.932257], + [-77.118306, 38.932273], + [-77.118323, 38.932297], + [-77.118338, 38.932321], + [-77.118351, 38.932338], + [-77.118373, 38.93237], + [-77.118385, 38.932386], + [-77.118396, 38.932401], + [-77.11841, 38.932424], + [-77.118424, 38.932442], + [-77.118436, 38.93246], + [-77.118453, 38.932484], + [-77.118468, 38.932507], + [-77.118479, 38.932522], + [-77.118492, 38.932539], + [-77.118506, 38.932561], + [-77.118524, 38.932588], + [-77.118537, 38.932604], + [-77.118553, 38.932629], + [-77.118564, 38.932645], + [-77.118577, 38.932662], + [-77.118588, 38.932677], + [-77.118598, 38.932693], + [-77.118613, 38.932715], + [-77.118631, 38.932741], + [-77.118647, 38.932764], + [-77.118655, 38.932774], + [-77.118675, 38.932803], + [-77.118689, 38.932822], + [-77.118706, 38.932847], + [-77.118723, 38.932871], + [-77.118739, 38.932895], + [-77.118748, 38.932908], + [-77.11876, 38.932926], + [-77.118783, 38.932958], + [-77.118802, 38.932984], + [-77.118819, 38.933009], + [-77.118836, 38.933033], + [-77.118852, 38.933056], + [-77.118864, 38.933073], + [-77.118877, 38.933093], + [-77.118892, 38.933113], + [-77.118912, 38.933143], + [-77.118926, 38.933161], + [-77.11894, 38.933183], + [-77.118953, 38.933202], + [-77.118965, 38.933217], + [-77.118985, 38.933248], + [-77.119004, 38.933273], + [-77.119016, 38.93329], + [-77.119031, 38.933314], + [-77.119049, 38.933338], + [-77.119072, 38.933371], + [-77.119083, 38.933386], + [-77.119094, 38.933403], + [-77.119106, 38.93342], + [-77.119121, 38.933442], + [-77.119139, 38.933468], + [-77.119156, 38.933492], + [-77.119164, 38.933504], + [-77.119183, 38.933532], + [-77.1192, 38.933555], + [-77.119213, 38.933574], + [-77.11923, 38.933597], + [-77.119246, 38.933621], + [-77.119263, 38.933645], + [-77.119282, 38.933673], + [-77.119296, 38.933693], + [-77.119312, 38.933715], + [-77.119328, 38.933739], + [-77.119342, 38.933759], + [-77.119361, 38.933786], + [-77.11937, 38.933799], + [-77.119384, 38.933819], + [-77.119395, 38.933835], + [-77.119414, 38.933862], + [-77.119432, 38.933887], + [-77.119466, 38.933937], + [-77.119488, 38.933968], + [-77.11951, 38.934], + [-77.119528, 38.934025], + [-77.119545, 38.93405], + [-77.119562, 38.934074], + [-77.119582, 38.934103], + [-77.119595, 38.934122], + [-77.119629, 38.93417], + [-77.119648, 38.934195], + [-77.119674, 38.934226], + [-77.119692, 38.934244], + [-77.119761, 38.934351], + [-77.120029, 38.934597], + [-77.120273, 38.934753], + [-77.120289, 38.934845], + [-77.120338, 38.934886], + [-77.120398, 38.934902], + [-77.120497, 38.934979], + [-77.12052, 38.935004], + [-77.120636, 38.935174], + [-77.120657, 38.935194], + [-77.120704, 38.935225], + [-77.120765, 38.935256], + [-77.120809, 38.935262], + [-77.120862, 38.935244], + [-77.120875, 38.935252], + [-77.12091, 38.935274], + [-77.120939, 38.9353], + [-77.121011, 38.935366], + [-77.121039, 38.935399], + [-77.121111, 38.935466], + [-77.121124, 38.935486], + [-77.121146, 38.935544], + [-77.121202, 38.935621], + [-77.121264, 38.935683], + [-77.121352, 38.93576], + [-77.121434, 38.935862], + [-77.121475, 38.935887], + [-77.121502, 38.935909], + [-77.121622, 38.936047], + [-77.121651, 38.936067], + [-77.121759, 38.936126], + [-77.121785, 38.936164], + [-77.121825, 38.936199], + [-77.121881, 38.93622], + [-77.121927, 38.936246], + [-77.121963, 38.936259], + [-77.121989, 38.936276], + [-77.122052, 38.936329], + [-77.122108, 38.936397], + [-77.122165, 38.936432], + [-77.122228, 38.93645], + [-77.122305, 38.936534], + [-77.122489, 38.936686], + [-77.122579, 38.936807], + [-77.122743, 38.936934], + [-77.122753, 38.936956], + [-77.122754, 38.936987], + [-77.122782, 38.937004], + [-77.12282, 38.936996], + [-77.122871, 38.936996], + [-77.122903, 38.937], + [-77.122943, 38.937013], + [-77.122991, 38.937042], + [-77.123017, 38.937076], + [-77.123047, 38.937139], + [-77.123079, 38.937159], + [-77.123134, 38.937164], + [-77.123171, 38.937185], + [-77.123249, 38.937267], + [-77.123316, 38.937324], + [-77.123375, 38.937336], + [-77.123422, 38.937358], + [-77.12352, 38.937429], + [-77.123603, 38.937512], + [-77.123648, 38.937547], + [-77.123683, 38.937591], + [-77.123724, 38.937629], + [-77.123786, 38.937666], + [-77.123848, 38.937719], + [-77.123881, 38.937739], + [-77.123912, 38.937772], + [-77.123965, 38.937843], + [-77.124031, 38.937951], + [-77.124074, 38.938004], + [-77.124132, 38.938087], + [-77.12427, 38.938229], + [-77.124302, 38.938267], + [-77.124321, 38.938283], + [-77.124417, 38.938364], + [-77.1245, 38.938456], + [-77.124564, 38.9385], + [-77.124633, 38.938556], + [-77.124675, 38.938575], + [-77.1247, 38.938592], + [-77.124865, 38.938688], + [-77.124967, 38.938759], + [-77.125009, 38.938794], + [-77.125063, 38.938825], + [-77.125107, 38.938859], + [-77.125119, 38.93889], + [-77.125132, 38.938908], + [-77.125222, 38.938928], + [-77.1253, 38.939008], + [-77.125297, 38.939032], + [-77.1253, 38.939052], + [-77.12536, 38.939069], + [-77.125411, 38.939107], + [-77.125453, 38.93916], + [-77.125522, 38.939223], + [-77.125624, 38.939287], + [-77.125701, 38.93935], + [-77.12578, 38.939389], + [-77.125877, 38.939445], + [-77.125891, 38.939475], + [-77.125924, 38.939506], + [-77.125984, 38.939543], + [-77.126021, 38.939566], + [-77.126056, 38.939583], + [-77.126165, 38.939665], + [-77.126194, 38.939675], + [-77.126223, 38.939677], + [-77.126275, 38.9397], + [-77.126383, 38.939774], + [-77.126406, 38.939832], + [-77.126454, 38.939871], + [-77.126598, 38.939949], + [-77.126687, 38.940007], + [-77.12674, 38.940036], + [-77.126762, 38.940063], + [-77.126784, 38.94008], + [-77.126859, 38.940083], + [-77.126899, 38.940106], + [-77.126935, 38.940142], + [-77.127042, 38.940225], + [-77.127149, 38.940267], + [-77.127182, 38.940286], + [-77.127218, 38.940319], + [-77.127264, 38.940353], + [-77.127285, 38.940361], + [-77.127322, 38.940388], + [-77.127387, 38.940445], + [-77.127465, 38.940488], + [-77.127539, 38.9405], + [-77.127651, 38.940541], + [-77.127676, 38.940557], + [-77.127737, 38.940611], + [-77.127782, 38.940641], + [-77.127819, 38.940655], + [-77.12784, 38.94067], + [-77.127885, 38.940685], + [-77.127924, 38.940693], + [-77.127976, 38.940733], + [-77.128052, 38.940783], + [-77.128138, 38.940832], + [-77.128202, 38.940882], + [-77.128284, 38.940972], + [-77.128296, 38.940992], + [-77.1283, 38.941025], + [-77.128314, 38.941043], + [-77.12838, 38.941081], + [-77.128408, 38.941104], + [-77.128424, 38.941138], + [-77.128426, 38.941165], + [-77.128439, 38.941206], + [-77.128458, 38.941235], + [-77.128478, 38.94125], + [-77.128505, 38.941263], + [-77.128613, 38.941358], + [-77.128656, 38.941406], + [-77.128711, 38.941504], + [-77.128746, 38.941531], + [-77.128765, 38.94158], + [-77.12882, 38.941694], + [-77.128842, 38.941774], + [-77.128856, 38.941789], + [-77.12889, 38.941809], + [-77.128904, 38.941826], + [-77.128951, 38.941906], + [-77.128969, 38.941928], + [-77.129014, 38.942004], + [-77.129052, 38.942103], + [-77.129074, 38.942145], + [-77.129124, 38.942221], + [-77.129141, 38.942262], + [-77.129171, 38.942452], + [-77.129242, 38.942613], + [-77.129253, 38.942672], + [-77.129268, 38.942709], + [-77.129291, 38.942744], + [-77.129317, 38.942768], + [-77.129339, 38.9428], + [-77.129355, 38.942835], + [-77.129357, 38.942863], + [-77.129343, 38.942891], + [-77.129333, 38.942935], + [-77.129335, 38.942977], + [-77.129385, 38.943041], + [-77.129415, 38.943068], + [-77.129451, 38.943083], + [-77.12947, 38.943099], + [-77.129486, 38.94313], + [-77.129533, 38.943178], + [-77.129555, 38.943215], + [-77.129584, 38.94334], + [-77.12959, 38.943408], + [-77.129631, 38.943519], + [-77.129678, 38.943595], + [-77.129706, 38.943615], + [-77.129714, 38.943644], + [-77.129722, 38.943771], + [-77.129752, 38.94382], + [-77.129802, 38.943947], + [-77.129927, 38.944144], + [-77.129938, 38.944177], + [-77.129974, 38.94424], + [-77.130009, 38.944282], + [-77.130151, 38.944421], + [-77.130186, 38.94448], + [-77.130247, 38.944564], + [-77.130289, 38.944617], + [-77.130296, 38.944646], + [-77.130311, 38.944664], + [-77.130331, 38.944678], + [-77.130359, 38.944692], + [-77.13037, 38.944697], + [-77.130388, 38.944738], + [-77.130417, 38.944784], + [-77.130461, 38.944837], + [-77.130515, 38.944929], + [-77.130558, 38.945062], + [-77.1306, 38.945158], + [-77.130626, 38.945218], + [-77.13069, 38.945364], + [-77.130748, 38.945575], + [-77.130867, 38.945915], + [-77.130882, 38.94593], + [-77.13099, 38.946146], + [-77.131054, 38.946248], + [-77.131102, 38.946368], + [-77.131118, 38.946396], + [-77.131159, 38.946439], + [-77.131192, 38.946508], + [-77.131205, 38.946551], + [-77.131196, 38.946573], + [-77.13119, 38.946606], + [-77.131237, 38.946617], + [-77.131273, 38.946669], + [-77.13129, 38.9467], + [-77.131308, 38.946732], + [-77.131317, 38.946762], + [-77.131332, 38.946782], + [-77.131357, 38.946794], + [-77.131379, 38.94681], + [-77.131413, 38.946874], + [-77.131481, 38.946978], + [-77.131528, 38.947109], + [-77.13155, 38.94713], + [-77.131641, 38.947311], + [-77.131634, 38.947334], + [-77.131645, 38.947375], + [-77.131653, 38.947405], + [-77.131696, 38.947434], + [-77.131707, 38.947452], + [-77.131699, 38.947471], + [-77.131717, 38.947494], + [-77.131738, 38.947521], + [-77.131716, 38.947529], + [-77.131712, 38.947532], + [-77.131689, 38.947548], + [-77.13168, 38.947565], + [-77.131697, 38.947592], + [-77.131721, 38.947593], + [-77.131789, 38.947584], + [-77.131923, 38.947546], + [-77.131935, 38.947522], + [-77.13194, 38.947499], + [-77.131969, 38.947498], + [-77.131985, 38.947511], + [-77.131996, 38.947554], + [-77.13205, 38.947621], + [-77.132039, 38.947641], + [-77.132022, 38.94766], + [-77.132017, 38.947678], + [-77.132028, 38.947694], + [-77.132017, 38.947711], + [-77.131996, 38.947731], + [-77.132022, 38.947764], + [-77.132092, 38.947883], + [-77.13225, 38.948143], + [-77.1323, 38.948248], + [-77.132322, 38.948285], + [-77.132352, 38.948324], + [-77.132472, 38.948458], + [-77.13249, 38.948487], + [-77.132504, 38.948532], + [-77.13253, 38.948584], + [-77.132562, 38.948667], + [-77.132618, 38.948764], + [-77.132661, 38.948825], + [-77.132674, 38.948857], + [-77.132712, 38.948918], + [-77.132769, 38.948981], + [-77.13284, 38.949111], + [-77.132917, 38.949212], + [-77.132918, 38.949234], + [-77.132937, 38.949245], + [-77.132929, 38.949278], + [-77.132999, 38.949393], + [-77.133021, 38.94944], + [-77.13305, 38.949501], + [-77.133086, 38.949566], + [-77.133156, 38.949692], + [-77.133185, 38.949766], + [-77.133329, 38.950001], + [-77.133359, 38.950022], + [-77.133377, 38.950075], + [-77.13352, 38.950349], + [-77.133559, 38.950447], + [-77.133651, 38.950632], + [-77.133693, 38.950693], + [-77.133773, 38.950841], + [-77.133784, 38.950932], + [-77.133794, 38.950957], + [-77.133849, 38.951002], + [-77.133883, 38.951047], + [-77.133908, 38.951097], + [-77.13391, 38.95114], + [-77.134004, 38.951331], + [-77.134007, 38.951349], + [-77.134044, 38.95141], + [-77.134062, 38.951482], + [-77.134074, 38.951507], + [-77.134166, 38.951642], + [-77.134191, 38.951722], + [-77.134209, 38.951764], + [-77.13426, 38.951813], + [-77.134312, 38.951896], + [-77.134351, 38.951992], + [-77.134395, 38.952055], + [-77.13448, 38.95216], + [-77.134488, 38.95217], + [-77.134598, 38.952391], + [-77.134658, 38.952476], + [-77.134783, 38.952669], + [-77.134882, 38.952858], + [-77.134907, 38.95289], + [-77.134923, 38.952923], + [-77.134923, 38.952945], + [-77.134952, 38.953013], + [-77.134987, 38.953071], + [-77.1351, 38.95322], + [-77.135255, 38.953521], + [-77.135326, 38.953609], + [-77.135445, 38.953708], + [-77.13547, 38.953738], + [-77.135488, 38.953788], + [-77.135543, 38.953857], + [-77.135578, 38.953888], + [-77.135629, 38.953922], + [-77.13565, 38.953939], + [-77.135649, 38.953957], + [-77.135668, 38.953968], + [-77.1357, 38.954018], + [-77.135714, 38.954039], + [-77.135736, 38.954065], + [-77.135745, 38.954094], + [-77.135773, 38.95412], + [-77.135834, 38.954163], + [-77.135881, 38.954211], + [-77.135948, 38.954308], + [-77.136002, 38.954373], + [-77.136086, 38.954457], + [-77.13612, 38.954483], + [-77.136145, 38.954509], + [-77.136188, 38.954543], + [-77.136206, 38.954577], + [-77.136234, 38.954603], + [-77.136268, 38.954627], + [-77.136377, 38.954749], + [-77.136438, 38.954791], + [-77.136492, 38.954815], + [-77.136576, 38.954872], + [-77.136678, 38.95496], + [-77.136775, 38.95502], + [-77.13682, 38.955054], + [-77.136942, 38.955184], + [-77.13699, 38.955209], + [-77.137032, 38.955237], + [-77.137089, 38.955309], + [-77.137111, 38.955327], + [-77.137208, 38.955386], + [-77.137265, 38.95541], + [-77.137394, 38.95552], + [-77.137572, 38.955621], + [-77.137662, 38.955658], + [-77.137709, 38.955687], + [-77.137754, 38.955709], + [-77.137881, 38.95576], + [-77.137921, 38.955759], + [-77.137944, 38.955765], + [-77.13797, 38.95578], + [-77.138008, 38.95581], + [-77.138013, 38.955828], + [-77.13803, 38.956025], + [-77.138075, 38.956085], + [-77.13812, 38.956103], + [-77.13816, 38.956108], + [-77.138187, 38.956127], + [-77.138327, 38.956283], + [-77.138377, 38.956345], + [-77.138753, 38.956733], + [-77.138904, 38.956904], + [-77.139181, 38.957173], + [-77.139234, 38.957215], + [-77.139279, 38.957258], + [-77.139393, 38.957348], + [-77.139468, 38.957424], + [-77.139561, 38.957486], + [-77.139646, 38.957549], + [-77.139749, 38.957604], + [-77.139773, 38.9576], + [-77.139857, 38.957555], + [-77.139865, 38.957572], + [-77.139852, 38.957588], + [-77.139806, 38.957619], + [-77.13981, 38.957649], + [-77.139838, 38.957676], + [-77.139916, 38.957719], + [-77.13995, 38.957742], + [-77.140089, 38.95782], + [-77.140117, 38.95784], + [-77.140141, 38.957865], + [-77.1402, 38.957897], + [-77.140271, 38.957945], + [-77.140311, 38.957966], + [-77.140499, 38.958087], + [-77.140609, 38.958172], + [-77.140696, 38.958233], + [-77.140836, 38.958364], + [-77.140898, 38.958412], + [-77.140931, 38.958452], + [-77.140953, 38.958478], + [-77.140997, 38.958522], + [-77.141047, 38.958588], + [-77.141111, 38.958734], + [-77.141156, 38.958789], + [-77.14128, 38.958894], + [-77.141447, 38.959084], + [-77.141533, 38.959171], + [-77.141674, 38.959348], + [-77.141765, 38.959496], + [-77.141838, 38.959577], + [-77.141863, 38.959663], + [-77.141897, 38.95971], + [-77.141929, 38.95973], + [-77.141978, 38.959796], + [-77.142004, 38.959822], + [-77.142077, 38.959854], + [-77.142107, 38.959878], + [-77.142177, 38.959973], + [-77.142229, 38.960025], + [-77.142309, 38.960115], + [-77.142328, 38.960144], + [-77.142371, 38.960188], + [-77.142405, 38.960271], + [-77.142437, 38.960297], + [-77.14245, 38.96031], + [-77.14247, 38.960332], + [-77.142506, 38.960403], + [-77.142519, 38.960468], + [-77.142549, 38.960529], + [-77.142632, 38.960618], + [-77.142692, 38.960664], + [-77.142839, 38.960844], + [-77.142904, 38.960908], + [-77.143008, 38.960974], + [-77.143115, 38.961097], + [-77.143228, 38.961209], + [-77.143412, 38.961436], + [-77.143559, 38.961583], + [-77.143668, 38.961718], + [-77.143872, 38.961884], + [-77.143937, 38.961942], + [-77.144098, 38.962073], + [-77.144199, 38.962171], + [-77.144297, 38.962298], + [-77.144322, 38.962322], + [-77.144429, 38.962396], + [-77.144469, 38.962419], + [-77.144509, 38.962449], + [-77.144586, 38.962541], + [-77.144684, 38.962649], + [-77.144723, 38.962716], + [-77.144805, 38.962816], + [-77.144916, 38.96293], + [-77.14492, 38.962934], + [-77.14501, 38.963035], + [-77.145083, 38.963154], + [-77.145353, 38.963317], + [-77.145534, 38.963412], + [-77.145618, 38.963447], + [-77.145685, 38.963459], + [-77.145727, 38.963495], + [-77.145802, 38.963498], + [-77.145849, 38.963512], + [-77.145973, 38.963532], + [-77.146025, 38.963552], + [-77.146071, 38.96358], + [-77.146111, 38.963613], + [-77.146142, 38.963654], + [-77.146195, 38.963704], + [-77.146215, 38.963732], + [-77.146263, 38.963763], + [-77.146455, 38.963903], + [-77.146546, 38.963986], + [-77.146636, 38.964054], + [-77.146806, 38.964208], + [-77.146949, 38.964274], + [-77.147102, 38.964386], + [-77.147199, 38.964447], + [-77.147305, 38.964494], + [-77.147432, 38.964534], + [-77.147547, 38.964584], + [-77.147648, 38.964611], + [-77.147649, 38.964612], + [-77.147755, 38.964623], + [-77.147979, 38.96468], + [-77.148056, 38.964715], + [-77.148174, 38.964751], + [-77.148268, 38.964773], + [-77.148348, 38.964791], + [-77.148381, 38.964802], + [-77.148411, 38.964817], + [-77.148482, 38.964863], + [-77.148548, 38.964923], + [-77.148593, 38.964956], + [-77.148677, 38.965006], + [-77.148775, 38.965044], + [-77.148955, 38.96508], + [-77.149071, 38.965113], + [-77.149242, 38.965183], + [-77.149333, 38.965209], + [-77.14939, 38.965213], + [-77.149521, 38.965249], + [-77.149656, 38.965268], + [-77.14969, 38.965278], + [-77.149721, 38.965293], + [-77.149759, 38.965329], + [-77.149801, 38.965367], + [-77.149849, 38.965384], + [-77.149963, 38.965404], + [-77.149975, 38.965405], + [-77.150028, 38.965411], + [-77.150091, 38.965423], + [-77.150327, 38.965526], + [-77.150383, 38.965544], + [-77.150411, 38.965548], + [-77.150499, 38.96555], + [-77.150554, 38.965559], + [-77.150598, 38.965591], + [-77.150648, 38.965603], + [-77.150682, 38.965623], + [-77.150694, 38.96563], + [-77.150879, 38.96567], + [-77.150939, 38.965673], + [-77.151121, 38.965667], + [-77.15131, 38.965648], + [-77.151371, 38.965652], + [-77.151441, 38.965676], + [-77.15167, 38.965715], + [-77.1518, 38.965717], + [-77.152007, 38.965751], + [-77.152068, 38.965754], + [-77.152367, 38.965748], + [-77.152501, 38.96574], + [-77.152562, 38.965731], + [-77.152744, 38.965691], + [-77.152873, 38.965721], + [-77.153086, 38.965723], + [-77.153201, 38.965719], + [-77.153243, 38.965725], + [-77.153365, 38.96576], + [-77.153413, 38.965763], + [-77.153569, 38.965761], + [-77.153691, 38.965765], + [-77.153745, 38.965781], + [-77.154064, 38.965771], + [-77.154323, 38.965782], + [-77.154375, 38.965795], + [-77.154463, 38.9658], + [-77.154774, 38.965842], + [-77.154904, 38.965844], + [-77.154952, 38.965837], + [-77.154996, 38.96584], + [-77.155432, 38.965949], + [-77.155547, 38.965971], + [-77.15561, 38.965973], + [-77.155624, 38.965975], + [-77.155626, 38.965975], + [-77.155694, 38.965985], + [-77.155921, 38.96599], + [-77.156037, 38.965996], + [-77.156114, 38.965989], + [-77.156132, 38.966017], + [-77.156153, 38.966025], + [-77.156252, 38.965985], + [-77.156281, 38.96598], + [-77.156416, 38.965972], + [-77.156442, 38.965974], + [-77.156501, 38.965979], + [-77.156562, 38.965978], + [-77.156624, 38.965969], + [-77.156672, 38.965954], + [-77.156779, 38.96591], + [-77.156882, 38.965851], + [-77.156904, 38.96583], + [-77.156895, 38.965874], + [-77.156878, 38.965902], + [-77.156849, 38.965926], + [-77.15672, 38.965984], + [-77.156696, 38.96601], + [-77.156734, 38.966018], + [-77.156773, 38.966016], + [-77.156826, 38.966007], + [-77.156868, 38.966006], + [-77.15691, 38.96601], + [-77.156954, 38.966025], + [-77.157024, 38.966026], + [-77.157079, 38.966041], + [-77.15712, 38.966041], + [-77.157142, 38.966049], + [-77.157157, 38.966067], + [-77.157277, 38.966062], + [-77.157326, 38.966013], + [-77.157356, 38.96597], + [-77.157363, 38.965944], + [-77.157353, 38.965907], + [-77.157336, 38.965878], + [-77.157297, 38.965854], + [-77.157275, 38.965825], + [-77.157269, 38.965784], + [-77.157299, 38.965804], + [-77.157362, 38.965825], + [-77.157363, 38.965853], + [-77.157385, 38.96586], + [-77.157571, 38.96586], + [-77.157651, 38.965858], + [-77.157701, 38.965856], + [-77.157836, 38.965851], + [-77.157907, 38.965838], + [-77.158029, 38.965824], + [-77.1581, 38.965801], + [-77.158163, 38.965795], + [-77.158223, 38.965799], + [-77.158278, 38.965816], + [-77.158312, 38.965833], + [-77.158566, 38.965833], + [-77.15865, 38.965845], + [-77.158872, 38.965861], + [-77.158957, 38.965883], + [-77.15901, 38.965892], + [-77.159134, 38.965914], + [-77.159265, 38.965956], + [-77.159318, 38.965971], + [-77.159378, 38.965979], + [-77.159542, 38.965988], + [-77.159686, 38.966029], + [-77.159817, 38.966057], + [-77.159901, 38.966079], + [-77.16002, 38.966137], + [-77.160086, 38.966153], + [-77.160166, 38.966167], + [-77.160215, 38.966176], + [-77.160424, 38.966214], + [-77.16049, 38.966199], + [-77.160599, 38.966182], + [-77.160645, 38.966186], + [-77.16069, 38.966199], + [-77.16091, 38.966288], + [-77.161026, 38.966328], + [-77.161075, 38.96635], + [-77.161132, 38.966379], + [-77.161209, 38.966435], + [-77.161351, 38.966517], + [-77.161502, 38.966569], + [-77.161571, 38.966579], + [-77.161621, 38.966593], + [-77.161655, 38.966617], + [-77.161733, 38.966714], + [-77.161782, 38.966741], + [-77.16183, 38.966735], + [-77.161876, 38.966724], + [-77.161933, 38.966728], + [-77.161979, 38.966755], + [-77.162166, 38.966828], + [-77.162253, 38.966871], + [-77.162313, 38.966916], + [-77.162346, 38.966951], + [-77.162414, 38.967005], + [-77.16251, 38.967053], + [-77.162588, 38.967121], + [-77.162749, 38.96723], + [-77.162791, 38.96725], + [-77.163003, 38.967305], + [-77.163053, 38.967333], + [-77.163099, 38.967371], + [-77.16315, 38.967384], + [-77.163194, 38.967367], + [-77.163224, 38.967326], + [-77.163224, 38.967287], + [-77.163242, 38.967188], + [-77.163257, 38.967161], + [-77.163279, 38.967141], + [-77.163308, 38.967127], + [-77.163327, 38.967181], + [-77.163364, 38.967206], + [-77.163377, 38.967248], + [-77.163341, 38.967297], + [-77.163334, 38.967332], + [-77.163353, 38.96735], + [-77.163405, 38.967364], + [-77.163517, 38.967383], + [-77.163552, 38.967409], + [-77.163618, 38.967417], + [-77.163709, 38.967444], + [-77.163762, 38.967467], + [-77.163852, 38.967518], + [-77.16389, 38.967548], + [-77.163994, 38.967604], + [-77.164078, 38.967638], + [-77.164146, 38.967654], + [-77.164269, 38.967703], + [-77.164352, 38.967724], + [-77.164399, 38.967729], + [-77.16455, 38.96773], + [-77.164697, 38.967756], + [-77.164841, 38.967757], + [-77.164994, 38.967769], + [-77.165163, 38.967767], + [-77.165215, 38.967767], + [-77.165364, 38.967766], + [-77.165463, 38.967747], + [-77.165513, 38.967754], + [-77.165551, 38.967772], + [-77.165581, 38.967759], + [-77.165651, 38.967711], + [-77.165697, 38.967701], + [-77.165864, 38.967678], + [-77.165925, 38.967661], + [-77.165957, 38.967656], + [-77.166043, 38.96763], + [-77.16618, 38.967624], + [-77.166269, 38.967604], + [-77.166367, 38.967609], + [-77.166425, 38.967604], + [-77.166479, 38.967594], + [-77.166529, 38.967578], + [-77.166576, 38.967558], + [-77.166626, 38.967531], + [-77.166705, 38.967489], + [-77.166795, 38.967473], + [-77.166834, 38.967458], + [-77.166956, 38.967396], + [-77.166986, 38.967398], + [-77.167046, 38.967405], + [-77.167135, 38.967389], + [-77.167279, 38.967347], + [-77.167446, 38.967326], + [-77.16757, 38.967322], + [-77.167633, 38.967306], + [-77.167694, 38.967278], + [-77.167766, 38.96723], + [-77.167832, 38.967199], + [-77.167902, 38.967176], + [-77.168171, 38.967125], + [-77.168244, 38.967102], + [-77.168302, 38.967095], + [-77.168394, 38.967072], + [-77.168447, 38.967047], + [-77.168485, 38.967019], + [-77.168502, 38.967], + [-77.168532, 38.966937], + [-77.168545, 38.966885], + [-77.16855, 38.966805], + [-77.168559, 38.966778], + [-77.168661, 38.966675], + [-77.168777, 38.966586], + [-77.16878, 38.966571], + [-77.168787, 38.966543], + [-77.168846, 38.966489], + [-77.16888, 38.966446], + [-77.168952, 38.966415], + [-77.168971, 38.966387], + [-77.169005, 38.966354], + [-77.169029, 38.966342], + [-77.169107, 38.966322], + [-77.169114, 38.966318], + [-77.169127, 38.966312], + [-77.169142, 38.966283], + [-77.169198, 38.966316], + [-77.169228, 38.966326], + [-77.169259, 38.96633], + [-77.169804, 38.966323], + [-77.169851, 38.966331], + [-77.169983, 38.966371], + [-77.170043, 38.966402], + [-77.170178, 38.966452], + [-77.170223, 38.966462], + [-77.170267, 38.966463], + [-77.170401, 38.966447], + [-77.170533, 38.966448], + [-77.17061, 38.966456], + [-77.170683, 38.966477], + [-77.170807, 38.966498], + [-77.171012, 38.966498], + [-77.171125, 38.966534], + [-77.171294, 38.966616], + [-77.171321, 38.966638], + [-77.171346, 38.966668], + [-77.171422, 38.966779], + [-77.171447, 38.966797], + [-77.171539, 38.966847], + [-77.171586, 38.966924], + [-77.17161, 38.966945], + [-77.17174, 38.967007], + [-77.171783, 38.96704], + [-77.17184, 38.967075], + [-77.171889, 38.967119], + [-77.171938, 38.967162], + [-77.171947, 38.967184], + [-77.171994, 38.967255], + [-77.172193, 38.967408], + [-77.172286, 38.96746], + [-77.172323, 38.967473], + [-77.172444, 38.967502], + [-77.17256, 38.967502], + [-77.172592, 38.967505], + [-77.172763, 38.967542], + [-77.172813, 38.967568], + [-77.172865, 38.967618], + [-77.172906, 38.967641], + [-77.172966, 38.967659], + [-77.173028, 38.967668], + [-77.173205, 38.96767], + [-77.173266, 38.967683], + [-77.173323, 38.967706], + [-77.173429, 38.967767], + [-77.173514, 38.967786], + [-77.173573, 38.967819], + [-77.173605, 38.967823], + [-77.173718, 38.967825], + [-77.173787, 38.967836], + [-77.173923, 38.967848], + [-77.174029, 38.967876], + [-77.174102, 38.967882], + [-77.174183, 38.967919], + [-77.174286, 38.967923], + [-77.174406, 38.96796], + [-77.174464, 38.96799], + [-77.174562, 38.968014], + [-77.17458, 38.968026], + [-77.174809, 38.96806], + [-77.174909, 38.968049], + [-77.174966, 38.96805], + [-77.175007, 38.968063], + [-77.175037, 38.968095], + [-77.175057, 38.968132], + [-77.175094, 38.968172], + [-77.175119, 38.96818], + [-77.175145, 38.968183], + [-77.175185, 38.968168], + [-77.175264, 38.968126], + [-77.175301, 38.968122], + [-77.175434, 38.968123], + [-77.175513, 38.96811], + [-77.175571, 38.968108], + [-77.17563, 38.968112], + [-77.175704, 38.968136], + [-77.175757, 38.968141], + [-77.175811, 38.968139], + [-77.175868, 38.968123], + [-77.175981, 38.968116], + [-77.176055, 38.968088], + [-77.176103, 38.968082], + [-77.176173, 38.968086], + [-77.176249, 38.968081], + [-77.176273, 38.968089], + [-77.176288, 38.968118], + [-77.176311, 38.968115], + [-77.176331, 38.968084], + [-77.176406, 38.968089], + [-77.176422, 38.968106], + [-77.176451, 38.968091], + [-77.176474, 38.968086], + [-77.176576, 38.968077], + [-77.176651, 38.968054], + [-77.176683, 38.968054], + [-77.176748, 38.968041], + [-77.176812, 38.968034], + [-77.176832, 38.968043], + [-77.176883, 38.968079], + [-77.176909, 38.96808], + [-77.176995, 38.968057], + [-77.177056, 38.968047], + [-77.177287, 38.968046], + [-77.177331, 38.968058], + [-77.177564, 38.968058], + [-77.177624, 38.968052], + [-77.177652, 38.968043], + [-77.177743, 38.967995], + [-77.177793, 38.967995], + [-77.177879, 38.968013], + [-77.177986, 38.968035], + [-77.178106, 38.968041], + [-77.178219, 38.968047], + [-77.17833, 38.968065], + [-77.178419, 38.968086], + [-77.178451, 38.968107], + [-77.178468, 38.968137], + [-77.178467, 38.968155], + [-77.178479, 38.968172], + [-77.178502, 38.968178], + [-77.17853, 38.968149], + [-77.178592, 38.968154], + [-77.178688, 38.968139], + [-77.178761, 38.968134], + [-77.178805, 38.968137], + [-77.178849, 38.968147], + [-77.178889, 38.968171], + [-77.178912, 38.968173], + [-77.178944, 38.968153], + [-77.178971, 38.96815], + [-77.178997, 38.968147], + [-77.179032, 38.968151], + [-77.179128, 38.968186], + [-77.179252, 38.968213], + [-77.17933, 38.968249], + [-77.179429, 38.968274], + [-77.179549, 38.968299], + [-77.179656, 38.968315], + [-77.17979, 38.968334], + [-77.179892, 38.968346], + [-77.17991, 38.968348], + [-77.180042, 38.968347], + [-77.180067, 38.968336], + [-77.18009, 38.968331], + [-77.180169, 38.968374], + [-77.18023, 38.968397], + [-77.180331, 38.968425], + [-77.180361, 38.968428], + [-77.180516, 38.968424], + [-77.180575, 38.968415], + [-77.180732, 38.968439], + [-77.180786, 38.968463], + [-77.180943, 38.968554], + [-77.180975, 38.968585], + [-77.181026, 38.968619], + [-77.181053, 38.968647], + [-77.181102, 38.9687], + [-77.181148, 38.968739], + [-77.181202, 38.968773], + [-77.181256, 38.968787], + [-77.181308, 38.968786], + [-77.181366, 38.968784], + [-77.181449, 38.968796], + [-77.181519, 38.968785], + [-77.181584, 38.96877], + [-77.181817, 38.968735], + [-77.181871, 38.968745], + [-77.18195, 38.968748], + [-77.182023, 38.968758], + [-77.182201, 38.968764], + [-77.18229, 38.968754], + [-77.182334, 38.968735], + [-77.182386, 38.968732], + [-77.182458, 38.968759], + [-77.182491, 38.968763], + [-77.182521, 38.96876], + [-77.182543, 38.968753], + [-77.182579, 38.968729], + [-77.182614, 38.968724], + [-77.182649, 38.968727], + [-77.182673, 38.968733], + [-77.182698, 38.96871], + [-77.182725, 38.968721], + [-77.182753, 38.968738], + [-77.182797, 38.968711], + [-77.182795, 38.968692], + [-77.182818, 38.968686], + [-77.182893, 38.968698], + [-77.182901, 38.968674], + [-77.18294, 38.968674], + [-77.182962, 38.968668], + [-77.183007, 38.968631], + [-77.183058, 38.968632], + [-77.183165, 38.968655], + [-77.183189, 38.968633], + [-77.183178, 38.968603], + [-77.1832, 38.968579], + [-77.183206, 38.968546], + [-77.183228, 38.968511], + [-77.183262, 38.96848], + [-77.183319, 38.968468], + [-77.183354, 38.968442], + [-77.183392, 38.968449], + [-77.183425, 38.968465], + [-77.183439, 38.968447], + [-77.18342, 38.968425], + [-77.183407, 38.968403], + [-77.183436, 38.968384], + [-77.183458, 38.968344], + [-77.183501, 38.968309], + [-77.183571, 38.968237], + [-77.183611, 38.968177], + [-77.183656, 38.968145], + [-77.183683, 38.968135], + [-77.183794, 38.968116], + [-77.183946, 38.967973], + [-77.18408, 38.967908], + [-77.184172, 38.967858], + [-77.184205, 38.967851], + [-77.184239, 38.967856], + [-77.184263, 38.967891], + [-77.184277, 38.967912], + [-77.184318, 38.967916], + [-77.184358, 38.967908], + [-77.184399, 38.9679], + [-77.184401, 38.9679], + [-77.184448, 38.967895], + [-77.184477, 38.967879], + [-77.184509, 38.967874], + [-77.184542, 38.967852], + [-77.18455, 38.967832], + [-77.184578, 38.967825], + [-77.184599, 38.967838], + [-77.184607, 38.967858], + [-77.184605, 38.9679], + [-77.18462, 38.967914], + [-77.184631, 38.967894], + [-77.184678, 38.967847], + [-77.184718, 38.967821], + [-77.184738, 38.96778], + [-77.184779, 38.967792], + [-77.184828, 38.967812], + [-77.184909, 38.967831], + [-77.185081, 38.967874], + [-77.185111, 38.967874], + [-77.185143, 38.967865], + [-77.185175, 38.967853], + [-77.185216, 38.967851], + [-77.185251, 38.967854], + [-77.185295, 38.967857], + [-77.185324, 38.967852], + [-77.18553, 38.967845], + [-77.185596, 38.967834], + [-77.185774, 38.967772], + [-77.185836, 38.967765], + [-77.185933, 38.967768], + [-77.186013, 38.967756], + [-77.186072, 38.967766], + [-77.186111, 38.967796], + [-77.186147, 38.967797], + [-77.186198, 38.967764], + [-77.186258, 38.967771], + [-77.186385, 38.967773], + [-77.186427, 38.967787], + [-77.186494, 38.967782], + [-77.186586, 38.967762], + [-77.186647, 38.967731], + [-77.186791, 38.967738], + [-77.186835, 38.967728], + [-77.187064, 38.967728], + [-77.187131, 38.967732], + [-77.187201, 38.967743], + [-77.187257, 38.967757], + [-77.187392, 38.9678], + [-77.187432, 38.967801], + [-77.187464, 38.967781], + [-77.187499, 38.967772], + [-77.187551, 38.967768], + [-77.187604, 38.96777], + [-77.187821, 38.967799], + [-77.187864, 38.967826], + [-77.187901, 38.967828], + [-77.187923, 38.967822], + [-77.187951, 38.967791], + [-77.187983, 38.967768], + [-77.188094, 38.967771], + [-77.188158, 38.967768], + [-77.188205, 38.967758], + [-77.188333, 38.967709], + [-77.188512, 38.967613], + [-77.188572, 38.967577], + [-77.188627, 38.967529], + [-77.188656, 38.967512], + [-77.188728, 38.967491], + [-77.188768, 38.967487], + [-77.188914, 38.967488], + [-77.188972, 38.967484], + [-77.189049, 38.967503], + [-77.189235, 38.967523], + [-77.189332, 38.967544], + [-77.189342, 38.967546], + [-77.189383, 38.967554], + [-77.189435, 38.967565], + [-77.189589, 38.967568], + [-77.189677, 38.967578], + [-77.189694, 38.967583], + [-77.189813, 38.967617], + [-77.189921, 38.967648], + [-77.18999, 38.967674], + [-77.190249, 38.967793], + [-77.190423, 38.967849], + [-77.190501, 38.967867], + [-77.190653, 38.967915], + [-77.190901, 38.967972], + [-77.191001, 38.96801], + [-77.191096, 38.968047], + [-77.191136, 38.968057], + [-77.191222, 38.968067], + [-77.191389, 38.968081], + [-77.191531, 38.968092], + [-77.191708, 38.968099], + [-77.191748, 38.968104], + [-77.19186, 38.968127], + [-77.192033, 38.968151], + [-77.192227, 38.968152], + [-77.192283, 38.968148], + [-77.192361, 38.968153], + [-77.192433, 38.968167], + [-77.192665, 38.968164], + [-77.192754, 38.968156], + [-77.192988, 38.968153], + [-77.19316, 38.968137], + [-77.193616, 38.968093], + [-77.193672, 38.968094], + [-77.193822, 38.968123], + [-77.193928, 38.968154], + [-77.194038, 38.9682], + [-77.19407, 38.968224], + [-77.194096, 38.968236], + [-77.194136, 38.968216], + [-77.194149, 38.968168], + [-77.194177, 38.968111], + [-77.1942, 38.968105], + [-77.194239, 38.968189], + [-77.194256, 38.968204], + [-77.194333, 38.968206], + [-77.194359, 38.9682], + [-77.194348, 38.968161], + [-77.194364, 38.968075], + [-77.194364, 38.968042], + [-77.194381, 38.968019], + [-77.194414, 38.96799], + [-77.194443, 38.967923], + [-77.194471, 38.967895], + [-77.194488, 38.967866], + [-77.194518, 38.96786], + [-77.194533, 38.967839], + [-77.194605, 38.967778], + [-77.194666, 38.967723], + [-77.194681, 38.967699], + [-77.194714, 38.96768], + [-77.194838, 38.967657], + [-77.194883, 38.967633], + [-77.194906, 38.967627], + [-77.19495, 38.967604], + [-77.194985, 38.96757], + [-77.195016, 38.967553], + [-77.195074, 38.967549], + [-77.195104, 38.967562], + [-77.195127, 38.967571], + [-77.195165, 38.967573], + [-77.195197, 38.967544], + [-77.195209, 38.967519], + [-77.195243, 38.967499], + [-77.195275, 38.96748], + [-77.195327, 38.96746], + [-77.195368, 38.967437], + [-77.195428, 38.967428], + [-77.195484, 38.967433], + [-77.195535, 38.967437], + [-77.195576, 38.967444], + [-77.195631, 38.967448], + [-77.195669, 38.967461], + [-77.195707, 38.967481], + [-77.195728, 38.967506], + [-77.195729, 38.967524], + [-77.195715, 38.967547], + [-77.19573, 38.967563], + [-77.195773, 38.96755], + [-77.195841, 38.967559], + [-77.195858, 38.967516], + [-77.195845, 38.967475], + [-77.195821, 38.96746], + [-77.195804, 38.967435], + [-77.195807, 38.967412], + [-77.195883, 38.96737], + [-77.195884, 38.967334], + [-77.195898, 38.967302], + [-77.195919, 38.967275], + [-77.196035, 38.967171], + [-77.196078, 38.967151], + [-77.196116, 38.967125], + [-77.196138, 38.967094], + [-77.19618, 38.967068], + [-77.19623, 38.967048], + [-77.196295, 38.967032], + [-77.196335, 38.967017], + [-77.196485, 38.966985], + [-77.196561, 38.966965], + [-77.196664, 38.966951], + [-77.196737, 38.966952], + [-77.196803, 38.966953], + [-77.196847, 38.966948], + [-77.196951, 38.966921], + [-77.197045, 38.966881], + [-77.197247, 38.966819], + [-77.197318, 38.966811], + [-77.197419, 38.966793], + [-77.197471, 38.966776], + [-77.197614, 38.96675], + [-77.197697, 38.966743], + [-77.197776, 38.966748], + [-77.19781, 38.966756], + [-77.1979, 38.966786], + [-77.198105, 38.966825], + [-77.198191, 38.966858], + [-77.198273, 38.966878], + [-77.19851, 38.966966], + [-77.198652, 38.967002], + [-77.198763, 38.967016], + [-77.199003, 38.967078], + [-77.199198, 38.967088], + [-77.199322, 38.967073], + [-77.199376, 38.967091], + [-77.199752, 38.967145], + [-77.199862, 38.967177], + [-77.19993, 38.967192], + [-77.200043, 38.967202], + [-77.200285, 38.967242], + [-77.200694, 38.967269], + [-77.200819, 38.9673], + [-77.200886, 38.967311], + [-77.201016, 38.967347], + [-77.201328, 38.967415], + [-77.20158, 38.967493], + [-77.201671, 38.967525], + [-77.201732, 38.967549], + [-77.201905, 38.967634], + [-77.202035, 38.967683], + [-77.202163, 38.967727], + [-77.202213, 38.967739], + [-77.202308, 38.967748], + [-77.202352, 38.967744], + [-77.2024, 38.967734], + [-77.202629, 38.967684], + [-77.202681, 38.967685], + [-77.202691, 38.967709], + [-77.202677, 38.967735], + [-77.20261, 38.967801], + [-77.202591, 38.967828], + [-77.202579, 38.967855], + [-77.202598, 38.967894], + [-77.202631, 38.967923], + [-77.20287, 38.968064], + [-77.202925, 38.968085], + [-77.203154, 38.968131], + [-77.203384, 38.968169], + [-77.203499, 38.96818], + [-77.203612, 38.968197], + [-77.203688, 38.968223], + [-77.203931, 38.968328], + [-77.204174, 38.968404], + [-77.204225, 38.968416], + [-77.204288, 38.968421], + [-77.204296, 38.968422], + [-77.204522, 38.968423], + [-77.204572, 38.968431], + [-77.20471, 38.968494], + [-77.204755, 38.968523], + [-77.204804, 38.968606], + [-77.204876, 38.968695], + [-77.204903, 38.968727], + [-77.204946, 38.968761], + [-77.204978, 38.968778], + [-77.205011, 38.968795], + [-77.205115, 38.968823], + [-77.205204, 38.96884], + [-77.205336, 38.96885], + [-77.205465, 38.968868], + [-77.2055, 38.968886], + [-77.205662, 38.969017], + [-77.205722, 38.969075], + [-77.205942, 38.969212], + [-77.205975, 38.969237], + [-77.206057, 38.969321], + [-77.206121, 38.969422], + [-77.206172, 38.969526], + [-77.206195, 38.969597], + [-77.206217, 38.969626], + [-77.206251, 38.969652], + [-77.206346, 38.969711], + [-77.206465, 38.969759], + [-77.2068, 38.969826], + [-77.206884, 38.96986], + [-77.206959, 38.969907], + [-77.206999, 38.969942], + [-77.207043, 38.96997], + [-77.207147, 38.969985], + [-77.207253, 38.969995], + [-77.207334, 38.970009], + [-77.207434, 38.970046], + [-77.207671, 38.970109], + [-77.207804, 38.97016], + [-77.207855, 38.970174], + [-77.207941, 38.97019], + [-77.208035, 38.970194], + [-77.20808, 38.970195], + [-77.208124, 38.970222], + [-77.20814, 38.970255], + [-77.208172, 38.97026], + [-77.208203, 38.970218], + [-77.20825, 38.970195], + [-77.208494, 38.970199], + [-77.208526, 38.970212], + [-77.208552, 38.970236], + [-77.208576, 38.970287], + [-77.208618, 38.970307], + [-77.208684, 38.970287], + [-77.208768, 38.970274], + [-77.208849, 38.970254], + [-77.208954, 38.97021], + [-77.209005, 38.970204], + [-77.209057, 38.970211], + [-77.209147, 38.970238], + [-77.209197, 38.97026], + [-77.209243, 38.970268], + [-77.20929, 38.970267], + [-77.209341, 38.970257], + [-77.209391, 38.970242], + [-77.209525, 38.970191], + [-77.209568, 38.970165], + [-77.209614, 38.970144], + [-77.209655, 38.970142], + [-77.209785, 38.97015], + [-77.209934, 38.970121], + [-77.210058, 38.970089], + [-77.210198, 38.970088], + [-77.210258, 38.970062], + [-77.210406, 38.969921], + [-77.210534, 38.969791], + [-77.210599, 38.969711], + [-77.210636, 38.969675], + [-77.210682, 38.969645], + [-77.211018, 38.969518], + [-77.211097, 38.969495], + [-77.211212, 38.96941], + [-77.211246, 38.969413], + [-77.211288, 38.96939], + [-77.211329, 38.969376], + [-77.211371, 38.969361], + [-77.211431, 38.969352], + [-77.211522, 38.969352], + [-77.211582, 38.969363], + [-77.211665, 38.969392], + [-77.211722, 38.969426], + [-77.211773, 38.969414], + [-77.211824, 38.969409], + [-77.211873, 38.969412], + [-77.211922, 38.96942], + [-77.212038, 38.969451], + [-77.21221, 38.969481], + [-77.212492, 38.96949], + [-77.212576, 38.969512], + [-77.212752, 38.969588], + [-77.212762, 38.969614], + [-77.212872, 38.969719], + [-77.213096, 38.969804], + [-77.213102, 38.969803], + [-77.213281, 38.969782], + [-77.213382, 38.969777], + [-77.213518, 38.969783], + [-77.21365, 38.969804], + [-77.213896, 38.969892], + [-77.214004, 38.969957], + [-77.214095, 38.970029], + [-77.214419, 38.970367], + [-77.214496, 38.97042], + [-77.21458, 38.970467], + [-77.2147, 38.970519], + [-77.214862, 38.970564], + [-77.214996, 38.970584], + [-77.215134, 38.970589], + [-77.215305, 38.97058], + [-77.215476, 38.970585], + [-77.215645, 38.97061], + [-77.215776, 38.970644], + [-77.2159, 38.970689], + [-77.216577, 38.970967], + [-77.216697, 38.971021], + [-77.216826, 38.971062], + [-77.216961, 38.971087], + [-77.217099, 38.971097], + [-77.217342, 38.971093], + [-77.217514, 38.971106], + [-77.217674, 38.971134], + [-77.217795, 38.971166], + [-77.218606, 38.971499], + [-77.218766, 38.971549], + [-77.218932, 38.971582], + [-77.219102, 38.971598], + [-77.219274, 38.971597], + [-77.21941, 38.971584], + [-77.219544, 38.97156], + [-77.22, 38.97144], + [-77.220356, 38.971368], + [-77.220517, 38.971343], + [-77.220682, 38.971329], + [-77.220751, 38.971327], + [-77.220834, 38.971326], + [-77.221003, 38.971333], + [-77.221112, 38.971346], + [-77.221168, 38.971352], + [-77.221346, 38.971385], + [-77.221477, 38.971421], + [-77.221494, 38.971426], + [-77.222029, 38.971599], + [-77.222095, 38.97162], + [-77.223347, 38.971985], + [-77.223568, 38.972055], + [-77.223751, 38.972128], + [-77.223775, 38.97214], + [-77.223898, 38.972199], + [-77.223955, 38.972227], + [-77.22412, 38.972324], + [-77.224313, 38.972473], + [-77.224898, 38.97287], + [-77.225246, 38.973107], + [-77.225453, 38.973255], + [-77.225724, 38.97347], + [-77.225953, 38.973672], + [-77.226187, 38.973899], + [-77.226385, 38.974113], + [-77.226581, 38.974368], + [-77.226776, 38.974655], + [-77.226935, 38.974926], + [-77.227052, 38.975151], + [-77.22717, 38.975407], + [-77.227243, 38.975617], + [-77.227369, 38.976119], + [-77.227472, 38.97643], + [-77.227585, 38.976711], + [-77.228028, 38.977571], + [-77.228498, 38.978337], + [-77.228591, 38.978507], + [-77.228688, 38.978646], + [-77.228783, 38.978754], + [-77.229143, 38.979091], + [-77.229579, 38.979524], + [-77.229619, 38.979551], + [-77.229898, 38.979701], + [-77.229952, 38.979717], + [-77.230035, 38.979727], + [-77.230223, 38.97976], + [-77.230357, 38.979764], + [-77.230393, 38.979758], + [-77.230479, 38.979734], + [-77.230534, 38.979707], + [-77.230604, 38.979653], + [-77.230671, 38.979574], + [-77.23069, 38.979544], + [-77.230826, 38.979401], + [-77.230887, 38.979327], + [-77.230942, 38.979291], + [-77.231028, 38.979278], + [-77.231054, 38.979279], + [-77.231338, 38.979263], + [-77.231437, 38.979263], + [-77.231594, 38.979321], + [-77.231729, 38.979326], + [-77.231812, 38.979318], + [-77.231919, 38.979312], + [-77.231971, 38.979328], + [-77.23208, 38.979352], + [-77.232135, 38.979353], + [-77.232282, 38.979319], + [-77.23233, 38.979296], + [-77.23236, 38.979272], + [-77.232459, 38.979174], + [-77.232511, 38.979098], + [-77.23253, 38.979059], + [-77.232576, 38.978985], + [-77.232732, 38.978802], + [-77.232776, 38.978725], + [-77.232842, 38.978485], + [-77.232861, 38.978354], + [-77.232875, 38.978299], + [-77.232907, 38.978246], + [-77.23301, 38.978144], + [-77.233111, 38.97811], + [-77.233213, 38.978061], + [-77.233426, 38.977862], + [-77.233461, 38.977814], + [-77.233507, 38.97773], + [-77.233545, 38.977614], + [-77.233556, 38.977563], + [-77.23357, 38.977409], + [-77.233582, 38.977372], + [-77.233599, 38.977354], + [-77.233628, 38.977341], + [-77.233753, 38.977304], + [-77.233822, 38.977268], + [-77.233846, 38.977241], + [-77.233915, 38.977142], + [-77.233963, 38.977044], + [-77.233969, 38.977018], + [-77.234105, 38.976809], + [-77.234187, 38.976703], + [-77.234195, 38.976683], + [-77.234398, 38.9764], + [-77.234541, 38.976238], + [-77.234637, 38.976153], + [-77.234697, 38.97612], + [-77.234734, 38.9761], + [-77.234845, 38.97603], + [-77.234877, 38.975984], + [-77.235198, 38.976088], + [-77.235307, 38.976229], + [-77.235371, 38.976312], + [-77.235438, 38.976435], + [-77.235448, 38.976464], + [-77.235497, 38.976565], + [-77.235504, 38.976591], + [-77.235534, 38.976701], + [-77.235564, 38.976727], + [-77.235696, 38.976824], + [-77.235756, 38.976842], + [-77.235838, 38.976838], + [-77.235861, 38.97684], + [-77.235946, 38.976832], + [-77.23609, 38.976846], + [-77.236124, 38.976861], + [-77.236162, 38.976887], + [-77.236211, 38.97693], + [-77.236724, 38.97747], + [-77.236803, 38.977553], + [-77.236876, 38.97763], + [-77.237031, 38.977793], + [-77.237067, 38.977847], + [-77.237133, 38.977931], + [-77.237165, 38.977962], + [-77.237212, 38.978021], + [-77.237277, 38.978078], + [-77.237393, 38.97819], + [-77.237639, 38.978389], + [-77.237662, 38.978425], + [-77.237726, 38.978548], + [-77.237799, 38.978649], + [-77.237855, 38.978705], + [-77.238077, 38.978861], + [-77.238124, 38.978926], + [-77.238199, 38.978995], + [-77.238249, 38.97906], + [-77.238314, 38.979156], + [-77.238452, 38.979331], + [-77.238484, 38.979361], + [-77.238629, 38.97946], + [-77.238652, 38.979471], + [-77.23872, 38.979526], + [-77.238753, 38.979559], + [-77.238932, 38.979716], + [-77.239403, 38.980069], + [-77.239499, 38.980116], + [-77.239546, 38.980131], + [-77.239656, 38.980201], + [-77.239834, 38.980379], + [-77.239885, 38.980441], + [-77.239901, 38.980481], + [-77.239902, 38.980517], + [-77.239874, 38.980569], + [-77.239868, 38.9806], + [-77.239871, 38.980624], + [-77.239904, 38.980717], + [-77.239952, 38.980762], + [-77.240039, 38.980804], + [-77.24013, 38.98086], + [-77.240346, 38.980983], + [-77.240455, 38.981057], + [-77.240568, 38.981127], + [-77.240723, 38.981185], + [-77.240857, 38.981206], + [-77.241083, 38.981214], + [-77.241112, 38.981228], + [-77.241153, 38.981258], + [-77.241334, 38.981415], + [-77.241382, 38.981435], + [-77.241432, 38.98147], + [-77.241467, 38.981528], + [-77.241552, 38.981623], + [-77.241725, 38.981709], + [-77.242006, 38.981771], + [-77.242239, 38.981862], + [-77.242305, 38.981896], + [-77.242392, 38.981927], + [-77.242595, 38.981999], + [-77.242785, 38.982056], + [-77.243007, 38.982109], + [-77.243106, 38.982124], + [-77.243425, 38.98215], + [-77.243565, 38.982161], + [-77.243667, 38.982189], + [-77.243706, 38.982209], + [-77.243743, 38.982234], + [-77.243831, 38.982314], + [-77.243879, 38.982342], + [-77.243918, 38.982358], + [-77.243967, 38.982366], + [-77.244058, 38.982333], + [-77.244081, 38.982216], + [-77.244046, 38.982137], + [-77.24407, 38.982122], + [-77.244098, 38.982133], + [-77.24418, 38.982185], + [-77.244254, 38.982293], + [-77.244434, 38.982449], + [-77.244623, 38.982543], + [-77.244913, 38.982622], + [-77.244994, 38.982666], + [-77.245032, 38.982692], + [-77.245058, 38.982746], + [-77.245069, 38.98279], + [-77.245077, 38.982915], + [-77.245069, 38.982996], + [-77.245082, 38.983133], + [-77.245095, 38.983261], + [-77.245199, 38.983543], + [-77.245248, 38.983621], + [-77.24528, 38.983682], + [-77.245319, 38.983736], + [-77.245332, 38.983794], + [-77.245325, 38.983827], + [-77.245319, 38.983856], + [-77.24531, 38.983935], + [-77.245324, 38.984025], + [-77.245348, 38.984073], + [-77.245407, 38.984243], + [-77.24548, 38.984404], + [-77.245517, 38.9845], + [-77.245613, 38.984699], + [-77.24567, 38.984844], + [-77.245725, 38.984958], + [-77.245751, 38.985038], + [-77.24591, 38.985368], + [-77.245939, 38.985409], + [-77.24599, 38.98552], + [-77.246017, 38.985568], + [-77.246026, 38.985583], + [-77.246174, 38.985757], + [-77.246198, 38.985805], + [-77.246214, 38.985884], + [-77.246283, 38.986155], + [-77.246307, 38.986229], + [-77.246787, 38.98739], + [-77.246982, 38.987861], + [-77.246988, 38.987893], + [-77.247015, 38.987957], + [-77.247085, 38.988052], + [-77.247122, 38.988246], + [-77.247149, 38.988335], + [-77.247191, 38.988409], + [-77.247234, 38.988469], + [-77.247288, 38.988556], + [-77.24736, 38.988715], + [-77.247385, 38.988793], + [-77.247416, 38.988986], + [-77.247471, 38.989144], + [-77.2475, 38.989192], + [-77.247609, 38.989319], + [-77.247691, 38.989442], + [-77.247713, 38.989492], + [-77.247755, 38.989658], + [-77.247842, 38.9899], + [-77.247867, 38.989999], + [-77.247954, 38.99016], + [-77.247986, 38.990241], + [-77.24802, 38.99031], + [-77.248071, 38.990448], + [-77.248119, 38.990579], + [-77.248159, 38.990714], + [-77.248212, 38.990847], + [-77.248226, 38.990924], + [-77.248225, 38.991081], + [-77.248231, 38.991197], + [-77.248545, 38.992474], + [-77.248577, 38.992555], + [-77.248616, 38.992632], + [-77.248656, 38.992698], + [-77.248759, 38.992837], + [-77.248897, 38.992999], + [-77.249188, 38.993428], + [-77.249217, 38.993483], + [-77.249333, 38.993666], + [-77.249387, 38.993733], + [-77.249457, 38.993798], + [-77.249528, 38.993857], + [-77.249642, 38.993921], + [-77.249761, 38.993952], + [-77.249873, 38.99399], + [-77.249919, 38.994014], + [-77.249955, 38.994054], + [-77.249966, 38.994092], + [-77.24996, 38.994131], + [-77.249927, 38.994182], + [-77.249887, 38.994256], + [-77.249862, 38.994335], + [-77.249855, 38.994416], + [-77.249864, 38.994509], + [-77.249887, 38.994565], + [-77.249927, 38.994614], + [-77.249982, 38.994653], + [-77.250341, 38.994825], + [-77.250404, 38.994848], + [-77.250473, 38.994859], + [-77.250602, 38.994853], + [-77.250662, 38.994856], + [-77.25154, 38.994993], + [-77.25159, 38.995005], + [-77.251629, 38.995031], + [-77.251667, 38.995088], + [-77.251706, 38.995126], + [-77.251755, 38.995155], + [-77.252345, 38.995372], + [-77.252482, 38.995423], + [-77.252582, 38.995441], + [-77.252684, 38.995441], + [-77.252742, 38.995432], + [-77.252796, 38.995423], + [-77.252843, 38.995424], + [-77.252901, 38.995438], + [-77.252942, 38.995459], + [-77.252967, 38.995492], + [-77.252974, 38.995529], + [-77.252915, 38.995722], + [-77.25291, 38.995799], + [-77.252925, 38.995876], + [-77.253006, 38.996062], + [-77.253052, 38.996168], + [-77.253065, 38.996199], + [-77.253137, 38.996336], + [-77.25314, 38.996342], + [-77.253157, 38.996374], + [-77.253252, 38.996518], + [-77.253302, 38.996574], + [-77.25335, 38.996628], + [-77.253439, 38.996704], + [-77.253498, 38.996771], + [-77.253518, 38.996813], + [-77.253525, 38.996857], + [-77.253517, 38.996901], + [-77.253482, 38.996976], + [-77.253476, 38.997005], + [-77.253466, 38.99705], + [-77.253469, 38.9971], + [-77.253483, 38.997149], + [-77.253519, 38.997221], + [-77.253546, 38.997301], + [-77.253583, 38.997645], + [-77.253601, 38.997746], + [-77.253635, 38.997836], + [-77.253669, 38.99788], + [-77.253714, 38.997917], + [-77.253777, 38.997948], + [-77.253828, 38.997973], + [-77.253936, 38.998026], + [-77.25399, 38.99806], + [-77.254011, 38.998074], + [-77.254036, 38.99809], + [-77.254064, 38.998112], + [-77.254121, 38.998165], + [-77.254185, 38.998236], + [-77.254224, 38.998304], + [-77.254239, 38.998378], + [-77.25427, 38.998581], + [-77.254311, 38.998638], + [-77.254411, 38.998723], + [-77.254485, 38.998804], + [-77.254529, 38.998872], + [-77.254727, 38.999356], + [-77.254743, 38.999406], + [-77.254746, 38.999439], + [-77.254748, 38.999457], + [-77.254736, 38.999503], + [-77.254729, 38.999531], + [-77.254707, 38.999576], + [-77.254654, 38.999658], + [-77.254636, 38.999686], + [-77.254622, 38.999737], + [-77.254625, 38.999789], + [-77.254733, 39.000082], + [-77.254752, 39.000133], + [-77.254835, 39.000357], + [-77.25484, 39.000371], + [-77.254956, 39.000733], + [-77.255027, 39.000886], + [-77.255086, 39.000953], + [-77.255174, 39.001037], + [-77.255269, 39.001112], + [-77.255388, 39.001201], + [-77.255419, 39.001228], + [-77.255476, 39.001282], + [-77.255509, 39.001313], + [-77.255604, 39.001428], + [-77.255678, 39.001543], + [-77.255682, 39.00155], + [-77.255725, 39.001652], + [-77.255753, 39.001757], + [-77.255767, 39.001891], + [-77.255761, 39.001999], + [-77.255739, 39.002105], + [-77.255703, 39.002209], + [-77.255635, 39.002536], + [-77.255581, 39.002713], + [-77.255507, 39.003048], + [-77.255483, 39.003232], + [-77.255478, 39.003467], + [-77.255454, 39.003677], + [-77.255428, 39.00381], + [-77.255385, 39.003941], + [-77.255276, 39.00416], + [-77.255236, 39.004283], + [-77.255237, 39.004357], + [-77.255337, 39.004661], + [-77.255342, 39.004687], + [-77.255345, 39.004795], + [-77.255326, 39.004884], + [-77.255287, 39.004981], + [-77.255244, 39.005049], + [-77.255061, 39.005402], + [-77.254979, 39.005592], + [-77.254973, 39.005619], + [-77.254925, 39.00575], + [-77.254871, 39.005851], + [-77.254785, 39.00597], + [-77.254547, 39.006162], + [-77.254482, 39.006221], + [-77.254434, 39.006287], + [-77.254404, 39.00636], + [-77.254363, 39.006667], + [-77.254357, 39.006716], + [-77.254335, 39.006906], + [-77.254277, 39.007113], + [-77.254267, 39.007138], + [-77.254226, 39.007237], + [-77.254116, 39.007414], + [-77.254073, 39.007496], + [-77.253841, 39.007882], + [-77.253341, 39.008924], + [-77.253311, 39.009038], + [-77.253261, 39.009166], + [-77.253192, 39.009267], + [-77.253106, 39.009344], + [-77.253091, 39.009357], + [-77.252981, 39.009488], + [-77.25261, 39.009972], + [-77.252496, 39.010103], + [-77.252441, 39.010176], + [-77.252331, 39.010324], + [-77.252262, 39.010399], + [-77.252051, 39.010627], + [-77.251875, 39.010869], + [-77.251837, 39.010945], + [-77.251789, 39.010964], + [-77.251768, 39.010989], + [-77.251757, 39.011018], + [-77.251773, 39.011067], + [-77.251671, 39.011247], + [-77.251631, 39.011328], + [-77.251582, 39.01141], + [-77.251436, 39.011622], + [-77.251266, 39.011812], + [-77.251181, 39.011897], + [-77.250916, 39.012118], + [-77.250672, 39.012298], + [-77.250416, 39.012472], + [-77.250304, 39.012541], + [-77.250285, 39.012553], + [-77.250067, 39.012699], + [-77.249906, 39.012748], + [-77.249096, 39.013181], + [-77.248483, 39.01354], + [-77.248311, 39.013681], + [-77.248135, 39.013778], + [-77.24803, 39.013849], + [-77.24791, 39.013892], + [-77.24783, 39.014001], + [-77.247243, 39.014475], + [-77.247152, 39.014561], + [-77.246947, 39.014778], + [-77.24687, 39.014874], + [-77.246743, 39.015084], + [-77.246684, 39.015199], + [-77.246583, 39.015476], + [-77.246555, 39.015595], + [-77.246549, 39.015697], + [-77.246552, 39.015762], + [-77.246526, 39.015982], + [-77.246435, 39.016173], + [-77.246287, 39.016456], + [-77.246232, 39.016536], + [-77.24617, 39.016604], + [-77.245933, 39.016827], + [-77.24586, 39.016883], + [-77.24568, 39.017053], + [-77.245643, 39.017098], + [-77.245572, 39.017201], + [-77.245516, 39.017306], + [-77.245465, 39.017422], + [-77.245451, 39.017442], + [-77.245429, 39.017473], + [-77.245382, 39.017539], + [-77.24531, 39.017785], + [-77.245301, 39.017996], + [-77.245328, 39.018196], + [-77.24533, 39.018205], + [-77.245349, 39.018272], + [-77.245324, 39.018368], + [-77.245302, 39.018505], + [-77.245282, 39.018514], + [-77.24525, 39.018514], + [-77.245227, 39.018544], + [-77.245211, 39.018593], + [-77.245101, 39.018823], + [-77.245069, 39.018861], + [-77.245076, 39.018917], + [-77.245067, 39.018946], + [-77.245025, 39.019079], + [-77.245025, 39.019107], + [-77.244974, 39.019438], + [-77.244933, 39.019524], + [-77.244923, 39.019575], + [-77.244929, 39.019615], + [-77.24494, 39.019646], + [-77.244954, 39.019665], + [-77.244965, 39.019694], + [-77.244966, 39.019714], + [-77.244952, 39.019741], + [-77.244932, 39.019767], + [-77.244926, 39.019795], + [-77.24491, 39.020003], + [-77.24487, 39.020162], + [-77.244849, 39.020244], + [-77.244844, 39.020335], + [-77.244843, 39.020347], + [-77.244854, 39.020457], + [-77.244864, 39.02051], + [-77.244882, 39.020604], + [-77.244886, 39.020749], + [-77.244914, 39.021082], + [-77.244921, 39.021166], + [-77.244918, 39.02123], + [-77.244916, 39.021281], + [-77.244941, 39.021524], + [-77.244981, 39.021664], + [-77.244992, 39.021734], + [-77.245019, 39.021804], + [-77.245058, 39.021975], + [-77.245074, 39.022046], + [-77.245083, 39.022069], + [-77.2451, 39.022113], + [-77.245095, 39.022154], + [-77.245113, 39.022198], + [-77.245138, 39.022242], + [-77.245154, 39.022288], + [-77.24518, 39.02234], + [-77.245178, 39.022364], + [-77.245209, 39.022422], + [-77.245221, 39.022467], + [-77.245259, 39.022495], + [-77.24528, 39.022532], + [-77.245283, 39.022587], + [-77.245336, 39.022678], + [-77.245372, 39.022784], + [-77.245456, 39.022965], + [-77.245456, 39.02301], + [-77.245491, 39.023029], + [-77.245536, 39.023079], + [-77.245661, 39.023305], + [-77.245667, 39.023366], + [-77.245712, 39.023433], + [-77.245706, 39.023481], + [-77.245717, 39.023537], + [-77.245768, 39.023537], + [-77.245784, 39.023579], + [-77.24581, 39.023626], + [-77.245857, 39.023645], + [-77.245886, 39.023682], + [-77.24591, 39.023705], + [-77.245928, 39.023773], + [-77.246031, 39.023918], + [-77.246064, 39.023981], + [-77.246115, 39.02405], + [-77.246136, 39.024126], + [-77.24614, 39.024184], + [-77.246161, 39.024222], + [-77.246189, 39.024275], + [-77.246211, 39.024316], + [-77.246243, 39.024408], + [-77.246319, 39.024689], + [-77.246385, 39.02476], + [-77.246455, 39.0248], + [-77.246493, 39.024867], + [-77.24657, 39.024968], + [-77.246665, 39.025064], + [-77.246757, 39.025144], + [-77.246876, 39.02526], + [-77.24693, 39.025304], + [-77.247015, 39.025401], + [-77.247136, 39.025512], + [-77.247202, 39.025593], + [-77.247286, 39.025659], + [-77.247355, 39.025734], + [-77.247431, 39.025804], + [-77.247522, 39.025877], + [-77.2477, 39.026046], + [-77.247747, 39.026087], + [-77.247795, 39.026137], + [-77.24791, 39.026211], + [-77.247981, 39.026245], + [-77.248093, 39.026314], + [-77.248156, 39.026364], + [-77.248207, 39.026393], + [-77.248295, 39.026475], + [-77.248323, 39.026498], + [-77.248356, 39.026525], + [-77.248421, 39.026562], + [-77.248621, 39.026649], + [-77.248688, 39.026687], + [-77.248896, 39.026783], + [-77.248934, 39.026794], + [-77.248946, 39.026797], + [-77.249003, 39.02682], + [-77.249093, 39.026883], + [-77.249168, 39.026858], + [-77.249259, 39.026878], + [-77.249332, 39.026889], + [-77.249396, 39.026912], + [-77.249449, 39.026936], + [-77.249499, 39.02695], + [-77.249546, 39.026957], + [-77.249594, 39.026953], + [-77.249637, 39.026938], + [-77.249667, 39.026932], + [-77.24971, 39.026887], + [-77.249772, 39.026908], + [-77.249876, 39.026928], + [-77.249895, 39.026935], + [-77.249955, 39.026958], + [-77.250026, 39.026973], + [-77.250109, 39.026998], + [-77.250199, 39.027051], + [-77.250324, 39.027113], + [-77.250373, 39.02713], + [-77.250492, 39.027204], + [-77.250511, 39.027234], + [-77.25051, 39.027336], + [-77.250504, 39.027363], + [-77.250519, 39.027384], + [-77.250548, 39.027411], + [-77.250587, 39.027426], + [-77.250618, 39.027425], + [-77.250694, 39.027429], + [-77.250742, 39.027442], + [-77.250793, 39.027467], + [-77.250833, 39.027494], + [-77.250916, 39.027583], + [-77.251095, 39.027726], + [-77.251242, 39.027821], + [-77.251369, 39.027895], + [-77.251419, 39.027934], + [-77.251595, 39.028048], + [-77.251682, 39.028121], + [-77.25175, 39.028161], + [-77.251904, 39.028198], + [-77.252185, 39.028315], + [-77.252343, 39.028409], + [-77.252421, 39.028449], + [-77.252617, 39.028536], + [-77.252764, 39.028609], + [-77.252876, 39.028673], + [-77.252991, 39.028749], + [-77.253138, 39.028862], + [-77.253271, 39.028985], + [-77.253314, 39.02902], + [-77.253383, 39.029041], + [-77.253408, 39.029036], + [-77.253454, 39.029036], + [-77.253506, 39.029053], + [-77.253604, 39.029133], + [-77.25367, 39.029174], + [-77.253734, 39.029207], + [-77.253808, 39.029254], + [-77.253951, 39.029323], + [-77.254088, 39.029403], + [-77.254159, 39.029452], + [-77.254289, 39.029521], + [-77.25438, 39.029575], + [-77.254471, 39.02962], + [-77.254527, 39.029638], + [-77.254634, 39.029698], + [-77.254748, 39.029741], + [-77.254952, 39.029781], + [-77.254997, 39.029784], + [-77.255066, 39.029795], + [-77.255228, 39.029846], + [-77.255438, 39.029919], + [-77.25551, 39.029938], + [-77.255571, 39.029969], + [-77.255638, 39.029965], + [-77.255652, 39.029967], + [-77.255699, 39.029974], + [-77.255791, 39.030002], + [-77.255867, 39.030019], + [-77.255924, 39.030036], + [-77.256155, 39.030132], + [-77.256191, 39.03013], + [-77.256246, 39.030117], + [-77.256294, 39.030096], + [-77.256333, 39.030064], + [-77.256366, 39.030047], + [-77.256463, 39.030047], + [-77.256548, 39.030051], + [-77.256829, 39.030089], + [-77.256928, 39.030108], + [-77.257089, 39.030127], + [-77.257189, 39.030171], + [-77.257284, 39.030197], + [-77.257356, 39.03021], + [-77.257551, 39.030216], + [-77.257672, 39.030243], + [-77.257723, 39.030258], + [-77.257783, 39.030265], + [-77.257849, 39.030266], + [-77.257931, 39.030279], + [-77.258017, 39.030303], + [-77.258092, 39.030319], + [-77.258173, 39.030324], + [-77.258216, 39.030327], + [-77.258263, 39.030326], + [-77.258363, 39.03037], + [-77.258385, 39.030379], + [-77.258495, 39.030401], + [-77.258565, 39.030405], + [-77.258654, 39.030422], + [-77.258749, 39.030433], + [-77.258848, 39.030465], + [-77.258952, 39.030487], + [-77.259006, 39.030502], + [-77.259051, 39.030515], + [-77.259288, 39.030618], + [-77.259334, 39.030647], + [-77.259438, 39.030683], + [-77.259506, 39.030693], + [-77.259559, 39.030711], + [-77.259631, 39.030742], + [-77.259707, 39.030761], + [-77.25985, 39.03079], + [-77.259927, 39.030822], + [-77.259951, 39.030832], + [-77.260045, 39.030855], + [-77.260218, 39.030859], + [-77.260446, 39.030887], + [-77.260789, 39.03099], + [-77.260833, 39.031007], + [-77.260824, 39.031037], + [-77.260766, 39.031069], + [-77.260711, 39.031048], + [-77.260646, 39.031031], + [-77.260478, 39.031002], + [-77.260389, 39.030978], + [-77.260298, 39.030977], + [-77.260205, 39.030989], + [-77.26011, 39.030993], + [-77.260047, 39.030987], + [-77.259984, 39.030964], + [-77.259943, 39.03091], + [-77.259876, 39.03087], + [-77.259837, 39.030866], + [-77.259672, 39.030803], + [-77.259596, 39.03077], + [-77.259547, 39.030768], + [-77.259504, 39.030793], + [-77.259478, 39.030835], + [-77.259473, 39.030884], + [-77.259482, 39.030917], + [-77.259529, 39.030968], + [-77.259656, 39.031005], + [-77.25973, 39.031032], + [-77.259893, 39.031081], + [-77.259968, 39.031098], + [-77.260072, 39.031129], + [-77.260131, 39.031154], + [-77.260237, 39.03119], + [-77.260296, 39.031199], + [-77.260339, 39.031197], + [-77.260382, 39.031171], + [-77.260438, 39.031145], + [-77.260514, 39.031137], + [-77.260569, 39.03114], + [-77.260802, 39.031214], + [-77.26085, 39.031223], + [-77.261148, 39.031239], + [-77.261251, 39.031256], + [-77.261434, 39.031262], + [-77.261574, 39.031287], + [-77.261635, 39.031318], + [-77.261685, 39.031337], + [-77.261731, 39.031343], + [-77.261775, 39.031354], + [-77.261972, 39.031382], + [-77.262133, 39.031396], + [-77.262351, 39.031396], + [-77.262401, 39.031392], + [-77.262469, 39.031397], + [-77.262563, 39.031416], + [-77.262576, 39.03144], + [-77.262612, 39.031462], + [-77.262657, 39.03146], + [-77.262699, 39.031437], + [-77.262788, 39.031473], + [-77.262939, 39.031476], + [-77.262989, 39.031485], + [-77.263022, 39.031491], + [-77.263093, 39.031493], + [-77.26314, 39.031503], + [-77.263221, 39.031534], + [-77.263345, 39.031557], + [-77.263412, 39.03156], + [-77.26345, 39.031567], + [-77.26356, 39.031609], + [-77.263665, 39.031635], + [-77.263774, 39.031651], + [-77.26388, 39.031652], + [-77.264006, 39.031695], + [-77.264139, 39.031728], + [-77.264203, 39.031726], + [-77.264303, 39.031744], + [-77.264444, 39.031786], + [-77.264486, 39.031791], + [-77.26452, 39.031786], + [-77.264634, 39.031793], + [-77.264836, 39.031797], + [-77.2649, 39.031807], + [-77.265088, 39.03182], + [-77.26516, 39.031819], + [-77.265316, 39.031835], + [-77.265396, 39.031837], + [-77.265508, 39.031848], + [-77.265626, 39.03186], + [-77.26575, 39.031884], + [-77.265832, 39.031906], + [-77.265881, 39.031924], + [-77.265917, 39.031943], + [-77.265939, 39.03195], + [-77.265965, 39.031945], + [-77.265988, 39.031947], + [-77.266043, 39.031961], + [-77.266189, 39.032008], + [-77.266235, 39.031997], + [-77.26631, 39.032011], + [-77.266336, 39.032023], + [-77.266344, 39.032027], + [-77.26637, 39.032048], + [-77.26642, 39.032058], + [-77.266461, 39.03206], + [-77.266579, 39.032079], + [-77.266648, 39.032086], + [-77.266888, 39.032123], + [-77.266981, 39.032132], + [-77.267163, 39.032158], + [-77.26733, 39.032159], + [-77.267399, 39.03217], + [-77.267517, 39.032172], + [-77.267578, 39.032169], + [-77.267723, 39.032181], + [-77.267821, 39.032193], + [-77.267913, 39.032209], + [-77.267997, 39.032217], + [-77.268078, 39.032234], + [-77.268225, 39.032276], + [-77.268228, 39.032277], + [-77.268244, 39.032282], + [-77.26837, 39.032318], + [-77.268382, 39.032321], + [-77.268468, 39.032346], + [-77.268525, 39.032347], + [-77.268571, 39.032357], + [-77.268622, 39.03238], + [-77.268673, 39.032396], + [-77.268958, 39.032469], + [-77.269006, 39.032489], + [-77.269073, 39.032536], + [-77.269111, 39.032551], + [-77.269152, 39.032557], + [-77.269188, 39.032571], + [-77.269236, 39.032584], + [-77.269275, 39.032604], + [-77.269368, 39.03262], + [-77.269474, 39.032661], + [-77.269571, 39.032716], + [-77.269621, 39.032736], + [-77.269686, 39.03274], + [-77.269739, 39.032755], + [-77.269785, 39.032775], + [-77.269975, 39.032805], + [-77.270025, 39.032825], + [-77.270084, 39.032856], + [-77.270137, 39.032874], + [-77.270194, 39.032887], + [-77.270253, 39.032912], + [-77.270345, 39.032958], + [-77.27038, 39.032959], + [-77.270413, 39.032945], + [-77.270473, 39.032951], + [-77.270514, 39.032975], + [-77.270537, 39.03298], + [-77.270609, 39.032994], + [-77.270657, 39.033013], + [-77.270752, 39.033059], + [-77.270829, 39.033084], + [-77.270879, 39.033105], + [-77.271011, 39.033144], + [-77.271048, 39.033163], + [-77.271133, 39.033176], + [-77.271213, 39.0332], + [-77.271239, 39.03321], + [-77.27141, 39.033276], + [-77.271499, 39.033299], + [-77.271506, 39.033301], + [-77.271539, 39.03331], + [-77.271592, 39.033338], + [-77.271619, 39.033359], + [-77.271648, 39.033373], + [-77.271689, 39.033376], + [-77.271783, 39.033396], + [-77.271846, 39.033426], + [-77.271937, 39.033488], + [-77.271973, 39.033501], + [-77.272062, 39.033498], + [-77.272125, 39.033514], + [-77.272176, 39.033535], + [-77.272242, 39.033554], + [-77.272312, 39.03358], + [-77.272336, 39.033589], + [-77.272451, 39.033619], + [-77.272529, 39.033648], + [-77.272609, 39.033671], + [-77.272676, 39.033695], + [-77.272715, 39.033715], + [-77.272834, 39.033762], + [-77.272868, 39.033787], + [-77.27291, 39.033811], + [-77.272947, 39.033815], + [-77.272974, 39.033828], + [-77.273033, 39.033845], + [-77.273172, 39.033871], + [-77.273193, 39.03388], + [-77.273226, 39.033872], + [-77.27325, 39.033857], + [-77.27339, 39.033818], + [-77.273432, 39.033813], + [-77.273499, 39.033815], + [-77.273622, 39.033832], + [-77.27367, 39.033843], + [-77.273736, 39.033849], + [-77.273796, 39.033861], + [-77.273852, 39.033866], + [-77.273995, 39.033899], + [-77.274094, 39.033928], + [-77.274098, 39.033929], + [-77.2741, 39.03393], + [-77.274115, 39.033934], + [-77.27416, 39.033955], + [-77.274201, 39.033963], + [-77.274236, 39.033982], + [-77.274295, 39.034002], + [-77.274337, 39.034026], + [-77.274353, 39.034047], + [-77.274496, 39.034106], + [-77.274761, 39.034193], + [-77.2748, 39.034216], + [-77.274842, 39.034235], + [-77.274898, 39.034254], + [-77.275039, 39.034292], + [-77.275088, 39.034316], + [-77.275141, 39.03435], + [-77.27516, 39.034362], + [-77.2752, 39.03438], + [-77.275302, 39.034456], + [-77.27536, 39.034485], + [-77.275404, 39.034494], + [-77.27547, 39.034528], + [-77.275507, 39.034558], + [-77.275655, 39.034628], + [-77.275862, 39.03474], + [-77.275957, 39.034803], + [-77.276042, 39.034836], + [-77.276154, 39.034892], + [-77.276305, 39.034991], + [-77.276527, 39.035108], + [-77.276568, 39.035137], + [-77.276613, 39.035179], + [-77.27671, 39.035283], + [-77.276803, 39.035334], + [-77.276892, 39.035362], + [-77.276956, 39.035393], + [-77.277021, 39.035434], + [-77.277476, 39.035764], + [-77.277497, 39.035773], + [-77.277541, 39.035792], + [-77.277639, 39.035841], + [-77.277758, 39.035917], + [-77.277797, 39.035953], + [-77.277928, 39.036051], + [-77.277977, 39.036093], + [-77.278095, 39.03618], + [-77.278166, 39.036261], + [-77.278213, 39.036306], + [-77.278372, 39.036421], + [-77.278427, 39.036453], + [-77.278519, 39.036519], + [-77.278654, 39.036635], + [-77.278666, 39.036645], + [-77.278745, 39.036714], + [-77.279059, 39.036905], + [-77.279106, 39.03696], + [-77.279129, 39.037012], + [-77.27917, 39.037073], + [-77.279217, 39.037123], + [-77.279306, 39.037153], + [-77.279361, 39.03719], + [-77.279472, 39.03725], + [-77.279541, 39.037294], + [-77.279627, 39.037371], + [-77.279861, 39.037523], + [-77.280018, 39.037617], + [-77.280106, 39.037679], + [-77.28029, 39.037793], + [-77.280397, 39.037869], + [-77.280412, 39.037882], + [-77.280507, 39.037963], + [-77.280666, 39.038053], + [-77.280872, 39.038201], + [-77.281006, 39.038282], + [-77.281063, 39.038302], + [-77.281128, 39.038331], + [-77.281179, 39.03836], + [-77.281318, 39.038455], + [-77.281405, 39.038503], + [-77.281459, 39.038542], + [-77.281547, 39.038628], + [-77.281596, 39.038658], + [-77.281659, 39.03875], + [-77.281722, 39.038803], + [-77.281745, 39.038815], + [-77.28184, 39.038924], + [-77.28188, 39.03895], + [-77.281924, 39.038967], + [-77.281949, 39.039009], + [-77.282139, 39.039159], + [-77.282189, 39.039176], + [-77.282279, 39.039177], + [-77.282406, 39.039186], + [-77.28248, 39.039218], + [-77.282502, 39.039228], + [-77.282515, 39.039239], + [-77.282557, 39.039275], + [-77.282613, 39.039311], + [-77.282663, 39.039328], + [-77.282688, 39.039338], + [-77.282766, 39.039368], + [-77.2828, 39.039386], + [-77.282848, 39.039412], + [-77.283007, 39.039455], + [-77.283054, 39.039483], + [-77.2831, 39.03951], + [-77.28321, 39.039546], + [-77.283248, 39.039571], + [-77.283265, 39.039582], + [-77.283298, 39.03962], + [-77.283454, 39.039698], + [-77.283604, 39.039794], + [-77.283754, 39.039917], + [-77.283842, 39.039964], + [-77.283919, 39.040013], + [-77.283997, 39.040052], + [-77.284125, 39.040149], + [-77.284167, 39.040192], + [-77.28427, 39.040252], + [-77.28442, 39.040324], + [-77.284477, 39.040364], + [-77.284552, 39.040431], + [-77.284603, 39.040451], + [-77.284734, 39.040517], + [-77.284846, 39.040574], + [-77.285129, 39.040746], + [-77.285177, 39.040788], + [-77.285225, 39.040841], + [-77.285339, 39.040906], + [-77.285417, 39.040923], + [-77.285502, 39.040971], + [-77.285861, 39.041206], + [-77.285923, 39.041254], + [-77.286075, 39.041356], + [-77.286223, 39.041501], + [-77.286285, 39.041577], + [-77.286413, 39.04167], + [-77.286543, 39.041784], + [-77.286576, 39.041836], + [-77.286587, 39.04189], + [-77.286597, 39.041939], + [-77.286653, 39.042023], + [-77.286683, 39.042052], + [-77.286715, 39.042082], + [-77.286782, 39.042116], + [-77.286839, 39.042126], + [-77.286891, 39.042126], + [-77.287134, 39.042293], + [-77.287188, 39.042325], + [-77.287236, 39.042369], + [-77.287277, 39.042414], + [-77.287306, 39.042456], + [-77.287344, 39.042495], + [-77.287397, 39.042532], + [-77.287532, 39.042644], + [-77.287586, 39.042744], + [-77.287627, 39.042771], + [-77.287666, 39.042819], + [-77.287694, 39.042874], + [-77.287696, 39.042906], + [-77.287715, 39.042938], + [-77.287754, 39.042956], + [-77.2879, 39.043112], + [-77.287996, 39.043179], + [-77.288032, 39.043213], + [-77.288089, 39.043247], + [-77.288127, 39.043282], + [-77.288171, 39.043283], + [-77.288227, 39.043312], + [-77.288279, 39.043353], + [-77.28842, 39.043481], + [-77.288468, 39.043515], + [-77.288518, 39.043541], + [-77.28861, 39.043611], + [-77.288766, 39.043741], + [-77.2888, 39.043777], + [-77.288815, 39.043813], + [-77.288834, 39.043838], + [-77.288872, 39.04387], + [-77.288911, 39.04389], + [-77.288979, 39.043906], + [-77.28903, 39.043934], + [-77.289057, 39.043968], + [-77.289074, 39.044001], + [-77.28911, 39.044049], + [-77.289156, 39.044082], + [-77.289198, 39.044096], + [-77.289237, 39.044101], + [-77.28929, 39.044096], + [-77.289332, 39.044104], + [-77.289456, 39.044182], + [-77.289594, 39.044319], + [-77.289645, 39.044341], + [-77.289658, 39.04435], + [-77.289675, 39.044361], + [-77.289741, 39.044396], + [-77.289854, 39.044479], + [-77.289861, 39.044489], + [-77.289872, 39.044506], + [-77.290036, 39.044676], + [-77.290076, 39.044704], + [-77.290175, 39.044799], + [-77.29039, 39.044948], + [-77.290766, 39.045165], + [-77.290842, 39.045205], + [-77.290975, 39.045292], + [-77.291158, 39.045391], + [-77.291371, 39.045524], + [-77.291604, 39.045651], + [-77.291911, 39.045857], + [-77.292058, 39.045923], + [-77.292119, 39.045946], + [-77.292193, 39.045986], + [-77.292275, 39.046039], + [-77.292357, 39.046081], + [-77.29256, 39.046195], + [-77.292771, 39.046291], + [-77.29288, 39.046351], + [-77.292944, 39.046386], + [-77.292964, 39.046397], + [-77.292987, 39.04641], + [-77.292991, 39.046412], + [-77.293068, 39.046477], + [-77.293165, 39.046522], + [-77.293279, 39.046565], + [-77.2937, 39.04676], + [-77.293791, 39.046814], + [-77.293848, 39.046842], + [-77.293864, 39.04685], + [-77.294078, 39.046954], + [-77.294218, 39.047013], + [-77.294301, 39.047045], + [-77.294376, 39.047073], + [-77.294474, 39.047118], + [-77.29461, 39.047167], + [-77.294669, 39.047197], + [-77.294727, 39.047227], + [-77.294848, 39.047269], + [-77.295143, 39.047389], + [-77.295182, 39.047424], + [-77.295221, 39.047429], + [-77.295276, 39.047414], + [-77.295313, 39.047424], + [-77.295368, 39.04745], + [-77.295437, 39.047467], + [-77.295519, 39.047474], + [-77.295655, 39.047528], + [-77.29589, 39.047605], + [-77.29599, 39.047634], + [-77.296105, 39.047673], + [-77.296199, 39.0477], + [-77.296289, 39.047718], + [-77.296359, 39.047747], + [-77.296436, 39.047785], + [-77.296529, 39.047824], + [-77.296617, 39.047841], + [-77.296701, 39.047878], + [-77.296793, 39.047909], + [-77.296929, 39.047947], + [-77.297078, 39.047988], + [-77.297157, 39.04802], + [-77.297162, 39.048022], + [-77.297218, 39.048039], + [-77.297289, 39.048027], + [-77.297311, 39.048038], + [-77.297339, 39.048066], + [-77.297499, 39.048125], + [-77.297593, 39.048151], + [-77.29778, 39.048211], + [-77.297992, 39.048268], + [-77.298099, 39.048313], + [-77.298172, 39.048338], + [-77.298377, 39.048426], + [-77.298444, 39.048443], + [-77.29856, 39.048485], + [-77.298607, 39.048486], + [-77.298733, 39.048464], + [-77.298766, 39.048449], + [-77.298799, 39.048427], + [-77.298819, 39.048408], + [-77.298841, 39.048398], + [-77.298861, 39.048407], + [-77.298873, 39.048431], + [-77.298845, 39.048464], + [-77.2988, 39.048494], + [-77.298712, 39.048521], + [-77.29867, 39.048564], + [-77.298645, 39.048599], + [-77.298646, 39.048617], + [-77.298664, 39.048638], + [-77.2989, 39.048723], + [-77.298955, 39.048757], + [-77.299057, 39.048757], + [-77.299143, 39.048791], + [-77.299249, 39.048847], + [-77.299346, 39.048878], + [-77.29943, 39.04891], + [-77.29949, 39.04892], + [-77.299669, 39.048922], + [-77.29972, 39.048919], + [-77.299771, 39.048923], + [-77.299774, 39.048924], + [-77.299845, 39.048952], + [-77.299989, 39.049038], + [-77.300062, 39.049073], + [-77.300291, 39.049155], + [-77.300376, 39.049192], + [-77.300669, 39.049378], + [-77.300754, 39.049411], + [-77.300833, 39.049429], + [-77.301121, 39.049545], + [-77.301382, 39.049676], + [-77.301502, 39.049732], + [-77.301584, 39.049785], + [-77.30163, 39.0498], + [-77.301658, 39.049817], + [-77.301711, 39.049901], + [-77.301797, 39.04995], + [-77.301879, 39.049979], + [-77.302014, 39.050013], + [-77.302085, 39.050025], + [-77.302148, 39.050049], + [-77.302189, 39.050074], + [-77.302266, 39.050095], + [-77.302296, 39.050108], + [-77.302409, 39.050156], + [-77.302604, 39.050257], + [-77.302715, 39.050321], + [-77.302907, 39.05044], + [-77.303017, 39.050493], + [-77.303131, 39.050554], + [-77.303218, 39.05061], + [-77.303368, 39.05069], + [-77.303425, 39.050734], + [-77.303478, 39.050758], + [-77.303483, 39.050761], + [-77.30354, 39.050796], + [-77.303703, 39.050873], + [-77.303871, 39.050942], + [-77.30391, 39.050962], + [-77.303943, 39.050986], + [-77.304087, 39.051063], + [-77.304217, 39.051132], + [-77.304339, 39.051201], + [-77.304358, 39.051206], + [-77.304413, 39.05122], + [-77.30455, 39.051291], + [-77.304589, 39.051318], + [-77.304618, 39.05135], + [-77.304664, 39.051378], + [-77.304715, 39.051386], + [-77.304764, 39.0514], + [-77.304875, 39.051449], + [-77.3049, 39.05146], + [-77.305129, 39.051532], + [-77.305365, 39.051624], + [-77.30542, 39.051655], + [-77.305456, 39.051667], + [-77.305502, 39.051689], + [-77.30559, 39.051722], + [-77.305671, 39.051759], + [-77.305719, 39.051771], + [-77.305728, 39.051776], + [-77.305754, 39.051789], + [-77.305801, 39.0518], + [-77.305911, 39.051835], + [-77.305964, 39.051838], + [-77.306016, 39.05185], + [-77.306048, 39.05187], + [-77.306051, 39.051872], + [-77.306105, 39.051887], + [-77.30616, 39.051888], + [-77.306258, 39.051915], + [-77.306299, 39.051932], + [-77.306541, 39.051991], + [-77.306661, 39.052024], + [-77.306757, 39.052023], + [-77.306812, 39.052037], + [-77.306971, 39.052094], + [-77.307021, 39.052098], + [-77.307167, 39.052123], + [-77.307266, 39.05212], + [-77.30733, 39.05213], + [-77.307424, 39.052139], + [-77.307462, 39.052148], + [-77.307656, 39.052174], + [-77.307704, 39.052175], + [-77.307746, 39.052189], + [-77.307846, 39.05221], + [-77.3079, 39.052212], + [-77.308037, 39.052206], + [-77.308101, 39.052215], + [-77.308153, 39.052216], + [-77.308199, 39.052209], + [-77.308261, 39.052208], + [-77.308339, 39.052219], + [-77.308389, 39.05223], + [-77.308507, 39.052243], + [-77.308627, 39.05224], + [-77.308863, 39.052253], + [-77.308953, 39.05222], + [-77.309005, 39.052214], + [-77.309052, 39.052199], + [-77.309172, 39.052187], + [-77.309254, 39.052172], + [-77.309393, 39.052155], + [-77.309607, 39.05211], + [-77.309806, 39.052085], + [-77.309858, 39.052066], + [-77.309956, 39.052047], + [-77.310035, 39.052027], + [-77.310088, 39.052008], + [-77.310254, 39.051979], + [-77.310335, 39.051955], + [-77.310433, 39.051932], + [-77.310501, 39.051921], + [-77.310542, 39.051904], + [-77.31061, 39.05189], + [-77.310893, 39.05187], + [-77.310949, 39.051861], + [-77.310989, 39.051845], + [-77.311159, 39.051821], + [-77.31116, 39.051821], + [-77.311294, 39.051816], + [-77.311341, 39.051808], + [-77.311499, 39.051807], + [-77.311536, 39.051816], + [-77.311586, 39.051808], + [-77.311695, 39.051808], + [-77.311894, 39.051796], + [-77.31195, 39.05178], + [-77.31202, 39.051785], + [-77.312051, 39.051779], + [-77.312139, 39.051786], + [-77.312175, 39.051776], + [-77.312205, 39.051781], + [-77.312281, 39.051789], + [-77.312368, 39.051768], + [-77.312407, 39.051779], + [-77.312482, 39.051776], + [-77.312528, 39.051783], + [-77.312572, 39.05178], + [-77.312683, 39.051784], + [-77.312811, 39.051764], + [-77.312839, 39.051779], + [-77.312933, 39.051806], + [-77.313006, 39.051817], + [-77.313115, 39.05184], + [-77.313235, 39.051852], + [-77.313362, 39.051875], + [-77.31343, 39.051894], + [-77.313481, 39.051913], + [-77.313609, 39.051941], + [-77.313729, 39.051949], + [-77.313806, 39.051963], + [-77.313878, 39.051982], + [-77.313978, 39.052017], + [-77.314063, 39.052039], + [-77.314121, 39.05206], + [-77.314178, 39.052071], + [-77.314222, 39.052072], + [-77.314388, 39.052128], + [-77.314468, 39.052129], + [-77.314509, 39.052123], + [-77.314549, 39.05213], + [-77.314661, 39.05216], + [-77.314735, 39.052191], + [-77.314847, 39.0522], + [-77.314836, 39.052169], + [-77.314845, 39.052151], + [-77.314893, 39.052133], + [-77.314937, 39.052137], + [-77.315001, 39.052183], + [-77.315132, 39.052184], + [-77.315176, 39.052193], + [-77.315292, 39.052226], + [-77.315343, 39.052247], + [-77.315411, 39.052262], + [-77.315476, 39.05227], + [-77.315519, 39.052289], + [-77.315601, 39.052315], + [-77.315645, 39.052314], + [-77.315775, 39.052371], + [-77.315834, 39.052382], + [-77.315963, 39.052429], + [-77.316088, 39.052481], + [-77.316196, 39.05252], + [-77.316338, 39.052541], + [-77.316493, 39.052571], + [-77.316538, 39.052574], + [-77.316615, 39.052614], + [-77.316696, 39.05265], + [-77.316718, 39.052643], + [-77.316757, 39.052649], + [-77.316813, 39.052667], + [-77.316947, 39.052698], + [-77.317006, 39.052725], + [-77.31705, 39.052751], + [-77.317155, 39.052787], + [-77.317205, 39.052814], + [-77.317336, 39.052896], + [-77.31742, 39.052938], + [-77.317425, 39.052969], + [-77.317461, 39.053], + [-77.317542, 39.053087], + [-77.317572, 39.053125], + [-77.317595, 39.053145], + [-77.317665, 39.053243], + [-77.317767, 39.053321], + [-77.317832, 39.053389], + [-77.317866, 39.053393], + [-77.317907, 39.053405], + [-77.317967, 39.053452], + [-77.318003, 39.053462], + [-77.318077, 39.053495], + [-77.318144, 39.053532], + [-77.318305, 39.053591], + [-77.318359, 39.053584], + [-77.318423, 39.053593], + [-77.318529, 39.053597], + [-77.318588, 39.053582], + [-77.318697, 39.05354], + [-77.31879, 39.053487], + [-77.318824, 39.05346], + [-77.318892, 39.053417], + [-77.318914, 39.053398], + [-77.318941, 39.053388], + [-77.31899, 39.053381], + [-77.319017, 39.05337], + [-77.319105, 39.05335], + [-77.319155, 39.053347], + [-77.319209, 39.053349], + [-77.319385, 39.053341], + [-77.319535, 39.053344], + [-77.319732, 39.053392], + [-77.319831, 39.053427], + [-77.319868, 39.053452], + [-77.319964, 39.053495], + [-77.320173, 39.053566], + [-77.320293, 39.05364], + [-77.320336, 39.053649], + [-77.320384, 39.05367], + [-77.320457, 39.053723], + [-77.320479, 39.053749], + [-77.320564, 39.053804], + [-77.3206, 39.05382], + [-77.320666, 39.05386], + [-77.320682, 39.053882], + [-77.320736, 39.053924], + [-77.320819, 39.053957], + [-77.320966, 39.054069], + [-77.321085, 39.054147], + [-77.321119, 39.054175], + [-77.321175, 39.054222], + [-77.321269, 39.054331], + [-77.321312, 39.054361], + [-77.321358, 39.054412], + [-77.321405, 39.054443], + [-77.321462, 39.054461], + [-77.321539, 39.054496], + [-77.321746, 39.054602], + [-77.321762, 39.054623], + [-77.32176, 39.054655], + [-77.321772, 39.054681], + [-77.321785, 39.05469], + [-77.321806, 39.054705], + [-77.321895, 39.054766], + [-77.321983, 39.054803], + [-77.322089, 39.054866], + [-77.322119, 39.054895], + [-77.322162, 39.054949], + [-77.322237, 39.054991], + [-77.322313, 39.055042], + [-77.322418, 39.055139], + [-77.32247, 39.05515], + [-77.322508, 39.055164], + [-77.322524, 39.055194], + [-77.322621, 39.055274], + [-77.322666, 39.055289], + [-77.322799, 39.055376], + [-77.32284, 39.055392], + [-77.322889, 39.055401], + [-77.322929, 39.055419], + [-77.32298, 39.055435], + [-77.323016, 39.055454], + [-77.323134, 39.055454], + [-77.323239, 39.05546], + [-77.323357, 39.055505], + [-77.323392, 39.055518], + [-77.323423, 39.055513], + [-77.323472, 39.055515], + [-77.323652, 39.05554], + [-77.323719, 39.055559], + [-77.323822, 39.055577], + [-77.323868, 39.055589], + [-77.323905, 39.055592], + [-77.323951, 39.055605], + [-77.32405, 39.055647], + [-77.324082, 39.055672], + [-77.324107, 39.055689], + [-77.32415, 39.055706], + [-77.32419, 39.055717], + [-77.324207, 39.055738], + [-77.324226, 39.055749], + [-77.324252, 39.055738], + [-77.324348, 39.055809], + [-77.324442, 39.055848], + [-77.324493, 39.055863], + [-77.324538, 39.055882], + [-77.324589, 39.055911], + [-77.324627, 39.055926], + [-77.324738, 39.055992], + [-77.324776, 39.056019], + [-77.324824, 39.056044], + [-77.324925, 39.056116], + [-77.325016, 39.056173], + [-77.32505, 39.056202], + [-77.325103, 39.056261], + [-77.325144, 39.056294], + [-77.325216, 39.056333], + [-77.325246, 39.056359], + [-77.32531, 39.056393], + [-77.325352, 39.056423], + [-77.325378, 39.056448], + [-77.325414, 39.056471], + [-77.325431, 39.056499], + [-77.325452, 39.056523], + [-77.325486, 39.056543], + [-77.325637, 39.056653], + [-77.32568, 39.056694], + [-77.32572, 39.056711], + [-77.325762, 39.056723], + [-77.325808, 39.056743], + [-77.32598, 39.05684], + [-77.326025, 39.056857], + [-77.326145, 39.056925], + [-77.326185, 39.05698], + [-77.326226, 39.056999], + [-77.326244, 39.057012], + [-77.326267, 39.057016], + [-77.326317, 39.057042], + [-77.326347, 39.057076], + [-77.326371, 39.05712], + [-77.326414, 39.057155], + [-77.326437, 39.057164], + [-77.32654, 39.057204], + [-77.326634, 39.057235], + [-77.326635, 39.057236], + [-77.326639, 39.057236], + [-77.326649, 39.057239], + [-77.326687, 39.057266], + [-77.32673, 39.057305], + [-77.326774, 39.057335], + [-77.326823, 39.05736], + [-77.326882, 39.057384], + [-77.327477, 39.057539], + [-77.327505, 39.05754], + [-77.327507, 39.05754], + [-77.327515, 39.057541], + [-77.327519, 39.057541], + [-77.327558, 39.057535], + [-77.327588, 39.057503], + [-77.327619, 39.05748], + [-77.327693, 39.057442], + [-77.32773, 39.057431], + [-77.327801, 39.057422], + [-77.327882, 39.057425], + [-77.327936, 39.057439], + [-77.328043, 39.057485], + [-77.328175, 39.057569], + [-77.32832, 39.057686], + [-77.328407, 39.05775], + [-77.328457, 39.057782], + [-77.328509, 39.057822], + [-77.328647, 39.057906], + [-77.328892, 39.058027], + [-77.328994, 39.058084], + [-77.32907, 39.058121], + [-77.329162, 39.058159], + [-77.329259, 39.058188], + [-77.329339, 39.058205], + [-77.329503, 39.058229], + [-77.329592, 39.058246], + [-77.329678, 39.058253], + [-77.329837, 39.058281], + [-77.329884, 39.058307], + [-77.329917, 39.058335], + [-77.33002, 39.058393], + [-77.330081, 39.058414], + [-77.330132, 39.058419], + [-77.330176, 39.058416], + [-77.330322, 39.05842], + [-77.330389, 39.058429], + [-77.330606, 39.058479], + [-77.330761, 39.058505], + [-77.330928, 39.05854], + [-77.331003, 39.058545], + [-77.331135, 39.058574], + [-77.33134, 39.058638], + [-77.331355, 39.058641], + [-77.331449, 39.05866], + [-77.331543, 39.058687], + [-77.331645, 39.058736], + [-77.331784, 39.058795], + [-77.331787, 39.058796], + [-77.331861, 39.058828], + [-77.332352, 39.059071], + [-77.332686, 39.059226], + [-77.332775, 39.059257], + [-77.332874, 39.059285], + [-77.333055, 39.05931], + [-77.333128, 39.059314], + [-77.333231, 39.059314], + [-77.333318, 39.059324], + [-77.333404, 39.059339], + [-77.333483, 39.059365], + [-77.333496, 39.059371], + [-77.333553, 39.059398], + [-77.333605, 39.059434], + [-77.333642, 39.059471], + [-77.333658, 39.059486], + [-77.33369, 39.059518], + [-77.33371, 39.059529], + [-77.333793, 39.05962], + [-77.333794, 39.059651], + [-77.333839, 39.059699], + [-77.333863, 39.059725], + [-77.333905, 39.059788], + [-77.333958, 39.059882], + [-77.333965, 39.059925], + [-77.333963, 39.059983], + [-77.333953, 39.060026], + [-77.333882, 39.06015], + [-77.333876, 39.060234], + [-77.333882, 39.060624], + [-77.333888, 39.06068], + [-77.333898, 39.060772], + [-77.3339, 39.060903], + [-77.333908, 39.060972], + [-77.333924, 39.061018], + [-77.333931, 39.061041], + [-77.333965, 39.061089], + [-77.334017, 39.061164], + [-77.334065, 39.061214], + [-77.334193, 39.061311], + [-77.334246, 39.061338], + [-77.334414, 39.061393], + [-77.334584, 39.061439], + [-77.334608, 39.061444], + [-77.334652, 39.061453], + [-77.33474, 39.061488], + [-77.334742, 39.061489], + [-77.334904, 39.061553], + [-77.335158, 39.061629], + [-77.335281, 39.061675], + [-77.335347, 39.061692], + [-77.335666, 39.061805], + [-77.33588, 39.061859], + [-77.335992, 39.061894], + [-77.336274, 39.061971], + [-77.336495, 39.062048], + [-77.336752, 39.062132], + [-77.33681, 39.062156], + [-77.336875, 39.062189], + [-77.337006, 39.062239], + [-77.337139, 39.062273], + [-77.337252, 39.062284], + [-77.33735, 39.062301], + [-77.337507, 39.062316], + [-77.337602, 39.062311], + [-77.337737, 39.062328], + [-77.337743, 39.062328], + [-77.337795, 39.06233], + [-77.337862, 39.06234], + [-77.337922, 39.062357], + [-77.337945, 39.062367], + [-77.337946, 39.062368], + [-77.337992, 39.062388], + [-77.338112, 39.062432], + [-77.338195, 39.062468], + [-77.338303, 39.062502], + [-77.338368, 39.062515], + [-77.338509, 39.062524], + [-77.338628, 39.062538], + [-77.338632, 39.062539], + [-77.338635, 39.062539], + [-77.338638, 39.06254], + [-77.338695, 39.062553], + [-77.338793, 39.062582], + [-77.338803, 39.062585], + [-77.338805, 39.062586], + [-77.338825, 39.062592], + [-77.338967, 39.062626], + [-77.339035, 39.062648], + [-77.339039, 39.062649], + [-77.339042, 39.06265], + [-77.339044, 39.062651], + [-77.339123, 39.062677], + [-77.339165, 39.062694], + [-77.339459, 39.062769], + [-77.33961, 39.062796], + [-77.339726, 39.062804], + [-77.33977, 39.062818], + [-77.339821, 39.062827], + [-77.339935, 39.062859], + [-77.339986, 39.062882], + [-77.340042, 39.062898], + [-77.340146, 39.062917], + [-77.340359, 39.062924], + [-77.340434, 39.062935], + [-77.340615, 39.062947], + [-77.340779, 39.062958], + [-77.341008, 39.062962], + [-77.341152, 39.06296], + [-77.341342, 39.062966], + [-77.341344, 39.062966], + [-77.341485, 39.062971], + [-77.341489, 39.062971], + [-77.341671, 39.062973], + [-77.341728, 39.06297], + [-77.34192, 39.062941], + [-77.341986, 39.062938], + [-77.34199, 39.062938], + [-77.34211, 39.062934], + [-77.34246, 39.062972], + [-77.342644, 39.062975], + [-77.342811, 39.063025], + [-77.343153, 39.063036], + [-77.343351, 39.063012], + [-77.343596, 39.062924], + [-77.344412, 39.062868], + [-77.344801, 39.06282], + [-77.345433, 39.062804], + [-77.345798, 39.062762], + [-77.346323, 39.062725], + [-77.347138, 39.062629], + [-77.348626, 39.062509], + [-77.349035, 39.062488], + [-77.349346, 39.062451], + [-77.349844, 39.062403], + [-77.35025, 39.062392], + [-77.350677, 39.062374], + [-77.351233, 39.062355], + [-77.351711, 39.062318], + [-77.352414, 39.062326], + [-77.353066, 39.062392], + [-77.353448, 39.062408], + [-77.354718, 39.062467], + [-77.355397, 39.062507], + [-77.356121, 39.062547], + [-77.357247, 39.062632], + [-77.357615, 39.062632], + [-77.358155, 39.062656], + [-77.358824, 39.062653], + [-77.359301, 39.06261], + [-77.360042, 39.062597], + [-77.360465, 39.062589], + [-77.360813, 39.062578], + [-77.361342, 39.062544], + [-77.361919, 39.062528], + [-77.362291, 39.062568], + [-77.363028, 39.062488], + [-77.363492, 39.062379], + [-77.364138, 39.062294], + [-77.364434, 39.062286], + [-77.364632, 39.062289], + [-77.364909, 39.06227], + [-77.3651, 39.062228], + [-77.365264, 39.062236], + [-77.365533, 39.062238], + [-77.365687, 39.06222], + [-77.365796, 39.062145], + [-77.365902, 39.062105], + [-77.366349, 39.062033], + [-77.366728, 39.06201], + [-77.367247, 39.061906], + [-77.367557, 39.06194], + [-77.367902, 39.061877], + [-77.36796, 39.06181], + [-77.367954, 39.061768], + [-77.367957, 39.061765], + [-77.367956, 39.061759], + [-77.367951, 39.061723], + [-77.368155, 39.061598], + [-77.368161, 39.061641], + [-77.368269, 39.061576], + [-77.368303, 39.061605], + [-77.368325, 39.061624], + [-77.368426, 39.061634], + [-77.368489, 39.06164], + [-77.369847, 39.061613], + [-77.370168, 39.061587], + [-77.371274, 39.061672], + [-77.371779, 39.061778], + [-77.372469, 39.061847], + [-77.372919, 39.061805], + [-77.373772, 39.061762], + [-77.37418, 39.061746], + [-77.374402, 39.06176], + [-77.375039, 39.061857], + [-77.375316, 39.061946], + [-77.375428, 39.061976], + [-77.375918, 39.062057], + [-77.376224, 39.06212], + [-77.376282, 39.062129], + [-77.376308, 39.062142], + [-77.376436, 39.062167], + [-77.376608, 39.062187], + [-77.376953, 39.062247], + [-77.377069, 39.062261], + [-77.377255, 39.062298], + [-77.377497, 39.062331], + [-77.377566, 39.062344], + [-77.377662, 39.062354], + [-77.37784, 39.062395], + [-77.377992, 39.062421], + [-77.378045, 39.062422], + [-77.378096, 39.062408], + [-77.378242, 39.062434], + [-77.378369, 39.062456], + [-77.378435, 39.062453], + [-77.378544, 39.062529], + [-77.378899, 39.062571], + [-77.380008, 39.062635], + [-77.38052, 39.062622], + [-77.380765, 39.062625], + [-77.381096, 39.062593], + [-77.381294, 39.062571], + [-77.382015, 39.062524], + [-77.38237, 39.062486], + [-77.382687, 39.06242], + [-77.38309, 39.062276], + [-77.383813, 39.062165], + [-77.384369, 39.062124], + [-77.384769, 39.062153], + [-77.385796, 39.06214], + [-77.38682, 39.062249], + [-77.387475, 39.062352], + [-77.388107, 39.062467], + [-77.389161, 39.062637], + [-77.390455, 39.062842], + [-77.391755, 39.063113], + [-77.392547, 39.06327], + [-77.393178, 39.063429], + [-77.393789, 39.063618], + [-77.394188, 39.063767], + [-77.394741, 39.063878], + [-77.395386, 39.064056], + [-77.395892, 39.064163], + [-77.396905, 39.064399], + [-77.397554, 39.064532], + [-77.398356, 39.064665], + [-77.39897, 39.064705], + [-77.399731, 39.064686], + [-77.400458, 39.064634], + [-77.400543, 39.064628], + [-77.401127, 39.064546], + [-77.401598, 39.064458], + [-77.401646, 39.064411], + [-77.401647, 39.06441], + [-77.401695, 39.064417], + [-77.401708, 39.064419], + [-77.40171, 39.064419], + [-77.401711, 39.06442], + [-77.401713, 39.06442], + [-77.401905, 39.06445], + [-77.40192, 39.064463], + [-77.40195, 39.06449], + [-77.402362, 39.064511], + [-77.402789, 39.0645], + [-77.404472, 39.06449], + [-77.405018, 39.064514], + [-77.405448, 39.064532], + [-77.406004, 39.064607], + [-77.406196, 39.064633], + [-77.406224, 39.064637], + [-77.40626, 39.064642], + [-77.406263, 39.064642], + [-77.406271, 39.064643], + [-77.406276, 39.064644], + [-77.406283, 39.064645], + [-77.406912, 39.064729], + [-77.406914, 39.06473], + [-77.406916, 39.06473], + [-77.406925, 39.064731], + [-77.407424, 39.064798], + [-77.408919, 39.06508], + [-77.409379, 39.065175], + [-77.410042, 39.065316], + [-77.410693, 39.065468], + [-77.410932, 39.065526], + [-77.41184, 39.065712], + [-77.412461, 39.065853], + [-77.413564, 39.06605], + [-77.41428, 39.066207], + [-77.41468, 39.066279], + [-77.415403, 39.066364], + [-77.415632, 39.066401], + [-77.41584, 39.06642], + [-77.416127, 39.066462], + [-77.416687, 39.066478], + [-77.416939, 39.066457], + [-77.417465, 39.066462], + [-77.417864, 39.066478], + [-77.418089, 39.066443], + [-77.418468, 39.066475], + [-77.418813, 39.066486], + [-77.419079, 39.066465], + [-77.419642, 39.066396], + [-77.420007, 39.066377], + [-77.420461, 39.066406], + [-77.42069, 39.066433], + [-77.420691, 39.066432], + [-77.420695, 39.066427], + [-77.420722, 39.066396], + [-77.420736, 39.066337], + [-77.420796, 39.066446], + [-77.420799, 39.066451], + [-77.421304, 39.066571], + [-77.42198, 39.066693], + [-77.422284, 39.066776], + [-77.423229, 39.06702], + [-77.424717, 39.067363], + [-77.425359, 39.067475], + [-77.42611, 39.06761], + [-77.426687, 39.067682], + [-77.426966, 39.067783], + [-77.427202, 39.06782], + [-77.427663, 39.067913], + [-77.428065, 39.068038], + [-77.428499, 39.068238], + [-77.428953, 39.06852], + [-77.429014, 39.068549], + [-77.429243, 39.068658], + [-77.429567, 39.068785], + [-77.430762, 39.069274], + [-77.431458, 39.069413], + [-77.431936, 39.069552], + [-77.431945, 39.069555], + [-77.431947, 39.069555], + [-77.431955, 39.069557], + [-77.432171, 39.06962], + [-77.432258, 39.06963], + [-77.43226, 39.06963], + [-77.432262, 39.069631], + [-77.432274, 39.069632], + [-77.432499, 39.069657], + [-77.432919, 39.069782], + [-77.433267, 39.069878], + [-77.433536, 39.069926], + [-77.434171, 39.070077], + [-77.43484, 39.07021], + [-77.435185, 39.070274], + [-77.436495, 39.070508], + [-77.437342, 39.070657], + [-77.438031, 39.070726], + [-77.438755, 39.070848], + [-77.439427, 39.070936], + [-77.439473, 39.070945], + [-77.439905, 39.071026], + [-77.44014, 39.071079], + [-77.44084, 39.071207], + [-77.4417, 39.071321], + [-77.442451, 39.071335], + [-77.443007, 39.071335], + [-77.443509, 39.071276], + [-77.443627, 39.071228], + [-77.443738, 39.071263], + [-77.443879, 39.071264], + [-77.444031, 39.071265], + [-77.444321, 39.071284], + [-77.444406, 39.07129], + [-77.444553, 39.0713], + [-77.444772, 39.071287], + [-77.44512, 39.071228], + [-77.44542, 39.071242], + [-77.44568, 39.071305], + [-77.445837, 39.071341], + [-77.445839, 39.071341], + [-77.445842, 39.071342], + [-77.445946, 39.071366], + [-77.446045, 39.071465], + [-77.446113, 39.071494], + [-77.446338, 39.071587], + [-77.446632, 39.071656], + [-77.446942, 39.071704], + [-77.447584, 39.071877], + [-77.448263, 39.072012], + [-77.448854, 39.072169], + [-77.44943, 39.072278], + [-77.449618, 39.07231], + [-77.449871, 39.072281], + [-77.450035, 39.072287], + [-77.450092, 39.072289], + [-77.450263, 39.072323], + [-77.450591, 39.072326], + [-77.450949, 39.072326], + [-77.451864, 39.072334], + [-77.452546, 39.072406], + [-77.453557, 39.072592], + [-77.454731, 39.072815], + [-77.455594, 39.073041], + [-77.456164, 39.073166], + [-77.456963, 39.073403], + [-77.456973, 39.073407], + [-77.457009, 39.07342], + [-77.457202, 39.073493], + [-77.45751, 39.073599], + [-77.45772, 39.073671], + [-77.459017, 39.074189], + [-77.459546, 39.074405], + [-77.460007, 39.074588], + [-77.460284, 39.074721], + [-77.460604, 39.074851], + [-77.460973, 39.075064], + [-77.460984, 39.075072], + [-77.461475, 39.075434], + [-77.46199, 39.075851], + [-77.462225, 39.076069], + [-77.462502, 39.076412], + [-77.462609, 39.076599], + [-77.462618, 39.076616], + [-77.462881, 39.07723], + [-77.463065, 39.077762], + [-77.463161, 39.078052], + [-77.463273, 39.078219], + [-77.463382, 39.078405], + [-77.463475, 39.078573], + [-77.46384, 39.079049], + [-77.463884, 39.079195], + [-77.464045, 39.079434], + [-77.464107, 39.079458], + [-77.464133, 39.079562], + [-77.464157, 39.079615], + [-77.464162, 39.079626], + [-77.464263, 39.079836], + [-77.464901, 39.080729], + [-77.465246, 39.081149], + [-77.465567, 39.081545], + [-77.465877, 39.081922], + [-77.466089, 39.082212], + [-77.46628, 39.082433], + [-77.4664, 39.082552], + [-77.466686, 39.082861], + [-77.466898, 39.0831], + [-77.467184, 39.08344], + [-77.467451, 39.083746], + [-77.467662, 39.084009], + [-77.467823, 39.084184], + [-77.468062, 39.084416], + [-77.468242, 39.08466], + [-77.468331, 39.084801], + [-77.468635, 39.085109], + [-77.468686, 39.085175], + [-77.468826, 39.085354], + [-77.468959, 39.08563], + [-77.469099, 39.086], + [-77.469137, 39.086306], + [-77.469099, 39.086649], + [-77.46899, 39.08696], + [-77.468393, 39.088095], + [-77.468304, 39.088344], + [-77.468331, 39.088549], + [-77.468458, 39.08899], + [-77.468662, 39.089397], + [-77.468911, 39.089687], + [-77.469188, 39.089852], + [-77.469618, 39.090104], + [-77.469935, 39.090351], + [-77.47013, 39.090516], + [-77.470335, 39.090777], + [-77.470447, 39.090992], + [-77.470792, 39.091266], + [-77.471427, 39.091797], + [-77.471536, 39.091901], + [-77.471727, 39.092079], + [-77.472208, 39.092566], + [-77.472423, 39.092786], + [-77.472833, 39.09319], + [-77.473065, 39.093499], + [-77.473492, 39.094052], + [-77.473911, 39.094785], + [-77.474358, 39.095609], + [-77.474621, 39.096202], + [-77.474812, 39.096588], + [-77.474963, 39.096928], + [-77.475143, 39.0973], + [-77.475335, 39.097728], + [-77.475461, 39.098028], + [-77.475587, 39.098286], + [-77.475676, 39.098523], + [-77.475816, 39.09877], + [-77.475891, 39.098921], + [-77.476024, 39.099179], + [-77.476072, 39.099318], + [-77.476198, 39.099573], + [-77.476475, 39.100006], + [-77.476713, 39.10028], + [-77.476801, 39.100302], + [-77.47703, 39.100797], + [-77.477044, 39.100827], + [-77.477379, 39.101279], + [-77.477464, 39.101423], + [-77.477498, 39.101469], + [-77.477771, 39.101848], + [-77.47813, 39.102343], + [-77.478219, 39.102523], + [-77.47841, 39.102752], + [-77.478952, 39.103418], + [-77.479217, 39.103693], + [-77.479695, 39.104146], + [-77.479846, 39.104291], + [-77.479986, 39.104455], + [-77.480033, 39.104509], + [-77.48004, 39.104517], + [-77.480041, 39.104518], + [-77.480128, 39.104617], + [-77.480129, 39.104618], + [-77.48014, 39.104631], + [-77.480324, 39.104892], + [-77.480608, 39.105221], + [-77.48085, 39.105516], + [-77.481017, 39.105697], + [-77.481111, 39.105761], + [-77.481172, 39.105805], + [-77.481367, 39.105893], + [-77.481425, 39.105944], + [-77.481655, 39.106133], + [-77.482051, 39.10647], + [-77.482055, 39.106474], + [-77.482065, 39.106482], + [-77.482077, 39.106492], + [-77.482283, 39.106667], + [-77.482451, 39.106824], + [-77.48249, 39.106871], + [-77.482857, 39.107226], + [-77.483095, 39.107448], + [-77.483096, 39.107449], + [-77.483242, 39.107547], + [-77.483406, 39.107686], + [-77.483573, 39.107885], + [-77.483778, 39.10801], + [-77.484007, 39.108193], + [-77.484212, 39.108332], + [-77.484457, 39.108552], + [-77.48516, 39.109124], + [-77.485403, 39.109318], + [-77.485782, 39.109504], + [-77.486474, 39.109833], + [-77.486481, 39.109836], + [-77.486483, 39.109837], + [-77.486485, 39.109837], + [-77.486647, 39.109901], + [-77.486651, 39.109903], + [-77.486672, 39.109911], + [-77.487317, 39.110291], + [-77.487829, 39.110554], + [-77.488207, 39.110626], + [-77.488266, 39.110653], + [-77.488524, 39.110771], + [-77.488818, 39.110914], + [-77.488973, 39.110983], + [-77.489025, 39.111011], + [-77.489179, 39.111066], + [-77.489225, 39.111089], + [-77.489298, 39.111137], + [-77.48957, 39.111251], + [-77.489626, 39.11127], + [-77.489633, 39.111272], + [-77.489678, 39.111292], + [-77.489837, 39.111382], + [-77.48993, 39.111444], + [-77.489961, 39.11146], + [-77.490002, 39.111465], + [-77.490014, 39.111467], + [-77.490053, 39.111468], + [-77.490097, 39.111456], + [-77.490185, 39.111448], + [-77.49021, 39.111455], + [-77.490227, 39.111468], + [-77.490262, 39.111525], + [-77.490291, 39.111557], + [-77.490367, 39.111596], + [-77.490379, 39.111602], + [-77.490424, 39.111615], + [-77.490443, 39.111618], + [-77.49046, 39.111621], + [-77.490487, 39.111635], + [-77.490489, 39.111636], + [-77.490587, 39.111688], + [-77.490662, 39.111741], + [-77.490703, 39.111759], + [-77.49078, 39.111776], + [-77.490944, 39.111784], + [-77.490984, 39.111794], + [-77.491056, 39.111823], + [-77.491087, 39.111829], + [-77.491123, 39.111836], + [-77.491291, 39.111883], + [-77.491338, 39.111904], + [-77.491365, 39.111916], + [-77.491403, 39.111945], + [-77.491521, 39.111964], + [-77.491633, 39.111999], + [-77.491801, 39.112062], + [-77.491801, 39.112055], + [-77.491802, 39.112014], + [-77.491886, 39.112044], + [-77.492261, 39.112192], + [-77.492544, 39.112311], + [-77.492653, 39.112346], + [-77.492727, 39.112363], + [-77.49292, 39.112431], + [-77.493159, 39.112504], + [-77.493534, 39.1126], + [-77.49385, 39.112691], + [-77.494004, 39.112743], + [-77.494097, 39.11278], + [-77.494304, 39.112842], + [-77.494712, 39.112955], + [-77.494844, 39.112996], + [-77.495289, 39.11315], + [-77.495433, 39.113192], + [-77.495761, 39.113262], + [-77.495785, 39.11326], + [-77.495838, 39.113224], + [-77.495863, 39.113267], + [-77.495945, 39.113322], + [-77.495981, 39.113341], + [-77.496086, 39.11338], + [-77.496274, 39.113426], + [-77.49646, 39.113479], + [-77.496585, 39.113508], + [-77.496847, 39.113556], + [-77.497111, 39.11361], + [-77.497392, 39.11365], + [-77.497476, 39.113657], + [-77.497498, 39.113664], + [-77.497507, 39.113684], + [-77.497511, 39.113709], + [-77.497522, 39.113736], + [-77.497532, 39.113743], + [-77.497553, 39.113758], + [-77.497576, 39.113767], + [-77.497646, 39.113769], + [-77.49779, 39.113743], + [-77.497793, 39.113743], + [-77.497795, 39.113742], + [-77.497892, 39.113724], + [-77.498012, 39.11371], + [-77.498128, 39.113707], + [-77.49813, 39.113707], + [-77.498221, 39.113705], + [-77.498418, 39.113694], + [-77.498454, 39.113687], + [-77.498484, 39.113673], + [-77.498508, 39.113662], + [-77.498517, 39.113672], + [-77.498527, 39.113682], + [-77.498556, 39.113692], + [-77.49868, 39.113699], + [-77.498778, 39.113709], + [-77.498971, 39.113747], + [-77.499144, 39.113763], + [-77.49943, 39.11382], + [-77.499895, 39.113942], + [-77.500052, 39.113969], + [-77.500141, 39.114001], + [-77.500332, 39.114083], + [-77.500416, 39.114106], + [-77.500594, 39.114138], + [-77.500719, 39.114161], + [-77.500753, 39.114146], + [-77.500781, 39.114182], + [-77.500831, 39.114201], + [-77.500911, 39.114225], + [-77.500977, 39.114252], + [-77.501127, 39.114299], + [-77.501398, 39.114398], + [-77.501679, 39.114487], + [-77.501906, 39.114558], + [-77.502083, 39.114645], + [-77.502098, 39.114651], + [-77.502159, 39.114676], + [-77.502569, 39.114768], + [-77.502779, 39.114825], + [-77.502809, 39.114835], + [-77.503162, 39.114954], + [-77.503375, 39.115015], + [-77.503464, 39.115036], + [-77.503594, 39.115084], + [-77.503693, 39.115116], + [-77.503894, 39.115167], + [-77.504088, 39.115228], + [-77.504215, 39.115274], + [-77.504217, 39.115275], + [-77.504647, 39.115431], + [-77.504682, 39.115435], + [-77.504757, 39.115464], + [-77.504789, 39.115471], + [-77.504813, 39.115482], + [-77.504888, 39.115504], + [-77.504895, 39.115506], + [-77.5049, 39.115508], + [-77.504912, 39.115512], + [-77.505105, 39.115556], + [-77.505149, 39.11557], + [-77.505152, 39.115571], + [-77.505179, 39.115579], + [-77.505207, 39.115579], + [-77.505229, 39.115587], + [-77.505231, 39.115588], + [-77.505238, 39.11559], + [-77.505255, 39.115593], + [-77.505259, 39.115594], + [-77.505264, 39.115595], + [-77.505267, 39.115595], + [-77.505281, 39.115597], + [-77.505289, 39.1156], + [-77.505312, 39.115609], + [-77.505338, 39.115611], + [-77.505346, 39.115611], + [-77.505354, 39.115614], + [-77.505417, 39.115638], + [-77.505556, 39.115672], + [-77.505596, 39.11569], + [-77.505697, 39.115717], + [-77.505946, 39.115796], + [-77.505984, 39.115801], + [-77.506105, 39.115837], + [-77.506134, 39.11584], + [-77.506176, 39.115855], + [-77.506199, 39.115857], + [-77.506237, 39.115867], + [-77.506265, 39.115867], + [-77.506288, 39.115876], + [-77.50633, 39.115878], + [-77.50642, 39.1159], + [-77.506503, 39.115913], + [-77.506526, 39.115911], + [-77.506554, 39.115915], + [-77.506577, 39.115925], + [-77.506654, 39.115935], + [-77.506686, 39.115944], + [-77.506717, 39.115947], + [-77.5068, 39.115971], + [-77.506842, 39.115983], + [-77.506909, 39.115996], + [-77.506937, 39.115998], + [-77.507008, 39.116034], + [-77.507016, 39.116038], + [-77.507075, 39.116061], + [-77.5071, 39.116076], + [-77.507154, 39.116096], + [-77.507233, 39.116136], + [-77.507259, 39.116142], + [-77.507287, 39.116155], + [-77.507317, 39.116161], + [-77.507417, 39.116206], + [-77.507496, 39.116233], + [-77.507531, 39.116241], + [-77.507603, 39.116273], + [-77.507682, 39.116299], + [-77.507775, 39.116339], + [-77.507794, 39.116347], + [-77.507827, 39.116365], + [-77.50785, 39.116373], + [-77.507895, 39.1164], + [-77.507913, 39.11642], + [-77.507961, 39.116455], + [-77.507986, 39.116473], + [-77.508058, 39.116523], + [-77.50812, 39.116554], + [-77.508147, 39.116576], + [-77.508274, 39.116642], + [-77.508343, 39.116668], + [-77.508371, 39.116674], + [-77.508453, 39.116702], + [-77.508474, 39.116706], + [-77.508569, 39.116725], + [-77.508699, 39.11676], + [-77.508731, 39.116778], + [-77.508864, 39.116828], + [-77.50889, 39.116841], + [-77.508896, 39.116843], + [-77.508898, 39.116844], + [-77.5089, 39.116844], + [-77.509011, 39.116877], + [-77.509039, 39.116878], + [-77.509073, 39.11689], + [-77.509101, 39.116892], + [-77.509125, 39.116906], + [-77.509145, 39.116913], + [-77.50926, 39.116952], + [-77.509309, 39.116981], + [-77.509369, 39.117002], + [-77.509397, 39.117017], + [-77.509523, 39.117069], + [-77.50956, 39.117092], + [-77.509609, 39.117112], + [-77.509702, 39.117141], + [-77.509742, 39.117159], + [-77.509772, 39.117163], + [-77.509805, 39.117181], + [-77.509832, 39.117186], + [-77.509881, 39.117208], + [-77.509905, 39.117213], + [-77.509968, 39.117235], + [-77.510002, 39.11724], + [-77.510065, 39.117258], + [-77.510233, 39.117323], + [-77.510307, 39.117345], + [-77.510356, 39.117365], + [-77.510393, 39.117374], + [-77.510419, 39.11739], + [-77.510488, 39.117418], + [-77.51057, 39.117439], + [-77.510605, 39.117458], + [-77.510689, 39.117482], + [-77.51079, 39.117524], + [-77.510792, 39.117525], + [-77.510854, 39.117551], + [-77.510882, 39.117559], + [-77.510929, 39.117581], + [-77.511091, 39.117627], + [-77.511143, 39.117654], + [-77.511171, 39.117661], + [-77.511399, 39.117761], + [-77.511541, 39.117819], + [-77.511564, 39.117824], + [-77.511697, 39.117875], + [-77.511857, 39.11792], + [-77.511889, 39.117926], + [-77.512004, 39.117962], + [-77.512045, 39.117969], + [-77.512069, 39.117982], + [-77.512091, 39.118], + [-77.512209, 39.118052], + [-77.512325, 39.118081], + [-77.512364, 39.118084], + [-77.512397, 39.118092], + [-77.512422, 39.118104], + [-77.512577, 39.118133], + [-77.512624, 39.118135], + [-77.512701, 39.118146], + [-77.512777, 39.118152], + [-77.512884, 39.118181], + [-77.512925, 39.118181], + [-77.512955, 39.118175], + [-77.512978, 39.118166], + [-77.51305, 39.118171], + [-77.51319, 39.118151], + [-77.513225, 39.118143], + [-77.513404, 39.11813], + [-77.513433, 39.118128], + [-77.513479, 39.118128], + [-77.513597, 39.118141], + [-77.513699, 39.118147], + [-77.513852, 39.118144], + [-77.513991, 39.118161], + [-77.514027, 39.118169], + [-77.514114, 39.118188], + [-77.514287, 39.118208], + [-77.514464, 39.118249], + [-77.51462, 39.118296], + [-77.514708, 39.118312], + [-77.514743, 39.118325], + [-77.515017, 39.118391], + [-77.515168, 39.118433], + [-77.515228, 39.118457], + [-77.515265, 39.118464], + [-77.515305, 39.118483], + [-77.515351, 39.118496], + [-77.515461, 39.118538], + [-77.515674, 39.118596], + [-77.515725, 39.118611], + [-77.515729, 39.118612], + [-77.51589, 39.11866], + [-77.516372, 39.118844], + [-77.516408, 39.118863], + [-77.516409, 39.118864], + [-77.516411, 39.118865], + [-77.516414, 39.118866], + [-77.516438, 39.118878], + [-77.516566, 39.118926], + [-77.516579, 39.118931], + [-77.516591, 39.118935], + [-77.516633, 39.118958], + [-77.516841, 39.119023], + [-77.517025, 39.119104], + [-77.517172, 39.119174], + [-77.517281, 39.119238], + [-77.517361, 39.119276], + [-77.517467, 39.119335], + [-77.517477, 39.119341], + [-77.517527, 39.119376], + [-77.517582, 39.119404], + [-77.517716, 39.119492], + [-77.517765, 39.119518], + [-77.517788, 39.119522], + [-77.517932, 39.119583], + [-77.517989, 39.119613], + [-77.518039, 39.119626], + [-77.518244, 39.119719], + [-77.518349, 39.119747], + [-77.518449, 39.11979], + [-77.518489, 39.119812], + [-77.518524, 39.119841], + [-77.518611, 39.119893], + [-77.518628, 39.119898], + [-77.518639, 39.119901], + [-77.518664, 39.11992], + [-77.518665, 39.119921], + [-77.518686, 39.119937], + [-77.518696, 39.11994], + [-77.518709, 39.119944], + [-77.518825, 39.120004], + [-77.518912, 39.12007], + [-77.519041, 39.120139], + [-77.519071, 39.120162], + [-77.519092, 39.120171], + [-77.519193, 39.120243], + [-77.519266, 39.120295], + [-77.519291, 39.120313], + [-77.51935, 39.120348], + [-77.519408, 39.120378], + [-77.51941, 39.120379], + [-77.519413, 39.12038], + [-77.519445, 39.120397], + [-77.519456, 39.120407], + [-77.519457, 39.120408], + [-77.51957, 39.120516], + [-77.51968, 39.120604], + [-77.519701, 39.120613], + [-77.519747, 39.120643], + [-77.519773, 39.120665], + [-77.519797, 39.120679], + [-77.519799, 39.120681], + [-77.519853, 39.120716], + [-77.519923, 39.120769], + [-77.519945, 39.120791], + [-77.520021, 39.120828], + [-77.520094, 39.120877], + [-77.520204, 39.120973], + [-77.52031, 39.121076], + [-77.520372, 39.121146], + [-77.520374, 39.121148], + [-77.520555, 39.121326], + [-77.520595, 39.121377], + [-77.52067, 39.121443], + [-77.52078, 39.121588], + [-77.520813, 39.121621], + [-77.520903, 39.121739], + [-77.520997, 39.121843], + [-77.521086, 39.121926], + [-77.521195, 39.122063], + [-77.521261, 39.122162], + [-77.521321, 39.122231], + [-77.521356, 39.12226], + [-77.521428, 39.122339], + [-77.521574, 39.12256], + [-77.521592, 39.12258], + [-77.5216, 39.122595], + [-77.521603, 39.122601], + [-77.521605, 39.122606], + [-77.521607, 39.122609], + [-77.521684, 39.122757], + [-77.521688, 39.122763], + [-77.521728, 39.122832], + [-77.52173, 39.122836], + [-77.521758, 39.122884], + [-77.521827, 39.122981], + [-77.521869, 39.123046], + [-77.521904, 39.123081], + [-77.52193, 39.123096], + [-77.521981, 39.123145], + [-77.521982, 39.123146], + [-77.522118, 39.123275], + [-77.522251, 39.123447], + [-77.522344, 39.123649], + [-77.522349, 39.12368], + [-77.522511, 39.124011], + [-77.522514, 39.124019], + [-77.522515, 39.124021], + [-77.522552, 39.124106], + [-77.522611, 39.124213], + [-77.522662, 39.124318], + [-77.522667, 39.124329], + [-77.522692, 39.124372], + [-77.522729, 39.124435], + [-77.522763, 39.124503], + [-77.522764, 39.124504], + [-77.522783, 39.124542], + [-77.522833, 39.124622], + [-77.52285, 39.124661], + [-77.522876, 39.124702], + [-77.522879, 39.12472], + [-77.522932, 39.124813], + [-77.522975, 39.124878], + [-77.522989, 39.124916], + [-77.523075, 39.125079], + [-77.523171, 39.125243], + [-77.523223, 39.125321], + [-77.523264, 39.125395], + [-77.523348, 39.125581], + [-77.523406, 39.125649], + [-77.523419, 39.125679], + [-77.523438, 39.125706], + [-77.523467, 39.125767], + [-77.52362, 39.125967], + [-77.523659, 39.126026], + [-77.523701, 39.126081], + [-77.523769, 39.126169], + [-77.523783, 39.126192], + [-77.523796, 39.126215], + [-77.523839, 39.126297], + [-77.523844, 39.126307], + [-77.523889, 39.126377], + [-77.523901, 39.126406], + [-77.523934, 39.126464], + [-77.523987, 39.126558], + [-77.524037, 39.12667], + [-77.524138, 39.126848], + [-77.524167, 39.126909], + [-77.524242, 39.127017], + [-77.524316, 39.127104], + [-77.52443, 39.127311], + [-77.524466, 39.127355], + [-77.524537, 39.12746], + [-77.524602, 39.127594], + [-77.524617, 39.127639], + [-77.524666, 39.127728], + [-77.524701, 39.127842], + [-77.524736, 39.12799], + [-77.524776, 39.128127], + [-77.52481, 39.128192], + [-77.524829, 39.128254], + [-77.524843, 39.128272], + [-77.524869, 39.128329], + [-77.524874, 39.128361], + [-77.524889, 39.1284], + [-77.524891, 39.12842], + [-77.524926, 39.128516], + [-77.524939, 39.128579], + [-77.524967, 39.128643], + [-77.524971, 39.128705], + [-77.525, 39.128792], + [-77.525001, 39.12881], + [-77.525048, 39.128926], + [-77.525069, 39.129014], + [-77.525083, 39.129043], + [-77.525091, 39.129079], + [-77.525112, 39.129088], + [-77.525131, 39.129152], + [-77.525146, 39.129182], + [-77.525177, 39.129274], + [-77.5252, 39.129398], + [-77.525214, 39.129446], + [-77.525214, 39.129448], + [-77.525215, 39.129449], + [-77.525218, 39.129461], + [-77.525238, 39.129567], + [-77.525239, 39.129583], + [-77.525239, 39.129599], + [-77.525264, 39.129733], + [-77.525266, 39.129846], + [-77.525255, 39.129898], + [-77.525257, 39.129969], + [-77.525267, 39.129996], + [-77.525275, 39.130063], + [-77.525287, 39.130103], + [-77.52529, 39.13013], + [-77.525309, 39.130198], + [-77.52531, 39.130235], + [-77.52533, 39.130347], + [-77.525329, 39.130375], + [-77.525342, 39.130456], + [-77.525351, 39.130587], + [-77.525359, 39.130641], + [-77.525358, 39.130722], + [-77.525377, 39.130856], + [-77.525386, 39.130881], + [-77.525411, 39.131004], + [-77.525474, 39.131136], + [-77.525505, 39.131248], + [-77.525506, 39.131267], + [-77.525506, 39.13128], + [-77.525508, 39.131318], + [-77.525529, 39.131392], + [-77.525547, 39.131495], + [-77.525562, 39.13153], + [-77.525602, 39.131705], + [-77.525636, 39.131813], + [-77.525647, 39.131879], + [-77.525687, 39.132036], + [-77.525692, 39.132054], + [-77.52572, 39.132108], + [-77.5258, 39.132317], + [-77.525815, 39.132342], + [-77.525885, 39.132503], + [-77.525904, 39.132538], + [-77.525962, 39.132709], + [-77.525984, 39.132774], + [-77.525985, 39.132796], + [-77.526027, 39.132981], + [-77.526064, 39.133121], + [-77.526072, 39.133169], + [-77.526086, 39.133204], + [-77.526112, 39.133302], + [-77.526194, 39.133507], + [-77.526199, 39.133531], + [-77.52629, 39.133697], + [-77.526307, 39.133746], + [-77.526328, 39.133789], + [-77.526329, 39.133791], + [-77.52633, 39.133794], + [-77.526342, 39.133816], + [-77.526346, 39.133833], + [-77.526346, 39.133835], + [-77.526402, 39.134077], + [-77.526411, 39.134132], + [-77.526427, 39.134167], + [-77.52644, 39.134216], + [-77.526441, 39.134217], + [-77.526441, 39.134219], + [-77.526444, 39.134229], + [-77.526465, 39.134285], + [-77.526546, 39.134503], + [-77.526581, 39.134612], + [-77.526619, 39.134694], + [-77.526632, 39.134732], + [-77.526663, 39.134789], + [-77.52667, 39.134821], + [-77.526713, 39.134895], + [-77.526779, 39.135097], + [-77.526804, 39.135204], + [-77.526843, 39.135325], + [-77.526844, 39.135327], + [-77.526865, 39.135392], + [-77.526921, 39.135521], + [-77.526948, 39.135613], + [-77.526951, 39.135634], + [-77.526961, 39.135696], + [-77.526972, 39.135786], + [-77.526972, 39.135791], + [-77.526983, 39.135893], + [-77.527003, 39.135979], + [-77.527011, 39.136035], + [-77.527013, 39.13605], + [-77.527023, 39.136079], + [-77.527024, 39.136107], + [-77.527081, 39.136333], + [-77.527116, 39.136527], + [-77.527112, 39.136625], + [-77.527122, 39.136705], + [-77.527122, 39.136717], + [-77.527142, 39.136778], + [-77.527174, 39.137167], + [-77.527175, 39.137323], + [-77.527175, 39.137352], + [-77.527184, 39.137422], + [-77.527182, 39.137446], + [-77.527197, 39.137547], + [-77.527201, 39.137629], + [-77.527195, 39.13766], + [-77.5272, 39.137852], + [-77.527217, 39.137887], + [-77.52725, 39.137906], + [-77.527236, 39.137929], + [-77.527195, 39.137942], + [-77.527201, 39.138042], + [-77.527197, 39.138076], + [-77.5272, 39.138104], + [-77.527196, 39.13814], + [-77.52723, 39.138339], + [-77.527228, 39.138371], + [-77.52726, 39.138619], + [-77.527268, 39.138794], + [-77.527267, 39.138883], + [-77.527272, 39.138929], + [-77.527272, 39.138997], + [-77.527284, 39.139151], + [-77.52728, 39.139335], + [-77.527272, 39.139408], + [-77.527273, 39.139447], + [-77.527266, 39.139473], + [-77.527272, 39.139505], + [-77.52727, 39.139535], + [-77.527275, 39.139561], + [-77.527271, 39.139617], + [-77.527273, 39.13975], + [-77.527267, 39.139806], + [-77.527257, 39.139843], + [-77.527262, 39.139888], + [-77.52726, 39.140038], + [-77.527245, 39.140091], + [-77.527237, 39.140156], + [-77.527247, 39.140224], + [-77.52723, 39.140417], + [-77.527231, 39.140478], + [-77.527223, 39.140552], + [-77.527224, 39.140703], + [-77.527231, 39.140759], + [-77.527228, 39.140824], + [-77.527234, 39.140904], + [-77.527243, 39.14093], + [-77.527243, 39.140997], + [-77.527252, 39.141118], + [-77.527252, 39.141247], + [-77.527275, 39.141513], + [-77.527302, 39.141729], + [-77.52732, 39.141984], + [-77.527319, 39.142016], + [-77.527328, 39.142046], + [-77.527326, 39.142077], + [-77.527334, 39.142107], + [-77.527331, 39.142192], + [-77.527356, 39.142415], + [-77.527399, 39.142611], + [-77.527408, 39.142632], + [-77.527409, 39.142656], + [-77.527437, 39.142732], + [-77.527494, 39.142934], + [-77.527521, 39.14312], + [-77.52753, 39.143155], + [-77.527542, 39.143279], + [-77.52758, 39.143474], + [-77.527581, 39.143513], + [-77.527598, 39.143579], + [-77.527619, 39.143731], + [-77.527616, 39.143791], + [-77.527635, 39.143962], + [-77.527642, 39.144336], + [-77.527647, 39.144398], + [-77.527637, 39.144552], + [-77.527635, 39.144582], + [-77.527642, 39.144616], + [-77.527658, 39.14464], + [-77.527664, 39.14465], + [-77.527668, 39.144651], + [-77.527687, 39.144658], + [-77.527661, 39.144733], + [-77.527647, 39.144738], + [-77.527639, 39.14474], + [-77.527624, 39.144745], + [-77.527588, 39.144785], + [-77.527584, 39.144827], + [-77.527566, 39.144862], + [-77.527542, 39.144965], + [-77.52754, 39.145116], + [-77.527531, 39.145228], + [-77.527541, 39.145426], + [-77.527555, 39.145556], + [-77.527546, 39.145686], + [-77.527526, 39.145762], + [-77.527516, 39.145843], + [-77.527517, 39.145919], + [-77.527505, 39.145982], + [-77.527512, 39.146029], + [-77.527505, 39.146223], + [-77.527491, 39.146396], + [-77.527466, 39.146548], + [-77.527436, 39.14668], + [-77.527432, 39.146719], + [-77.527421, 39.146762], + [-77.52737, 39.146865], + [-77.527362, 39.146893], + [-77.527332, 39.146945], + [-77.527324, 39.146969], + [-77.527271, 39.147028], + [-77.527251, 39.147057], + [-77.527229, 39.147075], + [-77.527183, 39.147139], + [-77.527174, 39.14716], + [-77.52707, 39.147269], + [-77.526999, 39.147317], + [-77.526942, 39.147366], + [-77.526685, 39.147529], + [-77.526609, 39.147568], + [-77.526588, 39.147588], + [-77.526552, 39.147613], + [-77.526485, 39.147645], + [-77.526302, 39.14772], + [-77.526188, 39.147777], + [-77.526162, 39.147799], + [-77.526094, 39.147828], + [-77.526075, 39.147845], + [-77.525919, 39.147912], + [-77.525865, 39.147944], + [-77.525683, 39.148024], + [-77.525533, 39.14811], + [-77.525364, 39.148226], + [-77.525275, 39.148313], + [-77.525214, 39.148357], + [-77.525109, 39.148457], + [-77.525024, 39.14858], + [-77.524995, 39.148634], + [-77.524936, 39.148723], + [-77.524911, 39.148778], + [-77.524869, 39.148851], + [-77.524853, 39.148903], + [-77.524782, 39.149044], + [-77.524776, 39.149066], + [-77.524742, 39.149139], + [-77.524678, 39.149322], + [-77.524643, 39.14939], + [-77.524597, 39.149543], + [-77.524482, 39.149836], + [-77.524478, 39.149869], + [-77.524449, 39.149942], + [-77.524438, 39.149977], + [-77.524405, 39.150036], + [-77.524367, 39.15014], + [-77.524345, 39.150176], + [-77.524336, 39.150221], + [-77.524271, 39.150393], + [-77.524256, 39.150527], + [-77.524209, 39.150675], + [-77.524202, 39.150714], + [-77.524128, 39.150965], + [-77.524126, 39.150995], + [-77.524111, 39.151034], + [-77.524123, 39.15105], + [-77.524084, 39.151188], + [-77.524069, 39.151261], + [-77.524069, 39.151282], + [-77.524047, 39.151362], + [-77.524001, 39.15146], + [-77.523946, 39.151651], + [-77.523926, 39.151807], + [-77.523908, 39.151835], + [-77.523887, 39.151933], + [-77.523828, 39.152106], + [-77.523821, 39.152148], + [-77.523789, 39.15225], + [-77.523784, 39.152283], + [-77.523773, 39.152312], + [-77.523734, 39.152533], + [-77.523734, 39.152587], + [-77.523716, 39.152712], + [-77.523606, 39.153019], + [-77.523572, 39.153195], + [-77.523548, 39.15329], + [-77.523526, 39.153351], + [-77.523459, 39.153497], + [-77.523414, 39.153639], + [-77.523395, 39.153776], + [-77.523372, 39.153867], + [-77.523372, 39.153887], + [-77.523293, 39.15412], + [-77.523228, 39.154347], + [-77.523198, 39.154482], + [-77.523184, 39.154525], + [-77.523183, 39.154551], + [-77.523075, 39.154891], + [-77.523065, 39.154951], + [-77.523028, 39.15506], + [-77.523025, 39.155069], + [-77.523015, 39.155105], + [-77.522993, 39.155188], + [-77.522933, 39.15533], + [-77.522888, 39.155486], + [-77.522872, 39.155528], + [-77.522855, 39.155617], + [-77.522848, 39.155692], + [-77.522837, 39.155723], + [-77.52283, 39.155781], + [-77.522806, 39.155835], + [-77.522668, 39.15626], + [-77.522655, 39.156316], + [-77.522644, 39.156332], + [-77.52262, 39.156398], + [-77.522594, 39.156489], + [-77.522558, 39.156665], + [-77.522531, 39.156733], + [-77.522485, 39.156902], + [-77.522462, 39.157011], + [-77.522445, 39.157057], + [-77.522421, 39.157156], + [-77.522374, 39.157266], + [-77.522298, 39.15752], + [-77.52225, 39.157711], + [-77.522145, 39.15798], + [-77.522118, 39.158068], + [-77.522087, 39.158237], + [-77.522049, 39.15833], + [-77.522022, 39.158458], + [-77.522022, 39.158493], + [-77.522037, 39.158528], + [-77.522061, 39.158544], + [-77.522072, 39.158551], + [-77.522097, 39.158561], + [-77.522103, 39.158589], + [-77.522038, 39.158619], + [-77.521993, 39.158639], + [-77.521961, 39.158667], + [-77.521926, 39.158769], + [-77.521925, 39.15885], + [-77.521914, 39.158875], + [-77.521916, 39.158912], + [-77.521886, 39.15901], + [-77.521816, 39.159208], + [-77.521807, 39.159249], + [-77.521793, 39.15928], + [-77.521769, 39.159443], + [-77.521765, 39.159612], + [-77.52177, 39.159874], + [-77.521766, 39.159918], + [-77.521771, 39.159959], + [-77.521767, 39.160007], + [-77.521771, 39.160045], + [-77.521764, 39.160083], + [-77.521757, 39.160201], + [-77.521749, 39.160232], + [-77.521745, 39.160301], + [-77.521706, 39.160481], + [-77.521617, 39.1608], + [-77.521587, 39.160869], + [-77.521581, 39.160917], + [-77.521552, 39.161034], + [-77.521517, 39.161206], + [-77.521448, 39.161416], + [-77.521431, 39.161448], + [-77.5214, 39.161541], + [-77.521398, 39.161569], + [-77.521374, 39.161662], + [-77.521343, 39.161742], + [-77.521315, 39.161799], + [-77.5213, 39.161881], + [-77.521255, 39.161978], + [-77.521231, 39.162007], + [-77.521213, 39.162038], + [-77.521206, 39.162062], + [-77.521175, 39.162112], + [-77.521058, 39.162422], + [-77.520989, 39.162584], + [-77.520868, 39.162776], + [-77.520725, 39.163064], + [-77.520609, 39.163383], + [-77.520518, 39.163526], + [-77.520456, 39.163661], + [-77.520421, 39.163725], + [-77.520381, 39.163851], + [-77.520356, 39.163882], + [-77.520317, 39.163958], + [-77.520307, 39.163979], + [-77.520292, 39.164019], + [-77.520208, 39.164213], + [-77.519913, 39.164689], + [-77.519808, 39.164882], + [-77.519791, 39.16494], + [-77.519751, 39.164998], + [-77.519556, 39.165379], + [-77.519502, 39.165458], + [-77.519481, 39.165532], + [-77.519393, 39.165702], + [-77.519338, 39.165846], + [-77.519258, 39.165986], + [-77.519192, 39.166083], + [-77.519152, 39.166161], + [-77.519006, 39.166535], + [-77.518918, 39.166723], + [-77.518887, 39.166799], + [-77.518872, 39.166869], + [-77.518873, 39.166941], + [-77.518881, 39.167012], + [-77.518869, 39.167073], + [-77.518795, 39.167203], + [-77.518692, 39.167439], + [-77.51866, 39.167578], + [-77.518606, 39.167748], + [-77.518572, 39.167787], + [-77.518543, 39.167839], + [-77.518451, 39.167974], + [-77.518294, 39.168279], + [-77.518218, 39.168403], + [-77.518144, 39.1685], + [-77.518105, 39.168559], + [-77.518003, 39.168764], + [-77.517888, 39.168948], + [-77.517803, 39.169114], + [-77.517653, 39.169367], + [-77.517624, 39.169425], + [-77.517575, 39.169498], + [-77.517534, 39.169549], + [-77.51741, 39.169731], + [-77.517219, 39.169997], + [-77.517138, 39.170132], + [-77.517109, 39.170173], + [-77.517067, 39.170256], + [-77.517033, 39.170305], + [-77.516927, 39.170429], + [-77.516904, 39.170466], + [-77.516896, 39.170478], + [-77.516837, 39.170574], + [-77.516796, 39.170648], + [-77.516695, 39.170798], + [-77.51651, 39.171039], + [-77.516479, 39.171093], + [-77.516344, 39.171286], + [-77.516256, 39.171394], + [-77.516219, 39.17146], + [-77.516202, 39.171501], + [-77.516162, 39.171549], + [-77.516114, 39.17163], + [-77.516067, 39.171682], + [-77.515858, 39.171992], + [-77.515817, 39.172032], + [-77.515548, 39.172384], + [-77.515436, 39.172553], + [-77.515292, 39.172753], + [-77.515267, 39.172795], + [-77.515051, 39.173077], + [-77.514757, 39.173476], + [-77.514573, 39.173753], + [-77.514487, 39.173874], + [-77.514403, 39.17403], + [-77.514138, 39.174455], + [-77.513998, 39.174669], + [-77.513956, 39.17475], + [-77.513902, 39.174833], + [-77.513792, 39.174983], + [-77.513756, 39.175056], + [-77.513646, 39.17523], + [-77.513503, 39.175401], + [-77.513226, 39.175774], + [-77.513159, 39.175858], + [-77.51312, 39.175918], + [-77.513119, 39.17592], + [-77.513118, 39.175921], + [-77.513104, 39.175942], + [-77.513066, 39.175992], + [-77.513062, 39.175998], + [-77.512933, 39.176171], + [-77.512827, 39.176284], + [-77.512784, 39.176336], + [-77.512748, 39.176388], + [-77.512539, 39.176604], + [-77.512356, 39.176808], + [-77.51216, 39.177062], + [-77.512133, 39.177105], + [-77.511967, 39.177299], + [-77.511854, 39.177412], + [-77.511802, 39.177451], + [-77.51168, 39.177609], + [-77.511632, 39.177737], + [-77.511614, 39.177774], + [-77.511578, 39.177813], + [-77.511546, 39.177857], + [-77.511526, 39.177875], + [-77.511496, 39.17792], + [-77.511467, 39.177975], + [-77.511422, 39.178022], + [-77.511338, 39.178086], + [-77.511217, 39.1782], + [-77.511156, 39.178267], + [-77.511131, 39.178308], + [-77.511107, 39.178377], + [-77.511087, 39.178419], + [-77.511, 39.178534], + [-77.510942, 39.178588], + [-77.510852, 39.178707], + [-77.510821, 39.178741], + [-77.510791, 39.178785], + [-77.510742, 39.178833], + [-77.510569, 39.178969], + [-77.510532, 39.179007], + [-77.510472, 39.179094], + [-77.510308, 39.179282], + [-77.510131, 39.179443], + [-77.510081, 39.179469], + [-77.510028, 39.179491], + [-77.509951, 39.179537], + [-77.509915, 39.179572], + [-77.509845, 39.179657], + [-77.509708, 39.179773], + [-77.509656, 39.179812], + [-77.509616, 39.17983], + [-77.509508, 39.179859], + [-77.509228, 39.180034], + [-77.509125, 39.180109], + [-77.50897, 39.180238], + [-77.508898, 39.180291], + [-77.508845, 39.180321], + [-77.50879, 39.180343], + [-77.508676, 39.180436], + [-77.508622, 39.180485], + [-77.508567, 39.180528], + [-77.508528, 39.180566], + [-77.508494, 39.180588], + [-77.50842, 39.18066], + [-77.50826, 39.180786], + [-77.50821, 39.180837], + [-77.508165, 39.180909], + [-77.508141, 39.180959], + [-77.508107, 39.181014], + [-77.508, 39.18109], + [-77.507909, 39.181144], + [-77.507858, 39.181184], + [-77.507776, 39.181235], + [-77.507731, 39.181268], + [-77.50756, 39.181375], + [-77.50754, 39.181393], + [-77.507533, 39.18141], + [-77.507386, 39.18145], + [-77.507338, 39.181413], + [-77.50729, 39.181398], + [-77.507236, 39.181392], + [-77.507183, 39.181396], + [-77.507117, 39.181413], + [-77.507073, 39.181435], + [-77.507009, 39.181458], + [-77.506934, 39.181494], + [-77.506851, 39.181522], + [-77.506818, 39.181539], + [-77.506625, 39.181637], + [-77.506579, 39.181665], + [-77.506372, 39.181743], + [-77.506294, 39.181777], + [-77.50613, 39.181863], + [-77.505977, 39.181937], + [-77.505731, 39.182039], + [-77.505639, 39.18207], + [-77.505515, 39.182103], + [-77.504921, 39.182295], + [-77.504654, 39.182357], + [-77.504555, 39.182387], + [-77.504351, 39.182432], + [-77.504272, 39.182441], + [-77.504059, 39.182495], + [-77.503944, 39.182514], + [-77.503834, 39.182542], + [-77.503748, 39.182564], + [-77.503656, 39.182582], + [-77.50356, 39.182607], + [-77.503263, 39.182643], + [-77.503122, 39.182655], + [-77.503066, 39.18266], + [-77.503009, 39.182667], + [-77.503007, 39.182667], + [-77.502675, 39.182711], + [-77.502601, 39.182714], + [-77.502317, 39.182748], + [-77.50209, 39.182787], + [-77.501878, 39.182815], + [-77.501813, 39.182816], + [-77.501811, 39.182816], + [-77.501659, 39.182846], + [-77.50147, 39.182892], + [-77.501423, 39.1829], + [-77.50141, 39.1829], + [-77.50122, 39.182936], + [-77.501121, 39.182947], + [-77.501024, 39.182958], + [-77.500942, 39.18297], + [-77.500939, 39.18297], + [-77.500937, 39.182971], + [-77.500905, 39.182976], + [-77.500903, 39.182976], + [-77.500823, 39.182992], + [-77.500637, 39.183044], + [-77.500516, 39.183093], + [-77.500337, 39.183148], + [-77.500202, 39.183204], + [-77.499915, 39.183287], + [-77.499815, 39.183316], + [-77.499812, 39.183317], + [-77.499779, 39.183327], + [-77.499772, 39.183329], + [-77.49977, 39.183329], + [-77.499644, 39.183365], + [-77.499628, 39.183369], + [-77.499278, 39.183467], + [-77.499166, 39.183492], + [-77.4989, 39.183574], + [-77.498897, 39.183575], + [-77.498626, 39.183644], + [-77.498297, 39.183704], + [-77.498255, 39.183707], + [-77.498168, 39.183722], + [-77.498089, 39.183731], + [-77.497908, 39.183762], + [-77.497785, 39.183775], + [-77.497749, 39.183782], + [-77.497702, 39.183785], + [-77.49761, 39.183807], + [-77.497447, 39.18383], + [-77.497136, 39.18385], + [-77.497002, 39.183864], + [-77.496979, 39.183872], + [-77.496802, 39.183904], + [-77.49656, 39.183964], + [-77.496386, 39.184014], + [-77.496356, 39.184029], + [-77.496332, 39.184036], + [-77.496276, 39.184052], + [-77.496128, 39.184082], + [-77.495866, 39.184149], + [-77.495804, 39.184159], + [-77.495802, 39.184159], + [-77.495777, 39.184163], + [-77.495551, 39.184222], + [-77.495471, 39.184249], + [-77.495207, 39.184303], + [-77.495041, 39.184345], + [-77.494533, 39.184456], + [-77.49442, 39.184487], + [-77.494257, 39.184517], + [-77.493885, 39.184602], + [-77.493722, 39.184636], + [-77.49372, 39.184636], + [-77.493379, 39.184705], + [-77.493243, 39.184744], + [-77.493151, 39.18477], + [-77.493032, 39.184793], + [-77.492815, 39.184846], + [-77.492719, 39.184879], + [-77.492494, 39.184932], + [-77.492349, 39.184975], + [-77.492305, 39.184981], + [-77.492188, 39.185018], + [-77.492083, 39.185042], + [-77.492053, 39.185051], + [-77.491901, 39.185098], + [-77.491823, 39.185117], + [-77.491653, 39.185158], + [-77.491432, 39.185207], + [-77.4914, 39.185219], + [-77.491127, 39.185287], + [-77.49106, 39.185299], + [-77.490938, 39.185321], + [-77.490809, 39.185364], + [-77.490793, 39.185371], + [-77.490743, 39.185394], + [-77.490616, 39.185414], + [-77.490239, 39.185463], + [-77.490114, 39.185494], + [-77.490057, 39.185503], + [-77.48994, 39.18553], + [-77.489739, 39.185562], + [-77.489603, 39.185547], + [-77.489478, 39.18555], + [-77.489257, 39.185607], + [-77.489212, 39.185614], + [-77.489168, 39.185612], + [-77.488949, 39.185626], + [-77.488841, 39.185645], + [-77.488709, 39.185679], + [-77.488638, 39.185687], + [-77.488553, 39.18569], + [-77.488499, 39.185686], + [-77.488444, 39.185687], + [-77.488285, 39.185703], + [-77.488198, 39.185716], + [-77.488159, 39.185733], + [-77.488025, 39.185759], + [-77.487938, 39.185761], + [-77.487838, 39.185767], + [-77.487474, 39.185811], + [-77.48732, 39.185819], + [-77.487163, 39.185841], + [-77.48703, 39.185855], + [-77.48673, 39.185903], + [-77.486548, 39.185901], + [-77.486331, 39.185921], + [-77.486207, 39.185949], + [-77.48605, 39.185975], + [-77.486011, 39.185988], + [-77.485954, 39.185997], + [-77.485904, 39.186012], + [-77.485797, 39.186033], + [-77.485405, 39.186158], + [-77.485368, 39.186175], + [-77.485238, 39.186209], + [-77.485081, 39.186264], + [-77.484933, 39.186327], + [-77.484629, 39.18649], + [-77.484512, 39.186533], + [-77.484466, 39.186545], + [-77.484433, 39.186559], + [-77.484342, 39.18658], + [-77.484159, 39.186676], + [-77.48412, 39.186689], + [-77.484014, 39.186742], + [-77.483946, 39.186787], + [-77.483813, 39.186851], + [-77.483619, 39.186959], + [-77.483486, 39.187016], + [-77.483411, 39.187042], + [-77.483324, 39.18709], + [-77.4832, 39.187144], + [-77.48315, 39.187161], + [-77.48311, 39.18718], + [-77.482982, 39.187218], + [-77.482895, 39.187254], + [-77.482803, 39.187301], + [-77.482765, 39.187329], + [-77.482715, 39.187357], + [-77.482639, 39.18739], + [-77.482595, 39.187421], + [-77.482403, 39.187515], + [-77.48224, 39.187562], + [-77.482206, 39.187575], + [-77.482176, 39.18758], + [-77.482089, 39.187608], + [-77.482041, 39.187633], + [-77.481846, 39.187711], + [-77.481756, 39.187743], + [-77.481658, 39.187768], + [-77.481618, 39.187772], + [-77.481485, 39.187809], + [-77.481204, 39.187917], + [-77.481101, 39.187984], + [-77.481056, 39.188025], + [-77.481039, 39.188048], + [-77.481014, 39.18807], + [-77.480859, 39.188141], + [-77.480727, 39.188224], + [-77.480643, 39.188287], + [-77.480622, 39.188327], + [-77.480646, 39.188362], + [-77.480687, 39.188375], + [-77.48072, 39.188374], + [-77.480867, 39.188342], + [-77.480889, 39.188334], + [-77.480948, 39.188311], + [-77.480963, 39.188315], + [-77.480991, 39.188321], + [-77.480978, 39.188439], + [-77.480947, 39.188414], + [-77.480901, 39.188398], + [-77.480831, 39.188403], + [-77.480786, 39.188413], + [-77.480724, 39.188427], + [-77.480691, 39.188431], + [-77.480664, 39.188427], + [-77.480629, 39.18841], + [-77.480615, 39.188395], + [-77.48058, 39.188386], + [-77.480547, 39.188391], + [-77.480483, 39.188425], + [-77.480406, 39.188491], + [-77.480179, 39.18867], + [-77.480099, 39.188722], + [-77.48006, 39.188743], + [-77.479906, 39.188793], + [-77.479845, 39.18883], + [-77.479778, 39.188882], + [-77.47974, 39.188901], + [-77.479159, 39.189329], + [-77.478959, 39.189483], + [-77.478674, 39.189679], + [-77.478513, 39.189833], + [-77.478472, 39.189878], + [-77.478281, 39.190056], + [-77.477948, 39.190387], + [-77.477768, 39.19054], + [-77.4777, 39.190608], + [-77.477609, 39.190752], + [-77.47757, 39.190806], + [-77.477535, 39.190876], + [-77.477445, 39.191012], + [-77.477424, 39.191033], + [-77.477324, 39.191095], + [-77.477285, 39.191125], + [-77.477247, 39.191144], + [-77.477151, 39.191228], + [-77.477097, 39.191295], + [-77.477067, 39.191323], + [-77.477004, 39.191407], + [-77.476918, 39.1915], + [-77.476833, 39.191611], + [-77.476713, 39.191755], + [-77.476666, 39.191828], + [-77.476532, 39.192069], + [-77.476455, 39.192233], + [-77.476399, 39.192382], + [-77.476342, 39.192485], + [-77.476242, 39.192743], + [-77.4762, 39.192826], + [-77.476139, 39.192909], + [-77.476105, 39.192948], + [-77.476072, 39.193004], + [-77.476054, 39.193056], + [-77.476025, 39.193112], + [-77.475999, 39.193186], + [-77.475965, 39.193246], + [-77.475952, 39.193292], + [-77.475851, 39.193508], + [-77.475819, 39.193557], + [-77.475742, 39.193626], + [-77.475701, 39.193681], + [-77.475684, 39.193716], + [-77.475648, 39.193885], + [-77.475619, 39.193961], + [-77.475579, 39.194046], + [-77.475548, 39.194143], + [-77.475425, 39.194456], + [-77.47539, 39.194566], + [-77.475398, 39.194588], + [-77.475329, 39.194743], + [-77.475332, 39.194768], + [-77.475324, 39.194906], + [-77.475324, 39.194908], + [-77.475322, 39.194934], + [-77.475314, 39.194937], + [-77.47525, 39.194958], + [-77.475227, 39.194975], + [-77.475202, 39.195013], + [-77.475185, 39.195102], + [-77.47518, 39.195193], + [-77.475154, 39.19528], + [-77.475121, 39.195344], + [-77.475115, 39.19538], + [-77.47509, 39.195441], + [-77.47505, 39.195657], + [-77.475047, 39.195705], + [-77.475, 39.195891], + [-77.474975, 39.196069], + [-77.474917, 39.196326], + [-77.474912, 39.196366], + [-77.474918, 39.196467], + [-77.474919, 39.196658], + [-77.474909, 39.196733], + [-77.474917, 39.196821], + [-77.474911, 39.197079], + [-77.47493, 39.197337], + [-77.474929, 39.197399], + [-77.474961, 39.197511], + [-77.474985, 39.197576], + [-77.474993, 39.19761], + [-77.475024, 39.197666], + [-77.475085, 39.197733], + [-77.475126, 39.197821], + [-77.475175, 39.198007], + [-77.475226, 39.198105], + [-77.475238, 39.19814], + [-77.475333, 39.198298], + [-77.475402, 39.198509], + [-77.475408, 39.198565], + [-77.475497, 39.198801], + [-77.475503, 39.198848], + [-77.475547, 39.199008], + [-77.475574, 39.199206], + [-77.475612, 39.199362], + [-77.475655, 39.199466], + [-77.475703, 39.199693], + [-77.475709, 39.199746], + [-77.475712, 39.199882], + [-77.475719, 39.19992], + [-77.475753, 39.199995], + [-77.475805, 39.200085], + [-77.47583, 39.2002], + [-77.475829, 39.200376], + [-77.475835, 39.200464], + [-77.475895, 39.20059], + [-77.475908, 39.20064], + [-77.475913, 39.200681], + [-77.475907, 39.200802], + [-77.475924, 39.200889], + [-77.475921, 39.201093], + [-77.475927, 39.201124], + [-77.475925, 39.201159], + [-77.47596, 39.20132], + [-77.475959, 39.201513], + [-77.475968, 39.201531], + [-77.475968, 39.201617], + [-77.475979, 39.201735], + [-77.475989, 39.201771], + [-77.475997, 39.201835], + [-77.475983, 39.201952], + [-77.475969, 39.202005], + [-77.475953, 39.202062], + [-77.47594, 39.202095], + [-77.475926, 39.20211], + [-77.475912, 39.202205], + [-77.475918, 39.202297], + [-77.475921, 39.202342], + [-77.475913, 39.202409], + [-77.475902, 39.202435], + [-77.475873, 39.202481], + [-77.47584, 39.202533], + [-77.475822, 39.20258], + [-77.475812, 39.202727], + [-77.475812, 39.202729], + [-77.475811, 39.202749], + [-77.475788, 39.202861], + [-77.47576, 39.202942], + [-77.475759, 39.202945], + [-77.475758, 39.202947], + [-77.475751, 39.202967], + [-77.475703, 39.203104], + [-77.475672, 39.203173], + [-77.475665, 39.203205], + [-77.475601, 39.203361], + [-77.475539, 39.203458], + [-77.475429, 39.203587], + [-77.475392, 39.20363], + [-77.47526, 39.20384], + [-77.475188, 39.203967], + [-77.475132, 39.204029], + [-77.475107, 39.204084], + [-77.475113, 39.204185], + [-77.475103, 39.204252], + [-77.475095, 39.204278], + [-77.475086, 39.204308], + [-77.475041, 39.204369], + [-77.475039, 39.204371], + [-77.475014, 39.204415], + [-77.475005, 39.204444], + [-77.474968, 39.20452], + [-77.474948, 39.204561], + [-77.474914, 39.204621], + [-77.474822, 39.204749], + [-77.474808, 39.204779], + [-77.47479, 39.204802], + [-77.474759, 39.204875], + [-77.474742, 39.204933], + [-77.474691, 39.205039], + [-77.474648, 39.205099], + [-77.474617, 39.205125], + [-77.474594, 39.205162], + [-77.474654, 39.205173], + [-77.474683, 39.205201], + [-77.474695, 39.205228], + [-77.4747, 39.205252], + [-77.474694, 39.205287], + [-77.474658, 39.205336], + [-77.474576, 39.205399], + [-77.474521, 39.205435], + [-77.474491, 39.205471], + [-77.474478, 39.205502], + [-77.474473, 39.205565], + [-77.474495, 39.205665], + [-77.474503, 39.205747], + [-77.47452, 39.205768], + [-77.474557, 39.205781], + [-77.474599, 39.205785], + [-77.474662, 39.205812], + [-77.474706, 39.205814], + [-77.474791, 39.205799], + [-77.474835, 39.205785], + [-77.474916, 39.205716], + [-77.47495, 39.205679], + [-77.475002, 39.205587], + [-77.475043, 39.205494], + [-77.475075, 39.205469], + [-77.475101, 39.20546], + [-77.475129, 39.205468], + [-77.475159, 39.205497], + [-77.475146, 39.205546], + [-77.475145, 39.205608], + [-77.475125, 39.205665], + [-77.475053, 39.205746], + [-77.475039, 39.205769], + [-77.475043, 39.205831], + [-77.475053, 39.20587], + [-77.475052, 39.205924], + [-77.475027, 39.205994], + [-77.475005, 39.206114], + [-77.474967, 39.206181], + [-77.474945, 39.206262], + [-77.474891, 39.206349], + [-77.474763, 39.206498], + [-77.474756, 39.206516], + [-77.474761, 39.206553], + [-77.474603, 39.206636], + [-77.474553, 39.206662], + [-77.474551, 39.206663], + [-77.474533, 39.206679], + [-77.474529, 39.206688], + [-77.474475, 39.206806], + [-77.474434, 39.206947], + [-77.47438, 39.207135], + [-77.474327, 39.207292], + [-77.47431, 39.207375], + [-77.474277, 39.207458], + [-77.474201, 39.207603], + [-77.47419, 39.207635], + [-77.474178, 39.207716], + [-77.474158, 39.207771], + [-77.474066, 39.207868], + [-77.474027, 39.207922], + [-77.474016, 39.207954], + [-77.473929, 39.208116], + [-77.473879, 39.208232], + [-77.473807, 39.208358], + [-77.473681, 39.208508], + [-77.473669, 39.208527], + [-77.473657, 39.208572], + [-77.47363, 39.208627], + [-77.473531, 39.208768], + [-77.47342, 39.208904], + [-77.473326, 39.209008], + [-77.473287, 39.209062], + [-77.473219, 39.209134], + [-77.473129, 39.209204], + [-77.472995, 39.209376], + [-77.472937, 39.20943], + [-77.472903, 39.209455], + [-77.472868, 39.209488], + [-77.472837, 39.209505], + [-77.472807, 39.209528], + [-77.472768, 39.209547], + [-77.472645, 39.209626], + [-77.472638, 39.209632], + [-77.472563, 39.209691], + [-77.472499, 39.209741], + [-77.472443, 39.209799], + [-77.472343, 39.209931], + [-77.472287, 39.209976], + [-77.472113, 39.210062], + [-77.472049, 39.210107], + [-77.471963, 39.210187], + [-77.471909, 39.210265], + [-77.471836, 39.210335], + [-77.471762, 39.210388], + [-77.471736, 39.210413], + [-77.471714, 39.210425], + [-77.471657, 39.210472], + [-77.471496, 39.210641], + [-77.471417, 39.210724], + [-77.471398, 39.210743], + [-77.471321, 39.210816], + [-77.471223, 39.210926], + [-77.471039, 39.211133], + [-77.471014, 39.211156], + [-77.470941, 39.211198], + [-77.470837, 39.21128], + [-77.470803, 39.211307], + [-77.470791, 39.211316], + [-77.470702, 39.211395], + [-77.470533, 39.211584], + [-77.470474, 39.211626], + [-77.470383, 39.211722], + [-77.470367, 39.211746], + [-77.470248, 39.211881], + [-77.470162, 39.211971], + [-77.470136, 39.211991], + [-77.470068, 39.212044], + [-77.46988, 39.212225], + [-77.469551, 39.212474], + [-77.469471, 39.212528], + [-77.469312, 39.212664], + [-77.469182, 39.212764], + [-77.469074, 39.212812], + [-77.469036, 39.212835], + [-77.468972, 39.212861], + [-77.468874, 39.212922], + [-77.468817, 39.212967], + [-77.468625, 39.2131], + [-77.468455, 39.213226], + [-77.468421, 39.213255], + [-77.468363, 39.213284], + [-77.468302, 39.213324], + [-77.468239, 39.213378], + [-77.468128, 39.213448], + [-77.468115, 39.213456], + [-77.467983, 39.213538], + [-77.467755, 39.213661], + [-77.467684, 39.213694], + [-77.467359, 39.213869], + [-77.467284, 39.213899], + [-77.467259, 39.213913], + [-77.467163, 39.213988], + [-77.467037, 39.214069], + [-77.466985, 39.214114], + [-77.466888, 39.214179], + [-77.466801, 39.214253], + [-77.46679, 39.214262], + [-77.466749, 39.214312], + [-77.46674, 39.214323], + [-77.466723, 39.214367], + [-77.466726, 39.214452], + [-77.466659, 39.2144], + [-77.466635, 39.21439], + [-77.466573, 39.214364], + [-77.46655, 39.214368], + [-77.466352, 39.214515], + [-77.466326, 39.214547], + [-77.466208, 39.214634], + [-77.465999, 39.214766], + [-77.465818, 39.214875], + [-77.465782, 39.214891], + [-77.465615, 39.215007], + [-77.465545, 39.215067], + [-77.465461, 39.215147], + [-77.46539, 39.215193], + [-77.465306, 39.21524], + [-77.465083, 39.215396], + [-77.465019, 39.215454], + [-77.464942, 39.215511], + [-77.464611, 39.215676], + [-77.464411, 39.21578], + [-77.464375, 39.215812], + [-77.46404, 39.216022], + [-77.463983, 39.216046], + [-77.463748, 39.21619], + [-77.463711, 39.216217], + [-77.46362, 39.216266], + [-77.463426, 39.216385], + [-77.463324, 39.216463], + [-77.463137, 39.216579], + [-77.462956, 39.216677], + [-77.462831, 39.216739], + [-77.462441, 39.216996], + [-77.4624, 39.217019], + [-77.462366, 39.217045], + [-77.462268, 39.2171], + [-77.462112, 39.2172], + [-77.461829, 39.217362], + [-77.461795, 39.217395], + [-77.46167, 39.217487], + [-77.461623, 39.217544], + [-77.461607, 39.217585], + [-77.461606, 39.217589], + [-77.461603, 39.217597], + [-77.461597, 39.217595], + [-77.461557, 39.217579], + [-77.461515, 39.217576], + [-77.461453, 39.217596], + [-77.461314, 39.217668], + [-77.4612, 39.217754], + [-77.461164, 39.217791], + [-77.461061, 39.217874], + [-77.461023, 39.217899], + [-77.460995, 39.217925], + [-77.460926, 39.217974], + [-77.460797, 39.218101], + [-77.460617, 39.218244], + [-77.4605, 39.218365], + [-77.460362, 39.218469], + [-77.460059, 39.218729], + [-77.459974, 39.218809], + [-77.459898, 39.21887], + [-77.459861, 39.218895], + [-77.459711, 39.219067], + [-77.459709, 39.21907], + [-77.459708, 39.219071], + [-77.459707, 39.219073], + [-77.459695, 39.219087], + [-77.45954, 39.219285], + [-77.459485, 39.219366], + [-77.459422, 39.219447], + [-77.459399, 39.21947], + [-77.459103, 39.219881], + [-77.459052, 39.219969], + [-77.459034, 39.220008], + [-77.45903, 39.220052], + [-77.459052, 39.220093], + [-77.458918, 39.22013], + [-77.4589, 39.220142], + [-77.458889, 39.220163], + [-77.45884, 39.220227], + [-77.45881, 39.220278], + [-77.458663, 39.220512], + [-77.458663, 39.22054], + [-77.458642, 39.220562], + [-77.458501, 39.220825], + [-77.458165, 39.221586], + [-77.458141, 39.221643], + [-77.457951, 39.222198], + [-77.457951, 39.222269], + [-77.457888, 39.22244], + [-77.457874, 39.222637], + [-77.457803, 39.222939], + [-77.457803, 39.223049], + [-77.45769, 39.223538], + [-77.457634, 39.224317], + [-77.457641, 39.224603], + [-77.457712, 39.224987], + [-77.45791, 39.225454], + [-77.458106, 39.225814], + [-77.458221, 39.226025], + [-77.45875, 39.226853], + [-77.458902, 39.227042], + [-77.459174, 39.22738], + [-77.459499, 39.227732], + [-77.460651, 39.22874], + [-77.460728, 39.228807], + [-77.462083, 39.229603], + [-77.462107, 39.229604], + [-77.462655, 39.229905], + [-77.463276, 39.23019], + [-77.46387, 39.230481], + [-77.464279, 39.23069], + [-77.464442, 39.230761], + [-77.464837, 39.230958], + [-77.465253, 39.231189], + [-77.466835, 39.232012], + [-77.466857, 39.232006], + [-77.467082, 39.232155], + [-77.467113, 39.23217], + [-77.467605, 39.232407], + [-77.468007, 39.232626], + [-77.468699, 39.233098], + [-77.46919, 39.233449], + [-77.469342, 39.233557], + [-77.46938, 39.233585], + [-77.469584, 39.23373], + [-77.469744, 39.233845], + [-77.470271, 39.23402], + [-77.470422, 39.23407], + [-77.470514, 39.234064], + [-77.470542, 39.234108], + [-77.470768, 39.234163], + [-77.471107, 39.234311], + [-77.471594, 39.23469], + [-77.471606, 39.234702], + [-77.471863, 39.234948], + [-77.474081, 39.236649], + [-77.474627, 39.237114], + [-77.474893, 39.23734], + [-77.475295, 39.237603], + [-77.475415, 39.237642], + [-77.475725, 39.237768], + [-77.475832, 39.237812], + [-77.476206, 39.238081], + [-77.476235, 39.238086], + [-77.476352, 39.238173], + [-77.476559, 39.238328], + [-77.476588, 39.238328], + [-77.476811, 39.238485], + [-77.476814, 39.238503], + [-77.476849, 39.238509], + [-77.477252, 39.238887], + [-77.47728, 39.238887], + [-77.47808, 39.239587], + [-77.47834, 39.239815], + [-77.478679, 39.24004], + [-77.479015, 39.240259], + [-77.480026, 39.240918], + [-77.480042, 39.240929], + [-77.480334, 39.241178], + [-77.480753, 39.241535], + [-77.481137, 39.241861], + [-77.481243, 39.242026], + [-77.481321, 39.242119], + [-77.481384, 39.242235], + [-77.481638, 39.242608], + [-77.481674, 39.242674], + [-77.481766, 39.242822], + [-77.481914, 39.243019], + [-77.481999, 39.243173], + [-77.482073, 39.243279], + [-77.482429, 39.243789], + [-77.482451, 39.243821], + [-77.482663, 39.24404], + [-77.483094, 39.244282], + [-77.483596, 39.244655], + [-77.483907, 39.244916], + [-77.48402, 39.245011], + [-77.484308, 39.24539], + [-77.484323, 39.24541], + [-77.484387, 39.245494], + [-77.484454, 39.24566], + [-77.484472, 39.245703], + [-77.484536, 39.245824], + [-77.484733, 39.24606], + [-77.484775, 39.246087], + [-77.484926, 39.246187], + [-77.484979, 39.246221], + [-77.485191, 39.246361], + [-77.485707, 39.2467], + [-77.486217, 39.247036], + [-77.486648, 39.247289], + [-77.487057, 39.24748], + [-77.487331, 39.247582], + [-77.487396, 39.247607], + [-77.487488, 39.247607], + [-77.487509, 39.247585], + [-77.487531, 39.247513], + [-77.48741, 39.24725], + [-77.487446, 39.2472], + [-77.487573, 39.247206], + [-77.487742, 39.247374], + [-77.487756, 39.247387], + [-77.487771, 39.247442], + [-77.488293, 39.247798], + [-77.488612, 39.248003], + [-77.488621, 39.248009], + [-77.48893, 39.248207], + [-77.489048, 39.248283], + [-77.489404, 39.248512], + [-77.489523, 39.248589], + [-77.4896, 39.248638], + [-77.489803, 39.248745], + [-77.49013, 39.248917], + [-77.49054, 39.24912], + [-77.490669, 39.249164], + [-77.490973, 39.249268], + [-77.492284, 39.249718], + [-77.493224, 39.250008], + [-77.4939, 39.2503], + [-77.494515, 39.250486], + [-77.494797, 39.250607], + [-77.495475, 39.250782], + [-77.496214, 39.251053], + [-77.496238, 39.251062], + [-77.496577, 39.251139], + [-77.497269, 39.251336], + [-77.497562, 39.251364], + [-77.498575, 39.251618], + [-77.499634, 39.251722], + [-77.500148, 39.251727], + [-77.501049, 39.251824], + [-77.501556, 39.251891], + [-77.502528, 39.25205], + [-77.50384, 39.252271], + [-77.504213, 39.252319], + [-77.504573, 39.252302], + [-77.505014, 39.252286], + [-77.505572, 39.252262], + [-77.506789, 39.252491], + [-77.507992, 39.252707], + [-77.508473, 39.252815], + [-77.508761, 39.252859], + [-77.509079, 39.252843], + [-77.509648, 39.252987], + [-77.510058, 39.253085], + [-77.510451, 39.253211], + [-77.51067, 39.253264], + [-77.510936, 39.253406], + [-77.511067, 39.253467], + [-77.511141, 39.253514], + [-77.511241, 39.253588], + [-77.511424, 39.253697], + [-77.511803, 39.253915], + [-77.512274, 39.254197], + [-77.512965, 39.254542], + [-77.513502, 39.254794], + [-77.514882, 39.255424], + [-77.515405, 39.255788], + [-77.515909, 39.255976], + [-77.51636, 39.256145], + [-77.516377, 39.256151], + [-77.516438, 39.256173], + [-77.516458, 39.25618], + [-77.516464, 39.256182], + [-77.516467, 39.256184], + [-77.516469, 39.256185], + [-77.516493, 39.256195], + [-77.516737, 39.256285], + [-77.51753, 39.256581], + [-77.518035, 39.256771], + [-77.51845, 39.256921], + [-77.518711, 39.257015], + [-77.519008, 39.257127], + [-77.519026, 39.257134], + [-77.519027, 39.257135], + [-77.519291, 39.257246], + [-77.519505, 39.257358], + [-77.519555, 39.257384], + [-77.519708, 39.257463], + [-77.519759, 39.25749], + [-77.519786, 39.257504], + [-77.519868, 39.257547], + [-77.519896, 39.257562], + [-77.520059, 39.257647], + [-77.52009, 39.25768], + [-77.520406, 39.258019], + [-77.520517, 39.258218], + [-77.520624, 39.258409], + [-77.520626, 39.258421], + [-77.520719, 39.25844], + [-77.521, 39.258499], + [-77.521094, 39.258519], + [-77.521134, 39.258545], + [-77.521346, 39.258633], + [-77.523591, 39.259507], + [-77.524283, 39.259732], + [-77.524708, 39.259851], + [-77.524967, 39.259924], + [-77.52525, 39.259985], + [-77.525617, 39.260029], + [-77.525659, 39.260007], + [-77.525659, 39.259985], + [-77.525476, 39.259886], + [-77.525052, 39.259727], + [-77.523817, 39.259375], + [-77.521783, 39.258677], + [-77.52167, 39.2586], + [-77.52167, 39.258523], + [-77.521727, 39.258479], + [-77.521783, 39.258479], + [-77.522984, 39.258946], + [-77.524367, 39.259408], + [-77.525518, 39.259809], + [-77.525984, 39.25993], + [-77.527255, 39.260359], + [-77.527317, 39.260365], + [-77.528371, 39.260474], + [-77.528569, 39.260518], + [-77.528696, 39.260507], + [-77.528748, 39.260521], + [-77.52879, 39.260527], + [-77.528982, 39.260562], + [-77.529173, 39.260624], + [-77.529352, 39.260655], + [-77.52963, 39.260739], + [-77.529734, 39.260755], + [-77.529813, 39.260772], + [-77.529957, 39.260819], + [-77.530026, 39.260832], + [-77.530084, 39.260854], + [-77.530148, 39.260885], + [-77.530187, 39.260898], + [-77.530296, 39.260922], + [-77.530382, 39.260955], + [-77.53044, 39.260975], + [-77.530794, 39.261062], + [-77.53084, 39.261079], + [-77.530868, 39.261081], + [-77.530973, 39.26111], + [-77.531092, 39.261169], + [-77.531214, 39.261218], + [-77.531258, 39.261241], + [-77.531396, 39.261288], + [-77.531466, 39.261326], + [-77.531739, 39.261442], + [-77.531857, 39.261469], + [-77.531901, 39.261493], + [-77.532004, 39.261575], + [-77.532103, 39.261627], + [-77.532153, 39.261662], + [-77.532351, 39.261747], + [-77.532548, 39.261911], + [-77.532611, 39.261958], + [-77.532726, 39.262022], + [-77.532864, 39.262089], + [-77.533101, 39.262186], + [-77.533236, 39.262255], + [-77.533391, 39.262343], + [-77.533587, 39.262428], + [-77.533632, 39.262441], + [-77.533657, 39.262439], + [-77.533671, 39.262397], + [-77.533685, 39.262375], + [-77.533731, 39.262381], + [-77.533772, 39.262397], + [-77.533839, 39.262412], + [-77.533883, 39.262418], + [-77.533914, 39.262419], + [-77.534373, 39.262527], + [-77.534591, 39.262578], + [-77.534789, 39.262644], + [-77.535315, 39.262852], + [-77.535429, 39.262897], + [-77.535548, 39.262944], + [-77.535608, 39.262968], + [-77.535624, 39.262974], + [-77.535792, 39.26304], + [-77.536363, 39.263303], + [-77.536434, 39.263336], + [-77.536971, 39.263595], + [-77.537395, 39.263825], + [-77.537734, 39.264056], + [-77.537861, 39.2641], + [-77.538443, 39.264537], + [-77.53868, 39.264715], + [-77.538863, 39.264781], + [-77.539175, 39.264847], + [-77.539208, 39.264864], + [-77.539311, 39.264917], + [-77.539345, 39.264935], + [-77.539432, 39.264925], + [-77.53965, 39.264782], + [-77.539724, 39.264735], + [-77.539825, 39.26477], + [-77.540129, 39.264876], + [-77.540182, 39.264895], + [-77.540227, 39.264921], + [-77.540842, 39.265277], + [-77.543088, 39.266924], + [-77.543504, 39.2673], + [-77.543869, 39.268024], + [-77.544007, 39.268574], + [-77.544101, 39.269443], + [-77.544181, 39.269647], + [-77.54463, 39.270168], + [-77.545211, 39.27097], + [-77.545503, 39.2713], + [-77.5456, 39.271337], + [-77.545658, 39.271397], + [-77.545759, 39.271491], + [-77.546327, 39.272118], + [-77.546473, 39.272236], + [-77.54709, 39.272738], + [-77.547528, 39.273135], + [-77.54798, 39.273486], + [-77.54834, 39.273816], + [-77.548819, 39.274388], + [-77.549003, 39.274552], + [-77.549412, 39.274854], + [-77.549441, 39.274854], + [-77.549526, 39.27492], + [-77.550048, 39.275196], + [-77.550677, 39.275613], + [-77.550704, 39.275628], + [-77.550834, 39.275696], + [-77.550953, 39.275946], + [-77.551063, 39.276178], + [-77.551064, 39.276192], + [-77.55107, 39.276247], + [-77.551072, 39.276262], + [-77.5511, 39.276328], + [-77.551383, 39.276624], + [-77.551559, 39.27685], + [-77.551983, 39.277393], + [-77.552092, 39.277577], + [-77.552548, 39.278343], + [-77.552965, 39.279166], + [-77.553219, 39.279539], + [-77.553247, 39.279605], + [-77.553284, 39.279975], + [-77.553304, 39.280165], + [-77.553622, 39.280714], + [-77.553678, 39.280769], + [-77.553876, 39.28112], + [-77.554158, 39.281439], + [-77.554441, 39.281637], + [-77.554794, 39.281812], + [-77.555062, 39.281906], + [-77.555642, 39.282048], + [-77.555687, 39.28205], + [-77.556037, 39.28207], + [-77.556327, 39.282202], + [-77.556624, 39.2824], + [-77.557217, 39.28274], + [-77.557683, 39.283119], + [-77.558093, 39.283558], + [-77.55875, 39.284118], + [-77.559597, 39.284975], + [-77.560551, 39.285749], + [-77.560692, 39.285968], + [-77.560862, 39.286353], + [-77.561078, 39.286909], + [-77.561349, 39.287604], + [-77.561406, 39.287846], + [-77.561589, 39.28801], + [-77.56166, 39.288285], + [-77.561702, 39.288592], + [-77.561747, 39.289252], + [-77.561751, 39.289313], + [-77.561764, 39.289499], + [-77.561766, 39.289526], + [-77.561794, 39.289548], + [-77.56178, 39.289602], + [-77.561853, 39.289848], + [-77.56195, 39.290173], + [-77.562006, 39.290668], + [-77.562009, 39.290768], + [-77.562013, 39.290854], + [-77.561979, 39.291078], + [-77.561972, 39.29112], + [-77.561948, 39.291249], + [-77.561932, 39.291319], + [-77.561928, 39.291389], + [-77.561873, 39.291683], + [-77.561856, 39.291782], + [-77.561856, 39.291798], + [-77.561857, 39.291847], + [-77.561858, 39.291864], + [-77.56183, 39.291886], + [-77.561744, 39.292244], + [-77.561667, 39.292567], + [-77.561696, 39.292874], + [-77.561809, 39.293072], + [-77.562027, 39.293338], + [-77.562035, 39.293347], + [-77.562338, 39.293597], + [-77.562364, 39.293618], + [-77.562472, 39.293706], + [-77.562515, 39.293742], + [-77.562591, 39.293866], + [-77.562642, 39.29395], + [-77.562748, 39.294225], + [-77.562772, 39.294437], + [-77.562777, 39.294477], + [-77.562782, 39.294639], + [-77.562805, 39.295466], + [-77.562788, 39.29558], + [-77.562642, 39.296575], + [-77.562409, 39.29764], + [-77.562315, 39.298366], + [-77.562296, 39.298518], + [-77.562254, 39.29871], + [-77.562094, 39.299282], + [-77.562091, 39.29929], + [-77.562084, 39.299314], + [-77.562082, 39.299323], + [-77.562063, 39.299391], + [-77.56171, 39.300313], + [-77.561682, 39.3005], + [-77.561705, 39.300885], + [-77.561717, 39.301071], + [-77.56183, 39.301477], + [-77.562028, 39.302059], + [-77.562261, 39.302531], + [-77.562614, 39.303047], + [-77.562826, 39.3033], + [-77.56325, 39.303777], + [-77.564332, 39.304732], + [-77.564426, 39.304797], + [-77.564982, 39.305182], + [-77.565604, 39.305556], + [-77.565932, 39.30572], + [-77.565963, 39.305736], + [-77.5666, 39.306055], + [-77.567095, 39.306242], + [-77.567844, 39.30645], + [-77.568338, 39.306489], + [-77.568734, 39.306445], + [-77.568755, 39.306455], + [-77.569336, 39.306354], + [-77.569638, 39.306302], + [-77.571235, 39.306121], + [-77.571942, 39.306022], + [-77.572373, 39.305928], + [-77.573602, 39.305588], + [-77.57421, 39.305473], + [-77.574592, 39.30544], + [-77.575637, 39.305406], + [-77.577305, 39.305225], + [-77.578648, 39.305175], + [-77.579227, 39.305088], + [-77.579789, 39.304938], + [-77.580301, 39.304802], + [-77.581396, 39.304335], + [-77.581933, 39.304181], + [-77.582004, 39.304148], + [-77.582512, 39.30378], + [-77.58299, 39.303524], + [-77.583106, 39.303462], + [-77.583459, 39.303341], + [-77.583784, 39.303319], + [-77.584392, 39.303022], + [-77.584997, 39.302881], + [-77.58555, 39.302753], + [-77.585854, 39.302665], + [-77.586334, 39.302489], + [-77.587521, 39.301968], + [-77.588171, 39.301759], + [-77.588779, 39.301599], + [-77.589175, 39.301533], + [-77.589641, 39.301489], + [-77.590771, 39.30144], + [-77.59115, 39.30138], + [-77.591478, 39.30133], + [-77.592424, 39.301242], + [-77.592622, 39.301209], + [-77.59323, 39.301203], + [-77.593269, 39.301207], + [-77.593979, 39.30128], + [-77.595081, 39.30151], + [-77.595732, 39.301647], + [-77.596212, 39.30168], + [-77.597244, 39.301652], + [-77.597597, 39.301685], + [-77.598515, 39.301827], + [-77.599194, 39.301893], + [-77.599802, 39.302052], + [-77.600544, 39.302152], + [-77.600607, 39.302161], + [-77.601243, 39.302359], + [-77.601865, 39.302518], + [-77.602289, 39.302561], + [-77.602332, 39.302563], + [-77.602344, 39.302563], + [-77.602383, 39.302565], + [-77.602396, 39.302566], + [-77.602631, 39.302575], + [-77.602798, 39.302583], + [-77.603325, 39.302702], + [-77.603556, 39.302755], + [-77.603575, 39.302759], + [-77.603612, 39.302774], + [-77.603778, 39.302844], + [-77.603834, 39.302868], + [-77.60387, 39.302883], + [-77.603978, 39.302929], + [-77.604017, 39.302938], + [-77.60405, 39.302945], + [-77.604151, 39.302969], + [-77.604185, 39.302977], + [-77.604402, 39.303027], + [-77.604436, 39.30304], + [-77.60484, 39.303203], + [-77.605151, 39.303334], + [-77.605156, 39.303336], + [-77.605385, 39.303459], + [-77.605485, 39.303511], + [-77.60551, 39.303525], + [-77.605646, 39.303598], + [-77.605929, 39.303718], + [-77.606178, 39.303754], + [-77.606268, 39.303768], + [-77.606762, 39.303745], + [-77.60696, 39.30369], + [-77.607172, 39.30357], + [-77.607327, 39.303427], + [-77.607341, 39.303218], + [-77.607384, 39.303185], + [-77.607666, 39.303163], + [-77.607864, 39.303185], + [-77.607949, 39.303141], + [-77.607941, 39.303087], + [-77.607921, 39.302932], + [-77.607942, 39.3029], + [-77.608069, 39.302894], + [-77.608288, 39.303037], + [-77.608359, 39.303015], + [-77.6084, 39.302978], + [-77.608507, 39.302883], + [-77.608535, 39.302575], + [-77.60862, 39.302487], + [-77.608733, 39.302454], + [-77.609256, 39.302476], + [-77.609736, 39.302586], + [-77.61009, 39.302619], + [-77.610358, 39.302624], + [-77.610669, 39.302602], + [-77.610697, 39.302635], + [-77.610612, 39.302679], + [-77.610485, 39.302712], + [-77.61032, 39.302726], + [-77.610061, 39.30275], + [-77.610019, 39.302783], + [-77.610033, 39.302871], + [-77.61038, 39.303107], + [-77.610719, 39.303261], + [-77.611115, 39.303315], + [-77.611298, 39.303414], + [-77.611397, 39.303414], + [-77.611963, 39.303381], + [-77.612259, 39.303326], + [-77.612457, 39.303199], + [-77.61257, 39.303035], + [-77.61269, 39.302936], + [-77.612817, 39.302881], + [-77.613213, 39.302826], + [-77.613693, 39.302705], + [-77.61399, 39.302694], + [-77.614541, 39.302765], + [-77.614908, 39.302743], + [-77.615064, 39.302721], + [-77.615643, 39.302567], + [-77.615912, 39.302556], + [-77.616392, 39.302643], + [-77.616618, 39.302703], + [-77.61683, 39.302791], + [-77.617099, 39.302945], + [-77.617233, 39.302988], + [-77.617954, 39.303131], + [-77.61811, 39.303186], + [-77.618376, 39.303313], + [-77.618845, 39.303537], + [-77.619651, 39.30386], + [-77.620242, 39.304035], + [-77.620428, 39.30409], + [-77.620577, 39.304127], + [-77.621284, 39.304302], + [-77.621641, 39.304391], + [-77.621644, 39.304392], + [-77.622287, 39.304754], + [-77.622527, 39.304841], + [-77.622635, 39.304866], + [-77.622994, 39.304951], + [-77.623347, 39.305027], + [-77.624442, 39.305087], + [-77.624633, 39.305142], + [-77.624718, 39.305131], + [-77.624823, 39.305146], + [-77.625353, 39.305366], + [-77.62548, 39.305399], + [-77.626618, 39.305811], + [-77.627324, 39.305932], + [-77.627833, 39.305976], + [-77.628271, 39.306097], + [-77.628539, 39.306218], + [-77.628638, 39.306295], + [-77.628737, 39.306449], + [-77.629062, 39.306679], + [-77.629486, 39.306828], + [-77.630093, 39.307125], + [-77.630249, 39.307223], + [-77.630425, 39.307368], + [-77.630771, 39.30765], + [-77.63087, 39.307694], + [-77.630927, 39.307727], + [-77.63111, 39.307726], + [-77.631383, 39.307774], + [-77.63142, 39.307781], + [-77.631943, 39.307929], + [-77.632282, 39.30794], + [-77.63272, 39.307897], + [-77.632819, 39.307853], + [-77.633018, 39.307721], + [-77.633244, 39.307655], + [-77.633485, 39.307613], + [-77.633859, 39.307632], + [-77.633923, 39.307635], + [-77.634163, 39.307679], + [-77.634262, 39.307767], + [-77.63429, 39.307898], + [-77.634331, 39.307948], + [-77.634458, 39.308025], + [-77.634543, 39.308047], + [-77.6346, 39.308047], + [-77.634798, 39.307992], + [-77.635152, 39.307806], + [-77.635308, 39.307784], + [-77.635661, 39.307796], + [-77.636749, 39.307983], + [-77.637579, 39.308044], + [-77.638148, 39.308085], + [-77.63836, 39.3081], + [-77.639321, 39.308221], + [-77.639521, 39.308254], + [-77.639688, 39.308281], + [-77.639699, 39.308283], + [-77.64023, 39.308404], + [-77.640407, 39.308445], + [-77.640748, 39.308523], + [-77.641076, 39.308577], + [-77.641603, 39.308666], + [-77.641829, 39.308721], + [-77.642225, 39.308771], + [-77.642719, 39.308793], + [-77.643106, 39.308782], + [-77.643518, 39.308771], + [-77.643783, 39.308713], + [-77.643786, 39.308728], + [-77.643795, 39.308768], + [-77.643796, 39.308776], + [-77.6438, 39.308793], + [-77.643829, 39.308789], + [-77.643918, 39.308778], + [-77.643948, 39.308775], + [-77.643975, 39.308771], + [-77.644058, 39.308761], + [-77.644086, 39.308758], + [-77.64411, 39.308774], + [-77.644184, 39.308822], + [-77.644209, 39.308838], + [-77.64423, 39.308847], + [-77.644259, 39.308858], + [-77.644348, 39.308892], + [-77.644465, 39.308937], + [-77.644627, 39.309041], + [-77.644768, 39.309085], + [-77.644866, 39.309095], + [-77.645362, 39.309151], + [-77.645616, 39.309217], + [-77.645715, 39.309261], + [-77.646152, 39.309367], + [-77.64621, 39.309382], + [-77.646569, 39.309508], + [-77.646921, 39.309632], + [-77.647114, 39.3097], + [-77.647496, 39.309904], + [-77.647919, 39.31009], + [-77.647942, 39.310095], + [-77.648305, 39.310187], + [-77.648357, 39.3102], + [-77.648668, 39.310244], + [-77.649364, 39.3104], + [-77.649403, 39.310409], + [-77.650195, 39.310612], + [-77.650901, 39.310854], + [-77.652308, 39.311696], + [-77.653236, 39.312252], + [-77.653352, 39.312321], + [-77.653526, 39.312412], + [-77.65396, 39.312639], + [-77.65439, 39.312905], + [-77.65444, 39.312936], + [-77.654681, 39.313066], + [-77.655521, 39.313518], + [-77.656313, 39.313831], + [-77.656496, 39.313897], + [-77.656693, 39.313951], + [-77.658645, 39.314496], + [-77.6588, 39.314562], + [-77.659365, 39.314726], + [-77.659662, 39.314847], + [-77.660015, 39.314957], + [-77.661103, 39.31538], + [-77.662015, 39.315666], + [-77.662891, 39.315907], + [-77.662992, 39.315946], + [-77.663852, 39.316275], + [-77.66446, 39.316572], + [-77.665027, 39.316792], + [-77.665082, 39.316813], + [-77.666462, 39.3176], + [-77.666537, 39.317643], + [-77.667251, 39.318126], + [-77.667604, 39.3184], + [-77.668367, 39.319081], + [-77.668749, 39.319476], + [-77.669194, 39.319883], + [-77.669505, 39.320234], + [-77.669802, 39.320525], + [-77.670111, 39.320905], + [-77.670339, 39.321184], + [-77.670395, 39.321283], + [-77.671003, 39.3217], + [-77.671399, 39.321887], + [-77.671561, 39.321963], + [-77.67159, 39.321963], + [-77.671943, 39.322183], + [-77.672568, 39.322452], + [-77.672798, 39.322551], + [-77.673356, 39.322814], + [-77.674275, 39.323473], + [-77.674741, 39.323923], + [-77.675066, 39.324154], + [-77.675108, 39.324185], + [-77.675187, 39.324242], + [-77.675469, 39.324368], + [-77.675872, 39.324457], + [-77.676063, 39.3245], + [-77.67619, 39.324511], + [-77.676445, 39.324533], + [-77.676466, 39.324523], + [-77.676812, 39.324566], + [-77.677031, 39.324549], + [-77.677166, 39.324542], + [-77.677353, 39.324531], + [-77.677448, 39.324526], + [-77.677731, 39.324511], + [-77.677917, 39.324486], + [-77.678103, 39.324462], + [-77.678225, 39.324445], + [-77.678268, 39.32444], + [-77.678589, 39.324367], + [-77.678607, 39.324363], + [-77.678712, 39.32435], + [-77.678812, 39.324337], + [-77.678911, 39.324324], + [-77.679173, 39.324286], + [-77.679391, 39.324242], + [-77.679943, 39.324132], + [-77.681145, 39.323995], + [-77.681173, 39.323973], + [-77.681426, 39.323937], + [-77.681724, 39.323896], + [-77.682078, 39.323737], + [-77.68224, 39.323627], + [-77.683081, 39.322903], + [-77.683435, 39.322716], + [-77.683866, 39.322408], + [-77.684064, 39.322233], + [-77.684233, 39.322046], + [-77.684572, 39.321761], + [-77.684896, 39.321436], + [-77.685039, 39.321294], + [-77.686177, 39.320405], + [-77.686502, 39.320207], + [-77.688042, 39.319642], + [-77.688438, 39.319521], + [-77.68865, 39.319477], + [-77.689032, 39.319433], + [-77.689512, 39.319406], + [-77.690064, 39.319351], + [-77.690198, 39.319318], + [-77.690537, 39.319197], + [-77.690989, 39.318966], + [-77.692007, 39.31862], + [-77.692544, 39.318511], + [-77.69301, 39.318445], + [-77.693675, 39.318423], + [-77.694268, 39.318461], + [-77.694622, 39.318505], + [-77.695151, 39.318514], + [-77.695244, 39.318516], + [-77.695696, 39.318472], + [-77.696078, 39.318461], + [-77.696742, 39.318554], + [-77.697378, 39.318752], + [-77.698, 39.318905], + [-77.698283, 39.318938], + [-77.698745, 39.318964], + [-77.698876, 39.318971], + [-77.699329, 39.319075], + [-77.699409, 39.319103], + [-77.699922, 39.319284], + [-77.701366, 39.319686], + [-77.701378, 39.31969], + [-77.702015, 39.319896], + [-77.702141, 39.319937], + [-77.703251, 39.320233], + [-77.703788, 39.320397], + [-77.704566, 39.320655], + [-77.704834, 39.320776], + [-77.706262, 39.321303], + [-77.706898, 39.3215], + [-77.70728, 39.321637], + [-77.707676, 39.321736], + [-77.708086, 39.321758], + [-77.708298, 39.321736], + [-77.709095, 39.321526], + [-77.709346, 39.321463], + [-77.709431, 39.321453], + [-77.709677, 39.321478], + [-77.709871, 39.321493], + [-77.710223, 39.321426], + [-77.710406, 39.321359], + [-77.710574, 39.321359], + [-77.710828, 39.3214], + [-77.710958, 39.32141], + [-77.71111, 39.321422], + [-77.711238, 39.321444], + [-77.711379, 39.321521], + [-77.711478, 39.321543], + [-77.711591, 39.321543], + [-77.711704, 39.321521], + [-77.711944, 39.321433], + [-77.712215, 39.321398], + [-77.712241, 39.321395], + [-77.71226, 39.321394], + [-77.712396, 39.32139], + [-77.712442, 39.321389], + [-77.712908, 39.321375], + [-77.713032, 39.321372], + [-77.713471, 39.321306], + [-77.71364, 39.321263], + [-77.713725, 39.321219], + [-77.714022, 39.321262], + [-77.714078, 39.321295], + [-77.714272, 39.321335], + [-77.71429, 39.321339], + [-77.714738, 39.321306], + [-77.714799, 39.321301], + [-77.714997, 39.321257], + [-77.715266, 39.321235], + [-77.715548, 39.321191], + [-77.715591, 39.321158], + [-77.715573, 39.320973], + [-77.715569, 39.320927], + [-77.715612, 39.320872], + [-77.715796, 39.320828], + [-77.716333, 39.32085], + [-77.716884, 39.320811], + [-77.717294, 39.320855], + [-77.717414, 39.320894], + [-77.717859, 39.32102], + [-77.718439, 39.321096], + [-77.718623, 39.321152], + [-77.718764, 39.321195], + [-77.718901, 39.321222], + [-77.718985, 39.321239], + [-77.719209, 39.321283], + [-77.719521, 39.321322], + [-77.719553, 39.321277], + [-77.71971, 39.321096], + [-77.719905, 39.320912], + [-77.720148, 39.320233], + [-77.720356, 39.319674], + [-77.720596, 39.319282], + [-77.720785, 39.318985], + [-77.72164, 39.318502], + [-77.72239, 39.31815], + [-77.722763, 39.318203], + [-77.723138, 39.318072], + [-77.723368, 39.317956], + [-77.723662, 39.317756], + [-77.724166, 39.31763], + [-77.724992, 39.317556], + [-77.725638, 39.317646], + [-77.725908, 39.317683], + [-77.72656, 39.317401], + [-77.727363, 39.317043], + [-77.727958, 39.3166], + [-77.72826, 39.31638], + [-77.728747, 39.316301], + [-77.728977, 39.316066], + [-77.729568, 39.315862], + [-77.730699, 39.315611], + [-77.731099, 39.315263], + [-77.731344, 39.314924], + [-77.732169, 39.314124], + [-77.73269, 39.313775], + [-77.734221, 39.313062], + [-77.734769, 39.312694], + [-77.734897, 39.312578], + [-77.73512, 39.312204], + [-77.735413, 39.311977], + [-77.73552, 39.311879], + [-77.73628, 39.310608], + [-77.736669, 39.310028], + [-77.736932, 39.309635], + [-77.737634, 39.308998], + [-77.73802, 39.308496], + [-77.738106, 39.308412], + [-77.738412, 39.308199], + [-77.73908, 39.307155], + [-77.739524, 39.30639], + [-77.739976, 39.305523], + [-77.740624, 39.304676], + [-77.740996, 39.303685], + [-77.741212, 39.303202], + [-77.741368, 39.302853], + [-77.741861, 39.301876], + [-77.742151, 39.301373], + [-77.742824, 39.300557], + [-77.743224, 39.300111], + [-77.743832, 39.29919], + [-77.744635, 39.298425], + [-77.746593, 39.296011], + [-77.747082, 39.295449], + [-77.747589, 39.294842], + [-77.747888, 39.294427], + [-77.748297, 39.293704], + [-77.748962, 39.291976], + [-77.749717, 39.290506], + [-77.750269, 39.289292], + [-77.750418, 39.288886], + [-77.750681, 39.288143], + [-77.751259, 39.286841], + [-77.751841, 39.284911], + [-77.752728, 39.283381], + [-77.753096, 39.281807], + [-77.753071, 39.281275], + [-77.753359, 39.280339], + [-77.753244, 39.279428], + [-77.753292, 39.278918], + [-77.753285, 39.278808], + [-77.753254, 39.278409], + [-77.753178, 39.278291], + [-77.753062, 39.277979], + [-77.752987, 39.277776], + [-77.753064, 39.277499], + [-77.753107, 39.277348], + [-77.753188, 39.277216], + [-77.753456, 39.276849], + [-77.753581, 39.27668], + [-77.754051, 39.276038], + [-77.754767, 39.275701], + [-77.754808, 39.275656], + [-77.755198, 39.275225], + [-77.755414, 39.275052], + [-77.755629, 39.274879], + [-77.755835, 39.274713], + [-77.756027, 39.274577], + [-77.75689, 39.274069], + [-77.757074, 39.273804], + [-77.757203, 39.273618], + [-77.757412, 39.273266], + [-77.757659, 39.272855], + [-77.757969, 39.27226], + [-77.758045, 39.271827], + [-77.758045, 39.271685], + [-77.758026, 39.271444], + [-77.758048, 39.271396], + [-77.758067, 39.271238], + [-77.758081, 39.271135], + [-77.758129, 39.2708], + [-77.758162, 39.270569], + [-77.758194, 39.27034], + [-77.758198, 39.270311], + [-77.758255, 39.270135], + [-77.758394, 39.269709], + [-77.758463, 39.269496], + [-77.758617, 39.269021], + [-77.758756, 39.268592], + [-77.758826, 39.268376], + [-77.758896, 39.268161], + [-77.758903, 39.268139], + [-77.7588, 39.268004], + [-77.758755, 39.267922], + [-77.758565, 39.267645], + [-77.758557, 39.267028], + [-77.758378, 39.266682], + [-77.758127, 39.266194], + [-77.758108, 39.266158], + [-77.758184, 39.265869], + [-77.758382, 39.265094], + [-77.758467, 39.264961], + [-77.758654, 39.264666], + [-77.759073, 39.264263], + [-77.759591, 39.263767], + [-77.759624, 39.26375], + [-77.759948, 39.263591], + [-77.760905, 39.263769], + [-77.761095, 39.263804], + [-77.761144, 39.263738], + [-77.761219, 39.263729], + [-77.76177, 39.263039], + [-77.761828, 39.262822], + [-77.761928, 39.262597], + [-77.762172, 39.26205], + [-77.762179, 39.262028], + [-77.762311, 39.261611], + [-77.762369, 39.261379], + [-77.762458, 39.261283], + [-77.762583, 39.261219], + [-77.762843, 39.261002], + [-77.762909, 39.260947], + [-77.763114, 39.26044], + [-77.763115, 39.260362], + [-77.763117, 39.260138], + [-77.762963, 39.259839], + [-77.762872, 39.259667], + [-77.762873, 39.259583], + [-77.762763, 39.259236], + [-77.762761, 39.259196], + [-77.762906, 39.258424], + [-77.76293, 39.258281], + [-77.763436, 39.258078], + [-77.763667, 39.257986], + [-77.763733, 39.257959], + [-77.763875, 39.257956], + [-77.764347, 39.257946], + [-77.765158, 39.257929], + [-77.765217, 39.257928], + [-77.765684, 39.257786], + [-77.765829, 39.257775], + [-77.766399, 39.257729], + [-77.767282, 39.257816], + [-77.767626, 39.257786], + [-77.767882, 39.25765], + [-77.767999, 39.257588], + [-77.768326, 39.257259], + [-77.768376, 39.257197], + [-77.768756, 39.256447], + [-77.768961, 39.256466], + [-77.768986, 39.256468], + [-77.769325, 39.256499], + [-77.76986, 39.256415], + [-77.770104, 39.256377], + [-77.770263, 39.255992], + [-77.770283, 39.255985], + [-77.770367, 39.255752], + [-77.770671, 39.25527], + [-77.770666, 39.255047], + [-77.770663, 39.254018], + [-77.770835, 39.253748], + [-77.770881, 39.253678], + [-77.77084, 39.253621], + [-77.770596, 39.25328], + [-77.770596, 39.252235], + [-77.770625, 39.251669], + [-77.770668, 39.25082], + [-77.770676, 39.250772], + [-77.770878, 39.249768], + [-77.770939, 39.249454], + [-77.769801, 39.249459], + [-77.768544, 39.249551], + [-77.767278, 39.249759], + [-77.767229, 39.249017], + [-77.767382, 39.24866], + [-77.767814, 39.24809], + [-77.768233, 39.246707], + [-77.768052, 39.245549], + [-77.76878, 39.24494], + [-77.768923, 39.24463], + [-77.769279, 39.243908], + [-77.76993, 39.242944], + [-77.769859, 39.242176], + [-77.770187, 39.241188], + [-77.770219, 39.241069], + [-77.770235, 39.240884], + [-77.770246, 39.24056], + [-77.770262, 39.240086], + [-77.770423, 39.239328], + [-77.770469, 39.239112], + [-77.770978, 39.238242], + [-77.771119, 39.238055], + [-77.771126, 39.238025], + [-77.770984, 39.237482], + [-77.771367, 39.236501], + [-77.772406, 39.235816], + [-77.773229, 39.235055], + [-77.773261, 39.235025], + [-77.773662, 39.2345], + [-77.773682, 39.234474], + [-77.773682, 39.234443], + [-77.773691, 39.233937], + [-77.773695, 39.233739], + [-77.77392, 39.233644], + [-77.774163, 39.233543], + [-77.774782, 39.233025], + [-77.774943, 39.23273], + [-77.775211, 39.232476], + [-77.775774, 39.232197], + [-77.77587, 39.232149], + [-77.776677, 39.231324], + [-77.777118, 39.23054], + [-77.777129, 39.230509], + [-77.777405, 39.229747], + [-77.777418, 39.22971], + [-77.777587, 39.229748], + [-77.777708, 39.229773], + [-77.777996, 39.229839], + [-77.778895, 39.229927], + [-77.779245, 39.229758], + [-77.779337, 39.229713], + [-77.779863, 39.229331], + [-77.780629, 39.228914], + [-77.780801, 39.228729], + [-77.781383, 39.228017], + [-77.78161, 39.227617], + [-77.781665, 39.227506], + [-77.781641, 39.2272], + [-77.781321, 39.226869], + [-77.781257, 39.226808], + [-77.781299, 39.226754], + [-77.781765, 39.22616], + [-77.782357, 39.225406], + [-77.783018, 39.224881], + [-77.783537, 39.224197], + [-77.783642, 39.224089], + [-77.784169, 39.223533], + [-77.78437, 39.22325], + [-77.784388, 39.223225], + [-77.784702, 39.222784], + [-77.78586, 39.222061], + [-77.786324, 39.221815], + [-77.78647, 39.221512], + [-77.786505, 39.22148], + [-77.786495, 39.221443], + [-77.786448, 39.22141], + [-77.786231, 39.221268], + [-77.786252, 39.221162], + [-77.786286, 39.220994], + [-77.786163, 39.220478], + [-77.786105, 39.220326], + [-77.785979, 39.21999], + [-77.785962, 39.219881], + [-77.785929, 39.219674], + [-77.786131, 39.219503], + [-77.786219, 39.219443], + [-77.786273, 39.219348], + [-77.786494, 39.218957], + [-77.786785, 39.218604], + [-77.787477, 39.217485], + [-77.787715, 39.217023], + [-77.787918, 39.216771], + [-77.788105, 39.216469], + [-77.788312, 39.216176], + [-77.788472, 39.215794], + [-77.788596, 39.215487], + [-77.788843, 39.214873], + [-77.788982, 39.214788], + [-77.789561, 39.214348], + [-77.790494, 39.213553], + [-77.791535, 39.212534], + [-77.791973, 39.212261], + [-77.792665, 39.211396], + [-77.793115, 39.210303], + [-77.792988, 39.210229], + [-77.792805, 39.209697], + [-77.792785, 39.209637], + [-77.792634, 39.209006], + [-77.792921, 39.208638], + [-77.792996, 39.208541], + [-77.793392, 39.208184], + [-77.793603, 39.207631], + [-77.793958, 39.207098], + [-77.794291, 39.206573], + [-77.794665, 39.205996], + [-77.794827, 39.205729], + [-77.79496, 39.205511], + [-77.795305, 39.204795], + [-77.79573, 39.204145], + [-77.796182, 39.203477], + [-77.79668, 39.202521], + [-77.796773, 39.202342], + [-77.796816, 39.202258], + [-77.797027, 39.202067], + [-77.797595, 39.201553], + [-77.798159, 39.200711], + [-77.798377, 39.19924], + [-77.798382, 39.199181], + [-77.798447, 39.198878], + [-77.798494, 39.198317], + [-77.798634, 39.197884], + [-77.798645, 39.197489], + [-77.798249, 39.196536], + [-77.79825, 39.196523], + [-77.798261, 39.196146], + [-77.798273, 39.195756], + [-77.798551, 39.194881], + [-77.798309, 39.194609], + [-77.797839, 39.194079], + [-77.798028, 39.193445], + [-77.79804, 39.193368], + [-77.798146, 39.192659], + [-77.798166, 39.192526], + [-77.798508, 39.192271], + [-77.798886, 39.191989], + [-77.799145, 39.191798], + [-77.799436, 39.19116], + [-77.799641, 39.19052], + [-77.799778, 39.190189], + [-77.799897, 39.189901], + [-77.800212, 39.188829], + [-77.800214, 39.188821], + [-77.800287, 39.188573], + [-77.800292, 39.188558], + [-77.800546, 39.188244], + [-77.800728, 39.188018], + [-77.801117, 39.187794], + [-77.801108, 39.187404], + [-77.801103, 39.18716], + [-77.801098, 39.18691], + [-77.80128, 39.186376], + [-77.801306, 39.186303], + [-77.801342, 39.185991], + [-77.801345, 39.185968], + [-77.801409, 39.185413], + [-77.801716, 39.185044], + [-77.801801, 39.184942], + [-77.801932, 39.184784], + [-77.801996, 39.184656], + [-77.802111, 39.184424], + [-77.80232, 39.184112], + [-77.802334, 39.184075], + [-77.802651, 39.183579], + [-77.802765, 39.183259], + [-77.802814, 39.183097], + [-77.802931, 39.182712], + [-77.803063, 39.1824], + [-77.803104, 39.182301], + [-77.803097, 39.182233], + [-77.803091, 39.182171], + [-77.803072, 39.181986], + [-77.80346, 39.18089], + [-77.803639, 39.180657], + [-77.804113, 39.180313], + [-77.80473, 39.179334], + [-77.804907, 39.179059], + [-77.804665, 39.17891], + [-77.804093, 39.17856], + [-77.804253, 39.178121], + [-77.804453, 39.177833], + [-77.804472, 39.177721], + [-77.804895, 39.177102], + [-77.804973, 39.176988], + [-77.804616, 39.176644], + [-77.80451, 39.176204], + [-77.805054, 39.175441], + [-77.805146, 39.175003], + [-77.805342, 39.174074], + [-77.805877, 39.173125], + [-77.806051, 39.171745], + [-77.806589, 39.171101], + [-77.80822, 39.17007], + [-77.808587, 39.16975], + [-77.80904, 39.16935], + [-77.809294, 39.168926], + [-77.809736, 39.168187], + [-77.809817, 39.168051], + [-77.810122, 39.167682], + [-77.810174, 39.167619], + [-77.810858, 39.167275], + [-77.811062, 39.167236], + [-77.811212, 39.167208], + [-77.811442, 39.167053], + [-77.811497, 39.166875], + [-77.81144, 39.166592], + [-77.811673, 39.166075], + [-77.811872, 39.165844], + [-77.812356, 39.165284], + [-77.812465, 39.165027], + [-77.812652, 39.16456], + [-77.812615, 39.164232], + [-77.813372, 39.164335], + [-77.813628, 39.164426], + [-77.81392, 39.164006], + [-77.814276, 39.163135], + [-77.814332, 39.162998], + [-77.814466, 39.162782], + [-77.814715, 39.162388], + [-77.815075, 39.161685], + [-77.815494, 39.160774], + [-77.81603, 39.159694], + [-77.816058, 39.159551], + [-77.816147, 39.159366], + [-77.816308, 39.158694], + [-77.816785, 39.157851], + [-77.817236, 39.157153], + [-77.817358, 39.157122], + [-77.817605, 39.157059], + [-77.81777, 39.156741], + [-77.818357, 39.156049], + [-77.818261, 39.155851], + [-77.818383, 39.155744], + [-77.818661, 39.155514], + [-77.818617, 39.155242], + [-77.818575, 39.155105], + [-77.81899, 39.154514], + [-77.81965, 39.153943], + [-77.819851, 39.153546], + [-77.820482, 39.153127], + [-77.820525, 39.153099], + [-77.821372, 39.152359], + [-77.82155, 39.152041], + [-77.821627, 39.151876], + [-77.821754, 39.150462], + [-77.821774, 39.149987], + [-77.821795, 39.149601], + [-77.82228, 39.149223], + [-77.822827, 39.148021], + [-77.823017, 39.147701], + [-77.823142, 39.147508], + [-77.822464, 39.147146], + [-77.822565, 39.14689], + [-77.822609, 39.146464], + [-77.822957, 39.145942], + [-77.823264, 39.145727], + [-77.823375, 39.145603], + [-77.823195, 39.145097], + [-77.823157, 39.144445], + [-77.822584, 39.144], + [-77.822072, 39.142718], + [-77.821947, 39.141717], + [-77.82192, 39.141136], + [-77.822103, 39.140113], + [-77.822203, 39.140009], + [-77.822714, 39.139478], + [-77.823372, 39.138999], + [-77.823592, 39.138848], + [-77.823746, 39.138692], + [-77.823948, 39.138512], + [-77.824377, 39.138003], + [-77.824507, 39.13721], + [-77.824513, 39.1372], + [-77.824528, 39.137116], + [-77.824734, 39.136727], + [-77.824694, 39.136636], + [-77.82449, 39.136157], + [-77.825161, 39.135383], + [-77.825657, 39.135676], + [-77.825774, 39.135746], + [-77.826233, 39.135694], + [-77.826851, 39.135505], + [-77.827162, 39.135268], + [-77.827191, 39.135243], + [-77.827547, 39.134686], + [-77.827682, 39.134409], + [-77.827853, 39.134062], + [-77.82791, 39.133593], + [-77.827986, 39.132986], + [-77.828098, 39.132782], + [-77.828265, 39.13248], + [-77.828267, 39.13248], + [-77.828301, 39.132434], + [-77.828456, 39.13254], + [-77.828666, 39.132684], + [-77.828678, 39.132692], + [-77.828793, 39.132771], + [-77.828808, 39.132781], + [-77.830003, 39.133549], + [-77.830016, 39.133558], + [-77.833634, 39.135886], + [-77.833638, 39.135889], + [-77.834845, 39.136666], + [-77.835225, 39.13691], + [-77.836362, 39.137641], + [-77.836363, 39.137642], + [-77.836741, 39.137886], + [-77.838498, 39.139016], + [-77.839102, 39.139405], + [-77.843771, 39.142409], + [-77.845529, 39.14354], + [-77.846131, 39.143927], + [-77.846182, 39.14396], + [-77.847939, 39.14509], + [-77.848542, 39.145478], + [-77.84909, 39.145831], + [-77.850056, 39.146452], + [-77.854597, 39.149373], + [-77.85611, 39.150346], + [-77.856929, 39.150875], + [-77.859386, 39.15246], + [-77.859387, 39.152461], + [-77.860205, 39.152989], + [-77.86034, 39.153076], + [-77.860343, 39.153078], + [-77.860743, 39.153336], + [-77.860757, 39.153345], + [-77.860877, 39.153422], + [-77.860896, 39.153435], + [-77.860906, 39.153441], + [-77.860916, 39.153446], + [-77.860921, 39.15345], + [-77.860925, 39.153452], + [-77.860934, 39.153458], + [-77.860938, 39.153461], + [-77.860943, 39.153464], + [-77.861019, 39.153513], + [-77.861244, 39.15366], + [-77.861319, 39.153708], + [-77.86437, 39.155664], + [-77.873524, 39.161532], + [-77.874699, 39.162285], + [-77.876559, 39.163512], + [-77.877425, 39.164072], + [-77.879696, 39.165539], + [-77.880026, 39.165752], + [-77.880893, 39.166312], + [-77.880991, 39.166376], + [-77.881429, 39.166659], + [-77.883041, 39.167699], + [-77.883548, 39.168027], + [-77.883578, 39.168047], + [-77.883993, 39.168315], + [-77.885241, 39.169121], + [-77.88551, 39.169295], + [-77.885657, 39.16939], + [-77.885722, 39.169432], + [-77.88592, 39.169559], + [-77.885986, 39.169602], + [-77.887256, 39.170423], + [-77.889104, 39.171617], + [-77.891068, 39.172885], + [-77.89231, 39.173688], + [-77.892339, 39.173707], + [-77.892387, 39.173738], + [-77.892516, 39.173822], + [-77.892534, 39.173834], + [-77.892584, 39.173866], + [-77.897053, 39.176759], + [-77.897137, 39.176814], + [-77.91046, 39.185441], + [-77.910792, 39.185656], + [-77.914929, 39.188335], + [-77.914993, 39.188376], + [-77.915007, 39.188385], + [-77.915026, 39.188397], + [-77.915242, 39.188538], + [-77.915321, 39.188589], + [-77.915344, 39.188604], + [-77.916142, 39.189111], + [-77.91617, 39.189129], + [-77.918605, 39.190678], + [-77.918647, 39.190705], + [-77.919426, 39.191201], + [-77.919472, 39.19123], + [-77.92038, 39.191819], + [-77.920405, 39.191835], + [-77.923101, 39.193585], + [-77.923342, 39.193741], + [-77.924008, 39.194173], + [-77.924322, 39.194376], + [-77.924837, 39.19471], + [-77.925087, 39.194872], + [-77.92732, 39.196321], + [-77.927382, 39.196361], + [-77.928147, 39.196858], + [-77.929704, 39.197868], + [-77.934375, 39.200899], + [-77.935931, 39.201909], + [-77.935958, 39.201927], + [-77.936037, 39.20198], + [-77.936064, 39.201998], + [-77.937026, 39.202622], + [-77.937055, 39.202641], + [-77.939913, 39.204493], + [-77.940028, 39.204568], + [-77.940876, 39.205118], + [-77.941018, 39.20521], + [-77.941213, 39.205337], + [-77.941328, 39.205411], + [-77.942227, 39.205994], + [-77.942257, 39.206014], + [-77.942565, 39.206214], + [-77.942804, 39.20637], + [-77.942806, 39.206371], + [-77.943525, 39.206837], + [-77.943764, 39.206992], + [-77.943982, 39.207133], + [-77.944636, 39.207558], + [-77.944855, 39.2077], + [-77.94651, 39.208774], + [-77.946979, 39.209078], + [-77.953351, 39.213212], + [-77.954747, 39.214118], + [-77.955381, 39.21453], + [-77.955476, 39.214591], + [-77.955873, 39.214849], + [-77.957067, 39.215623], + [-77.957465, 39.215882], + [-77.957493, 39.2159], + [-77.957935, 39.216185], + [-77.959348, 39.217095], + [-77.959427, 39.217146], + [-77.959819, 39.217399], + [-77.961315, 39.218363], + [-77.965227, 39.220884], + [-77.965803, 39.221255], + [-77.96716, 39.22213], + [-77.9673, 39.22222], + [-77.968721, 39.223136], + [-77.971242, 39.224761], + [-77.972984, 39.225884], + [-77.974391, 39.226791], + [-77.974406, 39.226801], + [-77.975542, 39.227533], + [-77.975827, 39.227717], + [-77.975851, 39.227733], + [-77.9766, 39.228215], + [-77.97892, 39.22971], + [-77.979694, 39.230209], + [-77.981268, 39.231224], + [-77.983487, 39.232654], + [-77.985993, 39.234269], + [-77.987568, 39.235284], + [-77.987596, 39.235302], + [-77.987679, 39.235356], + [-77.987706, 39.235373], + [-77.987883, 39.235487], + [-77.988417, 39.235831], + [-77.988421, 39.235834], + [-77.988595, 39.235946], + [-77.988917, 39.236153], + [-77.989883, 39.236776], + [-77.990206, 39.236984], + [-77.990418, 39.237121], + [-77.990564, 39.237215], + [-77.991057, 39.237532], + [-77.991271, 39.23767], + [-77.992961, 39.238767], + [-77.992967, 39.238771], + [-77.995327, 39.240302], + [-77.998031, 39.242057], + [-77.998033, 39.242058], + [-77.999722, 39.243154], + [-78.001105, 39.244001], + [-78.005252, 39.24654], + [-78.006634, 39.247386], + [-78.006696, 39.247422], + [-78.006803, 39.247484], + [-78.006826, 39.247498], + [-78.006878, 39.247532], + [-78.006938, 39.24757], + [-78.007294, 39.247808], + [-78.007458, 39.247918], + [-78.00923, 39.2491], + [-78.009643, 39.249376], + [-78.010611, 39.250024], + [-78.014384, 39.252438], + [-78.016171, 39.253573], + [-78.016275, 39.253639], + [-78.017432, 39.254375], + [-78.018484, 39.255063], + [-78.018858, 39.255307], + [-78.019977, 39.256038], + [-78.019978, 39.256039], + [-78.02035, 39.256283], + [-78.022217, 39.257502], + [-78.022742, 39.257845], + [-78.027796, 39.261191], + [-78.029654, 39.262422], + [-78.029846, 39.262549], + [-78.03042, 39.26293], + [-78.030611, 39.263056], + [-78.03105, 39.263323], + [-78.031073, 39.263337], + [-78.032368, 39.264123], + [-78.03246, 39.264179], + [-78.032806, 39.264389], + [-78.032843, 39.264411], + [-78.032925, 39.264457], + [-78.032929, 39.264459], + [-78.032943, 39.264467], + [-78.032948, 39.26447], + [-78.032974, 39.264485], + [-78.032997, 39.264498], + [-78.033011, 39.264506], + [-78.033051, 39.264528], + [-78.033076, 39.264542], + [-78.033143, 39.26459], + [-78.033145, 39.264591], + [-78.033193, 39.26462], + [-78.033317, 39.264667], + [-78.036261, 39.266521], + [-78.036321, 39.266559], + [-78.038647, 39.268013], + [-78.038664, 39.268024], + [-78.0394, 39.268485], + [-78.040396, 39.269106], + [-78.040523, 39.269185], + [-78.040715, 39.269304], + [-78.040905, 39.269423], + [-78.041033, 39.269503], + [-78.043081, 39.270779], + [-78.049225, 39.27461], + [-78.050902, 39.275656], + [-78.051274, 39.275888], + [-78.0514, 39.275966], + [-78.054771, 39.278069], + [-78.057616, 39.279874], + [-78.059256, 39.28094], + [-78.061052, 39.282107], + [-78.06763, 39.28638], + [-78.067733, 39.286447], + [-78.067877, 39.28654], + [-78.067884, 39.286544], + [-78.069086, 39.287325], + [-78.069514, 39.287603], + [-78.074421, 39.290791], + [-78.078997, 39.293764], + [-78.079782, 39.294261], + [-78.079953, 39.294369], + [-78.079956, 39.294371], + [-78.080238, 39.294549], + [-78.081085, 39.295084], + [-78.081317, 39.295231], + [-78.081368, 39.295263], + [-78.081613, 39.295418], + [-78.082498, 39.295978], + [-78.093595, 39.303101], + [-78.094082, 39.303402], + [-78.10015, 39.307155], + [-78.100165, 39.307164], + [-78.100266, 39.307226], + [-78.103352, 39.309135], + [-78.10428, 39.309709], + [-78.1077, 39.31182], + [-78.10828, 39.312178], + [-78.108309, 39.312195], + [-78.108749, 39.312468], + [-78.113043, 39.315388], + [-78.117235, 39.318235], + [-78.123758, 39.322655], + [-78.123809, 39.322683], + [-78.123811, 39.322685], + [-78.124726, 39.323216], + [-78.135, 39.329918], + [-78.135926, 39.330524], + [-78.135939, 39.330526], + [-78.136371, 39.330805], + [-78.137667, 39.331644], + [-78.138099, 39.331924], + [-78.13848, 39.332171], + [-78.13884, 39.332404], + [-78.139624, 39.332912], + [-78.140006, 39.333159], + [-78.140923, 39.333753], + [-78.14135, 39.333991], + [-78.143173, 39.335008], + [-78.143785, 39.33535], + [-78.146082, 39.336632], + [-78.148123, 39.337771], + [-78.150697, 39.339336], + [-78.154172, 39.341284], + [-78.156104, 39.342368], + [-78.156965, 39.342792], + [-78.157018, 39.342818], + [-78.158196, 39.343399], + [-78.158714, 39.343775], + [-78.159246, 39.344162], + [-78.161374, 39.345714], + [-78.162602, 39.346609], + [-78.164446, 39.347953], + [-78.166289, 39.349296], + [-78.167518, 39.350192], + [-78.168248, 39.350723], + [-78.168281, 39.350747], + [-78.168814, 39.351136], + [-78.17057, 39.352415], + [-78.171334, 39.352972], + [-78.171343, 39.352979], + [-78.171373, 39.353], + [-78.171383, 39.353008], + [-78.171398, 39.353018], + [-78.171458, 39.353062], + [-78.171573, 39.353146], + [-78.171921, 39.353399], + [-78.172037, 39.353484], + [-78.176464, 39.356437], + [-78.181312, 39.359876], + [-78.184157, 39.361809], + [-78.184165, 39.361815], + [-78.186504, 39.363406], + [-78.187373, 39.363997], + [-78.188461, 39.364659], + [-78.192675, 39.367226], + [-78.194411, 39.368302], + [-78.196388, 39.369527], + [-78.196688, 39.369713], + [-78.197542, 39.370243], + [-78.197589, 39.370272], + [-78.197598, 39.370278], + [-78.197888, 39.370462], + [-78.201859, 39.372978], + [-78.205404, 39.375106], + [-78.206415, 39.375778], + [-78.206447, 39.375801], + [-78.208286, 39.377073], + [-78.213804, 39.38089], + [-78.215644, 39.382163], + [-78.216498, 39.382753], + [-78.219061, 39.384526], + [-78.219762, 39.385011], + [-78.219915, 39.385118], + [-78.219972, 39.385157], + [-78.220144, 39.385275], + [-78.220202, 39.385315], + [-78.220214, 39.385323], + [-78.220217, 39.385326], + [-78.228769, 39.391241], + [-78.233361, 39.394418], + [-78.236217, 39.396394], + [-78.237945, 39.397589], + [-78.239456, 39.398633], + [-78.244818, 39.402342], + [-78.244968, 39.402446], + [-78.244981, 39.402454], + [-78.245366, 39.402721], + [-78.24548, 39.402785], + [-78.24973, 39.405161], + [-78.25852, 39.411333], + [-78.26268, 39.414255], + [-78.262788, 39.414331], + [-78.262818, 39.414348], + [-78.271916, 39.419557], + [-78.271922, 39.419561], + [-78.27423, 39.420882], + [-78.274347, 39.420948], + [-78.274367, 39.42096], + [-78.286943, 39.428156], + [-78.287983, 39.428763], + [-78.289236, 39.429541], + [-78.289313, 39.429588], + [-78.292623, 39.431645], + [-78.299964, 39.436206], + [-78.300161, 39.436329], + [-78.300168, 39.436333], + [-78.303299, 39.438252], + [-78.303624, 39.438452], + [-78.306111, 39.439976], + [-78.307207, 39.440649], + [-78.307215, 39.440654], + [-78.307451, 39.440799], + [-78.307453, 39.4408], + [-78.30855, 39.441494], + [-78.312969, 39.444302], + [-78.312973, 39.444304], + [-78.315385, 39.445839], + [-78.319451, 39.448427], + [-78.322212, 39.450184], + [-78.322445, 39.450333], + [-78.330313, 39.45534], + [-78.337183, 39.459714], + [-78.338225, 39.460377], + [-78.339533, 39.46122], + [-78.339883, 39.461445], + [-78.34084, 39.462063], + [-78.343697, 39.463905], + [-78.344395, 39.464356], + [-78.344554, 39.46445], + [-78.344575, 39.464462], + [-78.345455, 39.464979], + [-78.345599, 39.465069], + [-78.347039, 39.465987], + [-78.34709, 39.46602], + [-78.347428, 39.465365], + [-78.347698, 39.464976], + [-78.347925, 39.464458], + [-78.348306, 39.463907], + [-78.348918, 39.463072], + [-78.349268, 39.462521], + [-78.349479, 39.462213], + [-78.34968, 39.461954], + [-78.349801, 39.461815], + [-78.349571, 39.461697], + [-78.349097, 39.461767], + [-78.34733, 39.460716], + [-78.34637, 39.460227], + [-78.345455, 39.459915], + [-78.345146, 39.459492], + [-78.345084, 39.458495], + [-78.345531, 39.456991], + [-78.345606, 39.45674], + [-78.345846, 39.455937], + [-78.345587, 39.454886], + [-78.345826, 39.453507], + [-78.346643, 39.4516], + [-78.346965, 39.450687], + [-78.347049, 39.450244], + [-78.347122, 39.449595], + [-78.347127, 39.449546], + [-78.347287, 39.448099], + [-78.347289, 39.448085], + [-78.347336, 39.447667], + [-78.346744, 39.446705], + [-78.346741, 39.4467], + [-78.346704, 39.446644], + [-78.346226, 39.445949], + [-78.346064, 39.445621], + [-78.346363, 39.44409], + [-78.346549, 39.442624], + [-78.347776, 39.440591], + [-78.350124, 39.438845], + [-78.351081, 39.438215], + [-78.35236, 39.437646], + [-78.353067, 39.437226], + [-78.353104, 39.437203], + [-78.35323, 39.4368], + [-78.35288, 39.436353], + [-78.352529, 39.435962], + [-78.351305, 39.4346], + [-78.350391, 39.433331], + [-78.349439, 39.432407], + [-78.349063, 39.432042], + [-78.347945, 39.430887], + [-78.347841, 39.429859], + [-78.347704, 39.428726], + [-78.347397, 39.428367], + [-78.347039, 39.428041], + [-78.346721, 39.427626], + [-78.347026, 39.426931], + [-78.34759, 39.426265], + [-78.347902, 39.425377], + [-78.348357, 39.424439], + [-78.349338, 39.423503], + [-78.350114, 39.42257], + [-78.350597, 39.421527], + [-78.351239, 39.420603], + [-78.352347, 39.41981], + [-78.353384, 39.419091], + [-78.355186, 39.417929], + [-78.356547, 39.417343], + [-78.356941, 39.416937], + [-78.357027, 39.416646], + [-78.356771, 39.416247], + [-78.35663, 39.41591], + [-78.356455, 39.415438], + [-78.357203, 39.414689], + [-78.358375, 39.41351], + [-78.359355, 39.412542], + [-78.359517, 39.411905], + [-78.359854, 39.410735], + [-78.359921, 39.409036], + [-78.358797, 39.405639], + [-78.357952, 39.4042], + [-78.357199, 39.403733], + [-78.356251, 39.403309], + [-78.355791, 39.402517], + [-78.35434, 39.401246], + [-78.35295, 39.40036], + [-78.352293, 39.399818], + [-78.35205, 39.399618], + [-78.35106, 39.398803], + [-78.350596, 39.398326], + [-78.349887, 39.397947], + [-78.349439, 39.39726], + [-78.349301, 39.396578], + [-78.349616, 39.393887], + [-78.350017, 39.392869], + [-78.350773, 39.392025], + [-78.351214, 39.391408], + [-78.350927, 39.390993], + [-78.350033, 39.390665], + [-78.347884, 39.390511], + [-78.346678, 39.390564], + [-78.345879, 39.390299], + [-78.345221, 39.389454], + [-78.344678, 39.389114], + [-78.343414, 39.388846], + [-78.343217, 39.388815], + [-78.344308, 39.387187], + [-78.345596, 39.385162], + [-78.346878, 39.383314], + [-78.348002, 39.381371], + [-78.350111, 39.379152], + [-78.351101, 39.377669], + [-78.351672, 39.376375], + [-78.3521, 39.375106], + [-78.353083, 39.374], + [-78.354555, 39.372057], + [-78.35484, 39.371624], + [-78.355365, 39.370993], + [-78.356296, 39.370235], + [-78.356656, 39.369506], + [-78.357715, 39.368395], + [-78.35837, 39.368142], + [-78.35879, 39.367622], + [-78.360548, 39.365214], + [-78.36165, 39.363911], + [-78.362635, 39.362896], + [-78.364048, 39.361538], + [-78.365676, 39.360407], + [-78.366472, 39.359625], + [-78.36687, 39.359298], + [-78.365539, 39.358895], + [-78.364538, 39.358557], + [-78.36433, 39.358483], + [-78.362545, 39.357884], + [-78.362431, 39.357846], + [-78.362407, 39.357842], + [-78.361441, 39.357689], + [-78.361052, 39.357631], + [-78.361021, 39.357626], + [-78.360537, 39.357545], + [-78.36, 39.357458], + [-78.359928, 39.357446], + [-78.359425, 39.357362], + [-78.359419, 39.357361], + [-78.358967, 39.357276], + [-78.357962, 39.357051], + [-78.357868, 39.357027], + [-78.357524, 39.356941], + [-78.356971, 39.356791], + [-78.356873, 39.356764], + [-78.355914, 39.356492], + [-78.35562, 39.356412], + [-78.35528, 39.356307], + [-78.354863, 39.35619], + [-78.354415, 39.356057], + [-78.353549, 39.35581], + [-78.353057, 39.355665], + [-78.352944, 39.355633], + [-78.351823, 39.355322], + [-78.351394, 39.35521], + [-78.350912, 39.3551], + [-78.350807, 39.355076], + [-78.350629, 39.355035], + [-78.349906, 39.354884], + [-78.349898, 39.354883], + [-78.349473, 39.354805], + [-78.349053, 39.35474], + [-78.34893, 39.354721], + [-78.34872, 39.354694], + [-78.348043, 39.354605], + [-78.346974, 39.354481], + [-78.346229, 39.354383], + [-78.344769, 39.354207], + [-78.343785, 39.354094], + [-78.342439, 39.35393], + [-78.342313, 39.353915], + [-78.341805, 39.353856], + [-78.341797, 39.353855], + [-78.341465, 39.353812], + [-78.341356, 39.353797], + [-78.341012, 39.353748], + [-78.340673, 39.353689], + [-78.340418, 39.353636], + [-78.340629, 39.353174], + [-78.340875, 39.352532], + [-78.340713, 39.352241], + [-78.340022, 39.352019], + [-78.339526, 39.351936], + [-78.339154, 39.351957], + [-78.339053, 39.351731], + [-78.33953, 39.35081], + [-78.339163, 39.350308], + [-78.338961, 39.349897], + [-78.339287, 39.348613], + [-78.340195, 39.347155], + [-78.340665, 39.346484], + [-78.341037, 39.345955], + [-78.341311, 39.345563], + [-78.341549, 39.345548], + [-78.341731, 39.345895], + [-78.341886, 39.34613], + [-78.342189, 39.34659], + [-78.342517, 39.346777], + [-78.343117, 39.346838], + [-78.343285, 39.346803], + [-78.343688, 39.346721], + [-78.344542, 39.346285], + [-78.345159, 39.345742], + [-78.346167, 39.344828], + [-78.34678, 39.344274], + [-78.347412, 39.34341], + [-78.347637, 39.342728], + [-78.34693, 39.342176], + [-78.346116, 39.341808], + [-78.345644, 39.341532], + [-78.345577, 39.341236], + [-78.345549, 39.341117], + [-78.345463, 39.341032], + [-78.346304, 39.339116], + [-78.346936, 39.33818], + [-78.347743, 39.337357], + [-78.348246, 39.336841], + [-78.348329, 39.336758], + [-78.348758, 39.336129], + [-78.348961, 39.33583], + [-78.349515, 39.335343], + [-78.350175, 39.33468], + [-78.35015, 39.334157], + [-78.350515, 39.333098], + [-78.351535, 39.331714], + [-78.351711, 39.331471], + [-78.35172, 39.331458], + [-78.352324, 39.330626], + [-78.352742, 39.330235], + [-78.353089, 39.329754], + [-78.353481, 39.329033], + [-78.353853, 39.328216], + [-78.353918, 39.327927], + [-78.354989, 39.327532], + [-78.355435, 39.327414], + [-78.355472, 39.327381], + [-78.355717, 39.327183], + [-78.355712, 39.327152], + [-78.355667, 39.326881], + [-78.35556, 39.326426], + [-78.355565, 39.326249], + [-78.355566, 39.326212], + [-78.355579, 39.325734], + [-78.355808, 39.325195], + [-78.35643, 39.32373], + [-78.356912, 39.322992], + [-78.357115, 39.322681], + [-78.357181, 39.322556], + [-78.357803, 39.321391], + [-78.358396, 39.320197], + [-78.358943, 39.319492], + [-78.359075, 39.319364], + [-78.3592, 39.319243], + [-78.359249, 39.319195], + [-78.359288, 39.319157], + [-78.359304, 39.319137], + [-78.359407, 39.31901], + [-78.359865, 39.318446], + [-78.359914, 39.318303], + [-78.359983, 39.318101], + [-78.360038, 39.317779], + [-78.360252, 39.317555], + [-78.360574, 39.317605], + [-78.361925, 39.31825], + [-78.361959, 39.318275], + [-78.362867, 39.318965], + [-78.363424, 39.319089], + [-78.364077, 39.318828], + [-78.36418, 39.318674], + [-78.364351, 39.318451], + [-78.36439, 39.318398], + [-78.364657, 39.317988], + [-78.364743, 39.317715], + [-78.364687, 39.31732], + [-78.364402, 39.316973], + [-78.364064, 39.316689], + [-78.363874, 39.316261], + [-78.363965, 39.315635], + [-78.364206, 39.315226], + [-78.364353, 39.315132], + [-78.365082, 39.314663], + [-78.365457, 39.314422], + [-78.365845, 39.313991], + [-78.366231, 39.312795], + [-78.366571, 39.312128], + [-78.366718, 39.311841], + [-78.366874, 39.310909], + [-78.367245, 39.310156], + [-78.367894, 39.309493], + [-78.369608, 39.308805], + [-78.370544, 39.308409], + [-78.371607, 39.3077], + [-78.374731, 39.305144], + [-78.375948, 39.303839], + [-78.376719, 39.302934], + [-78.377884, 39.30187], + [-78.37848, 39.300996], + [-78.378971, 39.30021], + [-78.379991, 39.299267], + [-78.380874, 39.298539], + [-78.380905, 39.29852], + [-78.380987, 39.298467], + [-78.382199, 39.297733], + [-78.383798, 39.296583], + [-78.385055, 39.295672], + [-78.385887, 39.294896], + [-78.386398, 39.294263], + [-78.386908, 39.293767], + [-78.387241, 39.293438], + [-78.387249, 39.293359], + [-78.387257, 39.293314], + [-78.387279, 39.293093], + [-78.38721, 39.292554], + [-78.387152, 39.292014], + [-78.387197, 39.291452], + [-78.387606, 39.290722], + [-78.388085, 39.290137], + [-78.388376, 39.289691], + [-78.388503, 39.289496], + [-78.388661, 39.289062], + [-78.388726, 39.288815], + [-78.388788, 39.28858], + [-78.389102, 39.288123], + [-78.389612, 39.287482], + [-78.389987, 39.28705], + [-78.390322, 39.286645], + [-78.390571, 39.286345], + [-78.390936, 39.285912], + [-78.391321, 39.285488], + [-78.391757, 39.285168], + [-78.392061, 39.285047], + [-78.392109, 39.285028], + [-78.39226, 39.284968], + [-78.392262, 39.284967], + [-78.392305, 39.284922], + [-78.392409, 39.284796], + [-78.392536, 39.284641], + [-78.392839, 39.284047], + [-78.392891, 39.283923], + [-78.392961, 39.283758], + [-78.393102, 39.283421], + [-78.393374, 39.282996], + [-78.393706, 39.282796], + [-78.394555, 39.282446], + [-78.395166, 39.282329], + [-78.395214, 39.282324], + [-78.395811, 39.282266], + [-78.395951, 39.282252], + [-78.396562, 39.282086], + [-78.397029, 39.281758], + [-78.397133, 39.281563], + [-78.397364, 39.281132], + [-78.397542, 39.280836], + [-78.397688, 39.280643], + [-78.397772, 39.280614], + [-78.397899, 39.28057], + [-78.397916, 39.280567], + [-78.39806, 39.280645], + [-78.398336, 39.281097], + [-78.398685, 39.28134], + [-78.399231, 39.281527], + [-78.399894, 39.281353], + [-78.400549, 39.28093], + [-78.401558, 39.279945], + [-78.402889, 39.278632], + [-78.40316, 39.278296], + [-78.403244, 39.278055], + [-78.402999, 39.277595], + [-78.402705, 39.277464], + [-78.402278, 39.277246], + [-78.402051, 39.277117], + [-78.401897, 39.277003], + [-78.401816, 39.276762], + [-78.402181, 39.276273], + [-78.402786, 39.275479], + [-78.403712, 39.274687], + [-78.404929, 39.273462], + [-78.406563, 39.271644], + [-78.407468, 39.270764], + [-78.407831, 39.270508], + [-78.407826, 39.270462], + [-78.407812, 39.270328], + [-78.407802, 39.27022], + [-78.40824, 39.269553], + [-78.408893, 39.269194], + [-78.409288, 39.268834], + [-78.409715, 39.268417], + [-78.409978, 39.267719], + [-78.410341, 39.267423], + [-78.41115, 39.267], + [-78.411504, 39.266503], + [-78.412191, 39.265774], + [-78.412886, 39.265295], + [-78.414207, 39.263918], + [-78.414564, 39.263132], + [-78.415031, 39.262512], + [-78.415811, 39.261971], + [-78.416456, 39.261377], + [-78.41648, 39.261358], + [-78.416498, 39.261344], + [-78.417016, 39.260875], + [-78.417299, 39.260481], + [-78.417798, 39.259785], + [-78.418166, 39.258894], + [-78.418416, 39.258509], + [-78.418977, 39.258029], + [-78.419425, 39.257484], + [-78.419169, 39.257032], + [-78.418677, 39.256459], + [-78.418658, 39.256381], + [-78.418587, 39.256073], + [-78.418092, 39.255982], + [-78.417597, 39.255907], + [-78.416753, 39.255509], + [-78.416123, 39.255418], + [-78.41563, 39.255601], + [-78.41559, 39.255616], + [-78.41544, 39.255673], + [-78.414634, 39.255741], + [-78.413151, 39.254922], + [-78.412504, 39.254485], + [-78.412176, 39.254025], + [-78.411661, 39.253927], + [-78.410785, 39.253617], + [-78.410035, 39.253002], + [-78.409593, 39.252759], + [-78.409119, 39.252572], + [-78.407663, 39.251126], + [-78.407231, 39.250786], + [-78.40682, 39.250583], + [-78.406399, 39.25011], + [-78.40571, 39.249064], + [-78.40496, 39.248434], + [-78.404323, 39.247901], + [-78.403923, 39.247651], + [-78.403462, 39.246845], + [-78.403011, 39.246425], + [-78.402438, 39.246024], + [-78.401716, 39.245601], + [-78.401222, 39.245399], + [-78.400555, 39.244761], + [-78.399856, 39.244285], + [-78.399846, 39.244262], + [-78.399788, 39.244137], + [-78.399672, 39.243882], + [-78.400819, 39.243113], + [-78.40211, 39.24244], + [-78.40335, 39.241751], + [-78.404217, 39.241222], + [-78.404623, 39.240258], + [-78.404516, 39.239539], + [-78.404509, 39.239488], + [-78.404503, 39.239445], + [-78.404556, 39.239083], + [-78.404615, 39.238881], + [-78.404644, 39.238785], + [-78.404671, 39.238697], + [-78.404868, 39.238359], + [-78.404983, 39.238014], + [-78.404985, 39.237619], + [-78.404811, 39.2372], + [-78.404515, 39.236661], + [-78.404348, 39.236103], + [-78.404332, 39.236049], + [-78.404228, 39.23584], + [-78.404251, 39.235718], + [-78.404242, 39.235413], + [-78.404572, 39.235156], + [-78.405079, 39.234642], + [-78.405258, 39.234317], + [-78.40533, 39.234186], + [-78.405764, 39.233437], + [-78.405909, 39.23317], + [-78.406034, 39.232939], + [-78.406076, 39.232714], + [-78.406118, 39.232513], + [-78.405728, 39.232318], + [-78.405462, 39.231706], + [-78.405588, 39.231184], + [-78.405602, 39.231171], + [-78.40594, 39.230855], + [-78.406704, 39.230438], + [-78.406982, 39.230399], + [-78.407117, 39.230343], + [-78.407354, 39.230158], + [-78.407769, 39.229395], + [-78.408246, 39.228631], + [-78.408681, 39.228182], + [-78.409106, 39.227475], + [-78.409871, 39.226897], + [-78.41046, 39.226513], + [-78.410594, 39.226336], + [-78.410575, 39.226022], + [-78.410648, 39.225877], + [-78.411485, 39.225067], + [-78.412117, 39.224345], + [-78.413049, 39.22314], + [-78.414424, 39.221832], + [-78.415282, 39.221126], + [-78.415644, 39.220717], + [-78.41579, 39.220186], + [-78.416683, 39.219049], + [-78.417243, 39.218337], + [-78.417893, 39.217512], + [-78.420551, 39.214806], + [-78.420934, 39.214642], + [-78.420943, 39.214638], + [-78.42109, 39.214489], + [-78.421326, 39.214245], + [-78.422164, 39.213281], + [-78.423021, 39.212583], + [-78.423765, 39.21211], + [-78.423971, 39.212057], + [-78.424462, 39.211811], + [-78.424487, 39.211789], + [-78.424532, 39.211749], + [-78.424609, 39.211681], + [-78.425385, 39.210993], + [-78.425981, 39.21045], + [-78.426476, 39.210008], + [-78.426607, 39.209892], + [-78.426745, 39.209769], + [-78.427451, 39.209154], + [-78.427813, 39.208833], + [-78.427879, 39.208772], + [-78.427898, 39.208684], + [-78.428044, 39.208], + [-78.428737, 39.207382], + [-78.429479, 39.207111], + [-78.429862, 39.207008], + [-78.429899, 39.206998], + [-78.430366, 39.206871], + [-78.430821, 39.206397], + [-78.431173, 39.205915], + [-78.431171, 39.205808], + [-78.431712, 39.205307], + [-78.432191, 39.204836], + [-78.432207, 39.204805], + [-78.432798, 39.203658], + [-78.433296, 39.202629], + [-78.43403, 39.202084], + [-78.435683, 39.200534], + [-78.436509, 39.200013], + [-78.437057, 39.199774], + [-78.437103, 39.199751], + [-78.437176, 39.199715], + [-78.437195, 39.199695], + [-78.437226, 39.199662], + [-78.437609, 39.199255], + [-78.437721, 39.199137], + [-78.438239, 39.198594], + [-78.438698, 39.198101], + [-78.438237, 39.197643], + [-78.438221, 39.197626], + [-78.438001, 39.197391], + [-78.437632, 39.196998], + [-78.436665, 39.196666], + [-78.435213, 39.196687], + [-78.434245, 39.196685], + [-78.433782, 39.196668], + [-78.433052, 39.196272], + [-78.432882, 39.19616], + [-78.43282, 39.196133], + [-78.43267, 39.196067], + [-78.432483, 39.195985], + [-78.432364, 39.195933], + [-78.431833, 39.196097], + [-78.431813, 39.196103], + [-78.431663, 39.196149], + [-78.431271, 39.196293], + [-78.430849, 39.196235], + [-78.43043, 39.195381], + [-78.430094, 39.194375], + [-78.429623, 39.193585], + [-78.429172, 39.193037], + [-78.428679, 39.192641], + [-78.4271, 39.193636], + [-78.42644, 39.194093], + [-78.426027, 39.194148], + [-78.424908, 39.193309], + [-78.424334, 39.192663], + [-78.424295, 39.192164], + [-78.425867, 39.190285], + [-78.427201, 39.1888], + [-78.427424, 39.188593], + [-78.428462, 39.187628], + [-78.42862, 39.187361], + [-78.4287, 39.187225], + [-78.428686, 39.187217], + [-78.428392, 39.187055], + [-78.428115, 39.186725], + [-78.428021, 39.186467], + [-78.42799, 39.186382], + [-78.42786, 39.186113], + [-78.427708, 39.185983], + [-78.427604, 39.185893], + [-78.427388, 39.185782], + [-78.427151, 39.185733], + [-78.426935, 39.185571], + [-78.426783, 39.184975], + [-78.426929, 39.184485], + [-78.427044, 39.184187], + [-78.426901, 39.183737], + [-78.426635, 39.183269], + [-78.426513, 39.183011], + [-78.426318, 39.18277], + [-78.426092, 39.182713], + [-78.425732, 39.182712], + [-78.425723, 39.182712], + [-78.425453, 39.182711], + [-78.424948, 39.182863], + [-78.424403, 39.182741], + [-78.424314, 39.182689], + [-78.423992, 39.182499], + [-78.423644, 39.182039], + [-78.423619, 39.181845], + [-78.423614, 39.181809], + [-78.423574, 39.181509], + [-78.423328, 39.181355], + [-78.422948, 39.181057], + [-78.422856, 39.180969], + [-78.422106, 39.180254], + [-78.421724, 39.179889], + [-78.421645, 39.179814], + [-78.42102, 39.179153], + [-78.42064, 39.178935], + [-78.419993, 39.178426], + [-78.419541, 39.178071], + [-78.419152, 39.17774], + [-78.419152, 39.177587], + [-78.418947, 39.177362], + [-78.418535, 39.177377], + [-78.416907, 39.177622], + [-78.415918, 39.177724], + [-78.414847, 39.177843], + [-78.414421, 39.176329], + [-78.414192, 39.175909], + [-78.413889, 39.175354], + [-78.413728, 39.174428], + [-78.413134, 39.173646], + [-78.411975, 39.172742], + [-78.410743, 39.171991], + [-78.409991, 39.172005], + [-78.409209, 39.171818], + [-78.408109, 39.171469], + [-78.406969, 39.170911], + [-78.406283, 39.170096], + [-78.405772, 39.169234], + [-78.405249, 39.168637], + [-78.40449, 39.16812], + [-78.40391, 39.167746], + [-78.4037, 39.167459], + [-78.403999, 39.167363], + [-78.404845, 39.166866], + [-78.405734, 39.165959], + [-78.406767, 39.164899], + [-78.407232, 39.164386], + [-78.40779, 39.164057], + [-78.408625, 39.163536], + [-78.40909, 39.163143], + [-78.409359, 39.162838], + [-78.409701, 39.162179], + [-78.410672, 39.161393], + [-78.41159, 39.160767], + [-78.412323, 39.160206], + [-78.412602, 39.160046], + [-78.412954, 39.159451], + [-78.413172, 39.158937], + [-78.413946, 39.158423], + [-78.416852, 39.157626], + [-78.417533, 39.157338], + [-78.417915, 39.157001], + [-78.41838, 39.156664], + [-78.419977, 39.156048], + [-78.420421, 39.1558], + [-78.421668, 39.155296], + [-78.424564, 39.154104], + [-78.427297, 39.152734], + [-78.428753, 39.151321], + [-78.430078, 39.149208], + [-78.431432, 39.147537], + [-78.432146, 39.146686], + [-78.432281, 39.146324], + [-78.432664, 39.145754], + [-78.433396, 39.145313], + [-78.434098, 39.144703], + [-78.43446, 39.144188], + [-78.434566, 39.143368], + [-78.434814, 39.143055], + [-78.436661, 39.141699], + [-78.436873, 39.139881], + [-78.437218, 39.13841], + [-78.437735, 39.136838], + [-78.437769, 39.136737], + [-78.437774, 39.135434], + [-78.438189, 39.134421], + [-78.438925, 39.133006], + [-78.439432, 39.132154], + [-78.44039, 39.131617], + [-78.441134, 39.130718], + [-78.441951, 39.129585], + [-78.443055, 39.128614], + [-78.444263, 39.127618], + [-78.445542, 39.126647], + [-78.446563, 39.125772], + [-78.447182, 39.125113], + [-78.448299, 39.124059], + [-78.449823, 39.122921], + [-78.451008, 39.12181], + [-78.452224, 39.120723], + [-78.453805, 39.120012], + [-78.45479, 39.118451], + [-78.456127, 39.117169], + [-78.457333, 39.116171], + [-78.457954, 39.115289], + [-78.459314, 39.114281], + [-78.459872, 39.113359], + [-78.460748, 39.113354], + [-78.463816, 39.113294], + [-78.465564, 39.112977], + [-78.466665, 39.112866], + [-78.468048, 39.112043], + [-78.469533, 39.111212], + [-78.470152, 39.110246], + [-78.470264, 39.110071], + [-78.47137, 39.109323], + [-78.471622, 39.109163], + [-78.473212, 39.108151], + [-78.473757, 39.107966], + [-78.474588, 39.107683], + [-78.475106, 39.107548], + [-78.475379, 39.107477], + [-78.476061, 39.107762], + [-78.476585, 39.108637], + [-78.477323, 39.109406], + [-78.477542, 39.109496], + [-78.477799, 39.109599], + [-78.477835, 39.109613], + [-78.478429, 39.109851], + [-78.4796, 39.109513], + [-78.482544, 39.108213], + [-78.484286, 39.10738], + [-78.486795, 39.105857], + [-78.489763, 39.103864], + [-78.493737, 39.101598], + [-78.494812, 39.101147], + [-78.495163, 39.101], + [-78.495174, 39.10098], + [-78.495622, 39.100133], + [-78.495987, 39.098988], + [-78.497358, 39.098045], + [-78.498715, 39.096803], + [-78.499734, 39.095941], + [-78.500666, 39.095295], + [-78.500866, 39.095156], + [-78.501731, 39.094557], + [-78.503281, 39.092981], + [-78.504387, 39.091406], + [-78.505198, 39.090808], + [-78.507036, 39.089424], + [-78.508135, 39.088638], + [-78.50915, 39.08737], + [-78.509374, 39.086765], + [-78.510123, 39.086174], + [-78.510325, 39.085558], + [-78.510488, 39.08541], + [-78.510527, 39.085375], + [-78.510706, 39.085213], + [-78.512106, 39.084886], + [-78.5134, 39.084028], + [-78.514478, 39.083033], + [-78.515556, 39.082312], + [-78.516482, 39.08181], + [-78.516427, 39.081036], + [-78.515958, 39.080054], + [-78.516318, 39.079618], + [-78.516345, 39.078828], + [-78.516792, 39.077577], + [-78.517449, 39.076914], + [-78.518115, 39.07613], + [-78.520035, 39.074738], + [-78.520856, 39.074115], + [-78.521564, 39.07346], + [-78.522247, 39.071862], + [-78.522717, 39.07107], + [-78.524276, 39.069719], + [-78.526546, 39.068229], + [-78.529128, 39.067567], + [-78.531698, 39.066527], + [-78.532233, 39.066058], + [-78.532919, 39.065459], + [-78.534583, 39.064414], + [-78.535111, 39.062913], + [-78.53656, 39.062207], + [-78.537536, 39.061704], + [-78.540219, 39.060639], + [-78.541406, 39.059127], + [-78.542872, 39.057631], + [-78.544093, 39.05666], + [-78.545682, 39.05506], + [-78.547737, 39.054077], + [-78.54831, 39.053293], + [-78.5495, 39.052507], + [-78.5503, 39.051763], + [-78.550758, 39.050794], + [-78.55167, 39.049824], + [-78.552744, 39.048498], + [-78.554266, 39.048066], + [-78.554786, 39.046943], + [-78.555965, 39.045932], + [-78.556751, 39.044535], + [-78.558452, 39.042989], + [-78.56, 39.041581], + [-78.561612, 39.04085], + [-78.562646, 39.039694], + [-78.564607, 39.038566], + [-78.565361, 39.03708], + [-78.56804, 39.035451], + [-78.568929, 39.03419], + [-78.570581, 39.032967], + [-78.571904, 39.032003], + [-78.571065, 39.030958], + [-78.569049, 39.029483], + [-78.567972, 39.028503], + [-78.566564, 39.027026], + [-78.56584, 39.026311], + [-78.565076, 39.025943], + [-78.5641, 39.026285], + [-78.563297, 39.026336], + [-78.562522, 39.025743], + [-78.562088, 39.02539], + [-78.560448, 39.024719], + [-78.559643, 39.024464], + [-78.558951, 39.024015], + [-78.558317, 39.02272], + [-78.558169, 39.022043], + [-78.557383, 39.021401], + [-78.554225, 39.01968], + [-78.55246, 39.018784], + [-78.55047, 39.018073], + [-78.552324, 39.016382], + [-78.554922, 39.015132], + [-78.556388, 39.01408], + [-78.55765, 39.013197], + [-78.559403, 39.011885], + [-78.561714, 39.009015], + [-78.562631, 39.007206], + [-78.568334, 39.003454], + [-78.569032, 39.002959], + [-78.569666, 39.002248], + [-78.570465, 39.00156], + [-78.571651, 39.000116], + [-78.572421, 38.999453], + [-78.573391, 38.998485], + [-78.575041, 38.996542], + [-78.57792, 38.993011], + [-78.580468, 38.990575], + [-78.581984, 38.988406], + [-78.582931, 38.985424], + [-78.585975, 38.982867], + [-78.587656, 38.980722], + [-78.587324, 38.979755], + [-78.588707, 38.978587], + [-78.588932, 38.976966], + [-78.59083, 38.975547], + [-78.591914, 38.97395], + [-78.593264, 38.971926], + [-78.596018, 38.9702], + [-78.598897, 38.969554], + [-78.599183, 38.969239], + [-78.600144, 38.968183], + [-78.601402, 38.966538], + [-78.601658, 38.964611], + [-78.607721, 38.969203], + [-78.608372, 38.969751], + [-78.609652, 38.969903], + [-78.610128, 38.970408], + [-78.6102, 38.970484], + [-78.610305, 38.971943], + [-78.610379, 38.973587], + [-78.610577, 38.975111], + [-78.611187, 38.976142], + [-78.612591, 38.976295], + [-78.614315, 38.975858], + [-78.617361, 38.974615], + [-78.618679, 38.97409], + [-78.618752, 38.975074], + [-78.619342, 38.976122], + [-78.619502, 38.97649], + [-78.619985, 38.977346], + [-78.620121, 38.978878], + [-78.620194, 38.979837], + [-78.619917, 38.981296], + [-78.620456, 38.982609], + [-78.621148, 38.982512], + [-78.621787, 38.982391], + [-78.62347, 38.982599], + [-78.624739, 38.982653], + [-78.625675, 38.982583], + [-78.627801, 38.981798], + [-78.629556, 38.980874], + [-78.630849, 38.979594], + [-78.63171, 38.97835], + [-78.631843, 38.97816], + [-78.632455, 38.976991], + [-78.632474, 38.974747], + [-78.633903, 38.972725], + [-78.635374, 38.97042], + [-78.636854, 38.968519], + [-78.638426, 38.966827], + [-78.640136, 38.967017], + [-78.641998, 38.967692], + [-78.644675, 38.968061], + [-78.646592, 38.968146], + [-78.648268, 38.966052], + [-78.648261, 38.965164], + [-78.649338, 38.963608], + [-78.651002, 38.961998], + [-78.652355, 38.960685], + [-78.65247, 38.960387], + [-78.653053, 38.958548], + [-78.653966, 38.956565], + [-78.655046, 38.953774], + [-78.657466, 38.950906], + [-78.658141, 38.949156], + [-78.659053, 38.947383], + [-78.660373, 38.946974], + [-78.662086, 38.94571], + [-78.664277, 38.943237], + [-78.665889, 38.941587], + [-78.666597, 38.939208], + [-78.66826, 38.937403], + [-78.669844, 38.935042], + [-78.670682, 38.933808], + [-78.672498, 38.932553], + [-78.674275, 38.9307], + [-78.676256, 38.929235], + [-78.677452, 38.927916], + [-78.67763, 38.927721], + [-78.679384, 38.926578], + [-78.679977, 38.925885], + [-78.680459, 38.925321], + [-78.680953, 38.925241], + [-78.68162, 38.925848], + [-78.684907, 38.925129], + [-78.685968, 38.925002], + [-78.687275, 38.925069], + [-78.688269, 38.924788], + [-78.688398, 38.924678], + [-78.689037, 38.924136], + [-78.689116, 38.924068], + [-78.689551, 38.92372], + [-78.689599, 38.923682], + [-78.689611, 38.923673], + [-78.689617, 38.923668], + [-78.689628, 38.923659], + [-78.691453, 38.922203], + [-78.691898, 38.921421], + [-78.692717, 38.919598], + [-78.694491, 38.918456], + [-78.695558, 38.917618], + [-78.696138, 38.917177], + [-78.696405, 38.916781], + [-78.696487, 38.916563], + [-78.696734, 38.916264], + [-78.697115, 38.915933], + [-78.697383, 38.91561], + [-78.697495, 38.915303], + [-78.697453, 38.915061], + [-78.697421, 38.914827], + [-78.697327, 38.914569], + [-78.697327, 38.91448], + [-78.69744, 38.914367], + [-78.697626, 38.914286], + [-78.69776, 38.91431], + [-78.697874, 38.914374], + [-78.698144, 38.914544], + [-78.698485, 38.914697], + [-78.698827, 38.914817], + [-78.699302, 38.914938], + [-78.699685, 38.915067], + [-78.700192, 38.915098], + [-78.70076, 38.915122], + [-78.701226, 38.915258], + [-78.701619, 38.915411], + [-78.701888, 38.915572], + [-78.70224, 38.915629], + [-78.702715, 38.915604], + [-78.703211, 38.915547], + [-78.703758, 38.915449], + [-78.704326, 38.915239], + [-78.704584, 38.915045], + [-78.704903, 38.91477], + [-78.705253, 38.914487], + [-78.705437, 38.914289], + [-78.707478, 38.912733], + [-78.708944, 38.911072], + [-78.712625, 38.908673], + [-78.714972, 38.906436], + [-78.714981, 38.906427], + [-78.715107, 38.906311], + [-78.71543, 38.905816], + [-78.715646, 38.905501], + [-78.715872, 38.90521], + [-78.716171, 38.904838], + [-78.716397, 38.904652], + [-78.716634, 38.904483], + [-78.717181, 38.904304], + [-78.717553, 38.90428], + [-78.717947, 38.904303], + [-78.71833, 38.904416], + [-78.71865, 38.904569], + [-78.71891, 38.904819], + [-78.719294, 38.905238], + [-78.719574, 38.905601], + [-78.719813, 38.905915], + [-78.719917, 38.906084], + [-78.719925, 38.906405], + [-78.719923, 38.906411], + [-78.719917, 38.90643], + [-78.719863, 38.906609], + [-78.719858, 38.906861], + [-78.719858, 38.906925], + [-78.719856, 38.907077], + [-78.71985, 38.907532], + [-78.71985, 38.907553], + [-78.719898, 38.908004], + [-78.719899, 38.908013], + [-78.7199, 38.908018], + [-78.719904, 38.90806], + [-78.720175, 38.908457], + [-78.720261, 38.908534], + [-78.72029, 38.90856], + [-78.72039, 38.908649], + [-78.720444, 38.908682], + [-78.72046, 38.908692], + [-78.720491, 38.908711], + [-78.7205, 38.908716], + [-78.720508, 38.908721], + [-78.720536, 38.908738], + [-78.720703, 38.908997], + [-78.72083, 38.909449], + [-78.720893, 38.909797], + [-78.720895, 38.909808], + [-78.720896, 38.909814], + [-78.720903, 38.909853], + [-78.720904, 38.909858], + [-78.720908, 38.909898], + [-78.720908, 38.909905], + [-78.720909, 38.909915], + [-78.720911, 38.909934], + [-78.720934, 38.910168], + [-78.720802, 38.910448], + [-78.720493, 38.910869], + [-78.720474, 38.911264], + [-78.720474, 38.911269], + [-78.720475, 38.911274], + [-78.720573, 38.91213], + [-78.720574, 38.912142], + [-78.720575, 38.912149], + [-78.720576, 38.912154], + [-78.720577, 38.912163], + [-78.720578, 38.912175], + [-78.720579, 38.912185], + [-78.720649, 38.912308], + [-78.720664, 38.912333], + [-78.720667, 38.912339], + [-78.72067, 38.912344], + [-78.72068, 38.912361], + [-78.720686, 38.912371], + [-78.720757, 38.912527], + [-78.720801, 38.912778], + [-78.720802, 38.913093], + [-78.720802, 38.913227], + [-78.720835, 38.913641], + [-78.720774, 38.913982], + [-78.720734, 38.914174], + [-78.720683, 38.914297], + [-78.72057, 38.914361], + [-78.720469, 38.914387], + [-78.720457, 38.91439], + [-78.720447, 38.914392], + [-78.720423, 38.914397], + [-78.719847, 38.914822], + [-78.719351, 38.915757], + [-78.71981, 38.916433], + [-78.719826, 38.916456], + [-78.720152, 38.916936], + [-78.719454, 38.920268], + [-78.719338, 38.920665], + [-78.719312, 38.920737], + [-78.719291, 38.920797], + [-78.719291, 38.920894], + [-78.719351, 38.920981], + [-78.719374, 38.921015], + [-78.719509, 38.921208], + [-78.719594, 38.921725], + [-78.719667, 38.922023], + [-78.719758, 38.922143], + [-78.719809, 38.922647], + [-78.719853, 38.923002], + [-78.719862, 38.923073], + [-78.719866, 38.923103], + [-78.719879, 38.923209], + [-78.720076, 38.923499], + [-78.720098, 38.923871], + [-78.719987, 38.924452], + [-78.719843, 38.924767], + [-78.719576, 38.925171], + [-78.719713, 38.925703], + [-78.719623, 38.926518], + [-78.719388, 38.927366], + [-78.719185, 38.928125], + [-78.718991, 38.928827], + [-78.718693, 38.929384], + [-78.718355, 38.930232], + [-78.718162, 38.930999], + [-78.717908, 38.932218], + [-78.717512, 38.934066], + [-78.71726, 38.935366], + [-78.717079, 38.936036], + [-78.717394, 38.935673], + [-78.718486, 38.934274], + [-78.719187, 38.933886], + [-78.719789, 38.933324], + [-78.721055, 38.932226], + [-78.721874, 38.931689], + [-78.722445, 38.931416], + [-78.723587, 38.93112], + [-78.724097, 38.931105], + [-78.724537, 38.931001], + [-78.724924, 38.930974], + [-78.725713, 38.930981], + [-78.726225, 38.93094], + [-78.726705, 38.930747], + [-78.727289, 38.930624], + [-78.729159, 38.93001], + [-78.729878, 38.929837], + [-78.730718, 38.929667], + [-78.731483, 38.929545], + [-78.732151, 38.929384], + [-78.732587, 38.929169], + [-78.733224, 38.928883], + [-78.734183, 38.928513], + [-78.735089, 38.928159], + [-78.735846, 38.927951], + [-78.736537, 38.927651], + [-78.736974, 38.927528], + [-78.737414, 38.927489], + [-78.737882, 38.927446], + [-78.738271, 38.927406], + [-78.738574, 38.927405], + [-78.738637, 38.927385], + [-78.738683, 38.92737], + [-78.738766, 38.927343], + [-78.738923, 38.927293], + [-78.73915, 38.927142], + [-78.740254, 38.926222], + [-78.741129, 38.925397], + [-78.742118, 38.924524], + [-78.742776, 38.923708], + [-78.743135, 38.923136], + [-78.743383, 38.922966], + [-78.743671, 38.922594], + [-78.744206, 38.92202], + [-78.744658, 38.921503], + [-78.744946, 38.92114], + [-78.744966, 38.921083], + [-78.744894, 38.920973], + [-78.744699, 38.920821], + [-78.744548, 38.920666], + [-78.744457, 38.920454], + [-78.744436, 38.920236], + [-78.744507, 38.920067], + [-78.744662, 38.919946], + [-78.744992, 38.919784], + [-78.745312, 38.919614], + [-78.745611, 38.919468], + [-78.746013, 38.919225], + [-78.746581, 38.918829], + [-78.747044, 38.918489], + [-78.747507, 38.918021], + [-78.748115, 38.917519], + [-78.748805, 38.917074], + [-78.749228, 38.916799], + [-78.749745, 38.916455], + [-78.75052, 38.916036], + [-78.751159, 38.914698], + [-78.750893, 38.913078], + [-78.75036, 38.911683], + [-78.752088, 38.910877], + [-78.753693, 38.909572], + [-78.754661, 38.907589], + [-78.754519, 38.905736], + [-78.756237, 38.904092], + [-78.757281, 38.903211], + [-78.757595, 38.902947], + [-78.758429, 38.901255], + [-78.759088, 38.900537], + [-78.760353, 38.900054], + [-78.761771, 38.899643], + [-78.764312, 38.898167], + [-78.767428, 38.897128], + [-78.769361, 38.897072], + [-78.770728, 38.896112], + [-78.772796, 38.89375], + [-78.776302, 38.89304], + [-78.779201, 38.892306], + [-78.784198, 38.88863], + [-78.786028, 38.887195], + [-78.788034, 38.885131], + [-78.789309, 38.882511], + [-78.790081, 38.880084], + [-78.791068, 38.879036], + [-78.791613, 38.877601], + [-78.79299, 38.876908], + [-78.794224, 38.87644], + [-78.795139, 38.876004], + [-78.796333, 38.875119], + [-78.796216, 38.874614], + [-78.79666, 38.873654], + [-78.797404, 38.872634], + [-78.798086, 38.871598], + [-78.798819, 38.87061], + [-78.799695, 38.869222], + [-78.800484, 38.868018], + [-78.801242, 38.866797], + [-78.801713, 38.866007], + [-78.801848, 38.865723], + [-78.802275, 38.864832], + [-78.802521, 38.864441], + [-78.802871, 38.863979], + [-78.803158, 38.863589], + [-78.803559, 38.863128], + [-78.80392, 38.862594], + [-78.804422, 38.861796], + [-78.804774, 38.861254], + [-78.804891, 38.86062], + [-78.805059, 38.860035], + [-78.805049, 38.859746], + [-78.805048, 38.85972], + [-78.805046, 38.859664], + [-78.8051, 38.859134], + [-78.805162, 38.858628], + [-78.805367, 38.858236], + [-78.805757, 38.857839], + [-78.806028, 38.857215], + [-78.806228, 38.857009], + [-78.806611, 38.856926], + [-78.80726, 38.856959], + [-78.807572, 38.856794], + [-78.808183, 38.856183], + [-78.808697, 38.855329], + [-78.808945, 38.854818], + [-78.809102, 38.854216], + [-78.809429, 38.853416], + [-78.80949, 38.852548], + [-78.809562, 38.852066], + [-78.809702, 38.851794], + [-78.810184, 38.850996], + [-78.810731, 38.850023], + [-78.810946, 38.849624], + [-78.811135, 38.848966], + [-78.811226, 38.848597], + [-78.811516, 38.84807], + [-78.811909, 38.847496], + [-78.812238, 38.847066], + [-78.812774, 38.846132], + [-78.813259, 38.845141], + [-78.813994, 38.843558], + [-78.81453, 38.842632], + [-78.814903, 38.842041], + [-78.815119, 38.841602], + [-78.815487, 38.840794], + [-78.815725, 38.840242], + [-78.815857, 38.839898], + [-78.815999, 38.839522], + [-78.816518, 38.838869], + [-78.817091, 38.838064], + [-78.817666, 38.837195], + [-78.817967, 38.83666], + [-78.818397, 38.835797], + [-78.818849, 38.834942], + [-78.81916, 38.834367], + [-78.819609, 38.8336], + [-78.820187, 38.833053], + [-78.820445, 38.832558], + [-78.820749, 38.831886], + [-78.82117, 38.83099], + [-78.821785, 38.83017], + [-78.822186, 38.829709], + [-78.822875, 38.828793], + [-78.823431, 38.827851], + [-78.823891, 38.827093], + [-78.824256, 38.826414], + [-78.824731, 38.825873], + [-78.825477, 38.825159], + [-78.826141, 38.824444], + [-78.826664, 38.82367], + [-78.827029, 38.822983], + [-78.82723, 38.822262], + [-78.827243, 38.822005], + [-78.827265, 38.821618], + [-78.827647, 38.821068], + [-78.82817, 38.820239], + [-78.828457, 38.819816], + [-78.828739, 38.819168], + [-78.829059, 38.818633], + [-78.829442, 38.818083], + [-78.829963, 38.817318], + [-78.8306, 38.816441], + [-78.831322, 38.815389], + [-78.831662, 38.814903], + [-78.83227, 38.814396], + [-78.833002, 38.813859], + [-78.833693, 38.813345], + [-78.834346, 38.81263], + [-78.834884, 38.812042], + [-78.835194, 38.811507], + [-78.835426, 38.810786], + [-78.835439, 38.810182], + [-78.835496, 38.809933], + [-78.836728, 38.809121], + [-78.83759, 38.808304], + [-78.838312, 38.807564], + [-78.838769, 38.807097], + [-78.839711, 38.805879], + [-78.840467, 38.804706], + [-78.840714, 38.804226], + [-78.841042, 38.803812], + [-78.841562, 38.803111], + [-78.842352, 38.802237], + [-78.843057, 38.801506], + [-78.843848, 38.800649], + [-78.844701, 38.799727], + [-78.845665, 38.798476], + [-78.846314, 38.797455], + [-78.846426, 38.797038], + [-78.846575, 38.796356], + [-78.846633, 38.796043], + [-78.846781, 38.7959], + [-78.847241, 38.795585], + [-78.84819, 38.794986], + [-78.848625, 38.794388], + [-78.849257, 38.793696], + [-78.849817, 38.79302], + [-78.850246, 38.792189], + [-78.850365, 38.791941], + [-78.85045, 38.791314], + [-78.850569, 38.791083], + [-78.850852, 38.790813], + [-78.851421, 38.790185], + [-78.852082, 38.789115], + [-78.852794, 38.788063], + [-78.85325, 38.786958], + [-78.853379, 38.786686], + [-78.853441, 38.786617], + [-78.853559, 38.786488], + [-78.85399, 38.786043], + [-78.854915, 38.784639], + [-78.855194, 38.784095], + [-78.855209, 38.783895], + [-78.855206, 38.783581], + [-78.855333, 38.783405], + [-78.855543, 38.783207], + [-78.856268, 38.782492], + [-78.857239, 38.781363], + [-78.85891, 38.779196], + [-78.859813, 38.777864], + [-78.860033, 38.777224], + [-78.860153, 38.776903], + [-78.860417, 38.776561], + [-78.861485, 38.775231], + [-78.861588, 38.774734], + [-78.861585, 38.774371], + [-78.861671, 38.774212], + [-78.861818, 38.774061], + [-78.862133, 38.773775], + [-78.862723, 38.773139], + [-78.863687, 38.771808], + [-78.863894, 38.771256], + [-78.864081, 38.770687], + [-78.86416, 38.77039], + [-78.864769, 38.769312], + [-78.865022, 38.768551], + [-78.865224, 38.767765], + [-78.865426, 38.767438], + [-78.865656, 38.767288], + [-78.865908, 38.767042], + [-78.866617, 38.766077], + [-78.867388, 38.765154], + [-78.868159, 38.764223], + [-78.8687, 38.763482], + [-78.868974, 38.763147], + [-78.869279, 38.762999], + [-78.87475, 38.766819], + [-78.877449, 38.768704], + [-78.887735, 38.775879], + [-78.891405, 38.778455], + [-78.893339, 38.779805], + [-78.893342, 38.779807], + [-78.894722, 38.78076], + [-78.896001, 38.781664], + [-78.896014, 38.781673], + [-78.897409, 38.782651], + [-78.901276, 38.785352], + [-78.92227, 38.800017], + [-78.924418, 38.801517], + [-78.931568, 38.80651], + [-78.939745, 38.812204], + [-78.939843, 38.81228], + [-78.93994, 38.812357], + [-78.94001, 38.812406], + [-78.940079, 38.812454], + [-78.940149, 38.812503], + [-78.941203, 38.813239], + [-78.941436, 38.813394], + [-78.941737, 38.813595], + [-78.941969, 38.813763], + [-78.942908, 38.814409], + [-78.945518, 38.816245], + [-78.945654, 38.81634], + [-78.946121, 38.816666], + [-78.946312, 38.8168], + [-78.948294, 38.818173], + [-78.949963, 38.81935], + [-78.95047, 38.819707], + [-78.950822, 38.819953], + [-78.956272, 38.823763], + [-78.977283, 38.838418], + [-78.987232, 38.845398], + [-78.989245, 38.846826], + [-78.991272, 38.848279], + [-78.993764, 38.850029], + [-78.994, 38.85011], + [-78.994437, 38.849808], + [-78.994823, 38.849529], + [-78.99484, 38.849517], + [-78.994863, 38.8495], + [-78.995017, 38.849399], + [-78.995322, 38.849186], + [-78.995546, 38.848926], + [-78.995798, 38.84865], + [-78.996113, 38.848381], + [-78.996453, 38.848145], + [-78.997185, 38.847902], + [-78.997522, 38.84773], + [-78.998174, 38.847361], + [-78.998804, 38.846871], + [-78.999343, 38.846438], + [-78.999755, 38.84617], + [-79.000155, 38.84562], + [-79.000255, 38.84542], + [-79.000255, 38.84502], + [-79.000155, 38.84472], + [-78.999855, 38.84412], + [-78.999755, 38.84372], + [-78.999755, 38.84347], + [-78.999485, 38.843076], + [-78.999368, 38.842827], + [-78.999365, 38.842797], + [-78.999319, 38.842312], + [-78.999093, 38.841637], + [-78.998866, 38.84097], + [-78.998911, 38.840518], + [-78.999017, 38.840082], + [-78.999318, 38.839514], + [-78.999755, 38.83917], + [-79.000255, 38.83852], + [-79.000955, 38.83772], + [-79.001755, 38.83712], + [-79.002355, 38.83652], + [-79.002517, 38.836116], + [-79.002679, 38.835711], + [-79.003202, 38.834362], + [-79.003755, 38.83302], + [-79.003766, 38.832999], + [-79.003855, 38.83282], + [-79.003943, 38.832319], + [-79.004355, 38.83152], + [-79.004491, 38.831301], + [-79.004855, 38.83072], + [-79.005155, 38.82992], + [-79.005455, 38.82892], + [-79.005655, 38.82822], + [-79.005855, 38.82732], + [-79.006155, 38.82672], + [-79.006355, 38.82612], + [-79.006335, 38.825939], + [-79.006255, 38.82512], + [-79.00614, 38.824519], + [-79.006555, 38.82372], + [-79.006949, 38.823323], + [-79.007355, 38.82292], + [-79.007955, 38.82232], + [-79.008755, 38.82202], + [-79.009352, 38.821914], + [-79.009748, 38.82162], + [-79.010155, 38.821319], + [-79.010655, 38.821119], + [-79.011455, 38.820819], + [-79.011955, 38.82042], + [-79.012655, 38.82012], + [-79.013559, 38.820017], + [-79.013588, 38.820022], + [-79.013618, 38.820026], + [-79.014155, 38.82012], + [-79.014659, 38.820326], + [-79.014731, 38.820324], + [-79.014778, 38.820322], + [-79.015355, 38.82032], + [-79.015634, 38.820206], + [-79.016255, 38.82012], + [-79.016553, 38.820062], + [-79.016598, 38.820053], + [-79.016759, 38.820015], + [-79.017259, 38.819716], + [-79.017548, 38.819332], + [-79.017906, 38.819148], + [-79.018154, 38.819021], + [-79.018555, 38.81882], + [-79.019053, 38.818322], + [-79.019232, 38.818166], + [-79.019233, 38.818165], + [-79.019537, 38.817915], + [-79.019756, 38.817021], + [-79.020056, 38.81662], + [-79.020156, 38.81612], + [-79.019857, 38.815422], + [-79.019656, 38.814721], + [-79.019635, 38.814423], + [-79.019628, 38.814352], + [-79.019609, 38.814161], + [-79.019602, 38.814001], + [-79.0196, 38.813938], + [-79.019598, 38.813903], + [-79.019548, 38.813326], + [-79.019655, 38.812326], + [-79.019656, 38.812319], + [-79.019845, 38.811719], + [-79.020256, 38.81142], + [-79.020753, 38.811234], + [-79.020765, 38.811222], + [-79.02078, 38.811206], + [-79.020806, 38.811178], + [-79.020856, 38.81112], + [-79.021556, 38.81092], + [-79.022056, 38.81072], + [-79.023056, 38.81022], + [-79.023656, 38.80982], + [-79.024056, 38.80922], + [-79.024113, 38.808624], + [-79.024124, 38.808567], + [-79.024135, 38.808509], + [-79.024156, 38.80832], + [-79.024256, 38.80772], + [-79.024256, 38.80742], + [-79.024056, 38.80692], + [-79.023656, 38.80652], + [-79.023456, 38.80612], + [-79.023556, 38.80562], + [-79.023956, 38.80522], + [-79.024356, 38.80452], + [-79.024456, 38.80372], + [-79.024256, 38.80342], + [-79.023456, 38.80262], + [-79.022956, 38.800121], + [-79.022956, 38.799321], + [-79.023056, 38.798921], + [-79.023044, 38.798619], + [-79.023756, 38.797921], + [-79.024256, 38.797221], + [-79.024856, 38.796121], + [-79.025256, 38.795321], + [-79.025556, 38.794621], + [-79.026156, 38.793421], + [-79.026756, 38.792721], + [-79.027256, 38.792121], + [-79.028156, 38.791521], + [-79.029256, 38.791021], + [-79.030257, 38.791014], + [-79.031256, 38.791021], + [-79.033156, 38.791021], + [-79.034356, 38.791221], + [-79.035756, 38.791421], + [-79.036856, 38.791721], + [-79.037556, 38.791821], + [-79.038856, 38.791921], + [-79.039656, 38.791821], + [-79.040556, 38.791721], + [-79.041156, 38.791721], + [-79.041656, 38.791921], + [-79.042256, 38.791921], + [-79.043056, 38.791821], + [-79.043656, 38.791621], + [-79.044457, 38.791615], + [-79.045056, 38.791821], + [-79.045761, 38.792116], + [-79.045954, 38.792121], + [-79.046557, 38.792121], + [-79.047352, 38.791818], + [-79.048057, 38.791321], + [-79.048957, 38.790721], + [-79.049557, 38.790121], + [-79.050257, 38.789621], + [-79.051157, 38.788921], + [-79.051857, 38.788221], + [-79.051972, 38.78812], + [-79.052555, 38.787613], + [-79.052846, 38.787441], + [-79.052873, 38.787426], + [-79.053252, 38.787218], + [-79.053757, 38.786821], + [-79.054057, 38.786521], + [-79.054305, 38.786272], + [-79.054357, 38.786221], + [-79.054657, 38.786021], + [-79.054957, 38.785721], + [-79.055257, 38.785121], + [-79.055457, 38.784321], + [-79.055645, 38.783619], + [-79.055657, 38.783021], + [-79.055357, 38.782221], + [-79.055057, 38.781821], + [-79.054557, 38.781121], + [-79.054357, 38.780621], + [-79.053957, 38.780221], + [-79.053257, 38.779721], + [-79.052457, 38.779221], + [-79.052438, 38.779197], + [-79.052057, 38.778721], + [-79.051657, 38.778021], + [-79.051657, 38.777221], + [-79.052057, 38.775521], + [-79.052057, 38.775321], + [-79.051957, 38.775121], + [-79.051448, 38.774417], + [-79.051272, 38.773909], + [-79.051271, 38.77361], + [-79.051315, 38.773359], + [-79.051357, 38.773121], + [-79.051557, 38.772621], + [-79.052157, 38.772421], + [-79.053257, 38.772321], + [-79.053757, 38.772321], + [-79.054457, 38.772021], + [-79.055099, 38.77162], + [-79.055257, 38.771521], + [-79.055657, 38.770921], + [-79.055757, 38.770321], + [-79.055757, 38.769521], + [-79.05578, 38.768926], + [-79.055957, 38.768321], + [-79.056557, 38.767321], + [-79.056757, 38.766521], + [-79.056857, 38.765821], + [-79.056857, 38.765221], + [-79.056957, 38.764721], + [-79.057057, 38.764021], + [-79.057157, 38.763421], + [-79.057157, 38.763121], + [-79.057257, 38.762821], + [-79.057257, 38.762321], + [-79.057357, 38.761921], + [-79.057257, 38.761721], + [-79.057257, 38.761521], + [-79.057256, 38.761421], + [-79.057257, 38.761121], + [-79.057257, 38.760721], + [-79.057557, 38.760221], + [-79.057857, 38.759921], + [-79.058257, 38.759721], + [-79.058957, 38.759121], + [-79.059057, 38.758921], + [-79.059557, 38.758321], + [-79.059857, 38.757921], + [-79.060257, 38.757521], + [-79.060957, 38.756721], + [-79.062057, 38.756021], + [-79.062957, 38.755521], + [-79.063657, 38.755121], + [-79.064257, 38.754821], + [-79.064857, 38.754421], + [-79.065657, 38.754021], + [-79.066457, 38.753221], + [-79.066957, 38.752521], + [-79.067357, 38.752221], + [-79.067457, 38.752121], + [-79.067576, 38.752051], + [-79.067957, 38.751821], + [-79.067993, 38.751802], + [-79.068022, 38.751788], + [-79.068357, 38.751621], + [-79.068657, 38.751421], + [-79.068857, 38.751321], + [-79.069057, 38.751121], + [-79.069147, 38.751018], + [-79.069206, 38.750121], + [-79.069457, 38.749821], + [-79.069457, 38.749721], + [-79.069557, 38.749621], + [-79.069657, 38.749421], + [-79.069757, 38.749321], + [-79.070157, 38.749121], + [-79.070457, 38.749121], + [-79.070757, 38.748921], + [-79.071157, 38.748721], + [-79.071457, 38.748621], + [-79.071757, 38.748321], + [-79.072058, 38.748121], + [-79.072358, 38.747821], + [-79.072558, 38.747521], + [-79.072658, 38.747121], + [-79.072658, 38.745122], + [-79.072758, 38.744622], + [-79.072946, 38.744223], + [-79.073058, 38.743822], + [-79.073258, 38.743422], + [-79.073346, 38.743245], + [-79.073458, 38.743022], + [-79.073658, 38.742522], + [-79.073858, 38.742122], + [-79.074158, 38.741722], + [-79.074358, 38.741522], + [-79.074758, 38.741222], + [-79.075258, 38.740722], + [-79.075458, 38.740422], + [-79.075658, 38.740022], + [-79.075958, 38.739822], + [-79.076558, 38.739222], + [-79.076958, 38.739022], + [-79.077258, 38.738822], + [-79.077758, 38.738522], + [-79.078158, 38.738222], + [-79.078758, 38.737622], + [-79.079058, 38.737222], + [-79.079158, 38.736922], + [-79.079158, 38.736889], + [-79.079258, 38.736522], + [-79.079458, 38.736122], + [-79.079458, 38.735622], + [-79.079558, 38.735122], + [-79.079758, 38.734322], + [-79.079858, 38.734022], + [-79.080058, 38.733622], + [-79.080158, 38.733222], + [-79.080258, 38.732722], + [-79.080358, 38.732522], + [-79.081058, 38.731822], + [-79.081358, 38.731422], + [-79.081558, 38.731022], + [-79.081658, 38.730622], + [-79.081858, 38.730122], + [-79.081958, 38.729722], + [-79.082158, 38.729422], + [-79.082858, 38.728722], + [-79.082925, 38.728388], + [-79.083058, 38.728122], + [-79.083158, 38.727722], + [-79.083358, 38.727422], + [-79.083658, 38.727122], + [-79.08391, 38.726871], + [-79.083958, 38.726822], + [-79.084258, 38.726522], + [-79.08437, 38.726228], + [-79.084568, 38.725908], + [-79.084658, 38.725622], + [-79.084958, 38.725422], + [-79.085258, 38.725022], + [-79.085458, 38.724622], + [-79.085488, 38.724439], + [-79.085558, 38.724122], + [-79.085586, 38.724017], + [-79.085671, 38.723825], + [-79.085858, 38.723622], + [-79.086069, 38.723226], + [-79.086258, 38.722922], + [-79.086363, 38.722524], + [-79.086384, 38.722418], + [-79.086458, 38.722122], + [-79.086458, 38.721722], + [-79.086758, 38.720822], + [-79.086958, 38.720422], + [-79.087258, 38.720122], + [-79.087244, 38.719935], + [-79.087258, 38.719622], + [-79.087258, 38.719122], + [-79.087058, 38.718622], + [-79.086861, 38.718129], + [-79.086658, 38.717722], + [-79.086458, 38.717423], + [-79.086458, 38.717023], + [-79.086558, 38.716823], + [-79.086558, 38.716023], + [-79.086758, 38.715523], + [-79.086958, 38.714923], + [-79.087558, 38.713723], + [-79.087858, 38.713223], + [-79.088058, 38.712823], + [-79.088158, 38.712523], + [-79.088261, 38.712213], + [-79.088358, 38.711923], + [-79.088458, 38.711623], + [-79.088446, 38.711323], + [-79.088658, 38.711123], + [-79.088758, 38.710823], + [-79.088958, 38.710623], + [-79.089059, 38.710325], + [-79.089058, 38.710023], + [-79.089258, 38.709423], + [-79.089358, 38.709223], + [-79.089558, 38.709023], + [-79.089658, 38.708723], + [-79.089958, 38.708323], + [-79.090165, 38.707927], + [-79.090166, 38.707892], + [-79.090258, 38.707523], + [-79.090358, 38.707123], + [-79.090553, 38.70683], + [-79.090569, 38.706812], + [-79.090758, 38.706623], + [-79.090858, 38.706423], + [-79.091069, 38.706027], + [-79.091064, 38.705997], + [-79.091158, 38.705623], + [-79.091258, 38.705223], + [-79.091345, 38.704962], + [-79.091558, 38.704523], + [-79.091758, 38.703923], + [-79.092158, 38.703323], + [-79.09235, 38.702921], + [-79.092558, 38.702623], + [-79.092758, 38.702323], + [-79.092958, 38.70201], + [-79.092958, 38.701723], + [-79.09285, 38.701425], + [-79.092758, 38.701123], + [-79.092658, 38.700823], + [-79.092558, 38.700423], + [-79.092558, 38.700157], + [-79.092531, 38.70003], + [-79.092471, 38.699787], + [-79.092465, 38.69972], + [-79.09245, 38.69965], + [-79.092359, 38.699426], + [-79.092274, 38.699216], + [-79.092058, 38.698923], + [-79.091758, 38.698723], + [-79.091679, 38.698605], + [-79.091558, 38.698423], + [-79.091358, 38.698023], + [-79.091358, 38.697623], + [-79.091458, 38.697123], + [-79.091458, 38.696623], + [-79.091358, 38.696123], + [-79.091358, 38.694523], + [-79.091258, 38.694123], + [-79.091147, 38.693721], + [-79.091058, 38.693323], + [-79.091012, 38.69314], + [-79.090958, 38.692923], + [-79.090758, 38.692523], + [-79.090449, 38.692127], + [-79.090058, 38.691723], + [-79.089658, 38.691323], + [-79.089258, 38.691023], + [-79.088858, 38.690823], + [-79.088547, 38.690527], + [-79.088317, 38.690363], + [-79.088252, 38.690327], + [-79.088058, 38.690123], + [-79.087658, 38.689923], + [-79.087258, 38.689823], + [-79.086858, 38.689724], + [-79.086458, 38.689524], + [-79.086158, 38.689224], + [-79.085758, 38.688924], + [-79.08555, 38.688832], + [-79.085358, 38.688624], + [-79.085158, 38.688324], + [-79.085058, 38.688024], + [-79.084958, 38.687624], + [-79.084867, 38.687333], + [-79.084458, 38.686924], + [-79.084303, 38.686515], + [-79.084458, 38.686024], + [-79.084458, 38.685124], + [-79.084545, 38.684816], + [-79.084658, 38.684524], + [-79.084958, 38.684124], + [-79.085358, 38.683724], + [-79.085525, 38.683389], + [-79.085558, 38.683324], + [-79.085649, 38.682922], + [-79.085858, 38.682724], + [-79.086158, 38.682324], + [-79.086258, 38.682124], + [-79.086358, 38.681824], + [-79.086406, 38.681633], + [-79.086458, 38.681424], + [-79.086345, 38.680924], + [-79.086458, 38.680424], + [-79.086558, 38.679924], + [-79.086658, 38.679524], + [-79.086658, 38.679124], + [-79.086758, 38.678724], + [-79.086858, 38.678224], + [-79.087058, 38.677424], + [-79.087058, 38.677024], + [-79.087158, 38.676624], + [-79.087358, 38.676024], + [-79.087558, 38.675724], + [-79.087658, 38.675324], + [-79.087758, 38.675024], + [-79.087758, 38.674724], + [-79.087858, 38.674424], + [-79.087858, 38.673824], + [-79.088058, 38.673424], + [-79.088258, 38.672924], + [-79.088558, 38.672624], + [-79.088758, 38.672324], + [-79.088858, 38.672124], + [-79.089158, 38.671724], + [-79.089358, 38.671424], + [-79.089458, 38.671124], + [-79.089558, 38.671024], + [-79.089758, 38.670924], + [-79.089958, 38.670624], + [-79.090258, 38.670424], + [-79.090458, 38.670124], + [-79.090658, 38.669724], + [-79.091058, 38.669324], + [-79.091181, 38.66916], + [-79.091261, 38.669044], + [-79.091358, 38.668924], + [-79.091658, 38.668724], + [-79.092058, 38.668424], + [-79.092171, 38.668254], + [-79.092249, 38.668122], + [-79.092363, 38.667676], + [-79.092658, 38.666424], + [-79.092658, 38.665724], + [-79.09274, 38.665324], + [-79.092858, 38.664924], + [-79.09295, 38.66444], + [-79.092958, 38.664417], + [-79.092958, 38.664024], + [-79.092858, 38.663524], + [-79.092858, 38.663224], + [-79.092758, 38.662824], + [-79.092758, 38.662424], + [-79.092858, 38.662224], + [-79.092858, 38.661425], + [-79.092842, 38.661362], + [-79.092758, 38.661025], + [-79.092758, 38.660825], + [-79.092658, 38.660425], + [-79.092758, 38.660125], + [-79.092758, 38.659825], + [-79.092958, 38.659525], + [-79.093358, 38.659325], + [-79.093658, 38.659225], + [-79.094058, 38.659125], + [-79.094458, 38.658925], + [-79.094758, 38.658925], + [-79.095258, 38.659025], + [-79.096558, 38.659025], + [-79.097058, 38.658825], + [-79.097558, 38.658725], + [-79.097959, 38.658625], + [-79.098359, 38.658325], + [-79.098659, 38.658225], + [-79.098859, 38.658125], + [-79.099159, 38.658125], + [-79.099759, 38.657925], + [-79.100159, 38.657725], + [-79.100659, 38.657525], + [-79.101659, 38.657325], + [-79.102159, 38.657325], + [-79.102759, 38.657225], + [-79.103359, 38.657225], + [-79.103955, 38.657015], + [-79.104659, 38.656825], + [-79.105159, 38.656625], + [-79.105659, 38.656325], + [-79.106059, 38.656225], + [-79.106359, 38.656225], + [-79.106759, 38.656325], + [-79.107059, 38.656425], + [-79.107459, 38.656725], + [-79.107759, 38.657025], + [-79.108159, 38.657325], + [-79.108577, 38.657608], + [-79.108859, 38.657725], + [-79.109259, 38.657925], + [-79.109459, 38.658225], + [-79.109659, 38.658425], + [-79.109674, 38.658444], + [-79.109959, 38.658825], + [-79.110459, 38.659225], + [-79.110959, 38.659525], + [-79.111559, 38.659725], + [-79.112062, 38.659813], + [-79.112459, 38.659825], + [-79.113259, 38.659825], + [-79.113659, 38.659625], + [-79.114059, 38.659525], + [-79.11421, 38.659423], + [-79.11434, 38.659335], + [-79.114392, 38.659309], + [-79.114759, 38.659125], + [-79.115559, 38.658925], + [-79.115958, 38.658817], + [-79.116359, 38.658925], + [-79.116659, 38.659025], + [-79.117159, 38.659125], + [-79.117172, 38.65913], + [-79.117201, 38.659142], + [-79.117304, 38.659183], + [-79.117659, 38.659325], + [-79.118259, 38.659525], + [-79.118859, 38.659825], + [-79.119359, 38.660025], + [-79.119759, 38.660125], + [-79.120259, 38.660224], + [-79.120456, 38.660216], + [-79.120759, 38.660124], + [-79.120959, 38.660025], + [-79.121259, 38.659925], + [-79.121459, 38.659825], + [-79.121773, 38.659816], + [-79.122059, 38.659825], + [-79.122259, 38.659825], + [-79.122359, 38.659725], + [-79.122659, 38.659525], + [-79.123059, 38.659125], + [-79.12326, 38.658925], + [-79.12336, 38.658625], + [-79.12356, 38.658225], + [-79.12366, 38.657925], + [-79.12356, 38.657725], + [-79.12356, 38.657525], + [-79.12346, 38.657425], + [-79.12346, 38.657225], + [-79.123458, 38.657081], + [-79.123457, 38.657025], + [-79.123457, 38.656925], + [-79.123559, 38.656725], + [-79.123659, 38.656625], + [-79.123759, 38.656425], + [-79.124359, 38.655825], + [-79.124759, 38.655625], + [-79.125058, 38.655526], + [-79.125859, 38.655225], + [-79.126359, 38.655116], + [-79.126958, 38.655326], + [-79.12796, 38.655425], + [-79.12886, 38.655525], + [-79.129458, 38.655326], + [-79.129759, 38.655026], + [-79.130059, 38.654626], + [-79.130104, 38.654523], + [-79.130115, 38.654499], + [-79.13036, 38.654026], + [-79.13046, 38.653925], + [-79.130759, 38.653726], + [-79.131059, 38.653226], + [-79.131225, 38.652447], + [-79.131228, 38.652433], + [-79.13126, 38.652225], + [-79.13126, 38.651925], + [-79.13116, 38.651325], + [-79.13112, 38.651205], + [-79.131069, 38.651084], + [-79.131046, 38.651028], + [-79.131087, 38.65093], + [-79.131125, 38.650794], + [-79.131164, 38.650658], + [-79.131253, 38.650323], + [-79.13186, 38.649825], + [-79.13256, 38.649125], + [-79.132744, 38.648427], + [-79.132726, 38.648177], + [-79.13276, 38.648125], + [-79.13266, 38.647525], + [-79.13286, 38.647225], + [-79.133253, 38.646819], + [-79.13346, 38.646625], + [-79.133544, 38.646347], + [-79.13356, 38.646025], + [-79.13356, 38.645325], + [-79.13366, 38.645225], + [-79.134256, 38.644817], + [-79.135007, 38.644545], + [-79.135061, 38.644523], + [-79.135563, 38.644091], + [-79.135578, 38.644072], + [-79.135646, 38.643962], + [-79.135651, 38.643725], + [-79.135654, 38.643609], + [-79.135677, 38.643375], + [-79.135747, 38.643121], + [-79.13616, 38.642625], + [-79.136377, 38.642408], + [-79.136739, 38.641722], + [-79.137014, 38.640662], + [-79.137059, 38.640563], + [-79.137064, 38.640544], + [-79.13716, 38.640325], + [-79.137351, 38.640024], + [-79.137356, 38.639658], + [-79.137356, 38.639631], + [-79.13736, 38.639125], + [-79.13726, 38.638525], + [-79.13756, 38.638025], + [-79.138257, 38.637721], + [-79.13896, 38.637525], + [-79.139495, 38.637296], + [-79.13966, 38.637225], + [-79.14016, 38.636825], + [-79.14056, 38.636125], + [-79.14126, 38.635625], + [-79.14186, 38.634925], + [-79.14226, 38.634825], + [-79.14266, 38.634425], + [-79.14276, 38.634025], + [-79.14286, 38.633525], + [-79.14326, 38.632825], + [-79.143654, 38.632324], + [-79.14366, 38.631725], + [-79.14366, 38.631225], + [-79.14378, 38.630946], + [-79.143953, 38.630519], + [-79.14436, 38.630326], + [-79.144457, 38.630225], + [-79.14466, 38.630026], + [-79.14486, 38.629226], + [-79.14596, 38.626826], + [-79.14606, 38.626726], + [-79.14636, 38.626526], + [-79.146452, 38.626262], + [-79.146509, 38.626177], + [-79.146655, 38.626023], + [-79.146744, 38.625827], + [-79.146802, 38.625775], + [-79.146977, 38.625649], + [-79.147008, 38.62553], + [-79.147038, 38.62541], + [-79.14706, 38.625326], + [-79.14726, 38.625126], + [-79.147377, 38.625126], + [-79.147439, 38.625127], + [-79.147444, 38.625077], + [-79.147446, 38.62507], + [-79.14746, 38.625026], + [-79.14756, 38.625026], + [-79.147869, 38.624831], + [-79.148061, 38.624726], + [-79.148081, 38.62467], + [-79.148085, 38.624661], + [-79.148095, 38.624654], + [-79.148239, 38.624551], + [-79.148291, 38.62451], + [-79.148387, 38.624433], + [-79.148436, 38.624384], + [-79.148555, 38.624263], + [-79.148602, 38.624211], + [-79.148752, 38.624043], + [-79.148787, 38.623999], + [-79.148819, 38.623967], + [-79.14909, 38.623665], + [-79.149136, 38.623575], + [-79.149139, 38.623569], + [-79.14916, 38.623526], + [-79.149173, 38.623501], + [-79.14926, 38.623326], + [-79.14946, 38.623026], + [-79.149644, 38.622842], + [-79.14967, 38.622832], + [-79.14966, 38.622811], + [-79.14966, 38.622726], + [-79.14976, 38.622426], + [-79.14986, 38.622326], + [-79.14996, 38.622126], + [-79.15006, 38.622126], + [-79.15016, 38.621926], + [-79.15096, 38.621126], + [-79.15106, 38.620826], + [-79.15126, 38.620626], + [-79.15146, 38.620226], + [-79.15166, 38.619426], + [-79.15176, 38.619226], + [-79.151762, 38.618973], + [-79.15176, 38.618926], + [-79.15186, 38.618726], + [-79.15206, 38.618126], + [-79.15226, 38.617826], + [-79.15236, 38.617526], + [-79.15246, 38.617126], + [-79.15256, 38.617026], + [-79.15246, 38.616826], + [-79.15256, 38.616526], + [-79.15266, 38.616526], + [-79.15276, 38.616326], + [-79.15286, 38.616226], + [-79.15306, 38.615926], + [-79.15326, 38.615726], + [-79.15336, 38.615526], + [-79.15346, 38.615426], + [-79.153473, 38.615399], + [-79.15356, 38.615226], + [-79.153568, 38.615211], + [-79.15366, 38.615026], + [-79.15386, 38.614726], + [-79.15396, 38.614526], + [-79.15406, 38.614126], + [-79.15416, 38.613926], + [-79.154155, 38.613623], + [-79.15426, 38.613526], + [-79.15436, 38.613126], + [-79.15446, 38.612826], + [-79.15486, 38.612226], + [-79.15496, 38.611926], + [-79.15516, 38.611726], + [-79.15526, 38.611426], + [-79.155358, 38.611233], + [-79.15546, 38.610926], + [-79.15546, 38.610763], + [-79.155562, 38.610492], + [-79.15556, 38.610126], + [-79.15556, 38.609226], + [-79.15546, 38.609126], + [-79.15536, 38.608926], + [-79.15536, 38.608826], + [-79.15516, 38.608726], + [-79.15486, 38.608126], + [-79.15466, 38.607926], + [-79.15466, 38.607726], + [-79.154597, 38.607674], + [-79.154594, 38.607662], + [-79.154588, 38.607636], + [-79.154565, 38.607542], + [-79.154558, 38.607522], + [-79.15456, 38.607226], + [-79.15456, 38.607026], + [-79.15446, 38.607026], + [-79.15446, 38.606726], + [-79.15436, 38.606526], + [-79.15446, 38.606326], + [-79.154545, 38.606154], + [-79.154561, 38.606123], + [-79.154659, 38.605927], + [-79.154713, 38.60589], + [-79.15476, 38.605826], + [-79.15516, 38.605426], + [-79.15536, 38.605326], + [-79.15556, 38.605126], + [-79.15586, 38.604926], + [-79.15666, 38.604126], + [-79.15686, 38.603726], + [-79.15736, 38.603226], + [-79.15766, 38.602826], + [-79.15786, 38.602626], + [-79.15816, 38.602526], + [-79.15836, 38.602226], + [-79.15856, 38.602126], + [-79.15876, 38.601926], + [-79.15876, 38.601826], + [-79.15886, 38.601626], + [-79.15896, 38.601527], + [-79.159161, 38.601227], + [-79.159261, 38.600927], + [-79.159261, 38.600627], + [-79.159361, 38.600327], + [-79.159261, 38.600027], + [-79.159261, 38.599827], + [-79.159161, 38.599627], + [-79.15906, 38.599427], + [-79.15886, 38.599227], + [-79.15876, 38.598927], + [-79.15866, 38.598827], + [-79.15866, 38.597627], + [-79.15876, 38.597427], + [-79.15876, 38.597227], + [-79.15886, 38.596927], + [-79.15896, 38.596727], + [-79.15896, 38.596527], + [-79.15916, 38.596127], + [-79.159361, 38.595927], + [-79.159461, 38.595927], + [-79.159461, 38.595727], + [-79.159761, 38.595427], + [-79.159761, 38.595127], + [-79.159661, 38.594927], + [-79.159561, 38.594827], + [-79.159361, 38.594727], + [-79.15916, 38.594627], + [-79.15896, 38.594527], + [-79.15879, 38.594443], + [-79.158759, 38.594427], + [-79.158737, 38.594404], + [-79.158711, 38.594377], + [-79.15866, 38.594327], + [-79.15846, 38.594227], + [-79.15836, 38.594127], + [-79.15826, 38.593927], + [-79.15826, 38.593527], + [-79.15816, 38.593527], + [-79.15826, 38.593427], + [-79.15826, 38.593127], + [-79.15836, 38.593027], + [-79.15856, 38.592727], + [-79.15866, 38.592327], + [-79.15906, 38.591927], + [-79.15906, 38.591727], + [-79.15926, 38.591527], + [-79.159361, 38.591327], + [-79.159561, 38.591127], + [-79.159661, 38.590827], + [-79.159761, 38.590627], + [-79.159861, 38.590227], + [-79.160061, 38.590027], + [-79.160261, 38.589927], + [-79.160361, 38.589727], + [-79.160661, 38.589527], + [-79.160861, 38.589227], + [-79.161361, 38.588727], + [-79.161461, 38.588427], + [-79.161661, 38.588227], + [-79.161961, 38.587327], + [-79.162005, 38.587194], + [-79.162061, 38.587027], + [-79.162261, 38.586427], + [-79.162352, 38.586223], + [-79.162361, 38.585927], + [-79.162428, 38.585794], + [-79.162461, 38.585727], + [-79.16245, 38.585662], + [-79.162661, 38.585327], + [-79.162761, 38.585027], + [-79.162961, 38.584827], + [-79.163053, 38.584422], + [-79.163161, 38.584227], + [-79.163261, 38.583927], + [-79.163288, 38.583873], + [-79.163324, 38.5838], + [-79.163361, 38.583727], + [-79.163361, 38.583427], + [-79.163461, 38.583127], + [-79.163461, 38.582927], + [-79.163445, 38.582825], + [-79.163661, 38.582627], + [-79.164261, 38.582027], + [-79.16446, 38.581728], + [-79.16466, 38.581628], + [-79.16476, 38.581428], + [-79.16506, 38.581228], + [-79.16536, 38.580928], + [-79.16546, 38.580928], + [-79.16576, 38.580728], + [-79.16606, 38.580628], + [-79.166265, 38.580532], + [-79.166295, 38.580515], + [-79.166372, 38.580472], + [-79.16666, 38.580328], + [-79.167059, 38.580111], + [-79.16726, 38.580028], + [-79.167561, 38.579827], + [-79.167861, 38.579527], + [-79.168061, 38.579227], + [-79.168061, 38.578927], + [-79.168104, 38.57883], + [-79.168061, 38.578582], + [-79.168061, 38.578127], + [-79.168153, 38.577747], + [-79.168155, 38.57769], + [-79.168158, 38.577613], + [-79.168161, 38.577527], + [-79.168361, 38.577127], + [-79.168561, 38.576827], + [-79.168661, 38.576627], + [-79.168948, 38.576352], + [-79.169159, 38.576127], + [-79.169361, 38.576027], + [-79.169461, 38.575827], + [-79.16954, 38.575708], + [-79.169661, 38.575527], + [-79.169861, 38.575227], + [-79.170061, 38.575027], + [-79.1702, 38.574912], + [-79.170266, 38.574828], + [-79.170288, 38.574783], + [-79.170461, 38.574527], + [-79.170661, 38.574227], + [-79.170861, 38.574127], + [-79.171161, 38.573227], + [-79.171261, 38.573027], + [-79.171393, 38.572762], + [-79.171661, 38.572228], + [-79.171553, 38.572027], + [-79.171661, 38.571928], + [-79.171661, 38.571628], + [-79.171561, 38.571328], + [-79.171514, 38.571233], + [-79.171492, 38.571188], + [-79.171362, 38.570928], + [-79.171148, 38.570731], + [-79.171062, 38.570428], + [-79.170862, 38.570128], + [-79.170861, 38.569928], + [-79.170761, 38.569628], + [-79.170661, 38.569228], + [-79.170661, 38.568728], + [-79.170861, 38.568328], + [-79.170957, 38.568124], + [-79.171161, 38.568028], + [-79.171561, 38.567828], + [-79.17174, 38.567768], + [-79.171861, 38.567728], + [-79.172051, 38.567621], + [-79.172361, 38.567528], + [-79.172761, 38.567328], + [-79.173361, 38.567128], + [-79.173761, 38.566828], + [-79.174115, 38.566651], + [-79.174156, 38.566621], + [-79.174514, 38.566542], + [-79.174541, 38.566515], + [-79.174764, 38.566393], + [-79.174846, 38.566345], + [-79.174884, 38.566322], + [-79.175258, 38.566223], + [-79.175561, 38.566128], + [-79.175861, 38.566028], + [-79.176258, 38.565923], + [-79.176461, 38.565728], + [-79.176661, 38.565528], + [-79.176761, 38.565128], + [-79.176961, 38.564728], + [-79.177161, 38.563928], + [-79.177161, 38.563628], + [-79.177261, 38.563328], + [-79.177661, 38.562728], + [-79.177756, 38.562525], + [-79.177961, 38.562328], + [-79.178361, 38.562128], + [-79.179161, 38.561528], + [-79.179661, 38.561028], + [-79.179961, 38.560828], + [-79.180361, 38.560428], + [-79.180561, 38.560128], + [-79.180861, 38.559928], + [-79.180961, 38.559628], + [-79.181161, 38.559328], + [-79.181261, 38.559128], + [-79.181661, 38.558528], + [-79.181652, 38.558401], + [-79.181661, 38.558328], + [-79.181761, 38.558128], + [-79.181761, 38.557828], + [-79.181861, 38.557528], + [-79.181852, 38.557458], + [-79.181861, 38.557128], + [-79.182061, 38.556328], + [-79.1821, 38.556242], + [-79.182261, 38.556028], + [-79.182261, 38.555728], + [-79.182308, 38.555734], + [-79.182461, 38.555428], + [-79.182561, 38.555128], + [-79.182961, 38.554528], + [-79.182961, 38.554428], + [-79.183061, 38.554128], + [-79.183161, 38.554028], + [-79.183261, 38.553828], + [-79.183461, 38.553228], + [-79.183561, 38.553028], + [-79.183561, 38.552728], + [-79.183661, 38.552328], + [-79.183761, 38.552128], + [-79.183861, 38.551828], + [-79.184061, 38.551528], + [-79.184261, 38.551328], + [-79.184461, 38.551228], + [-79.184761, 38.551128], + [-79.185061, 38.550828], + [-79.185361, 38.550628], + [-79.185561, 38.550528], + [-79.186161, 38.550128], + [-79.186161, 38.550028], + [-79.186361, 38.549928], + [-79.186961, 38.549328], + [-79.186993, 38.549246], + [-79.187261, 38.548928], + [-79.187461, 38.548628], + [-79.187861, 38.548228], + [-79.188461, 38.547828], + [-79.188661, 38.547628], + [-79.188961, 38.547428], + [-79.189161, 38.547128], + [-79.189361, 38.546728], + [-79.189561, 38.546528], + [-79.189661, 38.546328], + [-79.189788, 38.546138], + [-79.189861, 38.546028], + [-79.189961, 38.545828], + [-79.189961, 38.545728], + [-79.190061, 38.545428], + [-79.191061, 38.544428], + [-79.192061, 38.543828], + [-79.192461, 38.543428], + [-79.192807, 38.543052], + [-79.193361, 38.542529], + [-79.193461, 38.542429], + [-79.193561, 38.542029], + [-79.193661, 38.541729], + [-79.193962, 38.541429], + [-79.194062, 38.541029], + [-79.194207, 38.540811], + [-79.194262, 38.540729], + [-79.194362, 38.540529], + [-79.195062, 38.539829], + [-79.195169, 38.539618], + [-79.195362, 38.539329], + [-79.195362, 38.539129], + [-79.195462, 38.538929], + [-79.195562, 38.538629], + [-79.195662, 38.538229], + [-79.195662, 38.538029], + [-79.195762, 38.537829], + [-79.195962, 38.537529], + [-79.196162, 38.537329], + [-79.196162, 38.537229], + [-79.196362, 38.537129], + [-79.196962, 38.536729], + [-79.197762, 38.535929], + [-79.198062, 38.535729], + [-79.198462, 38.535529], + [-79.198762, 38.535229], + [-79.198962, 38.535129], + [-79.199062, 38.535029], + [-79.199062, 38.534329], + [-79.198962, 38.534129], + [-79.198962, 38.532829], + [-79.198862, 38.532729], + [-79.198862, 38.532129], + [-79.198962, 38.531929], + [-79.199262, 38.531729], + [-79.199962, 38.531029], + [-79.20014, 38.530763], + [-79.200162, 38.530729], + [-79.200462, 38.530129], + [-79.200662, 38.529929], + [-79.200862, 38.529429], + [-79.201067, 38.529013], + [-79.201162, 38.528729], + [-79.201262, 38.528429], + [-79.201362, 38.528029], + [-79.201462, 38.527829], + [-79.202062, 38.527229], + [-79.202262, 38.527129], + [-79.202562, 38.526829], + [-79.203062, 38.526429], + [-79.203962, 38.525829], + [-79.204262, 38.525729], + [-79.204362, 38.525629], + [-79.204662, 38.525529], + [-79.204862, 38.525429], + [-79.205162, 38.525229], + [-79.20535, 38.525021], + [-79.205662, 38.524829], + [-79.205862, 38.524529], + [-79.206062, 38.523929], + [-79.206062, 38.523629], + [-79.206162, 38.523529], + [-79.206263, 38.523127], + [-79.206462, 38.522729], + [-79.206462, 38.522329], + [-79.206362, 38.522129], + [-79.206362, 38.520529], + [-79.206562, 38.519729], + [-79.206562, 38.519529], + [-79.206662, 38.519229], + [-79.206662, 38.519129], + [-79.206762, 38.518829], + [-79.206862, 38.518429], + [-79.207062, 38.518029], + [-79.207162, 38.517629], + [-79.207359, 38.517437], + [-79.207462, 38.517129], + [-79.207762, 38.516729], + [-79.207862, 38.516429], + [-79.208062, 38.516229], + [-79.208062, 38.515929], + [-79.208262, 38.515729], + [-79.208662, 38.514929], + [-79.208862, 38.514629], + [-79.208962, 38.514329], + [-79.208962, 38.514129], + [-79.209062, 38.513929], + [-79.209162, 38.513629], + [-79.209062, 38.513429], + [-79.209062, 38.513229], + [-79.209162, 38.51283], + [-79.209662, 38.51203], + [-79.209762, 38.51193], + [-79.209762, 38.51113], + [-79.209731, 38.511036], + [-79.209662, 38.51083], + [-79.209762, 38.51053], + [-79.209762, 38.51033], + [-79.209962, 38.51003], + [-79.209962, 38.50993], + [-79.210162, 38.50953], + [-79.210362, 38.50923], + [-79.210462, 38.50893], + [-79.210662, 38.50853], + [-79.210762, 38.50823], + [-79.210962, 38.50803], + [-79.210962, 38.50743], + [-79.210462, 38.50693], + [-79.210462, 38.50683], + [-79.210362, 38.50683], + [-79.210362, 38.50673], + [-79.210262, 38.50673], + [-79.210262, 38.50663], + [-79.210062, 38.50643], + [-79.209862, 38.50633], + [-79.209762, 38.50613], + [-79.209662, 38.50603], + [-79.209362, 38.50583], + [-79.208962, 38.50543], + [-79.208362, 38.50503], + [-79.207462, 38.50413], + [-79.207362, 38.50393], + [-79.207262, 38.50383], + [-79.207162, 38.50383], + [-79.207062, 38.50363], + [-79.206962, 38.50353], + [-79.206962, 38.50323], + [-79.207162, 38.50303], + [-79.207162, 38.50293], + [-79.207262, 38.50283], + [-79.207462, 38.50253], + [-79.207562, 38.50243], + [-79.207562, 38.50213], + [-79.207662, 38.50203], + [-79.207662, 38.50173], + [-79.207762, 38.50163], + [-79.207762, 38.50073], + [-79.207851, 38.500652], + [-79.207762, 38.50053], + [-79.207887, 38.500436], + [-79.207876, 38.50013], + [-79.207998, 38.50013], + [-79.208086, 38.499757], + [-79.208149, 38.499486], + [-79.20834, 38.498794], + [-79.208417, 38.498336], + [-79.208394, 38.497976], + [-79.208469, 38.497321], + [-79.208493, 38.496999], + [-79.208567, 38.496782], + [-79.208723, 38.496509], + [-79.209461, 38.495813], + [-79.209583, 38.495698], + [-79.209706, 38.495582], + [-79.209729, 38.495301], + [-79.209767, 38.49504], + [-79.210011, 38.494291], + [-79.210029, 38.494239], + [-79.210101, 38.49407], + [-79.210174, 38.493901], + [-79.210594, 38.492921], + [-79.212413, 38.491834], + [-79.213795, 38.491008], + [-79.214431, 38.490819], + [-79.21475, 38.490684], + [-79.214947, 38.490451], + [-79.215013, 38.48996], + [-79.215215, 38.489269], + [-79.215362, 38.488899], + [-79.215693, 38.488603], + [-79.21628, 38.488425], + [-79.216647, 38.488319], + [-79.217816, 38.488013], + [-79.218628, 38.487695], + [-79.21907, 38.487449], + [-79.220147, 38.486223], + [-79.221409, 38.484845], + [-79.221483, 38.484701], + [-79.221313, 38.483889], + [-79.221026, 38.482507], + [-79.221012, 38.482094], + [-79.221012, 38.482072], + [-79.221011, 38.482026], + [-79.221008, 38.48173], + [-79.221002, 38.481492], + [-79.220902, 38.480726], + [-79.220964, 38.480598], + [-79.222171, 38.479647], + [-79.223738, 38.478481], + [-79.224344, 38.477852], + [-79.224586, 38.477596], + [-79.224701, 38.477482], + [-79.225058, 38.477113], + [-79.225073, 38.477098], + [-79.225106, 38.477064], + [-79.225154, 38.477014], + [-79.225474, 38.476658], + [-79.225672, 38.476479], + [-79.225918, 38.476368], + [-79.226798, 38.476186], + [-79.226814, 38.476183], + [-79.227135, 38.476118], + [-79.227405, 38.476063], + [-79.227692, 38.476008], + [-79.228794, 38.475153], + [-79.229319, 38.474826], + [-79.229812, 38.474668], + [-79.230477, 38.474592], + [-79.230785, 38.474497], + [-79.231573, 38.474077], + [-79.231588, 38.47407], + [-79.231644, 38.474046], + [-79.231658, 38.474041], + [-79.231805, 38.473988], + [-79.231859, 38.473964], + [-79.232094, 38.473859], + [-79.23273, 38.473554], + [-79.232844, 38.473504], + [-79.233136, 38.473388], + [-79.233437, 38.473285], + [-79.233744, 38.473197], + [-79.234019, 38.47311], + [-79.234198, 38.473061], + [-79.234369, 38.473014], + [-79.234408, 38.473005], + [-79.234471, 38.472991], + [-79.234501, 38.472977], + [-79.234544, 38.472957], + [-79.234552, 38.472953], + [-79.234566, 38.472947], + [-79.234584, 38.472939], + [-79.23571, 38.472418], + [-79.235952, 38.472264], + [-79.23624, 38.471878], + [-79.23689, 38.471471], + [-79.236903, 38.471463], + [-79.238328, 38.471062], + [-79.239117, 38.470753], + [-79.239128, 38.470749], + [-79.23963, 38.470338], + [-79.23976, 38.47021], + [-79.239779, 38.470191], + [-79.239862, 38.470109], + [-79.239884, 38.470087], + [-79.239887, 38.470045], + [-79.23992, 38.469933], + [-79.239997, 38.469769], + [-79.240079, 38.469571], + [-79.24018, 38.469248], + [-79.240297, 38.468925], + [-79.24042, 38.468641], + [-79.240461, 38.468518], + [-79.240487, 38.468392], + [-79.240499, 38.468224], + [-79.240518, 38.468114], + [-79.240554, 38.468007], + [-79.240621, 38.467885], + [-79.240941, 38.467472], + [-79.241174, 38.467146], + [-79.241428, 38.466814], + [-79.241625, 38.466521], + [-79.241802, 38.46622], + [-79.241891, 38.466036], + [-79.24196, 38.465845], + [-79.242007, 38.46565], + [-79.242037, 38.465317], + [-79.242052, 38.465158], + [-79.242059, 38.465145], + [-79.242068, 38.465128], + [-79.24204, 38.465059], + [-79.24205, 38.464985], + [-79.242079, 38.464912], + [-79.242191, 38.464631], + [-79.242017, 38.464314], + [-79.241876, 38.462769], + [-79.241842, 38.46263], + [-79.241834, 38.462594], + [-79.241753, 38.462273], + [-79.241668, 38.461934], + [-79.241665, 38.461922], + [-79.241638, 38.461568], + [-79.241694, 38.46124], + [-79.24174, 38.460968], + [-79.24177, 38.4608], + [-79.241948, 38.459799], + [-79.24195, 38.459762], + [-79.242004, 38.458714], + [-79.241996, 38.458009], + [-79.241856, 38.457109], + [-79.241889, 38.456747], + [-79.242077, 38.456378], + [-79.242164, 38.456012], + [-79.242298, 38.455527], + [-79.242231, 38.454905], + [-79.242391, 38.454494], + [-79.242671, 38.454189], + [-79.242952, 38.454031], + [-79.244126, 38.453936], + [-79.244327, 38.453915], + [-79.245675, 38.453388], + [-79.246489, 38.453283], + [-79.247477, 38.453314], + [-79.247904, 38.453409], + [-79.248318, 38.453649], + [-79.248746, 38.45401], + [-79.248752, 38.454015], + [-79.2491, 38.454309], + [-79.249226, 38.454389], + [-79.249733, 38.454505], + [-79.250067, 38.454642], + [-79.25036, 38.454663], + [-79.250801, 38.4546], + [-79.251255, 38.454653], + [-79.252431, 38.455333], + [-79.252977, 38.455759], + [-79.253177, 38.455843], + [-79.253524, 38.455906], + [-79.254298, 38.456012], + [-79.254485, 38.455938], + [-79.255767, 38.454284], + [-79.25586, 38.453999], + [-79.255994, 38.453032], + [-79.256087, 38.452903], + [-79.256407, 38.452261], + [-79.256488, 38.45205], + [-79.256821, 38.45088], + [-79.256981, 38.450575], + [-79.257369, 38.450164], + [-79.257862, 38.449774], + [-79.258463, 38.449437], + [-79.260159, 38.448826], + [-79.260559, 38.448584], + [-79.261106, 38.448078], + [-79.261949, 38.446592], + [-79.262073, 38.446325], + [-79.262575, 38.445851], + [-79.26269, 38.445634], + [-79.262835, 38.44523], + [-79.262906, 38.44466], + [-79.263497, 38.443805], + [-79.263571, 38.443695], + [-79.264226, 38.443442], + [-79.265044, 38.442698], + [-79.265157, 38.44247], + [-79.265272, 38.442235], + [-79.265318, 38.441889], + [-79.265324, 38.441843], + [-79.265469, 38.441555], + [-79.26558, 38.441336], + [-79.265664, 38.441199], + [-79.265771, 38.440987], + [-79.265873, 38.440714], + [-79.26595, 38.440488], + [-79.265983, 38.440393], + [-79.266057, 38.440176], + [-79.266202, 38.43977], + [-79.266332, 38.439448], + [-79.266366, 38.439388], + [-79.266398, 38.439333], + [-79.266496, 38.439195], + [-79.266608, 38.439064], + [-79.266657, 38.439017], + [-79.266669, 38.439005], + [-79.26685, 38.438834], + [-79.266994, 38.438686], + [-79.267128, 38.438531], + [-79.267161, 38.438493], + [-79.267322, 38.438282], + [-79.267355, 38.438274], + [-79.267466, 38.438249], + [-79.267478, 38.438246], + [-79.267485, 38.438245], + [-79.267493, 38.438243], + [-79.267502, 38.438241], + [-79.267624, 38.438213], + [-79.267849, 38.438161], + [-79.268037, 38.438052], + [-79.268427, 38.437714], + [-79.269183, 38.437387], + [-79.269228, 38.437389], + [-79.269324, 38.437394], + [-79.269364, 38.437396], + [-79.269372, 38.437397], + [-79.269393, 38.437398], + [-79.269448, 38.437401], + [-79.271537, 38.437507], + [-79.272041, 38.437388], + [-79.274521, 38.436366], + [-79.274912, 38.436019], + [-79.275025, 38.435463], + [-79.275202, 38.435115], + [-79.275345, 38.435], + [-79.277461, 38.434534], + [-79.277762, 38.43441], + [-79.278001, 38.434181], + [-79.278181, 38.433941], + [-79.278605, 38.433281], + [-79.278837, 38.433018], + [-79.279117, 38.432845], + [-79.281158, 38.432188], + [-79.281963, 38.432179], + [-79.282241, 38.432099], + [-79.28253, 38.431921], + [-79.282757, 38.431702], + [-79.282854, 38.431467], + [-79.282693, 38.431094], + [-79.282707, 38.430972], + [-79.282727, 38.430672], + [-79.282728, 38.430333], + [-79.282728, 38.430328], + [-79.282729, 38.430184], + [-79.282729, 38.430172], + [-79.282717, 38.4301], + [-79.28271, 38.430057], + [-79.282674, 38.429944], + [-79.282568, 38.429727], + [-79.282427, 38.429396], + [-79.282312, 38.429072], + [-79.282299, 38.429038], + [-79.282228, 38.428854], + [-79.282131, 38.428639], + [-79.282059, 38.428507], + [-79.281919, 38.428285], + [-79.281764, 38.428069], + [-79.281461, 38.427695], + [-79.28128, 38.427494], + [-79.281084, 38.427303], + [-79.28103, 38.427235], + [-79.280969, 38.427147], + [-79.280907, 38.427058], + [-79.280799, 38.426876], + [-79.280527, 38.426305], + [-79.280376, 38.425956], + [-79.280343, 38.425846], + [-79.280305, 38.425668], + [-79.280303, 38.425659], + [-79.280285, 38.4255], + [-79.280269, 38.425488], + [-79.280014, 38.425294], + [-79.279695, 38.424219], + [-79.279686, 38.423741], + [-79.279875, 38.423282], + [-79.280055, 38.421338], + [-79.280153, 38.420757], + [-79.280316, 38.420369], + [-79.282943, 38.418108], + [-79.283222, 38.418037], + [-79.283508, 38.418057], + [-79.285627, 38.419258], + [-79.286042, 38.419675], + [-79.286305, 38.419939], + [-79.28691, 38.420574], + [-79.288453, 38.420974], + [-79.290376, 38.42105], + [-79.290575, 38.421057], + [-79.290609, 38.421054], + [-79.290698, 38.421046], + [-79.290784, 38.421024], + [-79.290862, 38.420988], + [-79.29093, 38.420941], + [-79.290937, 38.420934], + [-79.290959, 38.420911], + [-79.290971, 38.420899], + [-79.291031, 38.420838], + [-79.291317, 38.420528], + [-79.291361, 38.42048], + [-79.291497, 38.420319], + [-79.291507, 38.420307], + [-79.291673, 38.42011], + [-79.291758, 38.420015], + [-79.291764, 38.420009], + [-79.291894, 38.419864], + [-79.292009, 38.419744], + [-79.292901, 38.419573], + [-79.293065, 38.419464], + [-79.293203, 38.419325], + [-79.293417, 38.419017], + [-79.293668, 38.41869], + [-79.29392, 38.41857], + [-79.295547, 38.418273], + [-79.295625, 38.418258], + [-79.295728, 38.41833], + [-79.29582, 38.418358], + [-79.295918, 38.418372], + [-79.296016, 38.418371], + [-79.296114, 38.418357], + [-79.296239, 38.418285], + [-79.296324, 38.418228], + [-79.296329, 38.418224], + [-79.296349, 38.418211], + [-79.296356, 38.418206], + [-79.296493, 38.418098], + [-79.296616, 38.417981], + [-79.296668, 38.417922], + [-79.297243, 38.417266], + [-79.297272, 38.417223], + [-79.29739, 38.417046], + [-79.29752, 38.416821], + [-79.297588, 38.416688], + [-79.29759, 38.416683], + [-79.297613, 38.416637], + [-79.297639, 38.416577], + [-79.297692, 38.416454], + [-79.297728, 38.416429], + [-79.298415, 38.415947], + [-79.298736, 38.41585], + [-79.298904, 38.415701], + [-79.299237, 38.41536], + [-79.299653, 38.415127], + [-79.300088, 38.414899], + [-79.300691, 38.414821], + [-79.301068, 38.414879], + [-79.302515, 38.415368], + [-79.303835, 38.415464], + [-79.304584, 38.415519], + [-79.304841, 38.41546], + [-79.305233, 38.41537], + [-79.305554, 38.415297], + [-79.305709, 38.415248], + [-79.306232, 38.415083], + [-79.306395, 38.414942], + [-79.306672, 38.414497], + [-79.307214, 38.413873], + [-79.307894, 38.413302], + [-79.308733, 38.412853], + [-79.308923, 38.412754], + [-79.309516, 38.412685], + [-79.309719, 38.41269], + [-79.310287, 38.412739], + [-79.310541, 38.412684], + [-79.310765, 38.412636], + [-79.311051, 38.412479], + [-79.311136, 38.412412], + [-79.311355, 38.41224], + [-79.31168, 38.412037], + [-79.312214, 38.411901], + [-79.312279, 38.411884], + [-79.312652, 38.411979], + [-79.316529, 38.412984], + [-79.316723, 38.413035], + [-79.318441, 38.413484], + [-79.323594, 38.414829], + [-79.32531, 38.415277], + [-79.325346, 38.415287], + [-79.325453, 38.415316], + [-79.325488, 38.415325], + [-79.325974, 38.41546], + [-79.32743, 38.415863], + [-79.327915, 38.415997], + [-79.328183, 38.416071], + [-79.328986, 38.416294], + [-79.329253, 38.416368], + [-79.3302, 38.416619], + [-79.333039, 38.417372], + [-79.333985, 38.417623], + [-79.334421, 38.417739], + [-79.335729, 38.418086], + [-79.336164, 38.418201], + [-79.336466, 38.418281], + [-79.336526, 38.418297], + [-79.33737, 38.418521], + [-79.33761, 38.418585], + [-79.337671, 38.418601], + [-79.337911, 38.418665], + [-79.338628, 38.418855], + [-79.338671, 38.418866], + [-79.338867, 38.418918], + [-79.343488, 38.420143], + [-79.35735, 38.423816], + [-79.361971, 38.42504], + [-79.363342, 38.425403], + [-79.367451, 38.426492], + [-79.368821, 38.426855], + [-79.369084, 38.426925], + [-79.369485, 38.427032], + [-79.369873, 38.427135], + [-79.370135, 38.427205], + [-79.371596, 38.42762], + [-79.374159, 38.428349], + [-79.374756, 38.42852], + [-79.375976, 38.428861], + [-79.377437, 38.429269], + [-79.378193, 38.429481], + [-79.38046, 38.430115], + [-79.381215, 38.430326], + [-79.383092, 38.430852], + [-79.384501, 38.431246], + [-79.388722, 38.432424], + [-79.390598, 38.432948], + [-79.392126, 38.433377], + [-79.394448, 38.434029], + [-79.396559, 38.434617], + [-79.396708, 38.434659], + [-79.398223, 38.435082], + [-79.398235, 38.435085], + [-79.400136, 38.435617], + [-79.403063, 38.436437], + [-79.405835, 38.437215], + [-79.407735, 38.437748], + [-79.407769, 38.437757], + [-79.407988, 38.437818], + [-79.408027, 38.437829], + [-79.408148, 38.437862], + [-79.408536, 38.437969], + [-79.408904, 38.438072], + [-79.409196, 38.438154], + [-79.409227, 38.438162], + [-79.4095, 38.438238], + [-79.409912, 38.438354], + [-79.41041, 38.438493], + [-79.410713, 38.438578], + [-79.413144, 38.439259], + [-79.420435, 38.4413], + [-79.422866, 38.44198], + [-79.422931, 38.441998], + [-79.424815, 38.442527], + [-79.425391, 38.442691], + [-79.425718, 38.442784], + [-79.427117, 38.44318], + [-79.427692, 38.443343], + [-79.427938, 38.443413], + [-79.428676, 38.443622], + [-79.428921, 38.443691], + [-79.428942, 38.443697], + [-79.429174, 38.443763], + [-79.429811, 38.443944], + [-79.429933, 38.443978], + [-79.430185, 38.444049], + [-79.430453, 38.444126], + [-79.430734, 38.444207], + [-79.431258, 38.444359], + [-79.431526, 38.444436], + [-79.431579, 38.444452], + [-79.431738, 38.444501], + [-79.431791, 38.444517], + [-79.431806, 38.444521], + [-79.43185, 38.444534], + [-79.431864, 38.444538], + [-79.432059, 38.444591], + [-79.43264, 38.444751], + [-79.432834, 38.444804], + [-79.435612, 38.445592], + [-79.437035, 38.445995], + [-79.443947, 38.447955], + [-79.446724, 38.448743], + [-79.446762, 38.448754], + [-79.446874, 38.448786], + [-79.446911, 38.448796], + [-79.446973, 38.448814], + [-79.44762, 38.448998], + [-79.447677, 38.449014], + [-79.449974, 38.449665], + [-79.45074, 38.449882], + [-79.451114, 38.449988], + [-79.451657, 38.450142], + [-79.452234, 38.450306], + [-79.452607, 38.450412], + [-79.457287, 38.451741], + [-79.471327, 38.455727], + [-79.476006, 38.457055], + [-79.476085, 38.457078], + [-79.476321, 38.457145], + [-79.476399, 38.457167], + [-79.476641, 38.457236], + [-79.478361, 38.46025], + [-79.479204, 38.461727], + [-79.483893, 38.469944], + [-79.485737, 38.473175], + [-79.486067, 38.473752], + [-79.487055, 38.475483], + [-79.487384, 38.47606], + [-79.487755, 38.476709], + [-79.488865, 38.478656], + [-79.489235, 38.479304], + [-79.490705, 38.481879], + [-79.495113, 38.4896], + [-79.496502, 38.492033], + [-79.496579, 38.492176], + [-79.496588, 38.492192], + [-79.496615, 38.492238], + [-79.496624, 38.492254], + [-79.496636, 38.492275], + [-79.496652, 38.492304], + [-79.496659, 38.492316], + [-79.496915, 38.492763], + [-79.49768, 38.4941], + [-79.497935, 38.494545], + [-79.498041, 38.494731], + [-79.498229, 38.49506], + [-79.498359, 38.495288], + [-79.498465, 38.495473], + [-79.498544, 38.49561], + [-79.49868, 38.495844], + [-79.498726, 38.495924], + [-79.49951, 38.497277], + [-79.499771, 38.497728], + [-79.499771, 38.497587], + [-79.499779, 38.497598], + [-79.499805, 38.497633], + [-79.499813, 38.497644], + [-79.499826, 38.497663], + [-79.499865, 38.497719], + [-79.499877, 38.497737], + [-79.499969, 38.497869], + [-79.500243, 38.498263], + [-79.500334, 38.498394], + [-79.500359, 38.498429], + [-79.500433, 38.498534], + [-79.500457, 38.498568], + [-79.500574, 38.498743], + [-79.500925, 38.499269], + [-79.501041, 38.499444], + [-79.501063, 38.499485], + [-79.501128, 38.499608], + [-79.50115, 38.499649], + [-79.501171, 38.499688], + [-79.501233, 38.499805], + [-79.501237, 38.499812], + [-79.501248, 38.499834], + [-79.501254, 38.499845], + [-79.501559, 38.500396], + [-79.502475, 38.502051], + [-79.502781, 38.502604], + [-79.503001, 38.503001], + [-79.503471, 38.50385], + [-79.503651, 38.504198], + [-79.503859, 38.504603], + [-79.503935, 38.504731], + [-79.503947, 38.504752], + [-79.504165, 38.505115], + [-79.504233, 38.505229], + [-79.504242, 38.505243], + [-79.504521, 38.505689], + [-79.505022, 38.506488], + [-79.505337, 38.50704], + [-79.505599, 38.507498], + [-79.506181, 38.508468], + [-79.506508, 38.509012], + [-79.507929, 38.511378], + [-79.508512, 38.512348], + [-79.508698, 38.512657], + [-79.509257, 38.513587], + [-79.509443, 38.513897], + [-79.509625, 38.5142], + [-79.510173, 38.515113], + [-79.510356, 38.515417], + [-79.51042, 38.515525], + [-79.510437, 38.515552], + [-79.510596, 38.515816], + [-79.511247, 38.516901], + [-79.511293, 38.516978], + [-79.511309, 38.517004], + [-79.512344, 38.518727], + [-79.515261, 38.523584], + [-79.515448, 38.523896], + [-79.516484, 38.52562], + [-79.51653, 38.525696], + [-79.516669, 38.525928], + [-79.516715, 38.526005], + [-79.516885, 38.526289], + [-79.517398, 38.527142], + [-79.517569, 38.527427], + [-79.517857, 38.527906], + [-79.518298, 38.52864], + [-79.518722, 38.529347], + [-79.51901, 38.529827], + [-79.519412, 38.530496], + [-79.520618, 38.532504], + [-79.52102, 38.533173], + [-79.52111, 38.533323], + [-79.521381, 38.533775], + [-79.521472, 38.533926], + [-79.521472, 38.534126], + [-79.521672, 38.534226], + [-79.521702, 38.534257], + [-79.521762, 38.534317], + [-79.521791, 38.534331], + [-79.521822, 38.534329], + [-79.521872, 38.534326], + [-79.521912, 38.534345], + [-79.52194, 38.534359], + [-79.522005, 38.534392], + [-79.522072, 38.534426], + [-79.522195, 38.534507], + [-79.522257, 38.534548], + [-79.522372, 38.534626], + [-79.522672, 38.534726], + [-79.523072, 38.534926], + [-79.523572, 38.535026], + [-79.523872, 38.535326], + [-79.524072, 38.535626], + [-79.524572, 38.536126], + [-79.524974, 38.536322], + [-79.525372, 38.536426], + [-79.525872, 38.536726], + [-79.526372, 38.536926], + [-79.526464, 38.536987], + [-79.526672, 38.537126], + [-79.526772, 38.537526], + [-79.526872, 38.538025], + [-79.527073, 38.538325], + [-79.528273, 38.539125], + [-79.528273, 38.539825], + [-79.528373, 38.540225], + [-79.528573, 38.540525], + [-79.528573, 38.540625], + [-79.528673, 38.540625], + [-79.530173, 38.541825], + [-79.530273, 38.541925], + [-79.530573, 38.541925], + [-79.531073, 38.542025], + [-79.531473, 38.542125], + [-79.531773, 38.542325], + [-79.531973, 38.542425], + [-79.531873, 38.542825], + [-79.531973, 38.543025], + [-79.531973, 38.543125], + [-79.533173, 38.544725], + [-79.533573, 38.544925], + [-79.533773, 38.545225], + [-79.533373, 38.546025], + [-79.533373, 38.546225], + [-79.533673, 38.546625], + [-79.534473, 38.547425], + [-79.534631, 38.547543], + [-79.534873, 38.547725], + [-79.535673, 38.548325], + [-79.535873, 38.548725], + [-79.536073, 38.549025], + [-79.536273, 38.549425], + [-79.536273, 38.549825], + [-79.536473, 38.550325], + [-79.536873, 38.550925], + [-79.537373, 38.551225], + [-79.537525, 38.551347], + [-79.537873, 38.551625], + [-79.538273, 38.551825], + [-79.538673, 38.551925], + [-79.539173, 38.552025], + [-79.539773, 38.552125], + [-79.540773, 38.552125], + [-79.541173, 38.552325], + [-79.541573, 38.552625], + [-79.542573, 38.553225], + [-79.543173, 38.553525], + [-79.543673, 38.553725], + [-79.544173, 38.554025], + [-79.544573, 38.554125], + [-79.545073, 38.554325], + [-79.545673, 38.554525], + [-79.545973, 38.554925], + [-79.546273, 38.555125], + [-79.547073, 38.555525], + [-79.547134, 38.555537], + [-79.547574, 38.555625], + [-79.548174, 38.555925], + [-79.548674, 38.556125], + [-79.548974, 38.556425], + [-79.549374, 38.556725], + [-79.549474, 38.556725], + [-79.554674, 38.559925], + [-79.554974, 38.560025], + [-79.555474, 38.560225], + [-79.555974, 38.560225], + [-79.556774, 38.560325], + [-79.557374, 38.560425], + [-79.558074, 38.560725], + [-79.558774, 38.560925], + [-79.560174, 38.560925], + [-79.560974, 38.560825], + [-79.561674, 38.560825], + [-79.562174, 38.560925], + [-79.562474, 38.560925], + [-79.562674, 38.561025], + [-79.565574, 38.562325], + [-79.566274, 38.562525], + [-79.567074, 38.562725], + [-79.567974, 38.562825], + [-79.568265, 38.562854], + [-79.568974, 38.562925], + [-79.570574, 38.562925], + [-79.571574, 38.563125], + [-79.571774, 38.563125], + [-79.571962, 38.563194], + [-79.572527, 38.563402], + [-79.572715, 38.563471], + [-79.572804, 38.563504], + [-79.573072, 38.563601], + [-79.573162, 38.563634], + [-79.575935, 38.564657], + [-79.584256, 38.567724], + [-79.58703, 38.568747], + [-79.589188, 38.569543], + [-79.595664, 38.571932], + [-79.597823, 38.572729], + [-79.597841, 38.572734], + [-79.59788, 38.572745], + [-79.597898, 38.572752], + [-79.597916, 38.57276], + [-79.597929, 38.572765], + [-79.597955, 38.572776], + [-79.59797, 38.572783], + [-79.597984, 38.572789], + [-79.598219, 38.572874], + [-79.598926, 38.573132], + [-79.599163, 38.573218], + [-79.606664, 38.575973], + [-79.615338, 38.579158], + [-79.624777, 38.582624], + [-79.629169, 38.584232], + [-79.636673, 38.586981], + [-79.636767, 38.587015], + [-79.637049, 38.587118], + [-79.637143, 38.587153], + [-79.638292, 38.587574], + [-79.641741, 38.588836], + [-79.642892, 38.589257], + [-79.643856, 38.589611], + [-79.64675, 38.590672], + [-79.647715, 38.591026], + [-79.647987, 38.591125], + [-79.648805, 38.591424], + [-79.649078, 38.591523], + [-79.649178, 38.591423], + [-79.649178, 38.591023], + [-79.649378, 38.590723], + [-79.649878, 38.590323], + [-79.650478, 38.589123], + [-79.650578, 38.588523], + [-79.65063, 38.58839], + [-79.650778, 38.588023], + [-79.651178, 38.587223], + [-79.651878, 38.586523], + [-79.653078, 38.585523], + [-79.653578, 38.585123], + [-79.653978, 38.584723], + [-79.654478, 38.584024], + [-79.655178, 38.583124], + [-79.655478, 38.582424], + [-79.655878, 38.581424], + [-79.655878, 38.581024], + [-79.655778, 38.580424], + [-79.655478, 38.579924], + [-79.655407, 38.579502], + [-79.655378, 38.579324], + [-79.655478, 38.578724], + [-79.655578, 38.578324], + [-79.655778, 38.577724], + [-79.655878, 38.576924], + [-79.656116, 38.576203], + [-79.656262, 38.576019], + [-79.65636, 38.575958], + [-79.656578, 38.575824], + [-79.656658, 38.575783], + [-79.656761, 38.575732], + [-79.656931, 38.575647], + [-79.656978, 38.575624], + [-79.657345, 38.575256], + [-79.657378, 38.575224], + [-79.657494, 38.575137], + [-79.657593, 38.575062], + [-79.657778, 38.574924], + [-79.657841, 38.574797], + [-79.657897, 38.574686], + [-79.657978, 38.574524], + [-79.657978, 38.574224], + [-79.657938, 38.574106], + [-79.657878, 38.573924], + [-79.657878, 38.573524], + [-79.657978, 38.573324], + [-79.658178, 38.573024], + [-79.658783, 38.572822], + [-79.659358, 38.572631], + [-79.659478, 38.572624], + [-79.659778, 38.572624], + [-79.660378, 38.572524], + [-79.660436, 38.57248], + [-79.660778, 38.572224], + [-79.661173, 38.571925], + [-79.661578, 38.571524], + [-79.662278, 38.570924], + [-79.662678, 38.570624], + [-79.662878, 38.570424], + [-79.662852, 38.570321], + [-79.662778, 38.570024], + [-79.662678, 38.569624], + [-79.662588, 38.569252], + [-79.662451, 38.568778], + [-79.662378, 38.568524], + [-79.662278, 38.568024], + [-79.661978, 38.567624], + [-79.661813, 38.5675], + [-79.661578, 38.567324], + [-79.661478, 38.567324], + [-79.661389, 38.567282], + [-79.661332, 38.567253], + [-79.661164, 38.567167], + [-79.661078, 38.567124], + [-79.660578, 38.566724], + [-79.660589, 38.566667], + [-79.660677, 38.566226], + [-79.660678, 38.565624], + [-79.660678, 38.565224], + [-79.660578, 38.564824], + [-79.660478, 38.564524], + [-79.660467, 38.564518], + [-79.660078, 38.564324], + [-79.659902, 38.564086], + [-79.659478, 38.563524], + [-79.659415, 38.563336], + [-79.659378, 38.563224], + [-79.659278, 38.563024], + [-79.659178, 38.562724], + [-79.659278, 38.562424], + [-79.659578, 38.562224], + [-79.660278, 38.561524], + [-79.66063, 38.561382], + [-79.660778, 38.561324], + [-79.661278, 38.561024], + [-79.661428, 38.560968], + [-79.662078, 38.560724], + [-79.662376, 38.560604], + [-79.662578, 38.560524], + [-79.663178, 38.560524], + [-79.663478, 38.560624], + [-79.663878, 38.560724], + [-79.664478, 38.560824], + [-79.664878, 38.560924], + [-79.665078, 38.560924], + [-79.665178, 38.560724], + [-79.665196, 38.560668], + [-79.665278, 38.560424], + [-79.665278, 38.560124], + [-79.665378, 38.559824], + [-79.665442, 38.559697], + [-79.665478, 38.559645], + [-79.66549, 38.559629], + [-79.665532, 38.559467], + [-79.665549, 38.559407], + [-79.665563, 38.559365], + [-79.665578, 38.559324], + [-79.665639, 38.559262], + [-79.665671, 38.559231], + [-79.665703, 38.559198], + [-79.665778, 38.559124], + [-79.665778, 38.559024], + [-79.665855, 38.558714], + [-79.665878, 38.558624], + [-79.665978, 38.558224], + [-79.665978, 38.557824], + [-79.665957, 38.557722], + [-79.665892, 38.557392], + [-79.665878, 38.557325], + [-79.665978, 38.556924], + [-79.666278, 38.556524], + [-79.666878, 38.555924], + [-79.667178, 38.555024], + [-79.667178, 38.554924], + [-79.667078, 38.554424], + [-79.667078, 38.553924], + [-79.667079, 38.553793], + [-79.667081, 38.553604], + [-79.667089, 38.55356], + [-79.667278, 38.552624], + [-79.667678, 38.552124], + [-79.667978, 38.551824], + [-79.668378, 38.551524], + [-79.668678, 38.551324], + [-79.669078, 38.551124], + [-79.669378, 38.551024], + [-79.669578, 38.550824], + [-79.669778, 38.550324], + [-79.669778, 38.550124], + [-79.669678, 38.550024], + [-79.669478, 38.549724], + [-79.669278, 38.549524], + [-79.669078, 38.549124], + [-79.668878, 38.548524], + [-79.668878, 38.548024], + [-79.669078, 38.547524], + [-79.669378, 38.547124], + [-79.669578, 38.546824], + [-79.669678, 38.546524], + [-79.669578, 38.546224], + [-79.669378, 38.545924], + [-79.669178, 38.545724], + [-79.669178, 38.545324], + [-79.669378, 38.544924], + [-79.669678, 38.544524], + [-79.669678, 38.543424], + [-79.670078, 38.542824], + [-79.670378, 38.542524], + [-79.670578, 38.542224], + [-79.670678, 38.541824], + [-79.670778, 38.541524], + [-79.670778, 38.541324], + [-79.670878, 38.541024], + [-79.670678, 38.540724], + [-79.670678, 38.540324], + [-79.670378, 38.540224], + [-79.669878, 38.540224], + [-79.669377, 38.540125], + [-79.669202, 38.540096], + [-79.668907, 38.540054], + [-79.668777, 38.540024], + [-79.668376, 38.539824], + [-79.667977, 38.539625], + [-79.667776, 38.539425], + [-79.667377, 38.539124], + [-79.667076, 38.538825], + [-79.666876, 38.538624], + [-79.666876, 38.538325], + [-79.667076, 38.538024], + [-79.667377, 38.537824], + [-79.667576, 38.537524], + [-79.667834, 38.537329], + [-79.667777, 38.537184], + [-79.667776, 38.537107], + [-79.667776, 38.536924], + [-79.667876, 38.536524], + [-79.667876, 38.536324], + [-79.668076, 38.535624], + [-79.668076, 38.535524], + [-79.668476, 38.534724], + [-79.668776, 38.534224], + [-79.669276, 38.533824], + [-79.669576, 38.533624], + [-79.669776, 38.533325], + [-79.670076, 38.532825], + [-79.670276, 38.532325], + [-79.670317, 38.53224], + [-79.670437, 38.532017], + [-79.670579, 38.531825], + [-79.670658, 38.531765], + [-79.670676, 38.531751], + [-79.670977, 38.531525], + [-79.671277, 38.531125], + [-79.671777, 38.530725], + [-79.671796, 38.530696], + [-79.671977, 38.530425], + [-79.672277, 38.530125], + [-79.672577, 38.529625], + [-79.672777, 38.529325], + [-79.672977, 38.528725], + [-79.672777, 38.528625], + [-79.672577, 38.528625], + [-79.671977, 38.528225], + [-79.671777, 38.528025], + [-79.671777, 38.527825], + [-79.671677, 38.527725], + [-79.671575, 38.527522], + [-79.671203, 38.527374], + [-79.671077, 38.527325], + [-79.670977, 38.527225], + [-79.670477, 38.527125], + [-79.670077, 38.527125], + [-79.669781, 38.526927], + [-79.669759, 38.526905], + [-79.669477, 38.526625], + [-79.669179, 38.526229], + [-79.668977, 38.525725], + [-79.668777, 38.525325], + [-79.668377, 38.525025], + [-79.668191, 38.524972], + [-79.667677, 38.524825], + [-79.667177, 38.524625], + [-79.666777, 38.524325], + [-79.666577, 38.523925], + [-79.666177, 38.523425], + [-79.665977, 38.523025], + [-79.665677, 38.522525], + [-79.665377, 38.522125], + [-79.665177, 38.521625], + [-79.664977, 38.521325], + [-79.664677, 38.521025], + [-79.664577, 38.520725], + [-79.664377, 38.520425], + [-79.664277, 38.520125], + [-79.663577, 38.519425], + [-79.663277, 38.519025], + [-79.662977, 38.518725], + [-79.662777, 38.518325], + [-79.662777, 38.517725], + [-79.662677, 38.517425], + [-79.662677, 38.517125], + [-79.662745, 38.516918], + [-79.662777, 38.516825], + [-79.662477, 38.516125], + [-79.662377, 38.515925], + [-79.662254, 38.51574], + [-79.662177, 38.515625], + [-79.662077, 38.515525], + [-79.662177, 38.515225], + [-79.662377, 38.514925], + [-79.662777, 38.514625], + [-79.663077, 38.514425], + [-79.663477, 38.514125], + [-79.663977, 38.514025], + [-79.664177, 38.514025], + [-79.664985, 38.513946], + [-79.66506, 38.513937], + [-79.665177, 38.513925], + [-79.665677, 38.513825], + [-79.6663, 38.513557], + [-79.666377, 38.513525], + [-79.666577, 38.513424], + [-79.666977, 38.513225], + [-79.667404, 38.513011], + [-79.667577, 38.512925], + [-79.667977, 38.512625], + [-79.668219, 38.51248], + [-79.668477, 38.512325], + [-79.668777, 38.512025], + [-79.668777, 38.511807], + [-79.668868, 38.511728], + [-79.668882, 38.511549], + [-79.668962, 38.511446], + [-79.668977, 38.511425], + [-79.669077, 38.511025], + [-79.669131, 38.510981], + [-79.669131, 38.51096], + [-79.669132, 38.510926], + [-79.669131, 38.510885], + [-79.669282, 38.510502], + [-79.669489, 38.50997], + [-79.669694, 38.509543], + [-79.669741, 38.509306], + [-79.669795, 38.509035], + [-79.669893, 38.508545], + [-79.669978, 38.508288], + [-79.669991, 38.508252], + [-79.670091, 38.507959], + [-79.67019, 38.507763], + [-79.670489, 38.507667], + [-79.670986, 38.507978], + [-79.671584, 38.508289], + [-79.671983, 38.508597], + [-79.672272, 38.508993], + [-79.672281, 38.509005], + [-79.672579, 38.509517], + [-79.672926, 38.509787], + [-79.672977, 38.509825], + [-79.673477, 38.510125], + [-79.674077, 38.510425], + [-79.674577, 38.510525], + [-79.675377, 38.510525], + [-79.675477, 38.510425], + [-79.675577, 38.510425], + [-79.675977, 38.510325], + [-79.676477, 38.510325], + [-79.677177, 38.510225], + [-79.678177, 38.510225], + [-79.678977, 38.510325], + [-79.679377, 38.510425], + [-79.680077, 38.510625], + [-79.680377, 38.510625], + [-79.680477, 38.510525], + [-79.680577, 38.510125], + [-79.680877, 38.509625], + [-79.681077, 38.509325], + [-79.681112, 38.509243], + [-79.681377, 38.508625], + [-79.681577, 38.508225], + [-79.681677, 38.507725], + [-79.681677, 38.507325], + [-79.681377, 38.506025], + [-79.681377, 38.505925], + [-79.681077, 38.505325], + [-79.681177, 38.504925], + [-79.681577, 38.504525], + [-79.681609, 38.504512], + [-79.682077, 38.504325], + [-79.682677, 38.504125], + [-79.682977, 38.503925], + [-79.683077, 38.503625], + [-79.682977, 38.503425], + [-79.682677, 38.503125], + [-79.682477, 38.502525], + [-79.682577, 38.502025], + [-79.682603, 38.501972], + [-79.682777, 38.501625], + [-79.682977, 38.501325], + [-79.683177, 38.501125], + [-79.683477, 38.500925], + [-79.683577, 38.500925], + [-79.683777, 38.500825], + [-79.683777, 38.500625], + [-79.684202, 38.500125], + [-79.685625, 38.498777], + [-79.686995, 38.497477], + [-79.688348, 38.496191], + [-79.689234, 38.496421], + [-79.689586, 38.496495], + [-79.690406, 38.496667], + [-79.690794, 38.496714], + [-79.691304, 38.496776], + [-79.692276, 38.496482], + [-79.6927, 38.495768], + [-79.693023, 38.494925], + [-79.693628, 38.494542], + [-79.694509, 38.49424], + [-79.694736, 38.493919], + [-79.694986, 38.493261], + [-79.695075, 38.492289], + [-79.695602, 38.491663], + [-79.695779, 38.491306], + [-79.69611, 38.490644], + [-79.696047, 38.489421], + [-79.695995, 38.488245], + [-79.695995, 38.488238], + [-79.696038, 38.488183], + [-79.696096, 38.488111], + [-79.696221, 38.488053], + [-79.696292, 38.488022], + [-79.696318, 38.48801], + [-79.696364, 38.48799], + [-79.697128, 38.48771], + [-79.697235, 38.487672], + [-79.697575, 38.487231], + [-79.697371, 38.485831], + [-79.697186, 38.485267], + [-79.696962, 38.484582], + [-79.696892, 38.484426], + [-79.696677, 38.483948], + [-79.696032, 38.482515], + [-79.695878, 38.482172], + [-79.695804, 38.482045], + [-79.695708, 38.481879], + [-79.695465, 38.481462], + [-79.695377, 38.481447], + [-79.695189, 38.481415], + [-79.694642, 38.481322], + [-79.694058, 38.481223], + [-79.693507, 38.481252], + [-79.693427, 38.481019], + [-79.693418, 38.480745], + [-79.6934, 38.480191], + [-79.693427, 38.480033], + [-79.693477, 38.479748], + [-79.693586, 38.479592], + [-79.693601, 38.479571], + [-79.693688, 38.479469], + [-79.693941, 38.479179], + [-79.693986, 38.479014], + [-79.694057, 38.478761], + [-79.694183, 38.478319], + [-79.694367, 38.478191], + [-79.695054, 38.477978], + [-79.695585, 38.477815], + [-79.695603, 38.477809], + [-79.695658, 38.477793], + [-79.695677, 38.477788], + [-79.695825, 38.477733], + [-79.695963, 38.477665], + [-79.696038, 38.477605], + [-79.69613, 38.477518], + [-79.696231, 38.477403], + [-79.696314, 38.477316], + [-79.696366, 38.477273], + [-79.69641, 38.477237], + [-79.696452, 38.477199], + [-79.69649, 38.477144], + [-79.696512, 38.477083], + [-79.696544, 38.477031], + [-79.69661, 38.476948], + [-79.69669, 38.476873], + [-79.696886, 38.47673], + [-79.697158, 38.476515], + [-79.697439, 38.476265], + [-79.697632, 38.476108], + [-79.698302, 38.475629], + [-79.698356, 38.475591], + [-79.698437, 38.475538], + [-79.698629, 38.475391], + [-79.698704, 38.475317], + [-79.698821, 38.475176], + [-79.698902, 38.475076], + [-79.698991, 38.474996], + [-79.699476, 38.474535], + [-79.699625, 38.473975], + [-79.69944, 38.472888], + [-79.699324, 38.472732], + [-79.698773, 38.471992], + [-79.698891, 38.471236], + [-79.699123, 38.470296], + [-79.698933, 38.469877], + [-79.698368, 38.469734], + [-79.696893, 38.469627], + [-79.695591, 38.469066], + [-79.694913, 38.46829], + [-79.694909, 38.468283], + [-79.694037, 38.466702], + [-79.69377, 38.466324], + [-79.693641, 38.46608], + [-79.693092, 38.465042], + [-79.691923, 38.464432], + [-79.691139, 38.463792], + [-79.691089, 38.463751], + [-79.69086, 38.463049], + [-79.690659, 38.461914], + [-79.688876, 38.458701], + [-79.688537, 38.457869], + [-79.688369, 38.456878], + [-79.688166, 38.454327], + [-79.688246, 38.453915], + [-79.688441, 38.452923], + [-79.688108, 38.450452], + [-79.688249, 38.450278], + [-79.688402, 38.450092], + [-79.688674, 38.449759], + [-79.688816, 38.449587], + [-79.689438, 38.448913], + [-79.689678, 38.448655], + [-79.690698, 38.447684], + [-79.691336, 38.446927], + [-79.691427, 38.44682], + [-79.691482, 38.446291], + [-79.691391, 38.446064], + [-79.691383, 38.446044], + [-79.69137, 38.44601], + [-79.691361, 38.445985], + [-79.691355, 38.445966], + [-79.691215, 38.445616], + [-79.691082, 38.445284], + [-79.690624, 38.444661], + [-79.690402, 38.444358], + [-79.690201, 38.444023], + [-79.6897, 38.443184], + [-79.689634, 38.443003], + [-79.689503, 38.442636], + [-79.689467, 38.442597], + [-79.689411, 38.442537], + [-79.689367, 38.442477], + [-79.689345, 38.442446], + [-79.689296, 38.442348], + [-79.689264, 38.442246], + [-79.68925, 38.442147], + [-79.68925, 38.442142], + [-79.689253, 38.442072], + [-79.689254, 38.442037], + [-79.689292, 38.441874], + [-79.689326, 38.441779], + [-79.689347, 38.441726], + [-79.689418, 38.441582], + [-79.689537, 38.441387], + [-79.689621, 38.441283], + [-79.689741, 38.441169], + [-79.689856, 38.441085], + [-79.689872, 38.441072], + [-79.690025, 38.44096], + [-79.690113, 38.440889], + [-79.690341, 38.440705], + [-79.690376, 38.440678], + [-79.690466, 38.44062], + [-79.690682, 38.440468], + [-79.690884, 38.440305], + [-79.690943, 38.440243], + [-79.691017, 38.44015], + [-79.691031, 38.440133], + [-79.691104, 38.440017], + [-79.691161, 38.439896], + [-79.691167, 38.43987], + [-79.691188, 38.439795], + [-79.691195, 38.439771], + [-79.691626, 38.439364], + [-79.691746, 38.437072], + [-79.691659, 38.436444], + [-79.691429, 38.435855], + [-79.69105, 38.434784], + [-79.690933, 38.434003], + [-79.690385, 38.433653], + [-79.690219, 38.433381], + [-79.689911, 38.432872], + [-79.68967, 38.43147], + [-79.690455, 38.430785], + [-79.691001, 38.430504], + [-79.69146, 38.430264], + [-79.691725, 38.430147], + [-79.691871, 38.430083], + [-79.692148, 38.429962], + [-79.69258, 38.429505], + [-79.692817, 38.429229], + [-79.693125, 38.428872], + [-79.693849, 38.428228], + [-79.693854, 38.428224], + [-79.694265, 38.427888], + [-79.694828, 38.427665], + [-79.696035, 38.427155], + [-79.696834, 38.426765], + [-79.69656, 38.426546], + [-79.696097, 38.42612], + [-79.69577, 38.425819], + [-79.695434, 38.424882], + [-79.695391, 38.424763], + [-79.695276, 38.423693], + [-79.695471, 38.423603], + [-79.69629, 38.423231], + [-79.698426, 38.422556], + [-79.699416, 38.422043], + [-79.699737, 38.421878], + [-79.700112, 38.42089], + [-79.700504, 38.420305], + [-79.701822, 38.419956], + [-79.702785, 38.419365], + [-79.704063, 38.417585], + [-79.704576, 38.417201], + [-79.705559, 38.416664], + [-79.705631, 38.416626], + [-79.706637, 38.415738], + [-79.707174, 38.414847], + [-79.708072, 38.413379], + [-79.708435, 38.41264], + [-79.709143, 38.412072], + [-79.709292, 38.411244], + [-79.708822, 38.409971], + [-79.708968, 38.409561], + [-79.709625, 38.408921], + [-79.709926, 38.408246], + [-79.710919, 38.407663], + [-79.712328, 38.407404], + [-79.712397, 38.406358], + [-79.712907, 38.405042], + [-79.713563, 38.404594], + [-79.714372, 38.404115], + [-79.714878, 38.403264], + [-79.716435, 38.40229], + [-79.717368, 38.40157], + [-79.717594, 38.401169], + [-79.717636, 38.401096], + [-79.717549, 38.400492], + [-79.718828, 38.398446], + [-79.719397, 38.397164], + [-79.71972, 38.396439], + [-79.720971, 38.395081], + [-79.721138, 38.3949], + [-79.720995, 38.393516], + [-79.722124, 38.391059], + [-79.722656, 38.389525], + [-79.723825, 38.388596], + [-79.725646, 38.387614], + [-79.726353, 38.387078], + [-79.726841, 38.385978], + [-79.727134, 38.384829], + [-79.727051, 38.384509], + [-79.726926, 38.384024], + [-79.727278, 38.383325], + [-79.728296, 38.382066], + [-79.729515, 38.381202], + [-79.729898, 38.380359], + [-79.729934, 38.3797], + [-79.730274, 38.37917], + [-79.730824, 38.377757], + [-79.730971, 38.375762], + [-79.73123, 38.375128], + [-79.731432, 38.374749], + [-79.731664, 38.374151], + [-79.731734, 38.373723], + [-79.731701, 38.373384], + [-79.731494, 38.373005], + [-79.730497, 38.372225], + [-79.729964, 38.372106], + [-79.729052, 38.372036], + [-79.727679, 38.371709], + [-79.727206, 38.371445], + [-79.726793, 38.37084], + [-79.726784, 38.36904], + [-79.726751, 38.368677], + [-79.726585, 38.368249], + [-79.725975, 38.366959], + [-79.725778, 38.366548], + [-79.725807, 38.366136], + [-79.725905, 38.365409], + [-79.725832, 38.365054], + [-79.7256, 38.363836], + [-79.725976, 38.363237], + [-79.726668, 38.362476], + [-79.727056, 38.362241], + [-79.72858, 38.362034], + [-79.729347, 38.361838], + [-79.730603, 38.361132], + [-79.731215, 38.360711], + [-79.732062, 38.360176], + [-79.732324, 38.359488], + [-79.732353, 38.359093], + [-79.732433, 38.358745], + [-79.733615, 38.357748], + [-79.734603, 38.356736], + [-79.734753, 38.356162], + [-79.734904, 38.355556], + [-79.735119, 38.355393], + [-79.735312, 38.355248], + [-79.736466, 38.354849], + [-79.737101, 38.354968], + [-79.737982, 38.354973], + [-79.740618, 38.354109], + [-79.741577, 38.35342], + [-79.74218, 38.353256], + [-79.742774, 38.353375], + [-79.743585, 38.353776], + [-79.744108, 38.353976], + [-79.744835, 38.354031], + [-79.745256, 38.354166], + [-79.745953, 38.354366], + [-79.74755, 38.354336], + [-79.748022, 38.354634], + [-79.748272, 38.355077], + [-79.748642, 38.355423], + [-79.749001, 38.355559], + [-79.749206, 38.355599], + [-79.749778, 38.355604], + [-79.750671, 38.355915], + [-79.75106, 38.355948], + [-79.753096, 38.356045], + [-79.753365, 38.356091], + [-79.753618, 38.356136], + [-79.755187, 38.35695], + [-79.755563, 38.35738], + [-79.757629, 38.357574], + [-79.761505, 38.356864], + [-79.762714, 38.356749], + [-79.764178, 38.356642], + [-79.764435, 38.356522], + [-79.764965, 38.355636], + [-79.766131, 38.354455], + [-79.7671, 38.353636], + [-79.767266, 38.353403], + [-79.767217, 38.353185], + [-79.766219, 38.352486], + [-79.765956, 38.352098], + [-79.765919, 38.351694], + [-79.765983, 38.351299], + [-79.766406, 38.350881], + [-79.766424, 38.350866], + [-79.767241, 38.350255], + [-79.768232, 38.349211], + [-79.769488, 38.348337], + [-79.770001, 38.348162], + [-79.770279, 38.347969], + [-79.770352, 38.347808], + [-79.769414, 38.346852], + [-79.769103, 38.346536], + [-79.76889, 38.346481], + [-79.768491, 38.34638], + [-79.768113, 38.346241], + [-79.7678, 38.345715], + [-79.767761, 38.345497], + [-79.767727, 38.345161], + [-79.767695, 38.344827], + [-79.767636, 38.344506], + [-79.767615, 38.3444], + [-79.767597, 38.34431], + [-79.767654, 38.344088], + [-79.76766, 38.344069], + [-79.767712, 38.344], + [-79.767765, 38.343925], + [-79.767867, 38.343787], + [-79.767944, 38.343719], + [-79.768014, 38.34366], + [-79.768454, 38.343272], + [-79.769238, 38.342582], + [-79.769722, 38.342054], + [-79.769909, 38.341851], + [-79.770005, 38.341556], + [-79.77056, 38.339876], + [-79.770684, 38.339683], + [-79.770814, 38.339602], + [-79.77088, 38.339563], + [-79.771579, 38.339154], + [-79.771961, 38.338809], + [-79.772178, 38.338487], + [-79.772474, 38.337302], + [-79.773093, 38.335537], + [-79.774215, 38.334646], + [-79.774303, 38.334534], + [-79.774464, 38.334333], + [-79.776199, 38.333573], + [-79.77662, 38.333381], + [-79.777155, 38.333028], + [-79.778556, 38.331945], + [-79.779275, 38.331617], + [-79.780259, 38.331403], + [-79.780453, 38.331415], + [-79.780956, 38.331446], + [-79.782979, 38.331818], + [-79.783684, 38.331917], + [-79.784371, 38.331791], + [-79.785809, 38.331103], + [-79.785975, 38.330886], + [-79.786749, 38.328718], + [-79.786987, 38.328445], + [-79.787983, 38.328037], + [-79.788229, 38.327998], + [-79.789915, 38.328303], + [-79.790048, 38.328247], + [-79.790299, 38.327627], + [-79.790526, 38.327378], + [-79.791092, 38.327001], + [-79.791514, 38.326631], + [-79.792039, 38.326218], + [-79.794294, 38.324447], + [-79.796165, 38.323742], + [-79.796223, 38.323721], + [-79.796553, 38.323488], + [-79.796687, 38.323311], + [-79.796869, 38.322471], + [-79.797048, 38.32165], + [-79.797832, 38.32083], + [-79.797998, 38.320556], + [-79.798168, 38.319758], + [-79.798162, 38.319169], + [-79.798286, 38.318967], + [-79.798702, 38.318401], + [-79.79962, 38.317157], + [-79.800042, 38.316828], + [-79.800432, 38.316684], + [-79.801661, 38.31656], + [-79.801917, 38.316504], + [-79.802328, 38.316272], + [-79.803128, 38.315198], + [-79.803269, 38.315009], + [-79.804096, 38.31393], + [-79.80549, 38.312306], + [-79.805892, 38.311888], + [-79.808415, 38.309759], + [-79.808714, 38.309437], + [-79.809452, 38.307915], + [-79.810074, 38.306892], + [-79.810157, 38.306715], + [-79.810118, 38.305078], + [-79.810118, 38.305045], + [-79.809937, 38.304689], + [-79.807545, 38.301702], + [-79.805927, 38.300302], + [-79.804182, 38.298792], + [-79.804029, 38.29863], + [-79.803349, 38.29669], + [-79.803253, 38.294862], + [-79.803197, 38.293774], + [-79.802945, 38.292756], + [-79.802781, 38.292081], + [-79.802578, 38.291894], + [-79.802302, 38.291837], + [-79.800173, 38.29199], + [-79.798225, 38.292049], + [-79.797851, 38.292061], + [-79.797698, 38.292012], + [-79.795451, 38.290236], + [-79.794837, 38.288886], + [-79.794627, 38.288264], + [-79.794546, 38.288086], + [-79.792844, 38.286118], + [-79.792336, 38.285592], + [-79.792002, 38.285195], + [-79.791658, 38.284661], + [-79.790974, 38.283238], + [-79.789975, 38.281483], + [-79.789794, 38.281175], + [-79.789735, 38.280901], + [-79.789707, 38.280529], + [-79.789893, 38.280199], + [-79.790095, 38.27943], + [-79.790284, 38.278716], + [-79.790308, 38.278264], + [-79.790229, 38.277876], + [-79.790008, 38.277359], + [-79.787896, 38.275422], + [-79.787696, 38.275331], + [-79.787598, 38.275311], + [-79.787253, 38.275241], + [-79.786904, 38.275081], + [-79.786846, 38.275054], + [-79.786612, 38.274892], + [-79.78647, 38.274657], + [-79.786544, 38.274407], + [-79.786926, 38.273997], + [-79.787433, 38.273431], + [-79.787547, 38.273305], + [-79.787803, 38.272801], + [-79.788194, 38.272037], + [-79.788272, 38.271888], + [-79.788429, 38.271397], + [-79.788818, 38.270043], + [-79.788864, 38.269564], + [-79.788948, 38.268711], + [-79.78916, 38.268474], + [-79.789228, 38.2684], + [-79.78989, 38.267862], + [-79.790137, 38.267662], + [-79.790381, 38.267644], + [-79.790701, 38.267589], + [-79.791906, 38.267384], + [-79.792235, 38.267224], + [-79.792335, 38.267152], + [-79.792799, 38.266821], + [-79.793026, 38.266694], + [-79.793432, 38.266587], + [-79.794788, 38.266233], + [-79.795199, 38.266009], + [-79.795345, 38.265918], + [-79.795924, 38.26556], + [-79.797173, 38.266162], + [-79.797623, 38.266172], + [-79.797972, 38.266133], + [-79.798301, 38.265965], + [-79.799517, 38.264275], + [-79.801276, 38.261481], + [-79.802205, 38.260825], + [-79.80486, 38.260075], + [-79.805078, 38.260014], + [-79.806339, 38.259201], + [-79.806516, 38.25921], + [-79.809317, 38.259988], + [-79.810689, 38.260371], + [-79.811424, 38.260394], + [-79.811992, 38.260406], + [-79.81215, 38.26026], + [-79.812223, 38.260193], + [-79.812787, 38.259654], + [-79.813646, 38.258861], + [-79.814204, 38.258183], + [-79.814618, 38.257454], + [-79.814623, 38.25728], + [-79.814623, 38.257268], + [-79.81464, 38.256669], + [-79.815712, 38.255075], + [-79.815721, 38.253658], + [-79.815152, 38.252362], + [-79.814867, 38.251577], + [-79.815013, 38.251376], + [-79.815735, 38.250709], + [-79.816316, 38.250131], + [-79.816771, 38.24984], + [-79.817148, 38.249517], + [-79.817525, 38.249327], + [-79.818211, 38.249062], + [-79.818869, 38.248721], + [-79.819074, 38.248645], + [-79.819214, 38.248549], + [-79.819314, 38.248459], + [-79.819496, 38.248337], + [-79.819628, 38.24824], + [-79.819859, 38.248158], + [-79.820046, 38.248122], + [-79.820445, 38.248104], + [-79.821013, 38.248287], + [-79.821985, 38.248821], + [-79.822471, 38.249116], + [-79.822897, 38.249376], + [-79.82353, 38.24974], + [-79.824363, 38.25013], + [-79.824966, 38.250391], + [-79.825286, 38.250496], + [-79.825606, 38.250444], + [-79.826118, 38.250314], + [-79.826445, 38.25013], + [-79.8265, 38.2501], + [-79.826889, 38.249887], + [-79.827353, 38.249831], + [-79.828071, 38.249836], + [-79.828308, 38.249831], + [-79.828501, 38.24975], + [-79.828938, 38.249568], + [-79.829254, 38.249512], + [-79.829619, 38.249531], + [-79.830716, 38.249721], + [-79.830889, 38.249697], + [-79.831194, 38.249488], + [-79.831448, 38.249117], + [-79.83152, 38.249012], + [-79.832031, 38.248564], + [-79.832593, 38.247992], + [-79.832972, 38.247565], + [-79.833064, 38.247283], + [-79.833146, 38.247025], + [-79.833208, 38.246662], + [-79.833281, 38.246274], + [-79.833475, 38.245896], + [-79.83367, 38.245533], + [-79.833925, 38.245243], + [-79.834032, 38.244964], + [-79.834038, 38.244251], + [-79.834035, 38.243549], + [-79.83417, 38.242919], + [-79.834563, 38.242344], + [-79.835116, 38.241905], + [-79.836105, 38.241536], + [-79.837484, 38.241288], + [-79.838293, 38.24124], + [-79.83967, 38.241322], + [-79.840753, 38.241458], + [-79.84152, 38.241554], + [-79.84296, 38.241602], + [-79.84366, 38.241513], + [-79.843985, 38.241467], + [-79.844312, 38.241329], + [-79.844631, 38.241271], + [-79.844959, 38.241205], + [-79.845215, 38.241082], + [-79.845791, 38.240661], + [-79.846258, 38.240284], + [-79.846457, 38.239997], + [-79.846536, 38.239586], + [-79.84674, 38.239224], + [-79.847158, 38.23832], + [-79.847758, 38.237437], + [-79.848376, 38.236411], + [-79.84893, 38.23555], + [-79.849288, 38.235139], + [-79.849557, 38.234796], + [-79.849666, 38.234596], + [-79.849838, 38.234165], + [-79.850102, 38.233569], + [-79.850329, 38.233332], + [-79.851065, 38.23306], + [-79.851719, 38.232873], + [-79.852773, 38.232457], + [-79.853425, 38.232163], + [-79.854751, 38.231894], + [-79.855933, 38.231552], + [-79.856709, 38.2312], + [-79.856975, 38.231075], + [-79.857428, 38.230612], + [-79.857869, 38.230014], + [-79.858519, 38.229239], + [-79.85988, 38.227859], + [-79.860277, 38.227378], + [-79.860459, 38.227105], + [-79.86052, 38.226855], + [-79.860436, 38.226633], + [-79.860389, 38.2265], + [-79.860412, 38.226143], + [-79.86054, 38.225688], + [-79.860893, 38.225251], + [-79.86177, 38.224627], + [-79.862501, 38.224203], + [-79.863183, 38.22401], + [-79.863459, 38.223976], + [-79.863626, 38.223953], + [-79.863935, 38.223784], + [-79.864305, 38.223511], + [-79.866811, 38.221194], + [-79.867146, 38.220841], + [-79.867409, 38.220439], + [-79.867673, 38.2199], + [-79.867794, 38.219643], + [-79.867999, 38.21945], + [-79.86852, 38.219185], + [-79.868979, 38.218976], + [-79.86948, 38.218726], + [-79.869899, 38.218566], + [-79.870276, 38.218373], + [-79.873211, 38.215917], + [-79.87364, 38.215587], + [-79.873782, 38.215514], + [-79.873937, 38.215393], + [-79.873944, 38.215289], + [-79.873947, 38.215224], + [-79.874074, 38.214629], + [-79.874358, 38.213615], + [-79.874597, 38.212984], + [-79.874785, 38.212955], + [-79.875714, 38.212319], + [-79.877224, 38.211652], + [-79.877917, 38.211326], + [-79.878183, 38.211289], + [-79.878301, 38.211272], + [-79.87842, 38.211254], + [-79.878481, 38.211214], + [-79.878611, 38.211128], + [-79.87909, 38.211024], + [-79.879253, 38.210928], + [-79.879315, 38.210791], + [-79.879582, 38.210316], + [-79.87989, 38.209817], + [-79.880054, 38.209584], + [-79.880238, 38.209439], + [-79.880345, 38.209442], + [-79.880457, 38.209444], + [-79.880568, 38.209446], + [-79.880655, 38.209396], + [-79.880742, 38.209345], + [-79.880849, 38.209279], + [-79.88138, 38.209112], + [-79.881583, 38.208958], + [-79.881706, 38.208805], + [-79.881993, 38.208265], + [-79.882062, 38.208126], + [-79.882213, 38.207916], + [-79.882528, 38.20746], + [-79.882827, 38.207106], + [-79.882958, 38.206947], + [-79.883111, 38.206891], + [-79.883325, 38.206851], + [-79.883872, 38.207585], + [-79.884236, 38.207876], + [-79.884553, 38.207965], + [-79.885021, 38.207974], + [-79.885653, 38.207943], + [-79.886152, 38.207961], + [-79.886416, 38.207961], + [-79.887588, 38.207633], + [-79.888048, 38.207368], + [-79.88834, 38.207183], + [-79.888547, 38.207047], + [-79.889202, 38.206468], + [-79.89027, 38.205899], + [-79.890325, 38.205867], + [-79.89051, 38.205697], + [-79.890685, 38.20544], + [-79.890758, 38.205053], + [-79.890993, 38.204844], + [-79.891594, 38.20466], + [-79.891727, 38.204515], + [-79.89184, 38.20433], + [-79.891885, 38.203556], + [-79.892004, 38.20338], + [-79.891959, 38.203245], + [-79.891935, 38.203097], + [-79.891939, 38.202962], + [-79.891965, 38.202859], + [-79.892012, 38.202747], + [-79.892164, 38.202535], + [-79.892429, 38.202206], + [-79.892564, 38.201865], + [-79.892648, 38.201455], + [-79.892691, 38.200746], + [-79.892775, 38.200182], + [-79.892919, 38.199876], + [-79.893186, 38.199562], + [-79.89343, 38.199458], + [-79.893657, 38.199424], + [-79.893681, 38.199423], + [-79.894144, 38.199354], + [-79.894266, 38.199274], + [-79.894328, 38.199153], + [-79.894375, 38.198798], + [-79.894379, 38.198755], + [-79.89435, 38.198646], + [-79.894463, 38.198509], + [-79.894619, 38.198477], + [-79.894741, 38.198454], + [-79.894983, 38.198405], + [-79.895167, 38.198252], + [-79.895802, 38.197545], + [-79.896599, 38.196748], + [-79.896886, 38.196467], + [-79.897135, 38.196257], + [-79.897187, 38.196177], + [-79.897255, 38.196089], + [-79.897398, 38.195855], + [-79.897471, 38.195622], + [-79.897411, 38.195356], + [-79.89732, 38.195138], + [-79.897057, 38.194701], + [-79.897007, 38.194525], + [-79.897019, 38.194219], + [-79.897133, 38.193744], + [-79.897338, 38.193389], + [-79.897583, 38.193261], + [-79.897828, 38.193141], + [-79.898429, 38.193053], + [-79.898674, 38.192941], + [-79.898969, 38.192812], + [-79.899643, 38.192467], + [-79.900266, 38.192106], + [-79.900531, 38.191921], + [-79.900736, 38.191744], + [-79.900961, 38.191503], + [-79.901288, 38.191173], + [-79.901553, 38.191037], + [-79.901788, 38.190932], + [-79.902623, 38.190837], + [-79.902929, 38.190757], + [-79.903245, 38.190637], + [-79.903623, 38.19042], + [-79.905103, 38.189464], + [-79.905328, 38.189376], + [-79.905685, 38.18924], + [-79.906093, 38.189007], + [-79.90641, 38.188741], + [-79.906951, 38.188219], + [-79.907176, 38.188066], + [-79.90739, 38.187978], + [-79.907624, 38.187954], + [-79.908336, 38.188116], + [-79.909497, 38.188223], + [-79.909793, 38.188199], + [-79.910037, 38.188191], + [-79.910503, 38.18806], + [-79.910964, 38.187928], + [-79.911423, 38.187776], + [-79.911739, 38.187655], + [-79.912085, 38.187624], + [-79.912411, 38.187721], + [-79.913081, 38.188157], + [-79.913935, 38.188489], + [-79.914199, 38.18849], + [-79.914413, 38.188426], + [-79.914618, 38.188241], + [-79.914874, 38.187911], + [-79.915242, 38.187541], + [-79.916152, 38.186559], + [-79.916286, 38.186386], + [-79.916306, 38.186344], + [-79.916347, 38.186286], + [-79.916388, 38.186012], + [-79.916349, 38.185754], + [-79.916188, 38.185286], + [-79.916148, 38.18498], + [-79.916186, 38.184232], + [-79.9163, 38.18412], + [-79.916447, 38.183993], + [-79.916643, 38.183844], + [-79.916678, 38.183821], + [-79.917803, 38.183613], + [-79.918323, 38.183485], + [-79.919057, 38.183196], + [-79.919812, 38.182746], + [-79.920078, 38.182537], + [-79.92017, 38.182368], + [-79.920324, 38.182111], + [-79.920621, 38.18166], + [-79.920816, 38.181386], + [-79.921041, 38.181113], + [-79.921113, 38.18096], + [-79.921185, 38.180783], + [-79.921199, 38.180386], + [-79.921029, 38.179962], + [-79.92066, 38.179734], + [-79.9201, 38.179572], + [-79.919796, 38.179418], + [-79.919507, 38.179313], + [-79.919339, 38.179095], + [-79.919105, 38.178917], + [-79.91876, 38.17882], + [-79.918159, 38.178722], + [-79.91764, 38.178658], + [-79.917437, 38.178632], + [-79.917142, 38.178487], + [-79.916625, 38.178002], + [-79.916565, 38.177704], + [-79.916457, 38.176825], + [-79.916529, 38.176592], + [-79.916714, 38.176189], + [-79.916797, 38.175923], + [-79.916768, 38.175512], + [-79.91685, 38.175319], + [-79.916994, 38.175078], + [-79.917834, 38.174095], + [-79.917894, 38.174029], + [-79.918068, 38.173822], + [-79.918242, 38.173492], + [-79.918296, 38.173395], + [-79.918447, 38.173106], + [-79.918632, 38.172679], + [-79.918797, 38.17226], + [-79.918951, 38.171898], + [-79.918992, 38.171737], + [-79.919014, 38.171471], + [-79.918924, 38.171052], + [-79.918884, 38.170786], + [-79.918916, 38.170447], + [-79.918886, 38.170318], + [-79.918826, 38.170125], + [-79.918694, 38.169988], + [-79.918257, 38.16981], + [-79.918105, 38.169624], + [-79.918045, 38.169447], + [-79.918107, 38.169132], + [-79.918169, 38.168883], + [-79.918201, 38.168754], + [-79.91816, 38.168609], + [-79.917928, 38.168407], + [-79.917602, 38.168366], + [-79.917032, 38.168397], + [-79.916681, 38.168409], + [-79.916075, 38.168436], + [-79.915068, 38.168096], + [-79.914927, 38.167919], + [-79.914867, 38.167732], + [-79.914887, 38.167532], + [-79.915021, 38.167347], + [-79.915194, 38.16721], + [-79.915245, 38.167106], + [-79.915307, 38.16692], + [-79.915247, 38.166654], + [-79.915309, 38.166477], + [-79.915442, 38.166284], + [-79.915688, 38.166051], + [-79.91582, 38.165898], + [-79.916056, 38.165536], + [-79.916231, 38.164996], + [-79.916172, 38.164545], + [-79.915981, 38.164085], + [-79.915942, 38.163666], + [-79.916014, 38.163376], + [-79.916117, 38.163207], + [-79.916209, 38.163102], + [-79.916382, 38.16303], + [-79.916657, 38.163014], + [-79.917196, 38.163048], + [-79.917908, 38.163097], + [-79.918478, 38.163155], + [-79.918722, 38.163155], + [-79.919049, 38.163035], + [-79.919395, 38.162858], + [-79.919518, 38.162657], + [-79.91955, 38.162431], + [-79.91949, 38.162189], + [-79.919258, 38.161544], + [-79.919097, 38.161109], + [-79.9191, 38.160537], + [-79.919081, 38.16011], + [-79.919297, 38.15957], + [-79.919522, 38.15924], + [-79.919809, 38.158805], + [-79.91985, 38.158709], + [-79.91979, 38.158515], + [-79.919577, 38.15837], + [-79.919231, 38.158337], + [-79.918783, 38.158288], + [-79.918671, 38.158231], + [-79.91857, 38.15807], + [-79.91847, 38.157586], + [-79.918513, 38.157167], + [-79.918769, 38.15666], + [-79.919016, 38.156169], + [-79.919047, 38.156032], + [-79.919007, 38.155871], + [-79.918774, 38.155532], + [-79.918602, 38.155274], + [-79.918583, 38.155056], + [-79.918665, 38.154798], + [-79.918788, 38.154613], + [-79.919207, 38.154098], + [-79.919412, 38.153792], + [-79.919555, 38.153648], + [-79.919708, 38.153527], + [-79.919933, 38.153439], + [-79.920513, 38.15323], + [-79.920881, 38.152917], + [-79.921351, 38.152377], + [-79.921617, 38.152168], + [-79.922004, 38.152032], + [-79.922493, 38.151848], + [-79.922728, 38.151663], + [-79.922841, 38.151486], + [-79.922944, 38.151131], + [-79.923036, 38.150962], + [-79.923128, 38.150882], + [-79.923413, 38.150794], + [-79.924941, 38.150619], + [-79.925254, 38.150473], + [-79.925515, 38.150245], + [-79.925737, 38.149976], + [-79.925992, 38.149767], + [-79.926146, 38.149565], + [-79.926228, 38.149412], + [-79.926198, 38.149235], + [-79.926199, 38.148889], + [-79.92623, 38.148744], + [-79.926302, 38.148566], + [-79.926272, 38.148413], + [-79.926194, 38.147704], + [-79.926225, 38.147543], + [-79.926358, 38.147325], + [-79.926685, 38.147068], + [-79.926797, 38.146972], + [-79.92691, 38.146786], + [-79.927074, 38.146497], + [-79.927269, 38.146038], + [-79.927494, 38.145716], + [-79.927688, 38.145579], + [-79.927923, 38.14541], + [-79.928422, 38.145177], + [-79.928686, 38.144936], + [-79.928704, 38.144568], + [-79.92875, 38.144444], + [-79.928673, 38.143357], + [-79.928696, 38.142696], + [-79.928771, 38.141914], + [-79.928846, 38.140915], + [-79.928889, 38.140254], + [-79.928951, 38.13999], + [-79.928997, 38.139874], + [-79.929034, 38.139779], + [-79.92931, 38.139441], + [-79.929882, 38.138725], + [-79.930525, 38.138162], + [-79.931066, 38.137832], + [-79.931525, 38.137575], + [-79.931903, 38.137342], + [-79.932098, 38.137085], + [-79.932282, 38.136811], + [-79.932579, 38.136344], + [-79.932752, 38.136167], + [-79.933754, 38.135516], + [-79.933835, 38.135389], + [-79.933977, 38.135307], + [-79.934057, 38.13522], + [-79.934155, 38.135141], + [-79.934266, 38.135073], + [-79.934319, 38.135052], + [-79.934471, 38.135014], + [-79.934628, 38.13499], + [-79.935353, 38.134954], + [-79.935385, 38.13495], + [-79.935632, 38.134909], + [-79.936194, 38.134868], + [-79.936309, 38.134848], + [-79.936837, 38.134785], + [-79.937067, 38.134779], + [-79.937297, 38.134788], + [-79.937644, 38.134824], + [-79.937903, 38.134867], + [-79.938157, 38.134924], + [-79.938239, 38.134946], + [-79.9394, 38.135115], + [-79.939939, 38.135002], + [-79.940232, 38.134832], + [-79.94067, 38.134529], + [-79.940827, 38.13443], + [-79.940917, 38.134391], + [-79.941015, 38.134365], + [-79.941138, 38.134353], + [-79.941593, 38.134362], + [-79.941995, 38.134387], + [-79.942586, 38.134342], + [-79.942674, 38.134336], + [-79.94275, 38.134341], + [-79.942852, 38.134258], + [-79.942975, 38.13409], + [-79.942945, 38.13392], + [-79.942905, 38.133718], + [-79.942946, 38.133541], + [-79.943058, 38.133396], + [-79.943212, 38.133291], + [-79.943548, 38.133227], + [-79.94367, 38.133155], + [-79.943772, 38.133066], + [-79.943905, 38.13297], + [-79.944323, 38.132616], + [-79.944476, 38.132519], + [-79.944721, 38.13248], + [-79.945087, 38.132464], + [-79.945219, 38.132392], + [-79.945261, 38.132247], + [-79.945241, 38.132134], + [-79.94519, 38.131997], + [-79.945039, 38.131787], + [-79.944846, 38.131593], + [-79.944745, 38.131408], + [-79.944624, 38.131182], + [-79.944513, 38.130827], + [-79.944332, 38.1304], + [-79.944292, 38.130174], + [-79.944354, 38.129949], + [-79.944416, 38.129739], + [-79.944406, 38.129473], + [-79.944336, 38.129183], + [-79.944256, 38.128965], + [-79.944104, 38.128651], + [-79.943871, 38.128336], + [-79.943527, 38.127965], + [-79.942817, 38.127303], + [-79.942665, 38.127158], + [-79.942524, 38.126883], + [-79.942331, 38.12669], + [-79.941987, 38.126375], + [-79.941794, 38.126125], + [-79.941298, 38.125487], + [-79.941177, 38.125278], + [-79.941178, 38.125131], + [-79.94112, 38.124784], + [-79.941236, 38.124584], + [-79.941628, 38.124435], + [-79.941967, 38.124304], + [-79.943084, 38.123663], + [-79.943212, 38.123398], + [-79.943245, 38.123174], + [-79.943247, 38.123155], + [-79.943249, 38.123143], + [-79.942475, 38.122508], + [-79.942137, 38.122092], + [-79.941674, 38.121723], + [-79.940998, 38.121335], + [-79.94067, 38.120881], + [-79.940728, 38.120498], + [-79.94092, 38.120086], + [-79.941012, 38.119673], + [-79.940855, 38.119331], + [-79.940719, 38.119029], + [-79.94077, 38.118535], + [-79.941027, 38.118018], + [-79.941453, 38.117666], + [-79.941467, 38.117377], + [-79.941266, 38.11719], + [-79.940954, 38.116888], + [-79.940355, 38.115914], + [-79.94006, 38.115211], + [-79.939595, 38.11437], + [-79.939551, 38.113965], + [-79.939707, 38.113572], + [-79.939469, 38.11322], + [-79.939091, 38.112674], + [-79.938949, 38.111636], + [-79.938415, 38.110997], + [-79.938051, 38.110774], + [-79.937687, 38.110821], + [-79.937174, 38.11105], + [-79.936863, 38.11122], + [-79.936521, 38.111208], + [-79.936157, 38.111143], + [-79.935667, 38.111161], + [-79.935214, 38.110938], + [-79.934724, 38.110563], + [-79.93468, 38.110099], + [-79.934353, 38.10973], + [-79.933172, 38.109589], + [-79.932719, 38.109654], + [-79.932474, 38.109736], + [-79.932044, 38.109665], + [-79.931576, 38.109366], + [-79.930893, 38.109266], + [-79.930454, 38.10929], + [-79.92969, 38.109202], + [-79.928888, 38.108885], + [-79.926333, 38.107155], + [-79.926296, 38.106826], + [-79.9264, 38.106551], + [-79.926794, 38.106181], + [-79.927046, 38.105806], + [-79.927618, 38.104879], + [-79.927878, 38.104462], + [-79.928011, 38.104345], + [-79.928687, 38.103846], + [-79.928828, 38.103653], + [-79.929296, 38.103013], + [-79.929499, 38.102892], + [-79.929742, 38.102756], + [-79.93008, 38.102514], + [-79.930484, 38.102246], + [-79.930931, 38.101682], + [-79.931047, 38.101381], + [-79.93107, 38.10137], + [-79.931189, 38.101321], + [-79.931406, 38.101192], + [-79.931592, 38.101063], + [-79.932168, 38.100663], + [-79.932395, 38.100494], + [-79.932483, 38.100422], + [-79.933155, 38.099786], + [-79.933921, 38.099123], + [-79.934007, 38.098538], + [-79.934259, 38.097684], + [-79.934614, 38.097325], + [-79.934907, 38.096997], + [-79.935109, 38.096555], + [-79.935472, 38.096261], + [-79.936353, 38.095602], + [-79.937848, 38.09495], + [-79.93828, 38.094753], + [-79.939877, 38.093092], + [-79.941357, 38.092085], + [-79.941903, 38.091842], + [-79.942368, 38.091597], + [-79.942659, 38.091301], + [-79.942913, 38.090885], + [-79.943321, 38.090373], + [-79.943574, 38.090021], + [-79.944027, 38.089817], + [-79.94434, 38.089522], + [-79.945167, 38.088532], + [-79.945704, 38.087944], + [-79.946609, 38.086958], + [-79.947012, 38.086229], + [-79.947134, 38.085294], + [-79.947292, 38.085053], + [-79.947601, 38.08492], + [-79.947981, 38.084804], + [-79.948312, 38.084614], + [-79.949116, 38.084245], + [-79.949931, 38.083819], + [-79.951114, 38.082914], + [-79.951267, 38.082737], + [-79.951308, 38.082689], + [-79.951349, 38.08264], + [-79.951459, 38.082507], + [-79.952131, 38.082177], + [-79.953514, 38.081487], + [-79.953713, 38.081243], + [-79.954373, 38.080408], + [-79.954534, 38.080109], + [-79.954533, 38.079987], + [-79.954537, 38.079923], + [-79.954542, 38.07986], + [-79.954539, 38.079752], + [-79.954403, 38.079419], + [-79.954217, 38.079021], + [-79.95413, 38.07877], + [-79.954197, 38.078528], + [-79.954509, 38.078218], + [-79.955553, 38.077625], + [-79.955647, 38.077505], + [-79.955671, 38.077328], + [-79.955639, 38.076916], + [-79.955715, 38.076683], + [-79.955748, 38.076562], + [-79.955752, 38.076376], + [-79.955768, 38.076118], + [-79.955919, 38.075732], + [-79.956107, 38.075492], + [-79.956273, 38.075398], + [-79.956419, 38.075214], + [-79.956506, 38.074973], + [-79.95739, 38.073183], + [-79.957518, 38.072926], + [-79.957616, 38.072637], + [-79.957685, 38.072283], + [-79.957761, 38.072057], + [-79.957875, 38.071938], + [-79.958206, 38.071732], + [-79.958608, 38.07156], + [-79.959169, 38.071294], + [-79.959354, 38.071174], + [-79.959372, 38.070771], + [-79.959135, 38.070405], + [-79.959151, 38.070107], + [-79.960097, 38.068682], + [-79.96095, 38.068139], + [-79.96116, 38.068], + [-79.96165, 38.067422], + [-79.961583, 38.066597], + [-79.96158, 38.066528], + [-79.961575, 38.066463], + [-79.961807, 38.066118], + [-79.961808, 38.065882], + [-79.96082, 38.06521], + [-79.96031, 38.064871], + [-79.95991, 38.064541], + [-79.959692, 38.064522], + [-79.959499, 38.064304], + [-79.959567, 38.063934], + [-79.959847, 38.063704], + [-79.959863, 38.063429], + [-79.95998, 38.063133], + [-79.960057, 38.062875], + [-79.960165, 38.062554], + [-79.960438, 38.062162], + [-79.960688, 38.061867], + [-79.960927, 38.061644], + [-79.96116, 38.061211], + [-79.961237, 38.061053], + [-79.961266, 38.060995], + [-79.961497, 38.060667], + [-79.961566, 38.060589], + [-79.961904, 38.060196], + [-79.962167, 38.059748], + [-79.962254, 38.059499], + [-79.962333, 38.059072], + [-79.962324, 38.0585], + [-79.962381, 38.058194], + [-79.962478, 38.057913], + [-79.962677, 38.057673], + [-79.963131, 38.057388], + [-79.963556, 38.057039], + [-79.963788, 38.05663], + [-79.963987, 38.055294], + [-79.964288, 38.054523], + [-79.964582, 38.054051], + [-79.965319, 38.053415], + [-79.965627, 38.052765], + [-79.965906, 38.052043], + [-79.965926, 38.051551], + [-79.965953, 38.051221], + [-79.966083, 38.050827], + [-79.96671, 38.050028], + [-79.967138, 38.049501], + [-79.967844, 38.048865], + [-79.968076, 38.048472], + [-79.968142, 38.048199], + [-79.968148, 38.047909], + [-79.968192, 38.047716], + [-79.968587, 38.047333], + [-79.969197, 38.046897], + [-79.96951, 38.046538], + [-79.969794, 38.046082], + [-79.970106, 38.045731], + [-79.970833, 38.045046], + [-79.971147, 38.044655], + [-79.971234, 38.044333], + [-79.971396, 38.043884], + [-79.972282, 38.042943], + [-79.972618, 38.042423], + [-79.972694, 38.042166], + [-79.972856, 38.041716], + [-79.972995, 38.041363], + [-79.973372, 38.040851], + [-79.973675, 38.04046], + [-79.973898, 38.040011], + [-79.973972, 38.039326], + [-79.97378, 38.038751], + [-79.973238, 38.037744], + [-79.972168, 38.036109], + [-79.971969, 38.035881], + [-79.971677, 38.035668], + [-79.971528, 38.035456], + [-79.971604, 38.035239], + [-79.972108, 38.034979], + [-79.973143, 38.034718], + [-79.97386, 38.034574], + [-79.974088, 38.034399], + [-79.974176, 38.034077], + [-79.974137, 38.033964], + [-79.973823, 38.033355], + [-79.973623, 38.03307], + [-79.973704, 38.032563], + [-79.973873, 38.032315], + [-79.974283, 38.032199], + [-79.974942, 38.031861], + [-79.97541, 38.031398], + [-79.975425, 38.031116], + [-79.97535, 38.030809], + [-79.975265, 38.030421], + [-79.975272, 38.030082], + [-79.975603, 38.029836], + [-79.976158, 38.029601], + [-79.976735, 38.029285], + [-79.976893, 38.029013], + [-79.976958, 38.028812], + [-79.977337, 38.02872], + [-79.97778, 38.02896], + [-79.978042, 38.02914], + [-79.97843, 38.029089], + [-79.978977, 38.02874], + [-79.979464, 38.028351], + [-79.980012, 38.027947], + [-79.980293, 38.027603], + [-79.980446, 38.027089], + [-79.980568, 38.026558], + [-79.980781, 38.026117], + [-79.981124, 38.025718], + [-79.981469, 38.025271], + [-79.981888, 38.024695], + [-79.982091, 38.02423], + [-79.982444, 38.023879], + [-79.98285, 38.023448], + [-79.98331, 38.022801], + [-79.983598, 38.022167], + [-79.983821, 38.021678], + [-79.983881, 38.021195], + [-79.983992, 38.020744], + [-79.984376, 38.020394], + [-79.985087, 38.019943], + [-79.985622, 38.019167], + [-79.985788, 38.018475], + [-79.985795, 38.018096], + [-79.985012, 38.016941], + [-79.984845, 38.016617], + [-79.984995, 38.016255], + [-79.985457, 38.016051], + [-79.985889, 38.015887], + [-79.986142, 38.015431], + [-79.986163, 38.014842], + [-79.986049, 38.014413], + [-79.986145, 38.014189], + [-79.986954, 38.013989], + [-79.988392, 38.013926], + [-79.989539, 38.013617], + [-79.990117, 38.013253], + [-79.990791, 38.012108], + [-79.99126, 38.011549], + [-79.99146, 38.011213], + [-79.991921, 38.010533], + [-79.992726, 38.010027], + [-79.993706, 38.009353], + [-79.99432, 38.008723], + [-79.994988, 38.00786], + [-79.995491, 38.007132], + [-79.995768, 38.006498], + [-79.995904, 38.005798], + [-79.995851, 38.005362], + [-79.995694, 38.005054], + [-79.995395, 38.004703], + [-79.995125, 38.004385], + [-79.994907, 38.004084], + [-79.995127, 38.00378], + [-79.995401, 38.003316], + [-79.995602, 38.002891], + [-79.996137, 38.001003], + [-79.996399, 38.000611], + [-79.99672, 38.000365], + [-79.99714, 38.000131], + [-79.998217, 38.000033], + [-79.99845, 37.999944], + [-79.998582, 37.999968], + [-79.998755, 37.999847], + [-79.998856, 37.999718], + [-79.998886, 37.999573], + [-79.998886, 37.999484], + [-79.998835, 37.999266], + [-79.998825, 37.999089], + [-79.998824, 37.998944], + [-79.998794, 37.998767], + [-79.998814, 37.998694], + [-79.998813, 37.99842], + [-79.998783, 37.99826], + [-79.998772, 37.998163], + [-79.99866, 37.997922], + [-79.998559, 37.997736], + [-79.99866, 37.997615], + [-79.998832, 37.997519], + [-79.998923, 37.997438], + [-79.999004, 37.997357], + [-79.999146, 37.99726], + [-79.999166, 37.997139], + [-79.999197, 37.997083], + [-79.999278, 37.996946], + [-79.999308, 37.996768], + [-79.999389, 37.996559], + [-79.999378, 37.996414], + [-79.999418, 37.996228], + [-79.999388, 37.996115], + [-79.999388, 37.996011], + [-79.999387, 37.995849], + [-79.999357, 37.995777], + [-79.999336, 37.995608], + [-79.999316, 37.995471], + [-79.999265, 37.995302], + [-79.999244, 37.995197], + [-79.999275, 37.995092], + [-79.999386, 37.994915], + [-79.999487, 37.994898], + [-79.999609, 37.994906], + [-79.999784, 37.994788], + [-80.000984, 37.994719], + [-80.001646, 37.994375], + [-80.001995, 37.993844], + [-80.002284, 37.993168], + [-80.00251, 37.992774], + [-80.003273, 37.992543], + [-80.003985, 37.992328], + [-80.004547, 37.991959], + [-80.005219, 37.991736], + [-80.006226, 37.991586], + [-80.006735, 37.99141], + [-80.007296, 37.990945], + [-80.007654, 37.990616], + [-80.007958, 37.990649], + [-80.008485, 37.990804], + [-80.008891, 37.990837], + [-80.009126, 37.990677], + [-80.00969, 37.989776], + [-80.010262, 37.989343], + [-80.010985, 37.989071], + [-80.011686, 37.988921], + [-80.012196, 37.98864], + [-80.012605, 37.988207], + [-80.012894, 37.98745], + [-80.012558, 37.986006], + [-80.012773, 37.985669], + [-80.013133, 37.985057], + [-80.013148, 37.98426], + [-80.014338, 37.983925], + [-80.015938, 37.983092], + [-80.016144, 37.982521], + [-80.016714, 37.982345], + [-80.017172, 37.98217], + [-80.017419, 37.981671], + [-80.01795, 37.981278], + [-80.018701, 37.98124], + [-80.020165, 37.980987], + [-80.020634, 37.980755], + [-80.020891, 37.980304], + [-80.021067, 37.979636], + [-80.021648, 37.979372], + [-80.021995, 37.979075], + [-80.022131, 37.978382], + [-80.022144, 37.978028], + [-80.022755, 37.977635], + [-80.023062, 37.977297], + [-80.023703, 37.977082], + [-80.024171, 37.976914], + [-80.024622, 37.976255], + [-80.025576, 37.976403], + [-80.025983, 37.976259], + [-80.026209, 37.975809], + [-80.026325, 37.975059], + [-80.026711, 37.974996], + [-80.027057, 37.974868], + [-80.027181, 37.974546], + [-80.027254, 37.974273], + [-80.027823, 37.974186], + [-80.028778, 37.9741], + [-80.029186, 37.974061], + [-80.029492, 37.973796], + [-80.029841, 37.973185], + [-80.030271, 37.972654], + [-80.030944, 37.972181], + [-80.031496, 37.971554], + [-80.032159, 37.97096], + [-80.032689, 37.970647], + [-80.03472, 37.968937], + [-80.035555, 37.968489], + [-80.035983, 37.968256], + [-80.036239, 37.967927], + [-80.036599, 37.967162], + [-80.036755, 37.966446], + [-80.036911, 37.965914], + [-80.039613, 37.965697], + [-80.040426, 37.965627], + [-80.040439, 37.965071], + [-80.040443, 37.96445], + [-80.040894, 37.963751], + [-80.041311, 37.963607], + [-80.04188, 37.96348], + [-80.043216, 37.962412], + [-80.043716, 37.962035], + [-80.044074, 37.961617], + [-80.044374, 37.960699], + [-80.044479, 37.960087], + [-80.045525, 37.959905], + [-80.046246, 37.959971], + [-80.046875, 37.960062], + [-80.047099, 37.959885], + [-80.047326, 37.959233], + [-80.047637, 37.958267], + [-80.048413, 37.957488], + [-80.049663, 37.957202], + [-80.050324, 37.957091], + [-80.051046, 37.956859], + [-80.051506, 37.956264], + [-80.052189, 37.955751], + [-80.052821, 37.955349], + [-80.053617, 37.954635], + [-80.054452, 37.954371], + [-80.054666, 37.954211], + [-80.055147, 37.953559], + [-80.055638, 37.952803], + [-80.056059, 37.951966], + [-80.056378, 37.951914], + [-80.056842, 37.95184], + [-80.058399, 37.951055], + [-80.059611, 37.950309], + [-80.060943, 37.94999], + [-80.061779, 37.949275], + [-80.06239, 37.949068], + [-80.062929, 37.948755], + [-80.063685, 37.947975], + [-80.063606, 37.947637], + [-80.064753, 37.947568], + [-80.065911, 37.947466], + [-80.066572, 37.947178], + [-80.06699, 37.946833], + [-80.068354, 37.946144], + [-80.06919, 37.945574], + [-80.069434, 37.94547], + [-80.069578, 37.945099], + [-80.070052, 37.943892], + [-80.071068, 37.943661], + [-80.071973, 37.943398], + [-80.072583, 37.943069], + [-80.073449, 37.942532], + [-80.074517, 37.942228], + [-80.074564, 37.942074], + [-80.074621, 37.94191], + [-80.074626, 37.941871], + [-80.074713, 37.941564], + [-80.07494, 37.940803], + [-80.075444, 37.939636], + [-80.076108, 37.938953], + [-80.077126, 37.938246], + [-80.0796, 37.936988], + [-80.080826, 37.935533], + [-80.082303, 37.934554], + [-80.083982, 37.933696], + [-80.084389, 37.933552], + [-80.084572, 37.933407], + [-80.084584, 37.933109], + [-80.0853, 37.931999], + [-80.085798, 37.931896], + [-80.086347, 37.931639], + [-80.0868, 37.930424], + [-80.086957, 37.929554], + [-80.087978, 37.928509], + [-80.088935, 37.927818], + [-80.090145, 37.927306], + [-80.091061, 37.926913], + [-80.091634, 37.925956], + [-80.092063, 37.925417], + [-80.091812, 37.924965], + [-80.091713, 37.924425], + [-80.092022, 37.923523], + [-80.092939, 37.922736], + [-80.094315, 37.921667], + [-80.094968, 37.921016], + [-80.095167, 37.919832], + [-80.095708, 37.919165], + [-80.096239, 37.918401], + [-80.096566, 37.918119], + [-80.097358, 37.917993], + [-80.099334, 37.918376], + [-80.100316, 37.918871], + [-80.101513, 37.919019], + [-80.102669, 37.918998], + [-80.102934, 37.918918], + [-80.10313, 37.918241], + [-80.103779, 37.916285], + [-80.10565, 37.915733], + [-80.106822, 37.914705], + [-80.107149, 37.914246], + [-80.107244, 37.913521], + [-80.107156, 37.912747], + [-80.107208, 37.912449], + [-80.107483, 37.912297], + [-80.107909, 37.912233], + [-80.108753, 37.912018], + [-80.109017, 37.911962], + [-80.109201, 37.911721], + [-80.109659, 37.911271], + [-80.110594, 37.910967], + [-80.111469, 37.910534], + [-80.112009, 37.910116], + [-80.112397, 37.909561], + [-80.112805, 37.909111], + [-80.113053, 37.908185], + [-80.11336, 37.907557], + [-80.113717, 37.907259], + [-80.114195, 37.907099], + [-80.115067, 37.907021], + [-80.116165, 37.906652], + [-80.116887, 37.906299], + [-80.117033, 37.905477], + [-80.117242, 37.904285], + [-80.117496, 37.904189], + [-80.117496, 37.904117], + [-80.117618, 37.904077], + [-80.11774, 37.904061], + [-80.118187, 37.903973], + [-80.118491, 37.903926], + [-80.118786, 37.903805], + [-80.11897, 37.903621], + [-80.119146, 37.902783], + [-80.119109, 37.902025], + [-80.118868, 37.901557], + [-80.118474, 37.901234], + [-80.117624, 37.900798], + [-80.117483, 37.900588], + [-80.117335, 37.899612], + [-80.117483, 37.898508], + [-80.11775, 37.897727], + [-80.118066, 37.897502], + [-80.118483, 37.897213], + [-80.11891, 37.897053], + [-80.119579, 37.897087], + [-80.119894, 37.896983], + [-80.120616, 37.896742], + [-80.121254, 37.896969], + [-80.121618, 37.897131], + [-80.122499, 37.897464], + [-80.123024, 37.898053], + [-80.123623, 37.89795], + [-80.123948, 37.897733], + [-80.124789, 37.896934], + [-80.125577, 37.89647], + [-80.125924, 37.896125], + [-80.126436, 37.895361], + [-80.127049, 37.894815], + [-80.127964, 37.894448], + [-80.129558, 37.894141], + [-80.129771, 37.894166], + [-80.130219, 37.893837], + [-80.130495, 37.893499], + [-80.130467, 37.893201], + [-80.130094, 37.892958], + [-80.129984, 37.89278], + [-80.130239, 37.892507], + [-80.130689, 37.892017], + [-80.131043, 37.890704], + [-80.131484, 37.890013], + [-80.131934, 37.889507], + [-80.132584, 37.889268], + [-80.133349, 37.88865], + [-80.133758, 37.888289], + [-80.134579, 37.888292], + [-80.135056, 37.888246], + [-80.135271, 37.887948], + [-80.135427, 37.887393], + [-80.136608, 37.88672], + [-80.137329, 37.886514], + [-80.13799, 37.886291], + [-80.138245, 37.886098], + [-80.139349, 37.884861], + [-80.140214, 37.884268], + [-80.140612, 37.883939], + [-80.141269, 37.882837], + [-80.141341, 37.882717], + [-80.141525, 37.882443], + [-80.141728, 37.882428], + [-80.14195, 37.882623], + [-80.142775, 37.883384], + [-80.142722, 37.883682], + [-80.142952, 37.884126], + [-80.143246, 37.884224], + [-80.143853, 37.884307], + [-80.144167, 37.88434], + [-80.144471, 37.884342], + [-80.144531, 37.884328], + [-80.144583, 37.884315], + [-80.145263, 37.884159], + [-80.145608, 37.884136], + [-80.145981, 37.884366], + [-80.146133, 37.88446], + [-80.146711, 37.885101], + [-80.147172, 37.885628], + [-80.147304, 37.885911], + [-80.147319, 37.885943], + [-80.14742, 37.885933], + [-80.147561, 37.886006], + [-80.147652, 37.886007], + [-80.148458, 37.886744], + [-80.14874, 37.886962], + [-80.148954, 37.886899], + [-80.149089, 37.886456], + [-80.14905, 37.886182], + [-80.149154, 37.8859], + [-80.149379, 37.885602], + [-80.149694, 37.885426], + [-80.149909, 37.885145], + [-80.149921, 37.884879], + [-80.149883, 37.884516], + [-80.149851, 37.883371], + [-80.150399, 37.883172], + [-80.151578, 37.882838], + [-80.152665, 37.882487], + [-80.153095, 37.882318], + [-80.153234, 37.882264], + [-80.153835, 37.881831], + [-80.155324, 37.880555], + [-80.156497, 37.879431], + [-80.157528, 37.878435], + [-80.158294, 37.877713], + [-80.158809, 37.877373], + [-80.162205, 37.875129], + [-80.162655, 37.873621], + [-80.163784, 37.872986], + [-80.165376, 37.870874], + [-80.165575, 37.870438], + [-80.16557, 37.869907], + [-80.165364, 37.869465], + [-80.165076, 37.869032], + [-80.165538, 37.868522], + [-80.167449, 37.868107], + [-80.167995, 37.867967], + [-80.168579, 37.867625], + [-80.16896, 37.867123], + [-80.169527, 37.865992], + [-80.169775, 37.865403], + [-80.170347, 37.864698], + [-80.170879, 37.864147], + [-80.171156, 37.863397], + [-80.171233, 37.863018], + [-80.171614, 37.862556], + [-80.172036, 37.862151], + [-80.172045, 37.860863], + [-80.172079, 37.860073], + [-80.171934, 37.859696], + [-80.1718, 37.859447], + [-80.171656, 37.85919], + [-80.171644, 37.858973], + [-80.172046, 37.8586], + [-80.172557, 37.858033], + [-80.173019, 37.857523], + [-80.173448, 37.856852], + [-80.174023, 37.85659], + [-80.175184, 37.856099], + [-80.175717, 37.85575], + [-80.176199, 37.855272], + [-80.176538, 37.854609], + [-80.176715, 37.854036], + [-80.176751, 37.853496], + [-80.176727, 37.853046], + [-80.176744, 37.852764], + [-80.177919, 37.852772], + [-80.178516, 37.852648], + [-80.179031, 37.85254], + [-80.179577, 37.852472], + [-80.180196, 37.852588], + [-80.180674, 37.85277], + [-80.180999, 37.852897], + [-80.181414, 37.85291], + [-80.181818, 37.852731], + [-80.182128, 37.852254], + [-80.182758, 37.851372], + [-80.183065, 37.850653], + [-80.183067, 37.850577], + [-80.183114, 37.849276], + [-80.18305, 37.848898], + [-80.183047, 37.848632], + [-80.18328, 37.848319], + [-80.183368, 37.848203], + [-80.183597, 37.847847], + [-80.183641, 37.847511], + [-80.183654, 37.84742], + [-80.183558, 37.846817], + [-80.183091, 37.84562], + [-80.182764, 37.845188], + [-80.182202, 37.844644], + [-80.181629, 37.844035], + [-80.181213, 37.842758], + [-80.180747, 37.841601], + [-80.180388, 37.841121], + [-80.179786, 37.840529], + [-80.179468, 37.840088], + [-80.179394, 37.839758], + [-80.180038, 37.839239], + [-80.180832, 37.838691], + [-80.181004, 37.838572], + [-80.181771, 37.83835], + [-80.183351, 37.838315], + [-80.185242, 37.838117], + [-80.186383, 37.837748], + [-80.187085, 37.837034], + [-80.187788, 37.836378], + [-80.188575, 37.836074], + [-80.189441, 37.835481], + [-80.189912, 37.834962], + [-80.190134, 37.834848], + [-80.191219, 37.834897], + [-80.191633, 37.834904], + [-80.192262, 37.834915], + [-80.192707, 37.834871], + [-80.192969, 37.834757], + [-80.193128, 37.834434], + [-80.193215, 37.833966], + [-80.19363, 37.83286], + [-80.194653, 37.831766], + [-80.195546, 37.830851], + [-80.197524, 37.829098], + [-80.199636, 37.827514], + [-80.201173, 37.826151], + [-80.201467, 37.825817], + [-80.202856, 37.824247], + [-80.203593, 37.822913], + [-80.204826, 37.820562], + [-80.205844, 37.818928], + [-80.206121, 37.81821], + [-80.20607, 37.8178], + [-80.206011, 37.817317], + [-80.206107, 37.81676], + [-80.206485, 37.815977], + [-80.207692, 37.815123], + [-80.209411, 37.813823], + [-80.210968, 37.812605], + [-80.212439, 37.811878], + [-80.213666, 37.81119], + [-80.215284, 37.81036], + [-80.216232, 37.809827], + [-80.216868, 37.809544], + [-80.216942, 37.809512], + [-80.217926, 37.809819], + [-80.218271, 37.809833], + [-80.218614, 37.80979], + [-80.219143, 37.809014], + [-80.221045, 37.806609], + [-80.222794, 37.804254], + [-80.224315, 37.802464], + [-80.225084, 37.801347], + [-80.225365, 37.801104], + [-80.225372, 37.800798], + [-80.225288, 37.800436], + [-80.225286, 37.800275], + [-80.226071, 37.799762], + [-80.227095, 37.798893], + [-80.227693, 37.797899], + [-80.22798, 37.797204], + [-80.228027, 37.797126], + [-80.228498, 37.796347], + [-80.229231, 37.794667], + [-80.229503, 37.793514], + [-80.229638, 37.792852], + [-80.229492, 37.792338], + [-80.229054, 37.792084], + [-80.227968, 37.791721], + [-80.227283, 37.790993], + [-80.226985, 37.790495], + [-80.226333, 37.790073], + [-80.226058, 37.789842], + [-80.225932, 37.789375], + [-80.226099, 37.788811], + [-80.226186, 37.788432], + [-80.225848, 37.78812], + [-80.225086, 37.787747], + [-80.224451, 37.787502], + [-80.224343, 37.787461], + [-80.224271, 37.787439], + [-80.223421, 37.787186], + [-80.223043, 37.78673], + [-80.222917, 37.78628], + [-80.223197, 37.785924], + [-80.22361, 37.785792], + [-80.224155, 37.785635], + [-80.224475, 37.785222], + [-80.22454, 37.784602], + [-80.224338, 37.783589], + [-80.22407, 37.782995], + [-80.223488, 37.782451], + [-80.222684, 37.781966], + [-80.222085, 37.781776], + [-80.221479, 37.781918], + [-80.221017, 37.782235], + [-80.220586, 37.782673], + [-80.220095, 37.783167], + [-80.21958, 37.783316], + [-80.219085, 37.783375], + [-80.218619, 37.783298], + [-80.217979, 37.783021], + [-80.217255, 37.782398], + [-80.216626, 37.782209], + [-80.216271, 37.782139], + [-80.215895, 37.781996], + [-80.21573, 37.781603], + [-80.215938, 37.781199], + [-80.216102, 37.780344], + [-80.216289, 37.779795], + [-80.216367, 37.779408], + [-80.216172, 37.779168], + [-80.215645, 37.77901], + [-80.215521, 37.778786], + [-80.215639, 37.778423], + [-80.215638, 37.778262], + [-80.215634, 37.777891], + [-80.215661, 37.777488], + [-80.215941, 37.777197], + [-80.216303, 37.776872], + [-80.216501, 37.776452], + [-80.216608, 37.775968], + [-80.216819, 37.77587], + [-80.216902, 37.776063], + [-80.217179, 37.776512], + [-80.217637, 37.776782], + [-80.21847, 37.777067], + [-80.219483, 37.777205], + [-80.220387, 37.777625], + [-80.221181, 37.778127], + [-80.22183, 37.7783], + [-80.222365, 37.778215], + [-80.222567, 37.777916], + [-80.222678, 37.777766], + [-80.223034, 37.777285], + [-80.223629, 37.777063], + [-80.224185, 37.777035], + [-80.224195, 37.777033], + [-80.22466, 37.776943], + [-80.225166, 37.776924], + [-80.22545, 37.777083], + [-80.225799, 37.777612], + [-80.226301, 37.778212], + [-80.22671, 37.778701], + [-80.227056, 37.778867], + [-80.227501, 37.778896], + [-80.227648, 37.778877], + [-80.228148, 37.778827], + [-80.229048, 37.77862], + [-80.229795, 37.778518], + [-80.230461, 37.778312], + [-80.230712, 37.778119], + [-80.230863, 37.778003], + [-80.230862, 37.777976], + [-80.230852, 37.777621], + [-80.230848, 37.777464], + [-80.230865, 37.777251], + [-80.230872, 37.777156], + [-80.230884, 37.777005], + [-80.231462, 37.776707], + [-80.231518, 37.776678], + [-80.231533, 37.776643], + [-80.231756, 37.776137], + [-80.231798, 37.776053], + [-80.231858, 37.775937], + [-80.232014, 37.775628], + [-80.232547, 37.775353], + [-80.232678, 37.775285], + [-80.233304, 37.775095], + [-80.233715, 37.774746], + [-80.234016, 37.774487], + [-80.234461, 37.774467], + [-80.235069, 37.774576], + [-80.235452, 37.774444], + [-80.235558, 37.773856], + [-80.235895, 37.773137], + [-80.236328, 37.772981], + [-80.238562, 37.772715], + [-80.239514, 37.772829], + [-80.240271, 37.772711], + [-80.240866, 37.772449], + [-80.241244, 37.771802], + [-80.241245, 37.771714], + [-80.241248, 37.771441], + [-80.241251, 37.771174], + [-80.241255, 37.77086], + [-80.241393, 37.76945], + [-80.241394, 37.768928], + [-80.241394, 37.768548], + [-80.24144, 37.768065], + [-80.241994, 37.767755], + [-80.242831, 37.767499], + [-80.243771, 37.767444], + [-80.244264, 37.767191], + [-80.244566, 37.767012], + [-80.244921, 37.767098], + [-80.245318, 37.767337], + [-80.245887, 37.767614], + [-80.246526, 37.767851], + [-80.246872, 37.768042], + [-80.246905, 37.768316], + [-80.24709, 37.768572], + [-80.247495, 37.768618], + [-80.24798, 37.768518], + [-80.248392, 37.768257], + [-80.248499, 37.767862], + [-80.248827, 37.767263], + [-80.249399, 37.766776], + [-80.249793, 37.766579], + [-80.250404, 37.765826], + [-80.251331, 37.763973], + [-80.251659, 37.763254], + [-80.251322, 37.762965], + [-80.250895, 37.76279], + [-80.250476, 37.762446], + [-80.250311, 37.762156], + [-80.250473, 37.761064], + [-80.250531, 37.7609], + [-80.250668, 37.76053], + [-80.250831, 37.760088], + [-80.250916, 37.759402], + [-80.250739, 37.758871], + [-80.250177, 37.758374], + [-80.249793, 37.758053], + [-80.249606, 37.757957], + [-80.249442, 37.757781], + [-80.249349, 37.757508], + [-80.249438, 37.757282], + [-80.249638, 37.757144], + [-80.249793, 37.757118], + [-80.250456, 37.756687], + [-80.250578, 37.756376], + [-80.250655, 37.756185], + [-80.250793, 37.755757], + [-80.250882, 37.755523], + [-80.251177, 37.755594], + [-80.251625, 37.755873], + [-80.252111, 37.755863], + [-80.252761, 37.755996], + [-80.2533, 37.75613], + [-80.253903, 37.75618], + [-80.253939, 37.756183], + [-80.2549, 37.755984], + [-80.255763, 37.756221], + [-80.256413, 37.756379], + [-80.257082, 37.756294], + [-80.257414, 37.756091], + [-80.2576, 37.755291], + [-80.257605, 37.754743], + [-80.257741, 37.75404], + [-80.258019, 37.753426], + [-80.258451, 37.75302], + [-80.259055, 37.752524], + [-80.259093, 37.752234], + [-80.258936, 37.751622], + [-80.258941, 37.751089], + [-80.259454, 37.750618], + [-80.260099, 37.750129], + [-80.260293, 37.749898], + [-80.260251, 37.74977], + [-80.259927, 37.749733], + [-80.259505, 37.749477], + [-80.259301, 37.748923], + [-80.259065, 37.748283], + [-80.259304, 37.747402], + [-80.259034, 37.746244], + [-80.259318, 37.744968], + [-80.259696, 37.744545], + [-80.260418, 37.743491], + [-80.261311, 37.742298], + [-80.262151, 37.741653], + [-80.261834, 37.740818], + [-80.261701, 37.740046], + [-80.262062, 37.7398], + [-80.262259, 37.739468], + [-80.262374, 37.739032], + [-80.262712, 37.73865], + [-80.262768, 37.738343], + [-80.261979, 37.737682], + [-80.261303, 37.737173], + [-80.261185, 37.73669], + [-80.261315, 37.735343], + [-80.260997, 37.734411], + [-80.260316, 37.733524], + [-80.259671, 37.733038], + [-80.257584, 37.732156], + [-80.255024, 37.731423], + [-80.253538, 37.730648], + [-80.252027, 37.729832], + [-80.251901, 37.729552], + [-80.252027, 37.728551], + [-80.25223, 37.727268], + [-80.25308, 37.725906], + [-80.254148, 37.724993], + [-80.254964, 37.724139], + [-80.256764, 37.722163], + [-80.258146, 37.720619], + [-80.259079, 37.720094], + [-80.26036, 37.719888], + [-80.261491, 37.719773], + [-80.262637, 37.719294], + [-80.263939, 37.719144], + [-80.264409, 37.718793], + [-80.264987, 37.718256], + [-80.265438, 37.717325], + [-80.266915, 37.716005], + [-80.267173, 37.715696], + [-80.267101, 37.714923], + [-80.267454, 37.714235], + [-80.267882, 37.713779], + [-80.268152, 37.71289], + [-80.268992, 37.712399], + [-80.269612, 37.711917], + [-80.270439, 37.71178], + [-80.271993, 37.711539], + [-80.272343, 37.711286], + [-80.272958, 37.710547], + [-80.274228, 37.708923], + [-80.27501, 37.707851], + [-80.276097, 37.706222], + [-80.27658, 37.705556], + [-80.28057, 37.702637], + [-80.281146, 37.702032], + [-80.281342, 37.701826], + [-80.281472, 37.70169], + [-80.281948, 37.701191], + [-80.282332, 37.700788], + [-80.283285, 37.699788], + [-80.285304, 37.697998], + [-80.285791, 37.697583], + [-80.28583, 37.697558], + [-80.286546, 37.69698], + [-80.28711, 37.696411], + [-80.287471, 37.696172], + [-80.287747, 37.696071], + [-80.288004, 37.695972], + [-80.29411, 37.693859], + [-80.29479, 37.693701], + [-80.295353, 37.693415], + [-80.295919, 37.692845], + [-80.296146, 37.692371], + [-80.296141, 37.69179], + [-80.296127, 37.691778], + [-80.296103, 37.691757], + [-80.296092, 37.691748], + [-80.296081, 37.691738], + [-80.29608, 37.691737], + [-80.293873, 37.687184], + [-80.293732, 37.686955], + [-80.293267, 37.6862], + [-80.293124, 37.685859], + [-80.293121, 37.685853], + [-80.293058, 37.685703], + [-80.292335, 37.683979], + [-80.292328, 37.683962], + [-80.292313, 37.683928], + [-80.292257, 37.683895], + [-80.292213, 37.683852], + [-80.292184, 37.683802], + [-80.292173, 37.683756], + [-80.292162, 37.683708], + [-80.292159, 37.683612], + [-80.29217, 37.683542], + [-80.292156, 37.683511], + [-80.290017, 37.678833], + [-80.289904, 37.678602], + [-80.286927, 37.672499], + [-80.282955, 37.664354], + [-80.279375, 37.657084], + [-80.278679, 37.656202], + [-80.278115, 37.655728], + [-80.277401, 37.655128], + [-80.277373, 37.655105], + [-80.273892, 37.652084], + [-80.273635, 37.651861], + [-80.273354, 37.651617], + [-80.273342, 37.651606], + [-80.273292, 37.651563], + [-80.272373, 37.650765], + [-80.270326, 37.648989], + [-80.270332, 37.648914], + [-80.269872, 37.648466], + [-80.269123, 37.647737], + [-80.269089, 37.647704], + [-80.269085, 37.6477], + [-80.26908, 37.647696], + [-80.269073, 37.647689], + [-80.269036, 37.647653], + [-80.268982, 37.6476], + [-80.26886, 37.647481], + [-80.268801, 37.647423], + [-80.267999, 37.646642], + [-80.267705, 37.646356], + [-80.267507, 37.646163], + [-80.267231, 37.646018], + [-80.267206, 37.646012], + [-80.266219, 37.645803], + [-80.266209, 37.645801], + [-80.2662, 37.645799], + [-80.264835, 37.645509], + [-80.264792, 37.645522], + [-80.264544, 37.645454], + [-80.26355, 37.645182], + [-80.263524, 37.645175], + [-80.263469, 37.64516], + [-80.263388, 37.645138], + [-80.263347, 37.645127], + [-80.263333, 37.645104], + [-80.254953, 37.64249], + [-80.254544, 37.642363], + [-80.254507, 37.642379], + [-80.246322, 37.639963], + [-80.240794, 37.638331], + [-80.239973, 37.637961], + [-80.239332, 37.637696], + [-80.239323, 37.637692], + [-80.239306, 37.637682], + [-80.239298, 37.637677], + [-80.239272, 37.637662], + [-80.238862, 37.637423], + [-80.238792, 37.637382], + [-80.237192, 37.636446], + [-80.237031, 37.636355], + [-80.234183, 37.634958], + [-80.233435, 37.634552], + [-80.231332, 37.63341], + [-80.22793, 37.631556], + [-80.225263, 37.63013], + [-80.22511, 37.630048], + [-80.222944, 37.628847], + [-80.221728, 37.628181], + [-80.221167, 37.627873], + [-80.221079, 37.627825], + [-80.220987, 37.627774], + [-80.221441, 37.627357], + [-80.222037, 37.626697], + [-80.222498, 37.625837], + [-80.222578, 37.625132], + [-80.223389, 37.623192], + [-80.224284, 37.621975], + [-80.22602, 37.620066], + [-80.22881, 37.617512], + [-80.230623, 37.61611], + [-80.231941, 37.614809], + [-80.233133, 37.613897], + [-80.234967, 37.612543], + [-80.236019, 37.611752], + [-80.236504, 37.610966], + [-80.236947, 37.610035], + [-80.238136, 37.608977], + [-80.238956, 37.608245], + [-80.239348, 37.608064], + [-80.239816, 37.607456], + [-80.240275, 37.606968], + [-80.240928, 37.606696], + [-80.241291, 37.60654], + [-80.242248, 37.60629], + [-80.243423, 37.605644], + [-80.243952, 37.605075], + [-80.244394, 37.604845], + [-80.245007, 37.604598], + [-80.245931, 37.604115], + [-80.246713, 37.603584], + [-80.24808, 37.60296], + [-80.248742, 37.602519], + [-80.249283, 37.602103], + [-80.249783, 37.602124], + [-80.250561, 37.601524], + [-80.251456, 37.600972], + [-80.252802, 37.599975], + [-80.253758, 37.599454], + [-80.255014, 37.598417], + [-80.25633, 37.597428], + [-80.257768, 37.596503], + [-80.258561, 37.595871], + [-80.258922, 37.595506], + [-80.260382, 37.594871], + [-80.262113, 37.594049], + [-80.263563, 37.593381], + [-80.265187, 37.593083], + [-80.266255, 37.592771], + [-80.26691, 37.592462], + [-80.268449, 37.591673], + [-80.270345, 37.591156], + [-80.272377, 37.590002], + [-80.274624, 37.589233], + [-80.275195, 37.588682], + [-80.276162, 37.58825], + [-80.277037, 37.587827], + [-80.27778, 37.587203], + [-80.278684, 37.586474], + [-80.279195, 37.58598], + [-80.279496, 37.585696], + [-80.279737, 37.585542], + [-80.280039, 37.585444], + [-80.280625, 37.585408], + [-80.281767, 37.585499], + [-80.282443, 37.585488], + [-80.282978, 37.585332], + [-80.283401, 37.585185], + [-80.283753, 37.584997], + [-80.284114, 37.584641], + [-80.284676, 37.584284], + [-80.285975, 37.583721], + [-80.286769, 37.58325], + [-80.287855, 37.582608], + [-80.288769, 37.581967], + [-80.289654, 37.581447], + [-80.290761, 37.580893], + [-80.292058, 37.580226], + [-80.293115, 37.579785], + [-80.293869, 37.579298], + [-80.294885, 37.578777], + [-80.295651, 37.57858], + [-80.296609, 37.578365], + [-80.297565, 37.577925], + [-80.29971, 37.577189], + [-80.300676, 37.576749], + [-80.301392, 37.576632], + [-80.302558, 37.575925], + [-80.304117, 37.575128], + [-80.30617, 37.574223], + [-80.306995, 37.573791], + [-80.308845, 37.572855], + [-80.310232, 37.572026], + [-80.310846, 37.571765], + [-80.311995, 37.571509], + [-80.313476, 37.571074], + [-80.314604, 37.570681], + [-80.3155, 37.570322], + [-80.316784, 37.56926], + [-80.31801, 37.568584], + [-80.319188, 37.568086], + [-80.321694, 37.567122], + [-80.323465, 37.566291], + [-80.328507, 37.564322], + [-80.328246, 37.564029], + [-80.32728, 37.562945], + [-80.326313, 37.56186], + [-80.323833, 37.559077], + [-80.321352, 37.556293], + [-80.320041, 37.554841], + [-80.316727, 37.551102], + [-80.314528, 37.548644], + [-80.313367, 37.547334], + [-80.312373, 37.546232], + [-80.312289, 37.546229], + [-80.312204, 37.546227], + [-80.312415, 37.54611], + [-80.312501, 37.546038], + [-80.312506, 37.546034], + [-80.312724, 37.545852], + [-80.312753, 37.545828], + [-80.312767, 37.545761], + [-80.312813, 37.545547], + [-80.312836, 37.54553], + [-80.312978, 37.545423], + [-80.312981, 37.545413], + [-80.313001, 37.545318], + [-80.313392, 37.545007], + [-80.314029, 37.544589], + [-80.314174, 37.544568], + [-80.314186, 37.54454], + [-80.314263, 37.544179], + [-80.314473, 37.544062], + [-80.31533, 37.543956], + [-80.31551, 37.54398], + [-80.316975, 37.543627], + [-80.317569, 37.543715], + [-80.317667, 37.543862], + [-80.318155, 37.543962], + [-80.318598, 37.543839], + [-80.319072, 37.543574], + [-80.319275, 37.543273], + [-80.319325, 37.543041], + [-80.319342, 37.542958], + [-80.319485, 37.542724], + [-80.319913, 37.542454], + [-80.320466, 37.542419], + [-80.320477, 37.542418], + [-80.320608, 37.542365], + [-80.320688, 37.542325], + [-80.320766, 37.542301], + [-80.320839, 37.542271], + [-80.320879, 37.542254], + [-80.320889, 37.542247], + [-80.320911, 37.542223], + [-80.320919, 37.542215], + [-80.320922, 37.542211], + [-80.321002, 37.542125], + [-80.3211, 37.541667], + [-80.321228, 37.541503], + [-80.321491, 37.541356], + [-80.324004, 37.541285], + [-80.324691, 37.541121], + [-80.325059, 37.540916], + [-80.325383, 37.540921], + [-80.326164, 37.540734], + [-80.326568, 37.54057], + [-80.326765, 37.540522], + [-80.327494, 37.540147], + [-80.32777, 37.539833], + [-80.327799, 37.539794], + [-80.327834, 37.539759], + [-80.327922, 37.539659], + [-80.328109, 37.539213], + [-80.328395, 37.538961], + [-80.32847, 37.538609], + [-80.328372, 37.538198], + [-80.32838, 37.537643], + [-80.32868, 37.537406], + [-80.329987, 37.536708], + [-80.330371, 37.536274], + [-80.330314, 37.53625], + [-80.326562, 37.534668], + [-80.325369, 37.534167], + [-80.323002, 37.533172], + [-80.319429, 37.53166], + [-80.312981, 37.52893], + [-80.30935, 37.527387], + [-80.29167, 37.536523], + [-80.291628, 37.536503], + [-80.282394, 37.533526], + [-80.282571, 37.533257], + [-80.282895, 37.53279], + [-80.28378, 37.531506], + [-80.284663, 37.530223], + [-80.285809, 37.528561], + [-80.289297, 37.523501], + [-80.290515, 37.521734], + [-80.291734, 37.519967], + [-80.292829, 37.518378], + [-80.293925, 37.516789], + [-80.294727, 37.515625], + [-80.29553, 37.51446], + [-80.299792, 37.508278], + [-80.309836, 37.503834], + [-80.309531, 37.503333], + [-80.309336, 37.50289], + [-80.313338, 37.501571], + [-80.314809, 37.50095], + [-80.315649, 37.500599], + [-80.316763, 37.500133], + [-80.32063, 37.498887], + [-80.322252, 37.498192], + [-80.324313, 37.497016], + [-80.327103, 37.495384], + [-80.329262, 37.494643], + [-80.332037, 37.493752], + [-80.334243, 37.493334], + [-80.336945, 37.492959], + [-80.338866, 37.492878], + [-80.340455, 37.492699], + [-80.341523, 37.492543], + [-80.342438, 37.49241], + [-80.343783, 37.492158], + [-80.346366, 37.491435], + [-80.348675, 37.490783], + [-80.351826, 37.489736], + [-80.354827, 37.488563], + [-80.357153, 37.487915], + [-80.360339, 37.487004], + [-80.362494, 37.486506], + [-80.364531, 37.485535], + [-80.365788, 37.484938], + [-80.36684, 37.484886], + [-80.363174, 37.480008], + [-80.365327, 37.479003], + [-80.367412, 37.477878], + [-80.369454, 37.476604], + [-80.370572, 37.475482], + [-80.371954, 37.474076], + [-80.374756, 37.472931], + [-80.378285, 37.471396], + [-80.382511, 37.470383], + [-80.39062, 37.466615], + [-80.391698, 37.466121], + [-80.391719, 37.466111], + [-80.395099, 37.464542], + [-80.395146, 37.46452], + [-80.399462, 37.462512], + [-80.399849, 37.462332], + [-80.402748, 37.460368], + [-80.402761, 37.460358], + [-80.402783, 37.460341], + [-80.40516, 37.459253], + [-80.406041, 37.45885], + [-80.406358, 37.458705], + [-80.406521, 37.458631], + [-80.406667, 37.458564], + [-80.407337, 37.458257], + [-80.40761, 37.458132], + [-80.413151, 37.455599], + [-80.414262, 37.455091], + [-80.418297, 37.453247], + [-80.418751, 37.453039], + [-80.418855, 37.452992], + [-80.418883, 37.452979], + [-80.419525, 37.452685], + [-80.421147, 37.451943], + [-80.421749, 37.451668], + [-80.424063, 37.45061], + [-80.424152, 37.450569], + [-80.424292, 37.450505], + [-80.425632, 37.449892], + [-80.430041, 37.44691], + [-80.443012, 37.438138], + [-80.451358, 37.43405], + [-80.457307, 37.432277], + [-80.464819, 37.426152], + [-80.472828, 37.423778], + [-80.475604, 37.422956], + [-80.475799, 37.423078], + [-80.491611, 37.432943], + [-80.491617, 37.432947], + [-80.494863, 37.435079], + [-80.497282, 37.444787], + [-80.497154, 37.445174], + [-80.497136, 37.445228], + [-80.497128, 37.445254], + [-80.497125, 37.445263], + [-80.496808, 37.446222], + [-80.496803, 37.446236], + [-80.494587, 37.452918], + [-80.492984, 37.457756], + [-80.499787, 37.466924], + [-80.501711, 37.46931], + [-80.503966, 37.472105], + [-80.506068, 37.474815], + [-80.511394, 37.481679], + [-80.513412, 37.479453], + [-80.51416, 37.478897], + [-80.515142, 37.478573], + [-80.516369, 37.478481], + [-80.517602, 37.478777], + [-80.518645, 37.479311], + [-80.51966, 37.479205], + [-80.520756, 37.478254], + [-80.52161, 37.477547], + [-80.522341, 37.477192], + [-80.523484, 37.476912], + [-80.523791, 37.476905], + [-80.525406, 37.476869], + [-80.528352, 37.477375], + [-80.530761, 37.477311], + [-80.532375, 37.477131], + [-80.533452, 37.476413], + [-80.533825, 37.475622], + [-80.534413, 37.474739], + [-80.535112, 37.474416], + [-80.536892, 37.474015], + [-80.537942, 37.474159], + [-80.539296, 37.474458], + [-80.539789, 37.474534], + [-80.544159, 37.47475], + [-80.544839, 37.474702], + [-80.547454, 37.473688], + [-80.548808, 37.473704], + [-80.550942, 37.473714], + [-80.552039, 37.47357], + [-80.553165, 37.472885], + [-80.554464, 37.47218], + [-80.555141, 37.47163], + [-80.557972, 37.471066], + [-80.558985, 37.470718], + [-80.561445, 37.469782], + [-80.563795, 37.468237], + [-80.564032, 37.468097], + [-80.565176, 37.467281], + [-80.565194, 37.467268], + [-80.565717, 37.466943], + [-80.5663, 37.466582], + [-80.568186, 37.465584], + [-80.570566, 37.464613], + [-80.571286, 37.464319], + [-80.571368, 37.464254], + [-80.5725, 37.463688], + [-80.572639, 37.463475], + [-80.572735, 37.46333], + [-80.573361, 37.463062], + [-80.576258, 37.462055], + [-80.576511, 37.461762], + [-80.577426, 37.461031], + [-80.578028, 37.460593], + [-80.579437, 37.459923], + [-80.580776, 37.459485], + [-80.581466, 37.459145], + [-80.581864, 37.458726], + [-80.582349, 37.457889], + [-80.582571, 37.457046], + [-80.582887, 37.456665], + [-80.583893, 37.456527], + [-80.584689, 37.456586], + [-80.585337, 37.456843], + [-80.585859, 37.456661], + [-80.586639, 37.456057], + [-80.587635, 37.455313], + [-80.58966, 37.453799], + [-80.590243, 37.453303], + [-80.590564, 37.452786], + [-80.591096, 37.452046], + [-80.59138, 37.451447], + [-80.592417, 37.450695], + [-80.594151, 37.449668], + [-80.594773, 37.449513], + [-80.595381, 37.449454], + [-80.596189, 37.448915], + [-80.596885, 37.448374], + [-80.598134, 37.447627], + [-80.598968, 37.447194], + [-80.600207, 37.44618], + [-80.601469, 37.44595], + [-80.602673, 37.445332], + [-80.604334, 37.444934], + [-80.606591, 37.443984], + [-80.608257, 37.443141], + [-80.609562, 37.442258], + [-80.610112, 37.44185], + [-80.611903, 37.441205], + [-80.613859, 37.440159], + [-80.615267, 37.439779], + [-80.616805, 37.43945], + [-80.620904, 37.436942], + [-80.621378, 37.436678], + [-80.62212, 37.435976], + [-80.622293, 37.435067], + [-80.622372, 37.434228], + [-80.622667, 37.433314], + [-80.624792, 37.43297], + [-80.625292, 37.432882], + [-80.625952, 37.43316], + [-80.626368, 37.433335], + [-80.627276, 37.433056], + [-80.628623, 37.432057], + [-80.629049, 37.432167], + [-80.630133, 37.432314], + [-80.630701, 37.432488], + [-80.631858, 37.43224], + [-80.632368, 37.432132], + [-80.633194, 37.431749], + [-80.634393, 37.431234], + [-80.635561, 37.430534], + [-80.635904, 37.430427], + [-80.636488, 37.43017], + [-80.636851, 37.43001], + [-80.637382, 37.429379], + [-80.637557, 37.428563], + [-80.637359, 37.427944], + [-80.63695, 37.427478], + [-80.641901, 37.424515], + [-80.645896, 37.422154], + [-80.647935, 37.421691], + [-80.64921, 37.421579], + [-80.649675, 37.421503], + [-80.650191, 37.421508], + [-80.652429, 37.420641], + [-80.653143, 37.420169], + [-80.653592, 37.419521], + [-80.65669, 37.417592], + [-80.658385, 37.417058], + [-80.65929, 37.416521], + [-80.659613, 37.416382], + [-80.6605, 37.416103], + [-80.661193, 37.415575], + [-80.662173, 37.415359], + [-80.664115, 37.414227], + [-80.664974, 37.414222], + [-80.66578, 37.413846], + [-80.666484, 37.413366], + [-80.67, 37.41187], + [-80.67158, 37.410965], + [-80.672054, 37.410866], + [-80.672971, 37.410425], + [-80.674252, 37.41003], + [-80.674925, 37.409543], + [-80.675306, 37.409097], + [-80.678097, 37.407943], + [-80.679252, 37.407161], + [-80.684579, 37.404637], + [-80.68511, 37.404102], + [-80.685726, 37.403977], + [-80.686312, 37.403941], + [-80.687267, 37.403379], + [-80.687833, 37.403287], + [-80.68982, 37.402711], + [-80.690986, 37.402018], + [-80.691712, 37.401756], + [-80.693348, 37.400488], + [-80.69374, 37.400155], + [-80.694182, 37.399918], + [-80.696014, 37.399907], + [-80.697477, 37.399608], + [-80.69837, 37.398884], + [-80.699438, 37.398402], + [-80.700711, 37.397282], + [-80.70099, 37.39682], + [-80.70112, 37.396715], + [-80.701251, 37.396609], + [-80.702582, 37.396246], + [-80.703115, 37.395944], + [-80.705206, 37.394625], + [-80.706013, 37.394402], + [-80.70716, 37.393855], + [-80.708402, 37.393645], + [-80.709116, 37.393197], + [-80.710504, 37.39252], + [-80.712512, 37.392047], + [-80.713548, 37.391507], + [-80.71386, 37.391345], + [-80.714175, 37.391416], + [-80.715482, 37.390714], + [-80.715963, 37.39026], + [-80.71603, 37.389957], + [-80.716303, 37.388855], + [-80.716301, 37.388701], + [-80.716523, 37.388652], + [-80.717698, 37.388829], + [-80.719527, 37.389592], + [-80.720687, 37.389326], + [-80.723104, 37.388335], + [-80.723599, 37.388268], + [-80.723928, 37.387766], + [-80.724188, 37.386498], + [-80.724288, 37.386336], + [-80.725705, 37.385529], + [-80.726049, 37.385567], + [-80.727046, 37.386085], + [-80.72732, 37.386228], + [-80.727807, 37.386386], + [-80.731592, 37.384717], + [-80.732124, 37.384278], + [-80.733169, 37.383699], + [-80.734168, 37.383442], + [-80.734804, 37.383341], + [-80.736765, 37.383312], + [-80.737432, 37.383308], + [-80.737634, 37.38321], + [-80.738043, 37.382554], + [-80.738394, 37.38227], + [-80.738655, 37.382179], + [-80.740976, 37.38172], + [-80.742866, 37.380595], + [-80.742976, 37.38049], + [-80.743203, 37.37998], + [-80.743394, 37.379858], + [-80.744202, 37.379732], + [-80.744323, 37.379723], + [-80.744414, 37.37973], + [-80.744465, 37.379754], + [-80.745419, 37.380087], + [-80.74553, 37.380118], + [-80.745907, 37.380076], + [-80.74757, 37.379895], + [-80.748106, 37.379908], + [-80.748523, 37.380066], + [-80.748725, 37.380057], + [-80.749798, 37.37935], + [-80.75033, 37.378986], + [-80.750615, 37.378665], + [-80.75088, 37.378392], + [-80.751033, 37.378216], + [-80.751428, 37.377984], + [-80.751782, 37.377897], + [-80.752206, 37.377834], + [-80.753659, 37.377833], + [-80.754145, 37.377577], + [-80.754458, 37.377506], + [-80.754923, 37.377428], + [-80.755257, 37.377357], + [-80.755591, 37.377189], + [-80.756766, 37.376622], + [-80.757121, 37.376406], + [-80.757559, 37.375901], + [-80.757802, 37.375773], + [-80.758207, 37.375597], + [-80.758955, 37.375544], + [-80.759646, 37.375128], + [-80.759788, 37.37493], + [-80.759889, 37.374889], + [-80.760223, 37.374895], + [-80.761941, 37.374673], + [-80.762597, 37.374474], + [-80.762838, 37.374311], + [-80.763442, 37.373968], + [-80.764027, 37.373729], + [-80.765167, 37.373382], + [-80.765631, 37.373266], + [-80.765935, 37.373264], + [-80.766796, 37.37333], + [-80.766947, 37.373337], + [-80.768481, 37.37285], + [-80.770085, 37.37237], + [-80.771674, 37.375128], + [-80.775481, 37.381648], + [-80.775593, 37.381841], + [-80.776652, 37.383686], + [-80.776659, 37.383768], + [-80.776694, 37.383966], + [-80.776762, 37.384119], + [-80.776911, 37.384492], + [-80.77701, 37.384847], + [-80.777309, 37.385197], + [-80.777953, 37.385532], + [-80.778376, 37.385712], + [-80.778807, 37.385957], + [-80.779311, 37.386203], + [-80.779594, 37.3864], + [-80.779645, 37.386436], + [-80.779752, 37.386512], + [-80.780103, 37.386845], + [-80.780464, 37.387202], + [-80.780663, 37.387493], + [-80.780792, 37.387801], + [-80.780953, 37.388019], + [-80.781101, 37.388311], + [-80.781472, 37.388612], + [-80.781744, 37.388694], + [-80.781955, 37.388739], + [-80.782037, 37.388753], + [-80.782071, 37.388794], + [-80.782117, 37.388842], + [-80.782288, 37.389025], + [-80.782355, 37.389136], + [-80.782476, 37.389328], + [-80.7826, 37.389501], + [-80.782785, 37.389755], + [-80.782852, 37.389841], + [-80.782931, 37.389963], + [-80.783128, 37.39026], + [-80.783144, 37.390292], + [-80.783385, 37.390656], + [-80.783431, 37.39085], + [-80.783463, 37.390987], + [-80.783479, 37.391414], + [-80.783497, 37.391728], + [-80.783465, 37.392014], + [-80.783446, 37.392189], + [-80.783444, 37.392205], + [-80.783443, 37.39222], + [-80.783339, 37.39259], + [-80.783334, 37.392686], + [-80.783331, 37.392735], + [-80.783327, 37.392796], + [-80.78334, 37.392815], + [-80.783346, 37.392824], + [-80.78345, 37.392944], + [-80.783507, 37.39301], + [-80.783518, 37.393039], + [-80.783526, 37.39306], + [-80.783546, 37.393115], + [-80.783655, 37.393406], + [-80.783874, 37.39381], + [-80.784153, 37.394214], + [-80.784191, 37.394594], + [-80.784351, 37.394621], + [-80.784753, 37.394621], + [-80.785128, 37.394659], + [-80.78538, 37.394694], + [-80.786532, 37.394804], + [-80.786985, 37.394819], + [-80.78791, 37.39485], + [-80.788449, 37.395031], + [-80.788487, 37.395044], + [-80.789195, 37.395289], + [-80.789595, 37.395426], + [-80.789761, 37.395483], + [-80.789829, 37.395506], + [-80.790038, 37.395578], + [-80.790112, 37.395604], + [-80.790202, 37.395635], + [-80.79032, 37.395675], + [-80.791296, 37.395675], + [-80.792731, 37.395332], + [-80.793219, 37.395401], + [-80.794055, 37.395287], + [-80.794093, 37.395282], + [-80.794568, 37.395218], + [-80.795429, 37.395195], + [-80.795602, 37.395259], + [-80.795862, 37.395356], + [-80.796944, 37.395573], + [-80.797006, 37.395585], + [-80.79719, 37.395653], + [-80.797259, 37.395678], + [-80.797693, 37.395837], + [-80.798879, 37.395823], + [-80.79892, 37.395746], + [-80.799017, 37.395751], + [-80.799292, 37.39574], + [-80.799451, 37.395751], + [-80.799549, 37.395774], + [-80.799568, 37.395779], + [-80.799685, 37.395817], + [-80.80016, 37.395878], + [-80.800369, 37.395927], + [-80.800511, 37.39596], + [-80.800628, 37.396015], + [-80.800739, 37.396081], + [-80.800821, 37.396141], + [-80.800863, 37.39618], + [-80.801021, 37.396345], + [-80.80109, 37.396433], + [-80.801159, 37.396543], + [-80.801186, 37.396636], + [-80.801193, 37.396696], + [-80.801179, 37.396795], + [-80.801152, 37.396872], + [-80.801145, 37.396955], + [-80.801152, 37.397043], + [-80.801179, 37.397103], + [-80.801214, 37.397147], + [-80.801248, 37.39718], + [-80.801269, 37.397191], + [-80.801292, 37.397229], + [-80.801296, 37.397235], + [-80.801356, 37.397293], + [-80.80138, 37.397316], + [-80.801462, 37.397396], + [-80.801524, 37.397455], + [-80.801586, 37.397526], + [-80.80162, 37.397581], + [-80.801675, 37.397702], + [-80.801723, 37.397807], + [-80.801765, 37.397867], + [-80.801861, 37.397933], + [-80.802013, 37.398026], + [-80.80213, 37.398087], + [-80.802212, 37.398136], + [-80.802502, 37.398268], + [-80.802811, 37.398367], + [-80.802977, 37.398411], + [-80.80317, 37.398438], + [-80.803528, 37.398466], + [-80.803672, 37.39845], + [-80.803845, 37.398417], + [-80.803941, 37.398389], + [-80.804072, 37.398367], + [-80.804182, 37.398334], + [-80.80423, 37.398312], + [-80.804285, 37.398268], + [-80.804368, 37.39818], + [-80.80443, 37.398103], + [-80.804499, 37.397961], + [-80.804588, 37.397829], + [-80.804623, 37.397807], + [-80.804657, 37.397796], + [-80.804726, 37.39779], + [-80.80525, 37.397834], + [-80.805491, 37.397873], + [-80.805635, 37.397917], + [-80.805746, 37.397961], + [-80.805808, 37.397999], + [-80.805932, 37.398092], + [-80.806166, 37.398224], + [-80.806269, 37.398301], + [-80.806352, 37.398411], + [-80.806365, 37.398461], + [-80.806379, 37.398549], + [-80.806263, 37.399164], + [-80.806262, 37.39917], + [-80.806255, 37.399181], + [-80.806241, 37.399362], + [-80.806255, 37.399451], + [-80.806262, 37.399499], + [-80.806358, 37.39984], + [-80.8064, 37.400021], + [-80.806434, 37.400142], + [-80.806482, 37.40034], + [-80.806537, 37.400532], + [-80.806634, 37.400774], + [-80.806703, 37.400884], + [-80.80673, 37.400911], + [-80.806937, 37.401225], + [-80.806992, 37.401357], + [-80.807027, 37.401499], + [-80.807043, 37.401623], + [-80.807047, 37.401653], + [-80.80702, 37.401922], + [-80.806992, 37.402071], + [-80.806978, 37.402247], + [-80.806937, 37.402461], + [-80.806911, 37.402531], + [-80.806854, 37.402681], + [-80.806772, 37.403049], + [-80.806751, 37.403126], + [-80.806641, 37.403324], + [-80.806579, 37.403406], + [-80.806434, 37.403544], + [-80.806393, 37.403593], + [-80.806193, 37.403774], + [-80.806159, 37.40384], + [-80.806145, 37.403967], + [-80.806152, 37.404033], + [-80.806165, 37.404071], + [-80.806227, 37.404153], + [-80.806303, 37.40423], + [-80.806393, 37.404307], + [-80.806462, 37.404346], + [-80.806537, 37.404379], + [-80.806689, 37.404428], + [-80.80684, 37.404467], + [-80.806896, 37.404489], + [-80.807095, 37.404582], + [-80.807267, 37.404692], + [-80.807515, 37.404934], + [-80.807646, 37.405027], + [-80.80766, 37.405055], + [-80.807701, 37.405071], + [-80.807832, 37.405192], + [-80.808135, 37.405544], + [-80.808232, 37.405698], + [-80.808266, 37.405774], + [-80.808301, 37.405901], + [-80.808349, 37.406], + [-80.808418, 37.406236], + [-80.808466, 37.406362], + [-80.808528, 37.406461], + [-80.80859, 37.406544], + [-80.808686, 37.406626], + [-80.808803, 37.406692], + [-80.809024, 37.406791], + [-80.809148, 37.406841], + [-80.809368, 37.406906], + [-80.809844, 37.407027], + [-80.810064, 37.407093], + [-80.810133, 37.407121], + [-80.810325, 37.407175], + [-80.810484, 37.40722], + [-80.810774, 37.407286], + [-80.811035, 37.407335], + [-80.811097, 37.407352], + [-80.811159, 37.40739], + [-80.811207, 37.407429], + [-80.811331, 37.407577], + [-80.811414, 37.407632], + [-80.811538, 37.407736], + [-80.81169, 37.407824], + [-80.811772, 37.407846], + [-80.811883, 37.407857], + [-80.812013, 37.407846], + [-80.8121, 37.407825], + [-80.817065, 37.411162], + [-80.817361, 37.41134], + [-80.820202, 37.413275], + [-80.820231, 37.413295], + [-80.823839, 37.41572], + [-80.823936, 37.415785], + [-80.82396, 37.415801], + [-80.825369, 37.41675], + [-80.826115, 37.417252], + [-80.828316, 37.418674], + [-80.828827, 37.419039], + [-80.830854, 37.420514], + [-80.831469, 37.42095], + [-80.832566, 37.421634], + [-80.83262, 37.421667], + [-80.832943, 37.421865], + [-80.834113, 37.422581], + [-80.835654, 37.423532], + [-80.835868, 37.423664], + [-80.83614, 37.423831], + [-80.836411, 37.423999], + [-80.836449, 37.424362], + [-80.836617, 37.42475], + [-80.836927, 37.425178], + [-80.837238, 37.425413], + [-80.837467, 37.425543], + [-80.837681, 37.425665], + [-80.837824, 37.425696], + [-80.838426, 37.425821], + [-80.838926, 37.425866], + [-80.83908, 37.42588], + [-80.83955, 37.426012], + [-80.839747, 37.426068], + [-80.840463, 37.426151], + [-80.841028, 37.42613], + [-80.841675, 37.425978], + [-80.842162, 37.425625], + [-80.843037, 37.42479], + [-80.843383, 37.424365], + [-80.84379, 37.423923], + [-80.844216, 37.423562], + [-80.844328, 37.423523], + [-80.844702, 37.423394], + [-80.845389, 37.423358], + [-80.845682, 37.423342], + [-80.846002, 37.423371], + [-80.846328, 37.423402], + [-80.84685, 37.423694], + [-80.847201, 37.424041], + [-80.847373, 37.424139], + [-80.848447, 37.424779], + [-80.848848, 37.425144], + [-80.849305, 37.425463], + [-80.84937, 37.425508], + [-80.849689, 37.425665], + [-80.849772, 37.425711], + [-80.850445, 37.425983], + [-80.850659, 37.426069], + [-80.85123, 37.426286], + [-80.85146, 37.426368], + [-80.851666, 37.426452], + [-80.852229, 37.426664], + [-80.853166, 37.426909], + [-80.853539, 37.426932], + [-80.853741, 37.426944], + [-80.85423, 37.426878], + [-80.854429, 37.42685], + [-80.855145, 37.426877], + [-80.855385, 37.426878], + [-80.855821, 37.426879], + [-80.856281, 37.426942], + [-80.856707, 37.427012], + [-80.85672, 37.427014], + [-80.856757, 37.427022], + [-80.857015, 37.427077], + [-80.857362, 37.427213], + [-80.857486, 37.427305], + [-80.857718, 37.42748], + [-80.858173, 37.427929], + [-80.858177, 37.427933], + [-80.858404, 37.428248], + [-80.858415, 37.428263], + [-80.858469, 37.428314], + [-80.858561, 37.428433], + [-80.858683, 37.428915], + [-80.858763, 37.428975], + [-80.858842, 37.429035], + [-80.858883, 37.429066], + [-80.85946, 37.429498], + [-80.859521, 37.429464], + [-80.85953, 37.429459], + [-80.859668, 37.429376], + [-80.860033, 37.429107], + [-80.860081, 37.42909], + [-80.860109, 37.429035], + [-80.860363, 37.428799], + [-80.860535, 37.428618], + [-80.860604, 37.42853], + [-80.860708, 37.428425], + [-80.860776, 37.428337], + [-80.860845, 37.428233], + [-80.861065, 37.427821], + [-80.861172, 37.427581], + [-80.861231, 37.427447], + [-80.861437, 37.427073], + [-80.86152, 37.426941], + [-80.861692, 37.426688], + [-80.861898, 37.426419], + [-80.862063, 37.426188], + [-80.862084, 37.42615], + [-80.862105, 37.426133], + [-80.862153, 37.426062], + [-80.862208, 37.425996], + [-80.862483, 37.425589], + [-80.862531, 37.425501], + [-80.8626, 37.425402], + [-80.862814, 37.425127], + [-80.862889, 37.425039], + [-80.86291, 37.425023], + [-80.863027, 37.424897], + [-80.863096, 37.424814], + [-80.863172, 37.424732], + [-80.863275, 37.424633], + [-80.863309, 37.424583], + [-80.863337, 37.424528], + [-80.86344, 37.424391], + [-80.863523, 37.424253], + [-80.863578, 37.424138], + [-80.863647, 37.423957], + [-80.863715, 37.423704], + [-80.86408, 37.42277], + [-80.86419, 37.422522], + [-80.864252, 37.422368], + [-80.8643, 37.422176], + [-80.864389, 37.421907], + [-80.864492, 37.421615], + [-80.864527, 37.421544], + [-80.864547, 37.421456], + [-80.864582, 37.421374], + [-80.864671, 37.421236], + [-80.864891, 37.420961], + [-80.864933, 37.420879], + [-80.865022, 37.420763], + [-80.865036, 37.420709], + [-80.86507, 37.420675], + [-80.865146, 37.420549], + [-80.86518, 37.420461], + [-80.865277, 37.42012], + [-80.865318, 37.419895], + [-80.865421, 37.419186], + [-80.865421, 37.419131], + [-80.865455, 37.418868], + [-80.865441, 37.418813], + [-80.865564, 37.417538], + [-80.865571, 37.417384], + [-80.86555, 37.41717], + [-80.865509, 37.416906], + [-80.865419, 37.416593], + [-80.865308, 37.416241], + [-80.865281, 37.41611], + [-80.865246, 37.415944], + [-80.865184, 37.415779], + [-80.865136, 37.41567], + [-80.865094, 37.415554], + [-80.865046, 37.415378], + [-80.865011, 37.415148], + [-80.86497, 37.414939], + [-80.864873, 37.414582], + [-80.864859, 37.41445], + [-80.864832, 37.414367], + [-80.864797, 37.414236], + [-80.864742, 37.414104], + [-80.864659, 37.413862], + [-80.864604, 37.413769], + [-80.864576, 37.413692], + [-80.864452, 37.413411], + [-80.864328, 37.413186], + [-80.864162, 37.412917], + [-80.86408, 37.412796], + [-80.863962, 37.412703], + [-80.86388, 37.412626], + [-80.863645, 37.412368], + [-80.863631, 37.41234], + [-80.863542, 37.412225], + [-80.86348, 37.412154], + [-80.863335, 37.411934], + [-80.863301, 37.411895], + [-80.863266, 37.411835], + [-80.863045, 37.41156], + [-80.863006, 37.411521], + [-80.863179, 37.411297], + [-80.863298, 37.411143], + [-80.863418, 37.41099], + [-80.864493, 37.409606], + [-80.867249, 37.4059], + [-80.868146, 37.404685], + [-80.869522, 37.402816], + [-80.87226, 37.399131], + [-80.872269, 37.399119], + [-80.874808, 37.395473], + [-80.875355, 37.394601], + [-80.87547, 37.394444], + [-80.880809, 37.387231], + [-80.882608, 37.384807], + [-80.882705, 37.384677], + [-80.882711, 37.384669], + [-80.882777, 37.38458], + [-80.882813, 37.384531], + [-80.88302, 37.384252], + [-80.883029, 37.38424], + [-80.88325, 37.38394], + [-80.88224, 37.382804], + [-80.882204, 37.382764], + [-80.881912, 37.382436], + [-80.880523, 37.38093], + [-80.88048, 37.380883], + [-80.880086, 37.380455], + [-80.880045, 37.380411], + [-80.879919, 37.380274], + [-80.879914, 37.380269], + [-80.878963, 37.379239], + [-80.878072, 37.378276], + [-80.878012, 37.378211], + [-80.877849, 37.378031], + [-80.87775, 37.377927], + [-80.877679, 37.377851], + [-80.876961, 37.377226], + [-80.876273, 37.376628], + [-80.876251, 37.376609], + [-80.876242, 37.376597], + [-80.875247, 37.37519], + [-80.874812, 37.374666], + [-80.873648, 37.373453], + [-80.873287, 37.37308], + [-80.87259, 37.372354], + [-80.872422, 37.372167], + [-80.872368, 37.372107], + [-80.872362, 37.372101], + [-80.872325, 37.372059], + [-80.872272, 37.372001], + [-80.87218, 37.371901], + [-80.872169, 37.371889], + [-80.872164, 37.371884], + [-80.872037, 37.371746], + [-80.869327, 37.368766], + [-80.868488, 37.367843], + [-80.868406, 37.367751], + [-80.868398, 37.367742], + [-80.868379, 37.367721], + [-80.868291, 37.367625], + [-80.868286, 37.36762], + [-80.868274, 37.367607], + [-80.86786, 37.367152], + [-80.867236, 37.366467], + [-80.867212, 37.366441], + [-80.866904, 37.3661], + [-80.86675, 37.365932], + [-80.866696, 37.365873], + [-80.866642, 37.365815], + [-80.866609, 37.365778], + [-80.866602, 37.36577], + [-80.866598, 37.365765], + [-80.866576, 37.36574], + [-80.866006, 37.365114], + [-80.865957, 37.36506], + [-80.865948, 37.365051], + [-80.865929, 37.36503], + [-80.865913, 37.365012], + [-80.865872, 37.364967], + [-80.865688, 37.364765], + [-80.86561, 37.364679], + [-80.865553, 37.364616], + [-80.865422, 37.364472], + [-80.865303, 37.364341], + [-80.858813, 37.357206], + [-80.855682, 37.353762], + [-80.849454, 37.346916], + [-80.85064, 37.346438], + [-80.850916, 37.34633], + [-80.851181, 37.346238], + [-80.85159, 37.346085], + [-80.851948, 37.34593], + [-80.853378, 37.345416], + [-80.853657, 37.345211], + [-80.854056, 37.345057], + [-80.854281, 37.344948], + [-80.854547, 37.34484], + [-80.854843, 37.344749], + [-80.855574, 37.344286], + [-80.855729, 37.344152], + [-80.855924, 37.344075], + [-80.856177, 37.344056], + [-80.856695, 37.343944], + [-80.857021, 37.343862], + [-80.857359, 37.343731], + [-80.857604, 37.343614], + [-80.858062, 37.34351], + [-80.859052, 37.342826], + [-80.859433, 37.342599], + [-80.859782, 37.34242], + [-80.86013, 37.342257], + [-80.860448, 37.342109], + [-80.860806, 37.341938], + [-80.862557, 37.341519], + [-80.862985, 37.34139], + [-80.863955, 37.341029], + [-80.865324, 37.34053], + [-80.865865, 37.340338], + [-80.866051, 37.340213], + [-80.866728, 37.339894], + [-80.867045, 37.339763], + [-80.868382, 37.33894], + [-80.868989, 37.33858], + [-80.86914, 37.338464], + [-80.869516, 37.338178], + [-80.869766, 37.337932], + [-80.870718, 37.336802], + [-80.870916, 37.336588], + [-80.87164, 37.336028], + [-80.87192, 37.335767], + [-80.872916, 37.335212], + [-80.873072, 37.335061], + [-80.873383, 37.334793], + [-80.873642, 37.334563], + [-80.874346, 37.333987], + [-80.874804, 37.333434], + [-80.876537, 37.331943], + [-80.880106, 37.32891], + [-80.882955, 37.32716], + [-80.885293, 37.325702], + [-80.885751, 37.324965], + [-80.886917, 37.324647], + [-80.8906, 37.321454], + [-80.891206, 37.321372], + [-80.898053, 37.316786], + [-80.899163, 37.315685], + [-80.900011, 37.315662], + [-80.900538, 37.315007], + [-80.901569, 37.314865], + [-80.905095, 37.312936], + [-80.907954, 37.311612], + [-80.910392, 37.311243], + [-80.911061, 37.310501], + [-80.912156, 37.310182], + [-80.913565, 37.308762], + [-80.914852, 37.308502], + [-80.915947, 37.307642], + [-80.918028, 37.306891], + [-80.919262, 37.30617], + [-80.927043, 37.30369], + [-80.928134, 37.303573], + [-80.931121, 37.302879], + [-80.934007, 37.301676], + [-80.936967, 37.300361], + [-80.938138, 37.300285], + [-80.938411, 37.299731], + [-80.939349, 37.299677], + [-80.939827, 37.298916], + [-80.94133, 37.29889], + [-80.942403, 37.298119], + [-80.943159, 37.298119], + [-80.943417, 37.297824], + [-80.942987, 37.297634], + [-80.942976, 37.297133], + [-80.944176, 37.296582], + [-80.944328, 37.296638], + [-80.945491, 37.29691], + [-80.947899, 37.295879], + [-80.951021, 37.294977], + [-80.956118, 37.29416], + [-80.957598, 37.29374], + [-80.964882, 37.292905], + [-80.966559, 37.292165], + [-80.968371, 37.292297], + [-80.969961, 37.291894], + [-80.971878, 37.292374], + [-80.973892, 37.291451], + [-80.97406, 37.291512], + [-80.974404, 37.291637], + [-80.975424, 37.292007], + [-80.977011, 37.291814], + [-80.977817, 37.292355], + [-80.980149, 37.29275], + [-80.981325, 37.293472], + [-80.981326, 37.294561], + [-80.982176, 37.29603], + [-80.980902, 37.297348], + [-80.980749, 37.298548], + [-80.979109, 37.300588], + [-80.979659, 37.301384], + [-80.979592, 37.302286], + [-80.980757, 37.301968], + [-80.981866, 37.30089], + [-80.98318, 37.301235], + [-80.985269, 37.300571], + [-80.985768, 37.301407], + [-80.987322, 37.301366], + [-80.988049, 37.300745], + [-80.988772, 37.300938], + [-80.993686, 37.299633], + [-80.994439, 37.299802], + [-80.996016, 37.299552], + [-80.997199, 37.298814], + [-80.998514, 37.298578], + [-80.999086, 37.298148], + [-80.99981, 37.297936], + [-81.000579, 37.297875], + [-81.001778, 37.297553], + [-81.002645, 37.297424], + [-81.003975, 37.297191], + [-81.005375, 37.296926], + [-81.006081, 37.2967], + [-81.006806, 37.296523], + [-81.007673, 37.296435], + [-81.00846, 37.29608], + [-81.009467, 37.295928], + [-81.010213, 37.295783], + [-81.01121, 37.295686], + [-81.01255, 37.295525], + [-81.013225, 37.295437], + [-81.013467, 37.295381], + [-81.014192, 37.295276], + [-81.015381, 37.295228], + [-81.016772, 37.294833], + [-81.01795, 37.294697], + [-81.019159, 37.29452], + [-81.020368, 37.294302], + [-81.021023, 37.29419], + [-81.02194, 37.29415], + [-81.02332, 37.293795], + [-81.024459, 37.293489], + [-81.025255, 37.293336], + [-81.026645, 37.292893], + [-81.028026, 37.292587], + [-81.029195, 37.2922], + [-81.030676, 37.291862], + [-81.032207, 37.291661], + [-81.033607, 37.291258], + [-81.034655, 37.290758], + [-81.034927, 37.290637], + [-81.035522, 37.290508], + [-81.036136, 37.290259], + [-81.037194, 37.290258], + [-81.037839, 37.290379], + [-81.038463, 37.290322], + [-81.038927, 37.290056], + [-81.040417, 37.289847], + [-81.041586, 37.289629], + [-81.042503, 37.289387], + [-81.043107, 37.289404], + [-81.044125, 37.289396], + [-81.045666, 37.289113], + [-81.046724, 37.289057], + [-81.048447, 37.289121], + [-81.049303, 37.289025], + [-81.049938, 37.288799], + [-81.050452, 37.288743], + [-81.051086, 37.288743], + [-81.051912, 37.288573], + [-81.052889, 37.288614], + [-81.053746, 37.288428], + [-81.054662, 37.288218], + [-81.055367, 37.288033], + [-81.055599, 37.287848], + [-81.056224, 37.287823], + [-81.057281, 37.287686], + [-81.058107, 37.287501], + [-81.058641, 37.287372], + [-81.059538, 37.287275], + [-81.060797, 37.287073], + [-81.062247, 37.286904], + [-81.063768, 37.286831], + [-81.064554, 37.286831], + [-81.065128, 37.286654], + [-81.066358, 37.286444], + [-81.067537, 37.286347], + [-81.067939, 37.286202], + [-81.068655, 37.286226], + [-81.070548, 37.285959], + [-81.071999, 37.285693], + [-81.073127, 37.285322], + [-81.074507, 37.285185], + [-81.075292, 37.285032], + [-81.075897, 37.284894], + [-81.076531, 37.284967], + [-81.077841, 37.284991], + [-81.079543, 37.284813], + [-81.080671, 37.284603], + [-81.082373, 37.284562], + [-81.084015, 37.284408], + [-81.085688, 37.284086], + [-81.087743, 37.283787], + [-81.090452, 37.28331], + [-81.09297, 37.282842], + [-81.094823, 37.282647], + [-81.096928, 37.281873], + [-81.098801, 37.281679], + [-81.100101, 37.281404], + [-81.102205, 37.281016], + [-81.10415, 37.280612], + [-81.104986, 37.280273], + [-81.10559, 37.280007], + [-81.107594, 37.279716], + [-81.109326, 37.27911], + [-81.110192, 37.278795], + [-81.112599, 37.278504], + [-81.113203, 37.278262], + [-81.114009, 37.278132], + [-81.115066, 37.277745], + [-81.115831, 37.277406], + [-81.116304, 37.277333], + [-81.116767, 37.277002], + [-81.117936, 37.276752], + [-81.119315, 37.27634], + [-81.120503, 37.276081], + [-81.121994, 37.275669], + [-81.123245, 37.275408], + [-81.123352, 37.275386], + [-81.123443, 37.275368], + [-81.123483, 37.27536], + [-81.123491, 37.275359], + [-81.1235, 37.275357], + [-81.123542, 37.275349], + [-81.123571, 37.275343], + [-81.123641, 37.275329], + [-81.12372, 37.275314], + [-81.123741, 37.27531], + [-81.124229, 37.275216], + [-81.124816, 37.27503], + [-81.126828, 37.2742], + [-81.127744, 37.273963], + [-81.128043, 37.273887], + [-81.129102, 37.273619], + [-81.130148, 37.27322], + [-81.131376, 37.273005], + [-81.132019, 37.272809], + [-81.133609, 37.272424], + [-81.134514, 37.272058], + [-81.135931, 37.271496], + [-81.137147, 37.27087], + [-81.138384, 37.270454], + [-81.139551, 37.270232], + [-81.140706, 37.269695], + [-81.141432, 37.269588], + [-81.142407, 37.269172], + [-81.143233, 37.269113], + [-81.144178, 37.268843], + [-81.145195, 37.26867], + [-81.145607, 37.268442], + [-81.14635, 37.268165], + [-81.14769, 37.26807], + [-81.149611, 37.267522], + [-81.150707, 37.267244], + [-81.151694, 37.267111], + [-81.152679, 37.266744], + [-81.154037, 37.266352], + [-81.155686, 37.265974], + [-81.157347, 37.265645], + [-81.158967, 37.265389], + [-81.16114, 37.264759], + [-81.162778, 37.264115], + [-81.164116, 37.263666], + [-81.165614, 37.263289], + [-81.167032, 37.262888], + [-81.168248, 37.262415], + [-81.169655, 37.261837], + [-81.170449, 37.261495], + [-81.171645, 37.261095], + [-81.173444, 37.260305], + [-81.174608, 37.259679], + [-81.175842, 37.259104], + [-81.176899, 37.258613], + [-81.178154, 37.257986], + [-81.1794, 37.25732], + [-81.180294, 37.256969], + [-81.180635, 37.256661], + [-81.181006, 37.256345], + [-81.181307, 37.256207], + [-81.181616, 37.256078], + [-81.181739, 37.256027], + [-81.182271, 37.25563], + [-81.182939, 37.25474], + [-81.183282, 37.254495], + [-81.183485, 37.254461], + [-81.183523, 37.254455], + [-81.183566, 37.254448], + [-81.183624, 37.254438], + [-81.184066, 37.254372], + [-81.18431, 37.25433], + [-81.184528, 37.254193], + [-81.18479, 37.254014], + [-81.185572, 37.253623], + [-81.186245, 37.253266], + [-81.186786, 37.252867], + [-81.187087, 37.25281], + [-81.187421, 37.252736], + [-81.187588, 37.252658], + [-81.187732, 37.25259], + [-81.187822, 37.252525], + [-81.187846, 37.252508], + [-81.187852, 37.252503], + [-81.187911, 37.25246], + [-81.188102, 37.252201], + [-81.18991, 37.251403], + [-81.190002, 37.251363], + [-81.190693, 37.251061], + [-81.190944, 37.250834], + [-81.191265, 37.250639], + [-81.191657, 37.2505], + [-81.191969, 37.250483], + [-81.19211, 37.250434], + [-81.19223, 37.250361], + [-81.19245, 37.250124], + [-81.193053, 37.24967], + [-81.19416, 37.249041], + [-81.196171, 37.247942], + [-81.197756, 37.247115], + [-81.198995, 37.24643], + [-81.199577, 37.245886], + [-81.200462, 37.245295], + [-81.203001, 37.243886], + [-81.204777, 37.24302], + [-81.206368, 37.24237], + [-81.207767, 37.241815], + [-81.208566, 37.241603], + [-81.209965, 37.24096], + [-81.211605, 37.240488], + [-81.212649, 37.240043], + [-81.21433, 37.239459], + [-81.215691, 37.238807], + [-81.217302, 37.238181], + [-81.218557, 37.237754], + [-81.218774, 37.237659], + [-81.220159, 37.237056], + [-81.222838, 37.235744], + [-81.225107, 37.234881], + [-81.225981, 37.234298], + [-81.227546, 37.233333], + [-81.228966, 37.232682], + [-81.230539, 37.23187], + [-81.232672, 37.230659], + [-81.23451, 37.229615], + [-81.235864, 37.228559], + [-81.237603, 37.227313], + [-81.239167, 37.226396], + [-81.24067, 37.225535], + [-81.242232, 37.224788], + [-81.243439, 37.224199], + [-81.244652, 37.223925], + [-81.245561, 37.223714], + [-81.24638, 37.223462], + [-81.24675, 37.223348], + [-81.246774, 37.22334], + [-81.246781, 37.223338], + [-81.246824, 37.223325], + [-81.24715, 37.223225], + [-81.248201, 37.22299], + [-81.249048, 37.222705], + [-81.249234, 37.222642], + [-81.249825, 37.222653], + [-81.250032, 37.222553], + [-81.250038, 37.22255], + [-81.250055, 37.222541], + [-81.250297, 37.222423], + [-81.250898, 37.222143], + [-81.251398, 37.221798], + [-81.251837, 37.221519], + [-81.252196, 37.221376], + [-81.252202, 37.221374], + [-81.252659, 37.221193], + [-81.253875, 37.220877], + [-81.255127, 37.220675], + [-81.256482, 37.220457], + [-81.258263, 37.220105], + [-81.258859, 37.219963], + [-81.259732, 37.219702], + [-81.260188, 37.219543], + [-81.260726, 37.219311], + [-81.261284, 37.219105], + [-81.261619, 37.218954], + [-81.261895, 37.218736], + [-81.262214, 37.218439], + [-81.262541, 37.218182], + [-81.263069, 37.217967], + [-81.263713, 37.217996], + [-81.26461, 37.21801], + [-81.265405, 37.218135], + [-81.266009, 37.218139], + [-81.267291, 37.218001], + [-81.268694, 37.217913], + [-81.270023, 37.217945], + [-81.271458, 37.217817], + [-81.272548, 37.217655], + [-81.274302, 37.217163], + [-81.275699, 37.216769], + [-81.276722, 37.216484], + [-81.277651, 37.216368], + [-81.278105, 37.216428], + [-81.278223, 37.216416], + [-81.278251, 37.216447], + [-81.278318, 37.216497], + [-81.278393, 37.216534], + [-81.278459, 37.216555], + [-81.278546, 37.21657], + [-81.278635, 37.216571], + [-81.279082, 37.216524], + [-81.279185, 37.2166], + [-81.279238, 37.216594], + [-81.284254, 37.215993], + [-81.284261, 37.215992], + [-81.284328, 37.215984], + [-81.284339, 37.215983], + [-81.284768, 37.215909], + [-81.283725, 37.213774], + [-81.283719, 37.213762], + [-81.282447, 37.211097], + [-81.281555, 37.209273], + [-81.281057, 37.208256], + [-81.27941, 37.204885], + [-81.278791, 37.20371], + [-81.278775, 37.203678], + [-81.278736, 37.203599], + [-81.276981, 37.199997], + [-81.275441, 37.196837], + [-81.274803, 37.195528], + [-81.274788, 37.195497], + [-81.274702, 37.195319], + [-81.272915, 37.191653], + [-81.272902, 37.191626], + [-81.271853, 37.189474], + [-81.271813, 37.189393], + [-81.271795, 37.189356], + [-81.271779, 37.189323], + [-81.270095, 37.185869], + [-81.270066, 37.185807], + [-81.269959, 37.185575], + [-81.267158, 37.179834], + [-81.263874, 37.173104], + [-81.265834, 37.172616], + [-81.267085, 37.172371], + [-81.268533, 37.171845], + [-81.269221, 37.171627], + [-81.271965, 37.17118], + [-81.272835, 37.170882], + [-81.27408, 37.170411], + [-81.275867, 37.170018], + [-81.281173, 37.168508], + [-81.28485, 37.167578], + [-81.28767, 37.166735], + [-81.289125, 37.166323], + [-81.291975, 37.165513], + [-81.295661, 37.164615], + [-81.296096, 37.164514], + [-81.297738, 37.163781], + [-81.300841, 37.163417], + [-81.305245, 37.162317], + [-81.310573, 37.160595], + [-81.313749, 37.159513], + [-81.31686, 37.158075], + [-81.321509, 37.155555], + [-81.324139, 37.154016], + [-81.325137, 37.153235], + [-81.325698, 37.152788], + [-81.326188, 37.152317], + [-81.326473, 37.152126], + [-81.327184, 37.151705], + [-81.327764, 37.151267], + [-81.328081, 37.150972], + [-81.328181, 37.150896], + [-81.328336, 37.150781], + [-81.329084, 37.150538], + [-81.329933, 37.150232], + [-81.330835, 37.149845], + [-81.333097, 37.149214], + [-81.332835, 37.148677], + [-81.332462, 37.147821], + [-81.332313, 37.147522], + [-81.332272, 37.147439], + [-81.332238, 37.14737], + [-81.32812, 37.139014], + [-81.327171, 37.139279], + [-81.32599, 37.139566], + [-81.325366, 37.139616], + [-81.324441, 37.139582], + [-81.323136, 37.139504], + [-81.321802, 37.139321], + [-81.32059, 37.139067], + [-81.319908, 37.138972], + [-81.318861, 37.139042], + [-81.317591, 37.139239], + [-81.316917, 37.13928], + [-81.316193, 37.139273], + [-81.315085, 37.138833], + [-81.314397, 37.138407], + [-81.313801, 37.137981], + [-81.312864, 37.136954], + [-81.312034, 37.136113], + [-81.311492, 37.13547], + [-81.310395, 37.135547], + [-81.309268, 37.135592], + [-81.308223, 37.135598], + [-81.306424, 37.135547], + [-81.304545, 37.135495], + [-81.303944, 37.135392], + [-81.303447, 37.135056], + [-81.302863, 37.134533], + [-81.30156, 37.133712], + [-81.299532, 37.132988], + [-81.296664, 37.131989], + [-81.295397, 37.131411], + [-81.29447, 37.131006], + [-81.293488, 37.130818], + [-81.292011, 37.13077], + [-81.290634, 37.130763], + [-81.288851, 37.130898], + [-81.286406, 37.131042], + [-81.284909, 37.131002], + [-81.284005, 37.130968], + [-81.282854, 37.130698], + [-81.280864, 37.13012], + [-81.278812, 37.129597], + [-81.277331, 37.129226], + [-81.275652, 37.128659], + [-81.274673, 37.128334], + [-81.27365, 37.128226], + [-81.272676, 37.128159], + [-81.271578, 37.128261], + [-81.270574, 37.128242], + [-81.269753, 37.128031], + [-81.268805, 37.127626], + [-81.268019, 37.127205], + [-81.267401, 37.126916], + [-81.267062, 37.126735], + [-81.266565, 37.126357], + [-81.266523, 37.126325], + [-81.266397, 37.126227], + [-81.26602, 37.125981], + [-81.265691, 37.125767], + [-81.265402, 37.125611], + [-81.265233, 37.125512], + [-81.265104, 37.125422], + [-81.265046, 37.125276], + [-81.265008, 37.125124], + [-81.264945, 37.124827], + [-81.264683, 37.124618], + [-81.26427, 37.124385], + [-81.263998, 37.124264], + [-81.263948, 37.123985], + [-81.263916, 37.123804], + [-81.263893, 37.123053], + [-81.263929, 37.121914], + [-81.263846, 37.121043], + [-81.263409, 37.119921], + [-81.263125, 37.119131], + [-81.262821, 37.118388], + [-81.262375, 37.117509], + [-81.262161, 37.116735], + [-81.261717, 37.116187], + [-81.261424, 37.115848], + [-81.261312, 37.115469], + [-81.2614, 37.114774], + [-81.262403, 37.111654], + [-81.262401, 37.111105], + [-81.26246, 37.110596], + [-81.263018, 37.10948], + [-81.263376, 37.108381], + [-81.263464, 37.107606], + [-81.263401, 37.107008], + [-81.263329, 37.106467], + [-81.263739, 37.105788], + [-81.264429, 37.104914], + [-81.266361, 37.102825], + [-81.266991, 37.102161], + [-81.267382, 37.10174], + [-81.267562, 37.101578], + [-81.267508, 37.100513], + [-81.267596, 37.100012], + [-81.267896, 37.099542], + [-81.268051, 37.099388], + [-81.268707, 37.098741], + [-81.269017, 37.098417], + [-81.269127, 37.098239], + [-81.269126, 37.097972], + [-81.269074, 37.09773], + [-81.269313, 37.097035], + [-81.269382, 37.096776], + [-81.26941, 37.096122], + [-81.269579, 37.095645], + [-81.269668, 37.095266], + [-81.269686, 37.094878], + [-81.269974, 37.093948], + [-81.270262, 37.093011], + [-81.270502, 37.092647], + [-81.270893, 37.092379], + [-81.271464, 37.092111], + [-81.272769, 37.091793], + [-81.273632, 37.091548], + [-81.274434, 37.091166], + [-81.275035, 37.090696], + [-81.275506, 37.090283], + [-81.277579, 37.088485], + [-81.277949, 37.088241], + [-81.278581, 37.088038], + [-81.279345, 37.087922], + [-81.280389, 37.087758], + [-81.281371, 37.08715], + [-81.282142, 37.08655], + [-81.282733, 37.086055], + [-81.283696, 37.085576], + [-81.284951, 37.085435], + [-81.285483, 37.085313], + [-81.285794, 37.085053], + [-81.286054, 37.084794], + [-81.286485, 37.084583], + [-81.28763, 37.084418], + [-81.287921, 37.084321], + [-81.288231, 37.084126], + [-81.288852, 37.083599], + [-81.289303, 37.083339], + [-81.289534, 37.083298], + [-81.289865, 37.083306], + [-81.290187, 37.083442], + [-81.29054, 37.083619], + [-81.290952, 37.083682], + [-81.291214, 37.083891], + [-81.291425, 37.084012], + [-81.291676, 37.083833], + [-81.291825, 37.083615], + [-81.291985, 37.083259], + [-81.292295, 37.082927], + [-81.293058, 37.082755], + [-81.293599, 37.082633], + [-81.293989, 37.081977], + [-81.29465, 37.081507], + [-81.297247, 37.080498], + [-81.298521, 37.080098], + [-81.300208, 37.079884], + [-81.30088, 37.07955], + [-81.301701, 37.078942], + [-81.302563, 37.078544], + [-81.303658, 37.078371], + [-81.30421, 37.078337], + [-81.304471, 37.078175], + [-81.304862, 37.07794], + [-81.305494, 37.077752], + [-81.306236, 37.077548], + [-81.306657, 37.077232], + [-81.306949, 37.077054], + [-81.306969, 37.07704], + [-81.307027, 37.077], + [-81.307066, 37.076973], + [-81.307127, 37.076721], + [-81.307628, 37.07651], + [-81.30837, 37.076306], + [-81.309364, 37.076149], + [-81.309866, 37.075994], + [-81.312708, 37.07366], + [-81.313138, 37.073247], + [-81.314101, 37.072816], + [-81.31433, 37.0725], + [-81.31466, 37.072176], + [-81.316154, 37.071606], + [-81.317488, 37.071166], + [-81.31812, 37.071027], + [-81.320437, 37.070196], + [-81.322383, 37.069414], + [-81.324217, 37.068609], + [-81.325239, 37.068], + [-81.326271, 37.067399], + [-81.326732, 37.067276], + [-81.327665, 37.067136], + [-81.328911, 37.067068], + [-81.330095, 37.066886], + [-81.331239, 37.066608], + [-81.332623, 37.06624], + [-81.333265, 37.066028], + [-81.333956, 37.065727], + [-81.334408, 37.065588], + [-81.33513, 37.065465], + [-81.336534, 37.064919], + [-81.337967, 37.064341], + [-81.339099, 37.063675], + [-81.340473, 37.063307], + [-81.341688, 37.0631], + [-81.342791, 37.06266], + [-81.343823, 37.0621], + [-81.345097, 37.061894], + [-81.346392, 37.0618], + [-81.347296, 37.061797], + [-81.348008, 37.061609], + [-81.349291, 37.061169], + [-81.350194, 37.060964], + [-81.350986, 37.060654], + [-81.351688, 37.060426], + [-81.353102, 37.060082], + [-81.354868, 37.059624], + [-81.356261, 37.059166], + [-81.357503, 37.058548], + [-81.358496, 37.058238], + [-81.359289, 37.058163], + [-81.359832, 37.058161], + [-81.361177, 37.057938], + [-81.362602, 37.057723], + [-81.363154, 37.057754], + [-81.363615, 37.057607], + [-81.364197, 37.057419], + [-81.364608, 37.057353], + [-81.36487, 37.057408], + [-81.365967, 37.057833], + [-81.366449, 37.057944], + [-81.366961, 37.05791], + [-81.367874, 37.057753], + [-81.368647, 37.057645], + [-81.369198, 37.057361], + [-81.370049, 37.056881], + [-81.371332, 37.056505], + [-81.372186, 37.056518], + [-81.372899, 37.056532], + [-81.373652, 37.056545], + [-81.374194, 37.056479], + [-81.374222, 37.055986], + [-81.374319, 37.055299], + [-81.374488, 37.055105], + [-81.37483, 37.054997], + [-81.374904, 37.054973], + [-81.375036, 37.0549], + [-81.375167, 37.054779], + [-81.375248, 37.054625], + [-81.375389, 37.054415], + [-81.375702, 37.054149], + [-81.376167, 37.053938], + [-81.377044, 37.053583], + [-81.377417, 37.053543], + [-81.37777, 37.053551], + [-81.378183, 37.053874], + [-81.378486, 37.054149], + [-81.378737, 37.054546], + [-81.378787, 37.054626], + [-81.378968, 37.055054], + [-81.379109, 37.055119], + [-81.379643, 37.055289], + [-81.380509, 37.055628], + [-81.380811, 37.055725], + [-81.381114, 37.055604], + [-81.381366, 37.055458], + [-81.38173, 37.055305], + [-81.382345, 37.055054], + [-81.382778, 37.055063], + [-81.383252, 37.055127], + [-81.383776, 37.055232], + [-81.384078, 37.055362], + [-81.384431, 37.055475], + [-81.384582, 37.05541], + [-81.384905, 37.055257], + [-81.385157, 37.055119], + [-81.385571, 37.055047], + [-81.385873, 37.055063], + [-81.386347, 37.055232], + [-81.386951, 37.055531], + [-81.387626, 37.05579], + [-81.38809, 37.055879], + [-81.388644, 37.05579], + [-81.389149, 37.05554], + [-81.389714, 37.055305], + [-81.390187, 37.055289], + [-81.3905, 37.05533], + [-81.390802, 37.055459], + [-81.391064, 37.055653], + [-81.391437, 37.055839], + [-81.392152, 37.055992], + [-81.392948, 37.056202], + [-81.393744, 37.056526], + [-81.39456, 37.056784], + [-81.395306, 37.057043], + [-81.396223, 37.057196], + [-81.397352, 37.057261], + [-81.398017, 37.057423], + [-81.398692, 37.057584], + [-81.399155, 37.057778], + [-81.399458, 37.05756], + [-81.399691, 37.057463], + [-81.399832, 37.057374], + [-81.400711, 37.056606], + [-81.401165, 37.056226], + [-81.40175, 37.056032], + [-81.402668, 37.055773], + [-81.403908, 37.055385], + [-81.404998, 37.054957], + [-81.405422, 37.054731], + [-81.40639, 37.054302], + [-81.408216, 37.053655], + [-81.409113, 37.053372], + [-81.409718, 37.053283], + [-81.410949, 37.05279], + [-81.411968, 37.052249], + [-81.413027, 37.051602], + [-81.413754, 37.051214], + [-81.415488, 37.050551], + [-81.41679, 37.050098], + [-81.417087, 37.049967], + [-81.417618, 37.049734], + [-81.418455, 37.049225], + [-81.41898, 37.048901], + [-81.419433, 37.048715], + [-81.419917, 37.048562], + [-81.420573, 37.048376], + [-81.421017, 37.048222], + [-81.42143, 37.047842], + [-81.421733, 37.047527], + [-81.421955, 37.047341], + [-81.42249, 37.04705], + [-81.423095, 37.046831], + [-81.423619, 37.046694], + [-81.424063, 37.046451], + [-81.424527, 37.046136], + [-81.425022, 37.045659], + [-81.425335, 37.045352], + [-81.425738, 37.04515], + [-81.426757, 37.044713], + [-81.427664, 37.044414], + [-81.42831, 37.044179], + [-81.428481, 37.04409], + [-81.428723, 37.043945], + [-81.428965, 37.043872], + [-81.429278, 37.043783], + [-81.42953, 37.04375], + [-81.429731, 37.043807], + [-81.429993, 37.043871], + [-81.430497, 37.043847], + [-81.431001, 37.04379], + [-81.431354, 37.043701], + [-81.431657, 37.04354], + [-81.432373, 37.043232], + [-81.43321, 37.042909], + [-81.434391, 37.042487], + [-81.435641, 37.04201], + [-81.436055, 37.041783], + [-81.436257, 37.041419], + [-81.4366, 37.041161], + [-81.436892, 37.041088], + [-81.437567, 37.040983], + [-81.438293, 37.041031], + [-81.438968, 37.041039], + [-81.439422, 37.040949], + [-81.439795, 37.04082], + [-81.440178, 37.040577], + [-81.440541, 37.040343], + [-81.441751, 37.040011], + [-81.442477, 37.03997], + [-81.443142, 37.04001], + [-81.443606, 37.040123], + [-81.444049, 37.040252], + [-81.444543, 37.040333], + [-81.444926, 37.040406], + [-81.44548, 37.040616], + [-81.446145, 37.040672], + [-81.446682, 37.040659], + [-81.44684, 37.040655], + [-81.447788, 37.040542], + [-81.448645, 37.040339], + [-81.449232, 37.040211], + [-81.449239, 37.040208], + [-81.450147, 37.039878], + [-81.451135, 37.039514], + [-81.451973, 37.039271], + [-81.453132, 37.039036], + [-81.453888, 37.038761], + [-81.454665, 37.038647], + [-81.455037, 37.038736], + [-81.45538, 37.038825], + [-81.455813, 37.039002], + [-81.456438, 37.039212], + [-81.456982, 37.039276], + [-81.457315, 37.039268], + [-81.457547, 37.039211], + [-81.457789, 37.039082], + [-81.460582, 37.037577], + [-81.461318, 37.037181], + [-81.46156, 37.036978], + [-81.461719, 37.036762], + [-81.461736, 37.03673], + [-81.461913, 37.036388], + [-81.462024, 37.036105], + [-81.462216, 37.035548], + [-81.45954, 37.032975], + [-81.459334, 37.032777], + [-81.457398, 37.030916], + [-81.457355, 37.030874], + [-81.457258, 37.030779], + [-81.457209, 37.030694], + [-81.45706, 37.030535], + [-81.456572, 37.030012], + [-81.456536, 37.029975], + [-81.452865, 37.026205], + [-81.449741, 37.022997], + [-81.448954, 37.022181], + [-81.448936, 37.022162], + [-81.448002, 37.021194], + [-81.447851, 37.021044], + [-81.447835, 37.021022], + [-81.447816, 37.021002], + [-81.441363, 37.014315], + [-81.441316, 37.014287], + [-81.440794, 37.013743], + [-81.437185, 37.010098], + [-81.437483, 37.010094], + [-81.437795, 37.010126], + [-81.438208, 37.01011], + [-81.43851, 37.010013], + [-81.438804, 37.009859], + [-81.439066, 37.00977], + [-81.439348, 37.009778], + [-81.43969, 37.009794], + [-81.439952, 37.009737], + [-81.440194, 37.0096], + [-81.440537, 37.009252], + [-81.440951, 37.008985], + [-81.441414, 37.008832], + [-81.441868, 37.008654], + [-81.442493, 37.00816], + [-81.443058, 37.007691], + [-81.444237, 37.007028], + [-81.445064, 37.006559], + [-81.44581, 37.006017], + [-81.446606, 37.005564], + [-81.44703, 37.005354], + [-81.447503, 37.005119], + [-81.448713, 37.004392], + [-81.449015, 37.004109], + [-81.449358, 37.003704], + [-81.449852, 37.003276], + [-81.450417, 37.002944], + [-81.451062, 37.002814], + [-81.451626, 37.00279], + [-81.451968, 37.002765], + [-81.45221, 37.002725], + [-81.452372, 37.002555], + [-81.452533, 37.002385], + [-81.453017, 37.001827], + [-81.453351, 37.001375], + [-81.453805, 37.001003], + [-81.454228, 37.000833], + [-81.45456, 37.000711], + [-81.454822, 37.000582], + [-81.455004, 37.00038], + [-81.455336, 37.000122], + [-81.455636, 37.000022], + [-81.456036, 36.999922], + [-81.456536, 37.000022], + [-81.456736, 37.000022], + [-81.457136, 36.999822], + [-81.457336, 36.999622], + [-81.457436, 36.999322], + [-81.457736, 36.999022], + [-81.458136, 36.998722], + [-81.458636, 36.998422], + [-81.459136, 36.998022], + [-81.460136, 36.997022], + [-81.460417, 36.996742], + [-81.460563, 36.996595], + [-81.460936, 36.996222], + [-81.461336, 36.995922], + [-81.461736, 36.995322], + [-81.462336, 36.994922], + [-81.462736, 36.994822], + [-81.463336, 36.994522], + [-81.463536, 36.994522], + [-81.463836, 36.994422], + [-81.464036, 36.994322], + [-81.464136, 36.994122], + [-81.46424, 36.993886], + [-81.464269, 36.993821], + [-81.464436, 36.993622], + [-81.464836, 36.993522], + [-81.465236, 36.993522], + [-81.466036, 36.993222], + [-81.466136, 36.993122], + [-81.466436, 36.993122], + [-81.466836, 36.993022], + [-81.467136, 36.992922], + [-81.467436, 36.992622], + [-81.467536, 36.992422], + [-81.467736, 36.992122], + [-81.468036, 36.991822], + [-81.468236, 36.991722], + [-81.468736, 36.991322], + [-81.469236, 36.991122], + [-81.469836, 36.990922], + [-81.470337, 36.990922], + [-81.470837, 36.990822], + [-81.470937, 36.990722], + [-81.470937, 36.990622], + [-81.471037, 36.990522], + [-81.471137, 36.990322], + [-81.471237, 36.990222], + [-81.472037, 36.990222], + [-81.472537, 36.990122], + [-81.473237, 36.990022], + [-81.473837, 36.989722], + [-81.474437, 36.989322], + [-81.474937, 36.988922], + [-81.475337, 36.988622], + [-81.475737, 36.988422], + [-81.476037, 36.988322], + [-81.476137, 36.988222], + [-81.476258, 36.988222], + [-81.476337, 36.988122], + [-81.476426, 36.988092], + [-81.476484, 36.988073], + [-81.476637, 36.988022], + [-81.477137, 36.988022], + [-81.477537, 36.987822], + [-81.477637, 36.987822], + [-81.477637, 36.987722], + [-81.477837, 36.987622], + [-81.478137, 36.987422], + [-81.478637, 36.987122], + [-81.478937, 36.986922], + [-81.479137, 36.986922], + [-81.479337, 36.986722], + [-81.479837, 36.986622], + [-81.480237, 36.986522], + [-81.480537, 36.986422], + [-81.481137, 36.986622], + [-81.481537, 36.986722], + [-81.481937, 36.987022], + [-81.482337, 36.987422], + [-81.482424, 36.987531], + [-81.482583, 36.98773], + [-81.482737, 36.987922], + [-81.483037, 36.988422], + [-81.483237, 36.988822], + [-81.483337, 36.989322], + [-81.483337, 36.989622], + [-81.483237, 36.990022], + [-81.483037, 36.990422], + [-81.483037, 36.990522], + [-81.482937, 36.990522], + [-81.482937, 36.990622], + [-81.482837, 36.990722], + [-81.482337, 36.991122], + [-81.481037, 36.992422], + [-81.480137, 36.993022], + [-81.479437, 36.993422], + [-81.478637, 36.993822], + [-81.478137, 36.994022], + [-81.477737, 36.994122], + [-81.477337, 36.994322], + [-81.476937, 36.994422], + [-81.476737, 36.994522], + [-81.476437, 36.994922], + [-81.476037, 36.995422], + [-81.475737, 36.995722], + [-81.475137, 36.996122], + [-81.474937, 36.996222], + [-81.474537, 36.996622], + [-81.474337, 36.997022], + [-81.474137, 36.997222], + [-81.473837, 36.997322], + [-81.473637, 36.997422], + [-81.473337, 36.997522], + [-81.473237, 36.997622], + [-81.472937, 36.997822], + [-81.472637, 36.998122], + [-81.472637, 36.998622], + [-81.472837, 36.998822], + [-81.473037, 36.998822], + [-81.473537, 36.999322], + [-81.473937, 36.999522], + [-81.474237, 36.999822], + [-81.474136, 37.000122], + [-81.474447, 37.000594], + [-81.474749, 37.000788], + [-81.475242, 37.001256], + [-81.476027, 37.002104], + [-81.475796, 37.002234], + [-81.475221, 37.002687], + [-81.474405, 37.003116], + [-81.473145, 37.003593], + [-81.472863, 37.003715], + [-81.472813, 37.003957], + [-81.473034, 37.004701], + [-81.473386, 37.005606], + [-81.473869, 37.006527], + [-81.473983, 37.006683], + [-81.474573, 37.007488], + [-81.475227, 37.008304], + [-81.4756, 37.008869], + [-81.47559, 37.009087], + [-81.475418, 37.009257], + [-81.474985, 37.009484], + [-81.474349, 37.009775], + [-81.473855, 37.009953], + [-81.47324, 37.010172], + [-81.472626, 37.010439], + [-81.472162, 37.010924], + [-81.471254, 37.011927], + [-81.470186, 37.013067], + [-81.469419, 37.013852], + [-81.469016, 37.014418], + [-81.468844, 37.015048], + [-81.468813, 37.015606], + [-81.468924, 37.01622], + [-81.469105, 37.016608], + [-81.469487, 37.01685], + [-81.4698, 37.01689], + [-81.470142, 37.016963], + [-81.470575, 37.017092], + [-81.47125, 37.017309], + [-81.472358, 37.017721], + [-81.473436, 37.018294], + [-81.47401, 37.018423], + [-81.474363, 37.018431], + [-81.474907, 37.018236], + [-81.475603, 37.017904], + [-81.476429, 37.017581], + [-81.477276, 37.017127], + [-81.478092, 37.016723], + [-81.478809, 37.016383], + [-81.479545, 37.016132], + [-81.480109, 37.01601], + [-81.480613, 37.015937], + [-81.481802, 37.015726], + [-81.482689, 37.015539], + [-81.483797, 37.015215], + [-81.484029, 37.015247], + [-81.48423, 37.015336], + [-81.484553, 37.015506], + [-81.484855, 37.015602], + [-81.485207, 37.015748], + [-81.48561, 37.015788], + [-81.486588, 37.015989], + [-81.488089, 37.016198], + [-81.488502, 37.016125], + [-81.488673, 37.015971], + [-81.488925, 37.015543], + [-81.489177, 37.015308], + [-81.489651, 37.014823], + [-81.490125, 37.014507], + [-81.49076, 37.014208], + [-81.491253, 37.014062], + [-81.491626, 37.014021], + [-81.492009, 37.014053], + [-81.492402, 37.014077], + [-81.492916, 37.01423], + [-81.493258, 37.01444], + [-81.493641, 37.014609], + [-81.494004, 37.01469], + [-81.4948, 37.015012], + [-81.495203, 37.015206], + [-81.495656, 37.01523], + [-81.495857, 37.015108], + [-81.496887, 37.014057], + [-81.497287, 37.013289], + [-81.497779, 37.012892], + [-81.498435, 37.012136], + [-81.498741, 37.011398], + [-81.498891, 37.011036], + [-81.499813, 37.010502], + [-81.499838, 37.010487], + [-81.50002, 37.010296], + [-81.50022, 37.0102], + [-81.500682, 37.009998], + [-81.500853, 37.009862], + [-81.501094, 37.009588], + [-81.501355, 37.009322], + [-81.501726, 37.009088], + [-81.502248, 37.008903], + [-81.50289, 37.008775], + [-81.503281, 37.008775], + [-81.503732, 37.008945], + [-81.504243, 37.009139], + [-81.504328, 37.00918], + [-81.504354, 37.009193], + [-81.504668, 37.009344], + [-81.504985, 37.00947], + [-81.505306, 37.009503], + [-81.505777, 37.009535], + [-81.506208, 37.009471], + [-81.506599, 37.009359], + [-81.506921, 37.00919], + [-81.507202, 37.009029], + [-81.507352, 37.008851], + [-81.507493, 37.008634], + [-81.507539, 37.008248], + [-81.507559, 37.007999], + [-81.507574, 37.0079], + [-81.507635, 37.007662], + [-81.507737, 37.007438], + [-81.507793, 37.007339], + [-81.507846, 37.00721], + [-81.507934, 37.006854], + [-81.507952, 37.006823], + [-81.508013, 37.006769], + [-81.508043, 37.006727], + [-81.508213, 37.006239], + [-81.508262, 37.006136], + [-81.508477, 37.005807], + [-81.508623, 37.005415], + [-81.50864, 37.005353], + [-81.508694, 37.005204], + [-81.508764, 37.00506], + [-81.508896, 37.004881], + [-81.509301, 37.004393], + [-81.509431, 37.004266], + [-81.509613, 37.004136], + [-81.509767, 37.004041], + [-81.510056, 37.003774], + [-81.510102, 37.00372], + [-81.510221, 37.003564], + [-81.510283, 37.003503], + [-81.510374, 37.003444], + [-81.510448, 37.00341], + [-81.510561, 37.003374], + [-81.51159, 37.003183], + [-81.512021, 37.002942], + [-81.512043, 37.002928], + [-81.512341, 37.002748], + [-81.512529, 37.002621], + [-81.512541, 37.002614], + [-81.512675, 37.002542], + [-81.51283, 37.002476], + [-81.513072, 37.00238], + [-81.513123, 37.002364], + [-81.513202, 37.002338], + [-81.513987, 37.002083], + [-81.514669, 37.001811], + [-81.514899, 37.001719], + [-81.516183, 37.001577], + [-81.516523, 37.001539], + [-81.517093, 37.001152], + [-81.51715, 37.000856], + [-81.519262, 37.000925], + [-81.520434, 37.000644], + [-81.520702, 37.000839], + [-81.520912, 37.000928], + [-81.521173, 37.000912], + [-81.521444, 37.00084], + [-81.521845, 37.000719], + [-81.522457, 37.00055], + [-81.523279, 37.000414], + [-81.524101, 37.000326], + [-81.524853, 37.000326], + [-81.525606, 37.00027], + [-81.526348, 37.00019], + [-81.526776, 37.000122], + [-81.527552, 36.999257], + [-81.528578, 36.999107], + [-81.529927, 36.998667], + [-81.530818, 36.998415], + [-81.531174, 36.998316], + [-81.53163, 36.997624], + [-81.532106, 36.997005], + [-81.53264, 36.996676], + [-81.533425, 36.996323], + [-81.533767, 36.996251], + [-81.534939, 36.996022], + [-81.536539, 36.995822], + [-81.543139, 36.995422], + [-81.548039, 36.994322], + [-81.550139, 36.994222], + [-81.554039, 36.992922], + [-81.557439, 36.991822], + [-81.561239, 36.990522], + [-81.569339, 36.989422], + [-81.573439, 36.989322], + [-81.576939, 36.989522], + [-81.579939, 36.987022], + [-81.582039, 36.985022], + [-81.583639, 36.985022], + [-81.586778, 36.983277], + [-81.592639, 36.980022], + [-81.596639, 36.977022], + [-81.599739, 36.973422], + [-81.601139, 36.973422], + [-81.60384, 36.972322], + [-81.60554, 36.971022], + [-81.60874, 36.969022], + [-81.61044, 36.968022], + [-81.61224, 36.967622], + [-81.62484, 36.960122], + [-81.62504, 36.959822], + [-81.62534, 36.959422], + [-81.62584, 36.959122], + [-81.62654, 36.958322], + [-81.62714, 36.957622], + [-81.62754, 36.957122], + [-81.62834, 36.956921], + [-81.62894, 36.956521], + [-81.62944, 36.956221], + [-81.629836, 36.956068], + [-81.63074, 36.955721], + [-81.63174, 36.955121], + [-81.63254, 36.954421], + [-81.63324, 36.953721], + [-81.63374, 36.953321], + [-81.63434, 36.953121], + [-81.63504, 36.952921], + [-81.63594, 36.952621], + [-81.63714, 36.951721], + [-81.63844, 36.950721], + [-81.63954, 36.949721], + [-81.64024, 36.949021], + [-81.64094, 36.948521], + [-81.64134, 36.948221], + [-81.64184, 36.948121], + [-81.64274, 36.947921], + [-81.64334, 36.947521], + [-81.64414, 36.947221], + [-81.64504, 36.947021], + [-81.64614, 36.946621], + [-81.64744, 36.945921], + [-81.64854, 36.945121], + [-81.649741, 36.944721], + [-81.650941, 36.944221], + [-81.653141, 36.943021], + [-81.654141, 36.942521], + [-81.655141, 36.942221], + [-81.656141, 36.941721], + [-81.657041, 36.941121], + [-81.658241, 36.940721], + [-81.659541, 36.940621], + [-81.660941, 36.940421], + [-81.662041, 36.940121], + [-81.663241, 36.940021], + [-81.664141, 36.939921], + [-81.664741, 36.939621], + [-81.665141, 36.939621], + [-81.665841, 36.939521], + [-81.666041, 36.939421], + [-81.666141, 36.939321], + [-81.666241, 36.939321], + [-81.666241, 36.939221], + [-81.666441, 36.938921], + [-81.667441, 36.938621], + [-81.667741, 36.938521], + [-81.673441, 36.935121], + [-81.673641, 36.934821], + [-81.676961, 36.934186], + [-81.677922, 36.934004], + [-81.678001, 36.933989], + [-81.678096, 36.933971], + [-81.678652, 36.933864], + [-81.683041, 36.933021], + [-81.685593, 36.937322], + [-81.685781, 36.93764], + [-81.685969, 36.937957], + [-81.687407, 36.940381], + [-81.695441, 36.953921], + [-81.696041, 36.95494], + [-81.697579, 36.957548], + [-81.698791, 36.959605], + [-81.69883, 36.95967], + [-81.700682, 36.962812], + [-81.703077, 36.966875], + [-81.703219, 36.967115], + [-81.703537, 36.967654], + [-81.708941, 36.976821], + [-81.709075, 36.976865], + [-81.709241, 36.976921], + [-81.710241, 36.976121], + [-81.710741, 36.975821], + [-81.712241, 36.975821], + [-81.712541, 36.975621], + [-81.713441, 36.975221], + [-81.714641, 36.975121], + [-81.715541, 36.974721], + [-81.716041, 36.974021], + [-81.716441, 36.973521], + [-81.717241, 36.973021], + [-81.717641, 36.972921], + [-81.718641, 36.973021], + [-81.719341, 36.973221], + [-81.720341, 36.972921], + [-81.721041, 36.973021], + [-81.721741, 36.972821], + [-81.723041, 36.972221], + [-81.723541, 36.971621], + [-81.724541, 36.971221], + [-81.725141, 36.971221], + [-81.725841, 36.971021], + [-81.726741, 36.970521], + [-81.727641, 36.970121], + [-81.728641, 36.969921], + [-81.729641, 36.969921], + [-81.730341, 36.970021], + [-81.730941, 36.970121], + [-81.731741, 36.970221], + [-81.732241, 36.969921], + [-81.733041, 36.969321], + [-81.733441, 36.968921], + [-81.734041, 36.968521], + [-81.734541, 36.967921], + [-81.735541, 36.967721], + [-81.736641, 36.967921], + [-81.737041, 36.968021], + [-81.738141, 36.967721], + [-81.738841, 36.967321], + [-81.739641, 36.967221], + [-81.740341, 36.967021], + [-81.740941, 36.966421], + [-81.741541, 36.966021], + [-81.742241, 36.965721], + [-81.742541, 36.965821], + [-81.742641, 36.965821], + [-81.744741, 36.966121], + [-81.745541, 36.965421], + [-81.746041, 36.965121], + [-81.746541, 36.965221], + [-81.746941, 36.965221], + [-81.747541, 36.964821], + [-81.747941, 36.964421], + [-81.748541, 36.963721], + [-81.748941, 36.963421], + [-81.749741, 36.963621], + [-81.749841, 36.963671], + [-81.750041, 36.963621], + [-81.750942, 36.963521], + [-81.751542, 36.963321], + [-81.752142, 36.963221], + [-81.752642, 36.963121], + [-81.753142, 36.962921], + [-81.753442, 36.962721], + [-81.753742, 36.962621], + [-81.754342, 36.962521], + [-81.754942, 36.962521], + [-81.755642, 36.962621], + [-81.756342, 36.962621], + [-81.756742, 36.962521], + [-81.757442, 36.962321], + [-81.757942, 36.962121], + [-81.758142, 36.962021], + [-81.758442, 36.961721], + [-81.758542, 36.961521], + [-81.758842, 36.961321], + [-81.759242, 36.961021], + [-81.760242, 36.960621], + [-81.761642, 36.960621], + [-81.762042, 36.960721], + [-81.762242, 36.960721], + [-81.762642, 36.960921], + [-81.762742, 36.960921], + [-81.763142, 36.960821], + [-81.763442, 36.960721], + [-81.764142, 36.960621], + [-81.764442, 36.960621], + [-81.765042, 36.960721], + [-81.765642, 36.960621], + [-81.766442, 36.960521], + [-81.767242, 36.960521], + [-81.767442, 36.960721], + [-81.767642, 36.960721], + [-81.767942, 36.960821], + [-81.768742, 36.960621], + [-81.769042, 36.960721], + [-81.769342, 36.960721], + [-81.769942, 36.961021], + [-81.770242, 36.961221], + [-81.770442, 36.961221], + [-81.770742, 36.961321], + [-81.771042, 36.961321], + [-81.771242, 36.961221], + [-81.771542, 36.961021], + [-81.771842, 36.960721], + [-81.772042, 36.960721], + [-81.772342, 36.960621], + [-81.773842, 36.960621], + [-81.774042, 36.960521], + [-81.774343, 36.960321], + [-81.774743, 36.960221], + [-81.775243, 36.960021], + [-81.776443, 36.959621], + [-81.776843, 36.959521], + [-81.777343, 36.959221], + [-81.777643, 36.959121], + [-81.778043, 36.959021], + [-81.778543, 36.958821], + [-81.778743, 36.958821], + [-81.779043, 36.958721], + [-81.779643, 36.958721], + [-81.779843, 36.958621], + [-81.780542, 36.958621], + [-81.782764, 36.964013], + [-81.784868, 36.969115], + [-81.785567, 36.970813], + [-81.78564, 36.970991], + [-81.785652, 36.97102], + [-81.785666, 36.971054], + [-81.785668, 36.97106], + [-81.785703, 36.971145], + [-81.785827, 36.971446], + [-81.786027, 36.971931], + [-81.786166, 36.97227], + [-81.787926, 36.976538], + [-81.794528, 36.992559], + [-81.79489, 36.993432], + [-81.796398, 36.997096], + [-81.7964, 36.997101], + [-81.796404, 36.997112], + [-81.79644, 36.997199], + [-81.796462, 36.997252], + [-81.796765, 36.997988], + [-81.796919, 36.998359], + [-81.797008, 36.998573], + [-81.797014, 36.998587], + [-81.797106, 36.998811], + [-81.797651, 37.000132], + [-81.797673, 37.000184], + [-81.797768, 37.000408], + [-81.798326, 37.001731], + [-81.798996, 37.003317], + [-81.799079, 37.003513], + [-81.799191, 37.003778], + [-81.799197, 37.003792], + [-81.79921, 37.003824], + [-81.799238, 37.00389], + [-81.79932, 37.004084], + [-81.799382, 37.004231], + [-81.799414, 37.004308], + [-81.799419, 37.004319], + [-81.799538, 37.0046], + [-81.799548, 37.004623], + [-81.799554, 37.004637], + [-81.799562, 37.004657], + [-81.799575, 37.004689], + [-81.799591, 37.00473], + [-81.799813, 37.005294], + [-81.799817, 37.005305], + [-81.799831, 37.005341], + [-81.799853, 37.005396], + [-81.799891, 37.005492], + [-81.799895, 37.005502], + [-81.799941, 37.005618], + [-81.800023, 37.005826], + [-81.800085, 37.005983], + [-81.80013, 37.006097], + [-81.800163, 37.006181], + [-81.800193, 37.006257], + [-81.800208, 37.006294], + [-81.800221, 37.006326], + [-81.800277, 37.006468], + [-81.800297, 37.006519], + [-81.800299, 37.006524], + [-81.800303, 37.006535], + [-81.800316, 37.006568], + [-81.80038, 37.00673], + [-81.800429, 37.006854], + [-81.800495, 37.007022], + [-81.801206, 37.008829], + [-81.805167, 37.017734], + [-81.805169, 37.017739], + [-81.805399, 37.018255], + [-81.805408, 37.018275], + [-81.805446, 37.018361], + [-81.805459, 37.018392], + [-81.805464, 37.018404], + [-81.805466, 37.018409], + [-81.805485, 37.018457], + [-81.805503, 37.018494], + [-81.80557, 37.018633], + [-81.805658, 37.018798], + [-81.806157, 37.019733], + [-81.807917, 37.023031], + [-81.80792, 37.023037], + [-81.807993, 37.023175], + [-81.811718, 37.030212], + [-81.811721, 37.030218], + [-81.812088, 37.030893], + [-81.81211, 37.030933], + [-81.812188, 37.031081], + [-81.812309, 37.031306], + [-81.812401, 37.031477], + [-81.812409, 37.031491], + [-81.812813, 37.032243], + [-81.813326, 37.033197], + [-81.813488, 37.033498], + [-81.813773, 37.034028], + [-81.813854, 37.034178], + [-81.813921, 37.034303], + [-81.813924, 37.034309], + [-81.813937, 37.034334], + [-81.813969, 37.034393], + [-81.813995, 37.034441], + [-81.813998, 37.034446], + [-81.814001, 37.034452], + [-81.814081, 37.034598], + [-81.814088, 37.034611], + [-81.814127, 37.034687], + [-81.814182, 37.034789], + [-81.814252, 37.034919], + [-81.814265, 37.034943], + [-81.814285, 37.034981], + [-81.814334, 37.035072], + [-81.814894, 37.036114], + [-81.814951, 37.03622], + [-81.814959, 37.036233], + [-81.815058, 37.036391], + [-81.815063, 37.0364], + [-81.815742, 37.037688], + [-81.815816, 37.037829], + [-81.815819, 37.037835], + [-81.81585, 37.037893], + [-81.815881, 37.03795], + [-81.815922, 37.038027], + [-81.815962, 37.038105], + [-81.816812, 37.039731], + [-81.818342, 37.042654], + [-81.818394, 37.042757], + [-81.818398, 37.042762], + [-81.818459, 37.04284], + [-81.818476, 37.042862], + [-81.820634, 37.045577], + [-81.820738, 37.045709], + [-81.827268, 37.05393], + [-81.837004, 37.062351], + [-81.840779, 37.065631], + [-81.840797, 37.065646], + [-81.840974, 37.065788], + [-81.84453, 37.068829], + [-81.850112, 37.073594], + [-81.850137, 37.073616], + [-81.851359, 37.07466], + [-81.852714, 37.075816], + [-81.85287, 37.075949], + [-81.853109, 37.076153], + [-81.853234, 37.07626], + [-81.853262, 37.076284], + [-81.853366, 37.076374], + [-81.853394, 37.076398], + [-81.853463, 37.076457], + [-81.853505, 37.076491], + [-81.853525, 37.076507], + [-81.855089, 37.077762], + [-81.856677, 37.079128], + [-81.856709, 37.079158], + [-81.856726, 37.079174], + [-81.856734, 37.079181], + [-81.856843, 37.079277], + [-81.857355, 37.079736], + [-81.859387, 37.081561], + [-81.85948, 37.081645], + [-81.859519, 37.08168], + [-81.860937, 37.082954], + [-81.86098, 37.082993], + [-81.861186, 37.083179], + [-81.861409, 37.083378], + [-81.861414, 37.083382], + [-81.861718, 37.083634], + [-81.861751, 37.083657], + [-81.862356, 37.084268], + [-81.862433, 37.084323], + [-81.862708, 37.084598], + [-81.862747, 37.084646], + [-81.862762, 37.084658], + [-81.863187, 37.08501], + [-81.863354, 37.085152], + [-81.863439, 37.085224], + [-81.863475, 37.085253], + [-81.863503, 37.085276], + [-81.863778, 37.085498], + [-81.863931, 37.085603], + [-81.863941, 37.085639], + [-81.863982, 37.085868], + [-81.863986, 37.08591], + [-81.864009, 37.086183], + [-81.864011, 37.086209], + [-81.864021, 37.086265], + [-81.864058, 37.086509], + [-81.864065, 37.086566], + [-81.864096, 37.086822], + [-81.864109, 37.086924], + [-81.864131, 37.087017], + [-81.864174, 37.087147], + [-81.864253, 37.087332], + [-81.864357, 37.08749], + [-81.864422, 37.087569], + [-81.864565, 37.087709], + [-81.864737, 37.087866], + [-81.864919, 37.088051], + [-81.86497, 37.088092], + [-81.865136, 37.088204], + [-81.865263, 37.088276], + [-81.865457, 37.088371], + [-81.865808, 37.088613], + [-81.865936, 37.088692], + [-81.866194, 37.088883], + [-81.86622, 37.088914], + [-81.866471, 37.089132], + [-81.866618, 37.089272], + [-81.866842, 37.089505], + [-81.866972, 37.089649], + [-81.867076, 37.089751], + [-81.867205, 37.089867], + [-81.867473, 37.090059], + [-81.867637, 37.090202], + [-81.867697, 37.09027], + [-81.867888, 37.090586], + [-81.86807, 37.090787], + [-81.86826, 37.090938], + [-81.868381, 37.091044], + [-81.868699, 37.091262], + [-81.869044, 37.091508], + [-81.869503, 37.091866], + [-81.869571, 37.091924], + [-81.869744, 37.092102], + [-81.869828, 37.09221], + [-81.869891, 37.092276], + [-81.870089, 37.092458], + [-81.870206, 37.09254], + [-81.870417, 37.092652], + [-81.870494, 37.092686], + [-81.871329, 37.092971], + [-81.871492, 37.093042], + [-81.871566, 37.093085], + [-81.872087, 37.09339], + [-81.872233, 37.093485], + [-81.872457, 37.093652], + [-81.87257, 37.093758], + [-81.872693, 37.093904], + [-81.872726, 37.093957], + [-81.872751, 37.093984], + [-81.872795, 37.094059], + [-81.872821, 37.094087], + [-81.872847, 37.094135], + [-81.872873, 37.094162], + [-81.873029, 37.094409], + [-81.873107, 37.094498], + [-81.873142, 37.094552], + [-81.873196, 37.094616], + [-81.873237, 37.094683], + [-81.873263, 37.09471], + [-81.873523, 37.095114], + [-81.87361, 37.095203], + [-81.873696, 37.095278], + [-81.874395, 37.095828], + [-81.874568, 37.096002], + [-81.874611, 37.096036], + [-81.874723, 37.096111], + [-81.874783, 37.096132], + [-81.874847, 37.096181], + [-81.875047, 37.096398], + [-81.875202, 37.096593], + [-81.87522, 37.096634], + [-81.875278, 37.096734], + [-81.875285, 37.096748], + [-81.875303, 37.096786], + [-81.875513, 37.097233], + [-81.875542, 37.097327], + [-81.875593, 37.097681], + [-81.875622, 37.09778], + [-81.875656, 37.097828], + [-81.875717, 37.097965], + [-81.875743, 37.097993], + [-81.875819, 37.09812], + [-81.87589, 37.098212], + [-81.875908, 37.098246], + [-81.87628, 37.098699], + [-81.876297, 37.098733], + [-81.876721, 37.09923], + [-81.876798, 37.099295], + [-81.876872, 37.099305], + [-81.87706, 37.099311], + [-81.877511, 37.099306], + [-81.877863, 37.099352], + [-81.878012, 37.099405], + [-81.878134, 37.099475], + [-81.878191, 37.099516], + [-81.878329, 37.099639], + [-81.878363, 37.099677], + [-81.878459, 37.099838], + [-81.878493, 37.099914], + [-81.878713, 37.100731], + [-81.878796, 37.100988], + [-81.878831, 37.101074], + [-81.878992, 37.101348], + [-81.879074, 37.101433], + [-81.879147, 37.101498], + [-81.879276, 37.101577], + [-81.880318, 37.102064], + [-81.880404, 37.102119], + [-81.880491, 37.102188], + [-81.880728, 37.102465], + [-81.881259, 37.102913], + [-81.881346, 37.10305], + [-81.881372, 37.103078], + [-81.881407, 37.103139], + [-81.881433, 37.103167], + [-81.881476, 37.103242], + [-81.881562, 37.103345], + [-81.881606, 37.103379], + [-81.881718, 37.103434], + [-81.881838, 37.103474], + [-81.881887, 37.103501], + [-81.88195, 37.103536], + [-81.88195, 37.103591], + [-81.881947, 37.103608], + [-81.881909, 37.103852], + [-81.881901, 37.103955], + [-81.881902, 37.104093], + [-81.881926, 37.104232], + [-81.881955, 37.104312], + [-81.881989, 37.104353], + [-81.882033, 37.104429], + [-81.882119, 37.104518], + [-81.882223, 37.1046], + [-81.882295, 37.10464], + [-81.882317, 37.10465], + [-81.882509, 37.1047], + [-81.882678, 37.104729], + [-81.882868, 37.104755], + [-81.8834, 37.104815], + [-81.883512, 37.104842], + [-81.883581, 37.104869], + [-81.883701, 37.104938], + [-81.883796, 37.105013], + [-81.883891, 37.105109], + [-81.883926, 37.105171], + [-81.883961, 37.105208], + [-81.88413, 37.105493], + [-81.884199, 37.105633], + [-81.884222, 37.105753], + [-81.884224, 37.105789], + [-81.884215, 37.105817], + [-81.884227, 37.105838], + [-81.884238, 37.105862], + [-81.884229, 37.105885], + [-81.884248, 37.10625], + [-81.88429, 37.106447], + [-81.884336, 37.106531], + [-81.884399, 37.106608], + [-81.884597, 37.106776], + [-81.884884, 37.106984], + [-81.885011, 37.107056], + [-81.885106, 37.107097], + [-81.88551, 37.107157], + [-81.885639, 37.107195], + [-81.885785, 37.107252], + [-81.885888, 37.107314], + [-81.886121, 37.107505], + [-81.886173, 37.10756], + [-81.886217, 37.107636], + [-81.886234, 37.107704], + [-81.886226, 37.107775], + [-81.886225, 37.10778], + [-81.886214, 37.10788], + [-81.88621, 37.108], + [-81.886228, 37.108082], + [-81.886254, 37.10813], + [-81.886327, 37.108185], + [-81.886409, 37.108198], + [-81.886478, 37.108184], + [-81.886512, 37.108164], + [-81.88658, 37.108143], + [-81.886636, 37.108136], + [-81.886709, 37.108156], + [-81.886752, 37.10819], + [-81.886796, 37.108238], + [-81.886839, 37.108317], + [-81.886904, 37.108468], + [-81.886908, 37.108503], + [-81.886915, 37.108564], + [-81.886922, 37.108626], + [-81.886906, 37.108784], + [-81.886911, 37.108829], + [-81.886955, 37.108952], + [-81.886998, 37.109021], + [-81.88705, 37.109082], + [-81.887231, 37.109226], + [-81.887335, 37.109322], + [-81.887441, 37.109447], + [-81.887482, 37.109514], + [-81.887508, 37.109541], + [-81.887542, 37.109603], + [-81.887586, 37.109651], + [-81.887629, 37.109733], + [-81.887739, 37.10986], + [-81.887811, 37.109932], + [-81.888182, 37.110226], + [-81.888242, 37.11026], + [-81.888502, 37.110362], + [-81.888758, 37.110443], + [-81.888801, 37.110464], + [-81.888905, 37.110546], + [-81.888976, 37.11063], + [-81.889017, 37.110696], + [-81.88907, 37.110742], + [-81.889075, 37.110747], + [-81.889104, 37.110772], + [-81.889192, 37.110813], + [-81.889276, 37.110833], + [-81.889465, 37.110833], + [-81.889619, 37.110832], + [-81.889692, 37.110852], + [-81.889757, 37.1109], + [-81.8898, 37.110958], + [-81.889826, 37.111018], + [-81.889851, 37.111097], + [-81.889901, 37.111329], + [-81.890002, 37.111593], + [-81.890049, 37.111668], + [-81.890132, 37.111854], + [-81.890315, 37.112203], + [-81.890442, 37.112359], + [-81.890703, 37.112573], + [-81.890946, 37.11297], + [-81.890972, 37.112998], + [-81.891089, 37.113183], + [-81.891128, 37.113231], + [-81.891054, 37.113376], + [-81.891052, 37.113378], + [-81.891035, 37.1134], + [-81.890939, 37.113485], + [-81.890774, 37.113631], + [-81.890651, 37.113775], + [-81.890588, 37.11393], + [-81.890552, 37.114401], + [-81.890571, 37.114448], + [-81.89057, 37.114501], + [-81.89057, 37.114525], + [-81.890553, 37.114594], + [-81.890528, 37.114656], + [-81.890375, 37.114885], + [-81.890312, 37.115093], + [-81.890279, 37.115306], + [-81.890301, 37.115467], + [-81.890329, 37.115838], + [-81.890373, 37.116058], + [-81.890482, 37.116298], + [-81.890565, 37.116456], + [-81.89072, 37.116606], + [-81.89079, 37.116785], + [-81.890774, 37.116991], + [-81.890837, 37.117098], + [-81.890848, 37.117116], + [-81.890904, 37.11721], + [-81.890939, 37.117306], + [-81.891, 37.117409], + [-81.891009, 37.11745], + [-81.89105, 37.117529], + [-81.891057, 37.117553], + [-81.891053, 37.117574], + [-81.891084, 37.117614], + [-81.8911, 37.117636], + [-81.89127, 37.118013], + [-81.891366, 37.118181], + [-81.891514, 37.1185], + [-81.891574, 37.118579], + [-81.8916, 37.118664], + [-81.891909, 37.119185], + [-81.892092, 37.119642], + [-81.892119, 37.119862], + [-81.892107, 37.120023], + [-81.89213, 37.120212], + [-81.89222, 37.120596], + [-81.892257, 37.120703], + [-81.892386, 37.120987], + [-81.892527, 37.121224], + [-81.892596, 37.121313], + [-81.892613, 37.121347], + [-81.892666, 37.121519], + [-81.892618, 37.122814], + [-81.892581, 37.122983], + [-81.892551, 37.123069], + [-81.892539, 37.123127], + [-81.892501, 37.123227], + [-81.892492, 37.123801], + [-81.892519, 37.124048], + [-81.892576, 37.124295], + [-81.892668, 37.124494], + [-81.892767, 37.124652], + [-81.89285, 37.124837], + [-81.892919, 37.12494], + [-81.893023, 37.125119], + [-81.89305, 37.125162], + [-81.893572, 37.126009], + [-81.894875, 37.127411], + [-81.895513, 37.128471], + [-81.895808, 37.1289], + [-81.895938, 37.129202], + [-81.896226, 37.129543], + [-81.89648, 37.1299], + [-81.896562, 37.130296], + [-81.896582, 37.130516], + [-81.896733, 37.130878], + [-81.896932, 37.13145], + [-81.897597, 37.132879], + [-81.897837, 37.133439], + [-81.898111, 37.133852], + [-81.898989, 37.134802], + [-81.899442, 37.13516], + [-81.899846, 37.135462], + [-81.900114, 37.135968], + [-81.900155, 37.136385], + [-81.900152, 37.136521], + [-81.900151, 37.136571], + [-81.900148, 37.136693], + [-81.90012, 37.136726], + [-81.899976, 37.137231], + [-81.900072, 37.13744], + [-81.900394, 37.137786], + [-81.900703, 37.138314], + [-81.900902, 37.138611], + [-81.901451, 37.139067], + [-81.901567, 37.139188], + [-81.901512, 37.139243], + [-81.901512, 37.139331], + [-81.901553, 37.139479], + [-81.901793, 37.140172], + [-81.90169, 37.14043], + [-81.90167, 37.140479], + [-81.9017, 37.140589], + [-81.901525, 37.141012], + [-81.90151, 37.141036], + [-81.901257, 37.141441], + [-81.901256, 37.141515], + [-81.901254, 37.141737], + [-81.901254, 37.141752], + [-81.901251, 37.141761], + [-81.901248, 37.141772], + [-81.901238, 37.141809], + [-81.901229, 37.141843], + [-81.901193, 37.141976], + [-81.901172, 37.142315], + [-81.901173, 37.142367], + [-81.901104, 37.142441], + [-81.901094, 37.142451], + [-81.901091, 37.142553], + [-81.900952, 37.14276], + [-81.900926, 37.142799], + [-81.900902, 37.142861], + [-81.900894, 37.142881], + [-81.90085, 37.142995], + [-81.900727, 37.143223], + [-81.900631, 37.143514], + [-81.9007, 37.143817], + [-81.900706, 37.143844], + [-81.900707, 37.14385], + [-81.900708, 37.143855], + [-81.900711, 37.143869], + [-81.900715, 37.143885], + [-81.90072, 37.143901], + [-81.900731, 37.143934], + [-81.900744, 37.143974], + [-81.900792, 37.144122], + [-81.900805, 37.14432], + [-81.900805, 37.144325], + [-81.900806, 37.144339], + [-81.900822, 37.144582], + [-81.900745, 37.144762], + [-81.900687, 37.144897], + [-81.900641, 37.145005], + [-81.900626, 37.145041], + [-81.900623, 37.145048], + [-81.900606, 37.145088], + [-81.900518, 37.145294], + [-81.900089, 37.145762], + [-81.900011, 37.145828], + [-81.899881, 37.14594], + [-81.89976, 37.14613], + [-81.899533, 37.146291], + [-81.899219, 37.146511], + [-81.898944, 37.14666], + [-81.898924, 37.146662], + [-81.898912, 37.146664], + [-81.898725, 37.146783], + [-81.898565, 37.146977], + [-81.898423, 37.147274], + [-81.898353, 37.147493], + [-81.898358, 37.147517], + [-81.898451, 37.14797], + [-81.898623, 37.148226], + [-81.898604, 37.148274], + [-81.898585, 37.14838], + [-81.898583, 37.148391], + [-81.898582, 37.148412], + [-81.898579, 37.148509], + [-81.898584, 37.148554], + [-81.898593, 37.148627], + [-81.898613, 37.148696], + [-81.898617, 37.149441], + [-81.898617, 37.149484], + [-81.898622, 37.149534], + [-81.898559, 37.150008], + [-81.898567, 37.150138], + [-81.898578, 37.150306], + [-81.898584, 37.150548], + [-81.89854, 37.150781], + [-81.898486, 37.150965], + [-81.898413, 37.151118], + [-81.898217, 37.151389], + [-81.89793, 37.151708], + [-81.897724, 37.15198], + [-81.897581, 37.152107], + [-81.897468, 37.15225], + [-81.897166, 37.152239], + [-81.896797, 37.152097], + [-81.896558, 37.151973], + [-81.896389, 37.151907], + [-81.895999, 37.151757], + [-81.895699, 37.151721], + [-81.895227, 37.151683], + [-81.894867, 37.151574], + [-81.894569, 37.151442], + [-81.894363, 37.151351], + [-81.893873, 37.151134], + [-81.893785, 37.151053], + [-81.893773, 37.151042], + [-81.893769, 37.151038], + [-81.893737, 37.151008], + [-81.893684, 37.150959], + [-81.893099, 37.150416], + [-81.892622, 37.150161], + [-81.892214, 37.149946], + [-81.891844, 37.149797], + [-81.891504, 37.149744], + [-81.891083, 37.149699], + [-81.890772, 37.149655], + [-81.890514, 37.14949], + [-81.890325, 37.149359], + [-81.889935, 37.149233], + [-81.889635, 37.149197], + [-81.889209, 37.149369], + [-81.888607, 37.149886], + [-81.888294, 37.150286], + [-81.888198, 37.150408], + [-81.888107, 37.150412], + [-81.888033, 37.150416], + [-81.886608, 37.15049], + [-81.885664, 37.150856], + [-81.885658, 37.150862], + [-81.885595, 37.150921], + [-81.885524, 37.150947], + [-81.882253, 37.152122], + [-81.881745, 37.15209], + [-81.881467, 37.15211], + [-81.881188, 37.152158], + [-81.880111, 37.152347], + [-81.880094, 37.152345], + [-81.880086, 37.152342], + [-81.879908, 37.152214], + [-81.879696, 37.152061], + [-81.879687, 37.152055], + [-81.879272, 37.151757], + [-81.879257, 37.151746], + [-81.879049, 37.151605], + [-81.878991, 37.151532], + [-81.878924, 37.151434], + [-81.878429, 37.151673], + [-81.878087, 37.151916], + [-81.878081, 37.15192], + [-81.878069, 37.151929], + [-81.878056, 37.151939], + [-81.877899, 37.152057], + [-81.877892, 37.152062], + [-81.877853, 37.152091], + [-81.877669, 37.152217], + [-81.877587, 37.152244], + [-81.877556, 37.152254], + [-81.877549, 37.152256], + [-81.877477, 37.152279], + [-81.876914, 37.152297], + [-81.876729, 37.152311], + [-81.876715, 37.152312], + [-81.876708, 37.152313], + [-81.876562, 37.152324], + [-81.87623, 37.15232], + [-81.876013, 37.15231], + [-81.875848, 37.15234], + [-81.875753, 37.152374], + [-81.875728, 37.152383], + [-81.875696, 37.152394], + [-81.875642, 37.152452], + [-81.875627, 37.152468], + [-81.875619, 37.152476], + [-81.875553, 37.152546], + [-81.875508, 37.152596], + [-81.875496, 37.15261], + [-81.875477, 37.152631], + [-81.875349, 37.152823], + [-81.875327, 37.152855], + [-81.875201, 37.153044], + [-81.875198, 37.153049], + [-81.875152, 37.153118], + [-81.875143, 37.153132], + [-81.87499, 37.153363], + [-81.874985, 37.15337], + [-81.874981, 37.153377], + [-81.874965, 37.153401], + [-81.874942, 37.153435], + [-81.874933, 37.153448], + [-81.874901, 37.153496], + [-81.874846, 37.153578], + [-81.874666, 37.153865], + [-81.874474, 37.153968], + [-81.874292, 37.154031], + [-81.874061, 37.154036], + [-81.873829, 37.154058], + [-81.873649, 37.154032], + [-81.873458, 37.15403], + [-81.873336, 37.154125], + [-81.873213, 37.154302], + [-81.8731, 37.154438], + [-81.872927, 37.15459], + [-81.872875, 37.154678], + [-81.872733, 37.154798], + [-81.87262, 37.154893], + [-81.872589, 37.154906], + [-81.872347, 37.155004], + [-81.871668, 37.155046], + [-81.871608, 37.155081], + [-81.871561, 37.155127], + [-81.871446, 37.155322], + [-81.871442, 37.155328], + [-81.87136, 37.155468], + [-81.871331, 37.155504], + [-81.871279, 37.155575], + [-81.871185, 37.155703], + [-81.871138, 37.155729], + [-81.87067, 37.155989], + [-81.870372, 37.156155], + [-81.870209, 37.156205], + [-81.870007, 37.156267], + [-81.869892, 37.156429], + [-81.869731, 37.156653], + [-81.869396, 37.156858], + [-81.868234, 37.157169], + [-81.868078, 37.157282], + [-81.867881, 37.157424], + [-81.867807, 37.157528], + [-81.86769, 37.157691], + [-81.867255, 37.157714], + [-81.867186, 37.157735], + [-81.867127, 37.157767], + [-81.867087, 37.157801], + [-81.867073, 37.157817], + [-81.867063, 37.157829], + [-81.866925, 37.158046], + [-81.866891, 37.158081], + [-81.8668, 37.158147], + [-81.866752, 37.158202], + [-81.866717, 37.158276], + [-81.866687, 37.15837], + [-81.866659, 37.158425], + [-81.866639, 37.158463], + [-81.866574, 37.158549], + [-81.866428, 37.15866], + [-81.866213, 37.158806], + [-81.866451, 37.158961], + [-81.866703, 37.159125], + [-81.86746, 37.159637], + [-81.867507, 37.159649], + [-81.867675, 37.159752], + [-81.867865, 37.159837], + [-81.868341, 37.160049], + [-81.868466, 37.160087], + [-81.868597, 37.16011], + [-81.868731, 37.160118], + [-81.868937, 37.160106], + [-81.869028, 37.160113], + [-81.869116, 37.160134], + [-81.869181, 37.160162], + [-81.869234, 37.160213], + [-81.869277, 37.160286], + [-81.86936, 37.16055], + [-81.869406, 37.160633], + [-81.86948, 37.160723], + [-81.869542, 37.160778], + [-81.86963, 37.160836], + [-81.869707, 37.160874], + [-81.869811, 37.160911], + [-81.869876, 37.160927], + [-81.870201, 37.160974], + [-81.870281, 37.160998], + [-81.87034, 37.161026], + [-81.870404, 37.161071], + [-81.870456, 37.161125], + [-81.870486, 37.161174], + [-81.87051, 37.16124], + [-81.870542, 37.161455], + [-81.87056, 37.1615], + [-81.870572, 37.161529], + [-81.870619, 37.161597], + [-81.870681, 37.161656], + [-81.870725, 37.161687], + [-81.87089, 37.161777], + [-81.870867, 37.161807], + [-81.870803, 37.161891], + [-81.870767, 37.161938], + [-81.870574, 37.162193], + [-81.87072, 37.162509], + [-81.870889, 37.162647], + [-81.87109, 37.162618], + [-81.871318, 37.162585], + [-81.871377, 37.162576], + [-81.871394, 37.16273], + [-81.871397, 37.162737], + [-81.871414, 37.162778], + [-81.871428, 37.162797], + [-81.871591, 37.162939], + [-81.871749, 37.163055], + [-81.871824, 37.163115], + [-81.871843, 37.163174], + [-81.871853, 37.163204], + [-81.871859, 37.163223], + [-81.872093, 37.163954], + [-81.872149, 37.16413], + [-81.872183, 37.164236], + [-81.872266, 37.164496], + [-81.872302, 37.164569], + [-81.872343, 37.164651], + [-81.872311, 37.164791], + [-81.872185, 37.165193], + [-81.871906, 37.165635], + [-81.871729, 37.166012], + [-81.871605, 37.166221], + [-81.871482, 37.166373], + [-81.87133, 37.166493], + [-81.871198, 37.16658], + [-81.871042, 37.166613], + [-81.870919, 37.166638], + [-81.870848, 37.166653], + [-81.870719, 37.166635], + [-81.870669, 37.166643], + [-81.870617, 37.16667], + [-81.8706, 37.166697], + [-81.870596, 37.166734], + [-81.870619, 37.166794], + [-81.870615, 37.166844], + [-81.870614, 37.166851], + [-81.870591, 37.166896], + [-81.870452, 37.167045], + [-81.870293, 37.167181], + [-81.870037, 37.167401], + [-81.869844, 37.167566], + [-81.869716, 37.167668], + [-81.86936, 37.167781], + [-81.868997, 37.167818], + [-81.868676, 37.167823], + [-81.868435, 37.167813], + [-81.868245, 37.167771], + [-81.868095, 37.167721], + [-81.867964, 37.167728], + [-81.867783, 37.167726], + [-81.867651, 37.167781], + [-81.86761, 37.167861], + [-81.867608, 37.168015], + [-81.867626, 37.168128], + [-81.867633, 37.168281], + [-81.867561, 37.16841], + [-81.867409, 37.168521], + [-81.867207, 37.168584], + [-81.867015, 37.168638], + [-81.866843, 37.168709], + [-81.8665, 37.168779], + [-81.866239, 37.168776], + [-81.866009, 37.168693], + [-81.865761, 37.168489], + [-81.865454, 37.168212], + [-81.865393, 37.168174], + [-81.865377, 37.168164], + [-81.86537, 37.16816], + [-81.865255, 37.168089], + [-81.865118, 37.168058], + [-81.865109, 37.168056], + [-81.864893, 37.168086], + [-81.864806, 37.168135], + [-81.864792, 37.168143], + [-81.86464, 37.168229], + [-81.864168, 37.168511], + [-81.864133, 37.168522], + [-81.864084, 37.168559], + [-81.864005, 37.168663], + [-81.863829, 37.16906], + [-81.86382, 37.169061], + [-81.86349, 37.169097], + [-81.863198, 37.169127], + [-81.862916, 37.169148], + [-81.862634, 37.169137], + [-81.862354, 37.169167], + [-81.862057, 37.169406], + [-81.861863, 37.169582], + [-81.86157, 37.169686], + [-81.861247, 37.169802], + [-81.860884, 37.169822], + [-81.860375, 37.17015], + [-81.860261, 37.170258], + [-81.860133, 37.17038], + [-81.85983, 37.170619], + [-81.859736, 37.170707], + [-81.859686, 37.170753], + [-81.859625, 37.170809], + [-81.859613, 37.170831], + [-81.859498, 37.171041], + [-81.859396, 37.171243], + [-81.859359, 37.171432], + [-81.859341, 37.171526], + [-81.859329, 37.171541], + [-81.859262, 37.171623], + [-81.859237, 37.171821], + [-81.859184, 37.171966], + [-81.859113, 37.172038], + [-81.85909, 37.172191], + [-81.859066, 37.172401], + [-81.85881, 37.172689], + [-81.858494, 37.172953], + [-81.858239, 37.173201], + [-81.858054, 37.173449], + [-81.85797, 37.173674], + [-81.857855, 37.173947], + [-81.857701, 37.174123], + [-81.857507, 37.174307], + [-81.857314, 37.174451], + [-81.856887, 37.174546], + [-81.856568, 37.17452], + [-81.856473, 37.174508], + [-81.856465, 37.174507], + [-81.856452, 37.174505], + [-81.856329, 37.17449], + [-81.856025, 37.174592], + [-81.855761, 37.174743], + [-81.855367, 37.174869], + [-81.854944, 37.174897], + [-81.854602, 37.174942], + [-81.854398, 37.174999], + [-81.854391, 37.175001], + [-81.854238, 37.175043], + [-81.854101, 37.174995], + [-81.854095, 37.174993], + [-81.853859, 37.174911], + [-81.853508, 37.174867], + [-81.852955, 37.174862], + [-81.852726, 37.174738], + [-81.85252, 37.174422], + [-81.852202, 37.174162], + [-81.851582, 37.17401], + [-81.851043, 37.173771], + [-81.850501, 37.173726], + [-81.850121, 37.173601], + [-81.849853, 37.173372], + [-81.849604, 37.173241], + [-81.849213, 37.173173], + [-81.848923, 37.173137], + [-81.848703, 37.173063], + [-81.848544, 37.172908], + [-81.848405, 37.172834], + [-81.848204, 37.172832], + [-81.847941, 37.17295], + [-81.847657, 37.173093], + [-81.847496, 37.173095], + [-81.847454, 37.173095], + [-81.847247, 37.173206], + [-81.847125, 37.173213], + [-81.845621, 37.17329], + [-81.84557, 37.173293], + [-81.845558, 37.173293], + [-81.845551, 37.173294], + [-81.845473, 37.173298], + [-81.84538, 37.173322], + [-81.845364, 37.173326], + [-81.84535, 37.17333], + [-81.845332, 37.173335], + [-81.845318, 37.173339], + [-81.8453, 37.173344], + [-81.845271, 37.173352], + [-81.84525, 37.173358], + [-81.845099, 37.173399], + [-81.844947, 37.17347], + [-81.844584, 37.17358], + [-81.844343, 37.173545], + [-81.844001, 37.17355], + [-81.843828, 37.17389], + [-81.843806, 37.173903], + [-81.843775, 37.173922], + [-81.843714, 37.173972], + [-81.843641, 37.174044], + [-81.843519, 37.174192], + [-81.843459, 37.174288], + [-81.843446, 37.174308], + [-81.843323, 37.174578], + [-81.843223, 37.174756], + [-81.843011, 37.175071], + [-81.842744, 37.175241], + [-81.842599, 37.175333], + [-81.842246, 37.175557], + [-81.842165, 37.175613], + [-81.842106, 37.175655], + [-81.84206, 37.175714], + [-81.842035, 37.175765], + [-81.841964, 37.175956], + [-81.841932, 37.176025], + [-81.841928, 37.176032], + [-81.841875, 37.176127], + [-81.84179, 37.176288], + [-81.841566, 37.176511], + [-81.841558, 37.176512], + [-81.841537, 37.176517], + [-81.841255, 37.176573], + [-81.840922, 37.17652], + [-81.840651, 37.176477], + [-81.840604, 37.17647], + [-81.840331, 37.176589], + [-81.840152, 37.176667], + [-81.839677, 37.176697], + [-81.839639, 37.176735], + [-81.839617, 37.17678], + [-81.839612, 37.176831], + [-81.839617, 37.176858], + [-81.839639, 37.176977], + [-81.839648, 37.177086], + [-81.839638, 37.17715], + [-81.839617, 37.177204], + [-81.839486, 37.17738], + [-81.839482, 37.177385], + [-81.839352, 37.177559], + [-81.839342, 37.177569], + [-81.83917, 37.17774], + [-81.839008, 37.177902], + [-81.83866, 37.178083], + [-81.838436, 37.1782], + [-81.837406, 37.177994], + [-81.836433, 37.177559], + [-81.835993, 37.177549], + [-81.83597, 37.177665], + [-81.835939, 37.177881], + [-81.835937, 37.177898], + [-81.835901, 37.178022], + [-81.835878, 37.178084], + [-81.835782, 37.178405], + [-81.835747, 37.178521], + [-81.835461, 37.17875], + [-81.834836, 37.178841], + [-81.834488, 37.179002], + [-81.833686, 37.179999], + [-81.833659, 37.180032], + [-81.833572, 37.180064], + [-81.833475, 37.1801], + [-81.833287, 37.18017], + [-81.833149, 37.180161], + [-81.832995, 37.180152], + [-81.832915, 37.180147], + [-81.832299, 37.179869], + [-81.83223, 37.179833], + [-81.831712, 37.179952], + [-81.831376, 37.180068], + [-81.831226, 37.180198], + [-81.83096, 37.180395], + [-81.830685, 37.180566], + [-81.830414, 37.180649], + [-81.830331, 37.180625], + [-81.830173, 37.18061], + [-81.829996, 37.180514], + [-81.829966, 37.180519], + [-81.829423, 37.180606], + [-81.829194, 37.180537], + [-81.828336, 37.180789], + [-81.827535, 37.180743], + [-81.826648, 37.1804], + [-81.825418, 37.180254], + [-81.825103, 37.180217], + [-81.82453, 37.179896], + [-81.823586, 37.179645], + [-81.822842, 37.179027], + [-81.822241, 37.178821], + [-81.821661, 37.178804], + [-81.821441, 37.178797], + [-81.821441, 37.178865], + [-81.821427, 37.178877], + [-81.821313, 37.178974], + [-81.821254, 37.179025], + [-81.821245, 37.179032], + [-81.821217, 37.179056], + [-81.82061, 37.179326], + [-81.820345, 37.179404], + [-81.820335, 37.179409], + [-81.82028, 37.179433], + [-81.820274, 37.179436], + [-81.820258, 37.179443], + [-81.819812, 37.179641], + [-81.819506, 37.179771], + [-81.819499, 37.179774], + [-81.819271, 37.179941], + [-81.819157, 37.180128], + [-81.819145, 37.180148], + [-81.819075, 37.180263], + [-81.818932, 37.180382], + [-81.818534, 37.180506], + [-81.818401, 37.18053], + [-81.818368, 37.180536], + [-81.81836, 37.180537], + [-81.818349, 37.180539], + [-81.81829, 37.18055], + [-81.818198, 37.180567], + [-81.818063, 37.180592], + [-81.817867, 37.180657], + [-81.817738, 37.180722], + [-81.817728, 37.180727], + [-81.817609, 37.18094], + [-81.816973, 37.181211], + [-81.816867, 37.181278], + [-81.816822, 37.181311], + [-81.816804, 37.181324], + [-81.816799, 37.181328], + [-81.816768, 37.181351], + [-81.816675, 37.181433], + [-81.816608, 37.181508], + [-81.816566, 37.181555], + [-81.816484, 37.181639], + [-81.816451, 37.181683], + [-81.816268, 37.181958], + [-81.816097, 37.18218], + [-81.815988, 37.182294], + [-81.815872, 37.182405], + [-81.815623, 37.182571], + [-81.815592, 37.182591], + [-81.815434, 37.182696], + [-81.814602, 37.182891], + [-81.814496, 37.182916], + [-81.814385, 37.182942], + [-81.81435, 37.18295], + [-81.81415, 37.183098], + [-81.814042, 37.183195], + [-81.814019, 37.183215], + [-81.813977, 37.183261], + [-81.813929, 37.183327], + [-81.813716, 37.183675], + [-81.8134, 37.184148], + [-81.813336, 37.184237], + [-81.813295, 37.184284], + [-81.813233, 37.184316], + [-81.812893, 37.184491], + [-81.812864, 37.184504], + [-81.812778, 37.184541], + [-81.812704, 37.184589], + [-81.812623, 37.184661], + [-81.812544, 37.184753], + [-81.812424, 37.184928], + [-81.812396, 37.184969], + [-81.81237, 37.185015], + [-81.812349, 37.185054], + [-81.812333, 37.185083], + [-81.812293, 37.185116], + [-81.812004, 37.185349], + [-81.811862, 37.18538], + [-81.811712, 37.185346], + [-81.811494, 37.185166], + [-81.811372, 37.185094], + [-81.811315, 37.18506], + [-81.811025, 37.184843], + [-81.810826, 37.184744], + [-81.81007, 37.184935], + [-81.809941, 37.184989], + [-81.809907, 37.185015], + [-81.809791, 37.185055], + [-81.809693, 37.185269], + [-81.808735, 37.18537], + [-81.807648, 37.185393], + [-81.806586, 37.184792], + [-81.806526, 37.184758], + [-81.806475, 37.184729], + [-81.806397, 37.184623], + [-81.806353, 37.184524], + [-81.806257, 37.184309], + [-81.806189, 37.184157], + [-81.80576, 37.18379], + [-81.805747, 37.183795], + [-81.805393, 37.183927], + [-81.80504, 37.184029], + [-81.804696, 37.18413], + [-81.804342, 37.184312], + [-81.804139, 37.184415], + [-81.803956, 37.184526], + [-81.803783, 37.184654], + [-81.80368, 37.184822], + [-81.803647, 37.184983], + [-81.803642, 37.185282], + [-81.803638, 37.185507], + [-81.803566, 37.185628], + [-81.803282, 37.185762], + [-81.802656, 37.185933], + [-81.802233, 37.185953], + [-81.801862, 37.185941], + [-81.801512, 37.185817], + [-81.801232, 37.185645], + [-81.801013, 37.185513], + [-81.800766, 37.185309], + [-81.800436, 37.185153], + [-81.799994, 37.18514], + [-81.799692, 37.185202], + [-81.799568, 37.185378], + [-81.799434, 37.185586], + [-81.799128, 37.185874], + [-81.798785, 37.185927], + [-81.798562, 37.185965], + [-81.79822, 37.186026], + [-81.797848, 37.186038], + [-81.797566, 37.186084], + [-81.797414, 37.186155], + [-81.797197, 37.186508], + [-81.796804, 37.187166], + [-81.796384, 37.187621], + [-81.796005, 37.188069], + [-81.795535, 37.188517], + [-81.79515, 37.188658], + [-81.794867, 37.188776], + [-81.794795, 37.188864], + [-81.794752, 37.189041], + [-81.794679, 37.189202], + [-81.794465, 37.189353], + [-81.79405, 37.189526], + [-81.793986, 37.189554], + [-81.793916, 37.18955], + [-81.793597, 37.189673], + [-81.792337, 37.190108], + [-81.791947, 37.190109], + [-81.791726, 37.190109], + [-81.791468, 37.189985], + [-81.791469, 37.189959], + [-81.79147, 37.189885], + [-81.791475, 37.189613], + [-81.79144, 37.189322], + [-81.791321, 37.189224], + [-81.791091, 37.189182], + [-81.790809, 37.189163], + [-81.790537, 37.189208], + [-81.790335, 37.189263], + [-81.790193, 37.189342], + [-81.790091, 37.189454], + [-81.789884, 37.189783], + [-81.789702, 37.189878], + [-81.789428, 37.18998], + [-81.78914, 37.190065], + [-81.789044, 37.190094], + [-81.788903, 37.190136], + [-81.788589, 37.190286], + [-81.788314, 37.190485], + [-81.78813, 37.190669], + [-81.787936, 37.19078], + [-81.787684, 37.190842], + [-81.787442, 37.19088], + [-81.787289, 37.190983], + [-81.787225, 37.191224], + [-81.787188, 37.191619], + [-81.787107, 37.191675], + [-81.78702, 37.19172], + [-81.786953, 37.191755], + [-81.786863, 37.191802], + [-81.78669, 37.191929], + [-81.786344, 37.192216], + [-81.786138, 37.192456], + [-81.785986, 37.192543], + [-81.785692, 37.192686], + [-81.785116, 37.192898], + [-81.784851, 37.193088], + [-81.784798, 37.193142], + [-81.784714, 37.193226], + [-81.784679, 37.193262], + [-81.78443, 37.193583], + [-81.784411, 37.193633], + [-81.784409, 37.193638], + [-81.784404, 37.193652], + [-81.784351, 37.193789], + [-81.784349, 37.193794], + [-81.784346, 37.193801], + [-81.784341, 37.193814], + [-81.784332, 37.193838], + [-81.784328, 37.193849], + [-81.784263, 37.194019], + [-81.78423, 37.194106], + [-81.784224, 37.194149], + [-81.784216, 37.194209], + [-81.784128, 37.194846], + [-81.784136, 37.194971], + [-81.78398, 37.195291], + [-81.783896, 37.19549], + [-81.783749, 37.19579], + [-81.783678, 37.195958], + [-81.783669, 37.195994], + [-81.783654, 37.196122], + [-81.783663, 37.196214], + [-81.783686, 37.19629], + [-81.783732, 37.196387], + [-81.783927, 37.196669], + [-81.783966, 37.196737], + [-81.784114, 37.196911], + [-81.784143, 37.196945], + [-81.784148, 37.196953], + [-81.784327, 37.197255], + [-81.784365, 37.197475], + [-81.784402, 37.197685], + [-81.784311, 37.197879], + [-81.784285, 37.197933], + [-81.784053, 37.198109], + [-81.783788, 37.198283], + [-81.783524, 37.198434], + [-81.783503, 37.198444], + [-81.783247, 37.198568], + [-81.78323, 37.198576], + [-81.782947, 37.198678], + [-81.782514, 37.198714], + [-81.781972, 37.198588], + [-81.781712, 37.198512], + [-81.781463, 37.198413], + [-81.781352, 37.198404], + [-81.781231, 37.198435], + [-81.780965, 37.198682], + [-81.780621, 37.198855], + [-81.780257, 37.199024], + [-81.780246, 37.199029], + [-81.779983, 37.199097], + [-81.779822, 37.199138], + [-81.779684, 37.199173], + [-81.779519, 37.199215], + [-81.779406, 37.199225], + [-81.779116, 37.199251], + [-81.778923, 37.199184], + [-81.778885, 37.199183], + [-81.778853, 37.199182], + [-81.778552, 37.199174], + [-81.778504, 37.199173], + [-81.778252, 37.199186], + [-81.7781, 37.199306], + [-81.778048, 37.199343], + [-81.77793, 37.199429], + [-81.777835, 37.199497], + [-81.77758, 37.199696], + [-81.777372, 37.200081], + [-81.777177, 37.200361], + [-81.776978, 37.200502], + [-81.77677, 37.200648], + [-81.77675, 37.200663], + [-81.776454, 37.200886], + [-81.776185, 37.201287], + [-81.775925, 37.201753], + [-81.775675, 37.202283], + [-81.77547, 37.202495], + [-81.775138, 37.202839], + [-81.775068, 37.202911], + [-81.774822, 37.202894], + [-81.774732, 37.202888], + [-81.774608, 37.202868], + [-81.774532, 37.202874], + [-81.774485, 37.202889], + [-81.774442, 37.202912], + [-81.774386, 37.202966], + [-81.774365, 37.203002], + [-81.774355, 37.203068], + [-81.774365, 37.203138], + [-81.774391, 37.203206], + [-81.774435, 37.203269], + [-81.774414, 37.203293], + [-81.774303, 37.203423], + [-81.773998, 37.203846], + [-81.773956, 37.203894], + [-81.773877, 37.203984], + [-81.773693, 37.204038], + [-81.773509, 37.204051], + [-81.773363, 37.203994], + [-81.773241, 37.20385], + [-81.773142, 37.203731], + [-81.773118, 37.203702], + [-81.772948, 37.203703], + [-81.77212, 37.203497], + [-81.771313, 37.203048], + [-81.77109, 37.202924], + [-81.770262, 37.202718], + [-81.769632, 37.202717], + [-81.768631, 37.202877], + [-81.768273, 37.202896], + [-81.768202, 37.2029], + [-81.768132, 37.202864], + [-81.767573, 37.202579], + [-81.766145, 37.201274], + [-81.765949, 37.201172], + [-81.765942, 37.201168], + [-81.765573, 37.200976], + [-81.764714, 37.200792], + [-81.764027, 37.200769], + [-81.763878, 37.200833], + [-81.763295, 37.201083], + [-81.761957, 37.201884], + [-81.761737, 37.202072], + [-81.761637, 37.20218], + [-81.761552, 37.202297], + [-81.761486, 37.202416], + [-81.761446, 37.202514], + [-81.761411, 37.20264], + [-81.761393, 37.202768], + [-81.761375, 37.203032], + [-81.761378, 37.203245], + [-81.761389, 37.203425], + [-81.761386, 37.203481], + [-81.761386, 37.203486], + [-81.761383, 37.203553], + [-81.761373, 37.203598], + [-81.761114, 37.204028], + [-81.760968, 37.204266], + [-81.760905, 37.204367], + [-81.760901, 37.204371], + [-81.760888, 37.204395], + [-81.760828, 37.204444], + [-81.760067, 37.205061], + [-81.759, 37.205614], + [-81.75896, 37.205634], + [-81.757813, 37.205987], + [-81.757682, 37.206131], + [-81.757631, 37.206204], + [-81.757587, 37.206289], + [-81.75739, 37.206666], + [-81.75735, 37.206738], + [-81.75714, 37.207122], + [-81.757035, 37.20734], + [-81.756929, 37.207612], + [-81.756922, 37.207632], + [-81.757012, 37.207726], + [-81.757289, 37.208015], + [-81.757417, 37.20817], + [-81.757456, 37.208259], + [-81.757442, 37.20846], + [-81.757479, 37.208622], + [-81.757585, 37.208808], + [-81.757685, 37.20889], + [-81.757733, 37.209068], + [-81.75772, 37.209229], + [-81.757686, 37.209471], + [-81.757642, 37.209688], + [-81.757668, 37.209914], + [-81.757642, 37.209985], + [-81.757606, 37.21008], + [-81.757604, 37.210086], + [-81.757588, 37.210131], + [-81.757608, 37.210179], + [-81.757626, 37.210273], + [-81.757631, 37.210299], + [-81.757622, 37.210345], + [-81.757577, 37.210472], + [-81.757282, 37.210859], + [-81.756876, 37.211291], + [-81.7567, 37.211478], + [-81.756612, 37.211571], + [-81.756555, 37.211602], + [-81.756532, 37.21161], + [-81.756494, 37.211711], + [-81.756472, 37.211768], + [-81.756301, 37.212214], + [-81.756204, 37.212587], + [-81.756063, 37.213014], + [-81.755754, 37.21343], + [-81.755636, 37.214387], + [-81.755486, 37.214777], + [-81.755526, 37.214824], + [-81.755539, 37.21484], + [-81.755603, 37.214917], + [-81.755607, 37.214923], + [-81.755629, 37.214961], + [-81.755648, 37.214994], + [-81.755693, 37.215134], + [-81.75572, 37.21524], + [-81.755731, 37.215285], + [-81.755745, 37.21535], + [-81.75575, 37.215366], + [-81.755851, 37.215671], + [-81.755989, 37.216025], + [-81.75602, 37.216114], + [-81.755834, 37.216375], + [-81.755831, 37.21666], + [-81.755831, 37.216674], + [-81.755877, 37.217236], + [-81.75587, 37.217647], + [-81.755849, 37.217701], + [-81.755765, 37.217918], + [-81.755561, 37.218125], + [-81.755504, 37.218193], + [-81.755499, 37.218199], + [-81.755495, 37.218204], + [-81.755387, 37.218334], + [-81.755382, 37.218357], + [-81.755377, 37.218378], + [-81.755376, 37.218383], + [-81.755372, 37.218397], + [-81.755343, 37.218524], + [-81.755354, 37.219035], + [-81.755354, 37.21908], + [-81.755356, 37.219236], + [-81.755357, 37.21943], + [-81.755304, 37.219566], + [-81.754707, 37.219899], + [-81.754359, 37.220256], + [-81.754185, 37.220465], + [-81.754132, 37.220496], + [-81.754106, 37.220511], + [-81.754099, 37.220515], + [-81.753978, 37.220585], + [-81.753824, 37.220584], + [-81.753468, 37.2206], + [-81.753384, 37.220604], + [-81.753375, 37.220606], + [-81.753183, 37.220666], + [-81.752989, 37.220825], + [-81.752787, 37.220847], + [-81.752628, 37.220813], + [-81.752489, 37.220691], + [-81.75223, 37.220567], + [-81.75198, 37.220485], + [-81.751698, 37.22053], + [-81.751476, 37.220593], + [-81.751163, 37.22071], + [-81.7509, 37.220788], + [-81.750497, 37.220816], + [-81.750195, 37.220821], + [-81.74984, 37.220993], + [-81.749535, 37.221218], + [-81.749303, 37.221451], + [-81.749291, 37.221465], + [-81.749035, 37.22177], + [-81.748881, 37.222067], + [-81.748727, 37.222265], + [-81.748533, 37.222427], + [-81.748252, 37.22258], + [-81.748208, 37.222648], + [-81.748138, 37.222778], + [-81.748098, 37.222905], + [-81.74763, 37.22327], + [-81.747657, 37.223475], + [-81.747338, 37.223574], + [-81.747198, 37.223617], + [-81.746477, 37.22384], + [-81.745439, 37.223922], + [-81.744719, 37.223983], + [-81.744566, 37.223981], + [-81.744544, 37.223989], + [-81.744534, 37.223992], + [-81.744523, 37.223996], + [-81.744367, 37.224051], + [-81.744324, 37.224066], + [-81.74424, 37.224148], + [-81.744035, 37.224349], + [-81.74403, 37.224354], + [-81.743714, 37.224689], + [-81.743319, 37.224991], + [-81.742971, 37.225114], + [-81.742432, 37.225348], + [-81.742386, 37.225368], + [-81.742368, 37.225376], + [-81.742353, 37.225382], + [-81.742217, 37.225441], + [-81.742089, 37.225497], + [-81.741749, 37.225678], + [-81.74171, 37.225699], + [-81.741537, 37.225791], + [-81.741507, 37.225807], + [-81.741312, 37.225915], + [-81.741229, 37.226095], + [-81.741211, 37.226305], + [-81.74121, 37.226315], + [-81.741209, 37.22633], + [-81.741207, 37.226353], + [-81.741205, 37.226372], + [-81.741173, 37.226744], + [-81.740995, 37.226956], + [-81.740672, 37.227209], + [-81.740677, 37.227385], + [-81.740677, 37.227397], + [-81.740678, 37.227422], + [-81.74068, 37.227476], + [-81.74068, 37.227483], + [-81.740723, 37.227948], + [-81.740724, 37.227953], + [-81.740676, 37.228386], + [-81.740637, 37.228749], + [-81.740634, 37.228777], + [-81.740633, 37.228787], + [-81.740632, 37.228792], + [-81.740463, 37.229121], + [-81.740359, 37.229371], + [-81.740357, 37.229377], + [-81.740353, 37.229387], + [-81.740341, 37.229415], + [-81.74033, 37.229459], + [-81.740329, 37.229465], + [-81.740328, 37.22947], + [-81.740325, 37.229482], + [-81.740323, 37.229489], + [-81.740319, 37.229505], + [-81.740279, 37.229671], + [-81.740329, 37.229703], + [-81.740376, 37.229748], + [-81.740396, 37.229767], + [-81.740412, 37.229783], + [-81.740417, 37.229786], + [-81.740589, 37.229899], + [-81.740824, 37.230053], + [-81.741356, 37.230384], + [-81.741575, 37.23052], + [-81.742314, 37.231034], + [-81.742455, 37.23117], + [-81.742409, 37.231326], + [-81.742416, 37.231358], + [-81.742427, 37.231406], + [-81.742431, 37.231424], + [-81.742475, 37.231542], + [-81.742535, 37.231656], + [-81.742668, 37.231842], + [-81.742679, 37.231878], + [-81.742699, 37.231916], + [-81.742774, 37.232058], + [-81.742683, 37.232706], + [-81.742568, 37.232934], + [-81.742545, 37.233001], + [-81.742522, 37.233066], + [-81.742434, 37.233146], + [-81.74239, 37.23321], + [-81.742364, 37.23328], + [-81.742358, 37.23335], + [-81.742368, 37.233455], + [-81.742396, 37.233558], + [-81.742447, 37.233668], + [-81.742473, 37.233763], + [-81.74248, 37.233873], + [-81.742475, 37.233938], + [-81.742466, 37.23404], + [-81.742444, 37.234165], + [-81.742443, 37.234172], + [-81.742432, 37.234207], + [-81.742339, 37.234466], + [-81.742269, 37.234565], + [-81.74224, 37.234606], + [-81.742234, 37.234615], + [-81.742158, 37.234612], + [-81.741833, 37.234802], + [-81.741498, 37.235001], + [-81.74107, 37.2354], + [-81.740683, 37.235727], + [-81.740578, 37.236], + [-81.740593, 37.236387], + [-81.7407, 37.23671], + [-81.740737, 37.237041], + [-81.740673, 37.23729], + [-81.740539, 37.237491], + [-81.740244, 37.237698], + [-81.740127, 37.237759], + [-81.740287, 37.23827], + [-81.740456, 37.238514], + [-81.740604, 37.238708], + [-81.740802, 37.239033], + [-81.74093, 37.239227], + [-81.740956, 37.239371], + [-81.740957, 37.239379], + [-81.740977, 37.239486], + [-81.74097, 37.239729], + [-81.74095, 37.239779], + [-81.740901, 37.23992], + [-81.740788, 37.240097], + [-81.740695, 37.240297], + [-81.740631, 37.240514], + [-81.740699, 37.240724], + [-81.740815, 37.24108], + [-81.740982, 37.241428], + [-81.74109, 37.241655], + [-81.741368, 37.241907], + [-81.742071, 37.242026], + [-81.742864, 37.242179], + [-81.743427, 37.242272], + [-81.743808, 37.242372], + [-81.744007, 37.242535], + [-81.744235, 37.242828], + [-81.744342, 37.243143], + [-81.74438, 37.243337], + [-81.744387, 37.243554], + [-81.744343, 37.243796], + [-81.744294, 37.244187], + [-81.744219, 37.24428], + [-81.744122, 37.244422], + [-81.744038, 37.244658], + [-81.744023, 37.244743], + [-81.743962, 37.245293], + [-81.743953, 37.245324], + [-81.743921, 37.245446], + [-81.743902, 37.245492], + [-81.743869, 37.245569], + [-81.743834, 37.245633], + [-81.743806, 37.245677], + [-81.743803, 37.245682], + [-81.743799, 37.245687], + [-81.743795, 37.245693], + [-81.74379, 37.2457], + [-81.743753, 37.245755], + [-81.743567, 37.245959], + [-81.743578, 37.24749], + [-81.743662, 37.247569], + [-81.743674, 37.247584], + [-81.743703, 37.247623], + [-81.743693, 37.247708], + [-81.74362, 37.247932], + [-81.743408, 37.248434], + [-81.743325, 37.248673], + [-81.743277, 37.248841], + [-81.743248, 37.248996], + [-81.743234, 37.249172], + [-81.74323, 37.249392], + [-81.743213, 37.249524], + [-81.743182, 37.249664], + [-81.743146, 37.249757], + [-81.743142, 37.249768], + [-81.743128, 37.249791], + [-81.743083, 37.249867], + [-81.743008, 37.249957], + [-81.742967, 37.249995], + [-81.742958, 37.250004], + [-81.742903, 37.250056], + [-81.742773, 37.250153], + [-81.742756, 37.250165], + [-81.742681, 37.250221], + [-81.742647, 37.250242], + [-81.742596, 37.250273], + [-81.742519, 37.250368], + [-81.742242, 37.250853], + [-81.742133, 37.25099], + [-81.742041, 37.251135], + [-81.741993, 37.251225], + [-81.741958, 37.251344], + [-81.741913, 37.251543], + [-81.741888, 37.251704], + [-81.741883, 37.251721], + [-81.741812, 37.25197], + [-81.741775, 37.252078], + [-81.741701, 37.252295], + [-81.741625, 37.252517], + [-81.741538, 37.25273], + [-81.741461, 37.252872], + [-81.741366, 37.253008], + [-81.741337, 37.253042], + [-81.741256, 37.253135], + [-81.741207, 37.253183], + [-81.741116, 37.253348], + [-81.741043, 37.253518], + [-81.741019, 37.253585], + [-81.741016, 37.253593], + [-81.740946, 37.253792], + [-81.740905, 37.253966], + [-81.740881, 37.254142], + [-81.740879, 37.254231], + [-81.740901, 37.254324], + [-81.740944, 37.254416], + [-81.74095, 37.25443], + [-81.740965, 37.254451], + [-81.741009, 37.254511], + [-81.741067, 37.254571], + [-81.741177, 37.254654], + [-81.741315, 37.254739], + [-81.741403, 37.254784], + [-81.741596, 37.254857], + [-81.741651, 37.254867], + [-81.741687, 37.254874], + [-81.74175, 37.254885], + [-81.74215, 37.254923], + [-81.742325, 37.254952], + [-81.742495, 37.254993], + [-81.74258, 37.255025], + [-81.742705, 37.25509], + [-81.742819, 37.255166], + [-81.742922, 37.255253], + [-81.743012, 37.25535], + [-81.74311, 37.255477], + [-81.743228, 37.255594], + [-81.743307, 37.255655], + [-81.743341, 37.255681], + [-81.743465, 37.255756], + [-81.743566, 37.255808], + [-81.743647, 37.255864], + [-81.743738, 37.255942], + [-81.743816, 37.25603], + [-81.743878, 37.256126], + [-81.743925, 37.256228], + [-81.743956, 37.256334], + [-81.743931, 37.25647], + [-81.743915, 37.256517], + [-81.743892, 37.256582], + [-81.743837, 37.256689], + [-81.743716, 37.25686], + [-81.743666, 37.256959], + [-81.743638, 37.257045], + [-81.743632, 37.257063], + [-81.743626, 37.257112], + [-81.74363, 37.257252], + [-81.743637, 37.257304], + [-81.743646, 37.257363], + [-81.743683, 37.2575], + [-81.743753, 37.257671], + [-81.743787, 37.257719], + [-81.743841, 37.257771], + [-81.743908, 37.257814], + [-81.743984, 37.257845], + [-81.744049, 37.25786], + [-81.744413, 37.257855], + [-81.744538, 37.257874], + [-81.744658, 37.257909], + [-81.744782, 37.257956], + [-81.744879, 37.257978], + [-81.74498, 37.257987], + [-81.745081, 37.257982], + [-81.74518, 37.257962], + [-81.745235, 37.257948], + [-81.745279, 37.257937], + [-81.745358, 37.257933], + [-81.745437, 37.257942], + [-81.745512, 37.257965], + [-81.745578, 37.257999], + [-81.745615, 37.258033], + [-81.745664, 37.258101], + [-81.745701, 37.258192], + [-81.745711, 37.25827], + [-81.745711, 37.258426], + [-81.745689, 37.258613], + [-81.74563, 37.25876], + [-81.745603, 37.258862], + [-81.745579, 37.259026], + [-81.745567, 37.259234], + [-81.74557, 37.259728], + [-81.74558, 37.259885], + [-81.745581, 37.259909], + [-81.745584, 37.26008], + [-81.745569, 37.260251], + [-81.745548, 37.260364], + [-81.745499, 37.260497], + [-81.745486, 37.260521], + [-81.74544, 37.260602], + [-81.745366, 37.260701], + [-81.745305, 37.260771], + [-81.745268, 37.260845], + [-81.745256, 37.260911], + [-81.745261, 37.260978], + [-81.745283, 37.261044], + [-81.745476, 37.261352], + [-81.745648, 37.261656], + [-81.745761, 37.261816], + [-81.745827, 37.26189], + [-81.74584, 37.261904], + [-81.745912, 37.261958], + [-81.745993, 37.262001], + [-81.746082, 37.262031], + [-81.746165, 37.262046], + [-81.746362, 37.262072], + [-81.746413, 37.262092], + [-81.74643, 37.262104], + [-81.746466, 37.262139], + [-81.746486, 37.262181], + [-81.746491, 37.262216], + [-81.746481, 37.262299], + [-81.746453, 37.262379], + [-81.74637, 37.262513], + [-81.746295, 37.262661], + [-81.74621, 37.262894], + [-81.746136, 37.263149], + [-81.746113, 37.263212], + [-81.746043, 37.263405], + [-81.746027, 37.263501], + [-81.746028, 37.263598], + [-81.746053, 37.263657], + [-81.746094, 37.263709], + [-81.746149, 37.263752], + [-81.746215, 37.263784], + [-81.746288, 37.263802], + [-81.746349, 37.263807], + [-81.746482, 37.263794], + [-81.74666, 37.263776], + [-81.747035, 37.263723], + [-81.747244, 37.263687], + [-81.747331, 37.263687], + [-81.747416, 37.263701], + [-81.747495, 37.263729], + [-81.747565, 37.26377], + [-81.747682, 37.263849], + [-81.747757, 37.263918], + [-81.747783, 37.263948], + [-81.747838, 37.264028], + [-81.747864, 37.264079], + [-81.747926, 37.264224], + [-81.747942, 37.264263], + [-81.748309, 37.264168], + [-81.748832, 37.264046], + [-81.749214, 37.264037], + [-81.749465, 37.264061], + [-81.749836, 37.264088], + [-81.750111, 37.264193], + [-81.750291, 37.26454], + [-81.750542, 37.264799], + [-81.750652, 37.264912], + [-81.750773, 37.265009], + [-81.751065, 37.26497], + [-81.751159, 37.265039], + [-81.751242, 37.265049], + [-81.751298, 37.265065], + [-81.751322, 37.265076], + [-81.751411, 37.265115], + [-81.751515, 37.265178], + [-81.751542, 37.2652], + [-81.751606, 37.265252], + [-81.751822, 37.265457], + [-81.751889, 37.265528], + [-81.752127, 37.265575], + [-81.752342, 37.265618], + [-81.752573, 37.265764], + [-81.752642, 37.266103], + [-81.752813, 37.266264], + [-81.752916, 37.266621], + [-81.752945, 37.266723], + [-81.752973, 37.266733], + [-81.753611, 37.266979], + [-81.753715, 37.267035], + [-81.753733, 37.267048], + [-81.75381, 37.267102], + [-81.754022, 37.267273], + [-81.754109, 37.267327], + [-81.754275, 37.26741], + [-81.75438, 37.267452], + [-81.754451, 37.267481], + [-81.754597, 37.26753], + [-81.754712, 37.267556], + [-81.754822, 37.267595], + [-81.754942, 37.267659], + [-81.755023, 37.267718], + [-81.755029, 37.267722], + [-81.755387, 37.267577], + [-81.755559, 37.267513], + [-81.755821, 37.267458], + [-81.756042, 37.267547], + [-81.756323, 37.267781], + [-81.756625, 37.268], + [-81.756896, 37.268234], + [-81.757248, 37.268421], + [-81.75758, 37.268559], + [-81.75765, 37.268841], + [-81.757528, 37.269155], + [-81.757486, 37.269486], + [-81.757535, 37.270017], + [-81.757562, 37.270311], + [-81.75757, 37.270335], + [-81.757608, 37.270466], + [-81.757642, 37.270585], + [-81.757713, 37.270871], + [-81.757714, 37.270877], + [-81.757744, 37.271077], + [-81.757749, 37.271128], + [-81.757754, 37.271171], + [-81.757758, 37.271193], + [-81.757843, 37.271325], + [-81.757892, 37.271591], + [-81.757807, 37.271781], + [-81.757808, 37.27182], + [-81.757803, 37.271924], + [-81.757795, 37.272082], + [-81.757735, 37.272738], + [-81.757721, 37.2731], + [-81.75768, 37.273552], + [-81.757678, 37.273704], + [-81.75767, 37.273757], + [-81.757634, 37.27401], + [-81.757491, 37.274187], + [-81.757228, 37.274605], + [-81.756964, 37.275169], + [-81.756952, 37.275693], + [-81.756991, 37.27608], + [-81.757141, 37.276154], + [-81.757247, 37.276164], + [-81.757286, 37.276168], + [-81.757313, 37.27617], + [-81.757877, 37.276139], + [-81.758411, 37.276237], + [-81.758743, 37.276262], + [-81.758913, 37.276105], + [-81.758924, 37.276095], + [-81.759279, 37.27561], + [-81.759563, 37.275264], + [-81.759805, 37.275176], + [-81.760184, 37.275253], + [-81.760194, 37.27525], + [-81.760223, 37.275248], + [-81.76029, 37.275242], + [-81.760366, 37.275245], + [-81.76046, 37.275261], + [-81.760548, 37.275292], + [-81.760826, 37.275391], + [-81.761038, 37.275475], + [-81.761137, 37.275514], + [-81.761467, 37.275624], + [-81.761654, 37.275677], + [-81.76173, 37.27571], + [-81.761752, 37.275719], + [-81.762, 37.275827], + [-81.762292, 37.275828], + [-81.762675, 37.275675], + [-81.762711, 37.275577], + [-81.762816, 37.275524], + [-81.762995, 37.275416], + [-81.763175, 37.275325], + [-81.763379, 37.275258], + [-81.763548, 37.275226], + [-81.763688, 37.275219], + [-81.763825, 37.275231], + [-81.76384, 37.275225], + [-81.76444, 37.274987], + [-81.765199, 37.275106], + [-81.765282, 37.275119], + [-81.765401, 37.275043], + [-81.765663, 37.274855], + [-81.76572, 37.274814], + [-81.765726, 37.27481], + [-81.765765, 37.274781], + [-81.766259, 37.274469], + [-81.766627, 37.274288], + [-81.766775, 37.274222], + [-81.766894, 37.274169], + [-81.767106, 37.274109], + [-81.76713, 37.274102], + [-81.767273, 37.274091], + [-81.767388, 37.27409], + [-81.767508, 37.274105], + [-81.767661, 37.274141], + [-81.76778, 37.274182], + [-81.7678, 37.274189], + [-81.767851, 37.274218], + [-81.767899, 37.274194], + [-81.768403, 37.27394], + [-81.768625, 37.27378], + [-81.768706, 37.27357], + [-81.768868, 37.273313], + [-81.769221, 37.273257], + [-81.769583, 37.273314], + [-81.769725, 37.273404], + [-81.769803, 37.273477], + [-81.769846, 37.273517], + [-81.769864, 37.273535], + [-81.769983, 37.2737], + [-81.772723, 37.274321], + [-81.77283, 37.274224], + [-81.772836, 37.27422], + [-81.772956, 37.274128], + [-81.773248, 37.273919], + [-81.773601, 37.274001], + [-81.773872, 37.274195], + [-81.773865, 37.274396], + [-81.773863, 37.274423], + [-81.773854, 37.274513], + [-81.773911, 37.274731], + [-81.774208, 37.274834], + [-81.774626, 37.274718], + [-81.774651, 37.274734], + [-81.775181, 37.274835], + [-81.775392, 37.275021], + [-81.775704, 37.27507], + [-81.776076, 37.275281], + [-81.776297, 37.275467], + [-81.776841, 37.275476], + [-81.777214, 37.275558], + [-81.777241, 37.275639], + [-81.777279, 37.27575], + [-81.777286, 37.275771], + [-81.777323, 37.27588], + [-81.777493, 37.276292], + [-81.777734, 37.276591], + [-81.77816, 37.276809], + [-81.778181, 37.276821], + [-81.778843, 37.277128], + [-81.779153, 37.277272], + [-81.779307, 37.277371], + [-81.779354, 37.277401], + [-81.779363, 37.277423], + [-81.779415, 37.277548], + [-81.779464, 37.277667], + [-81.779392, 37.278175], + [-81.779367, 37.278315], + [-81.779279, 37.27882], + [-81.779267, 37.279352], + [-81.779331, 37.279761], + [-81.779366, 37.279989], + [-81.779637, 37.280304], + [-81.779972, 37.280466], + [-81.780068, 37.280513], + [-81.780422, 37.280685], + [-81.780996, 37.280775], + [-81.781162, 37.28078], + [-81.781338, 37.280785], + [-81.78155, 37.280728], + [-81.781791, 37.281003], + [-81.781817, 37.281585], + [-81.782128, 37.281949], + [-81.782162, 37.281989], + [-81.782452, 37.282327], + [-81.783126, 37.282587], + [-81.783549, 37.282588], + [-81.783702, 37.282545], + [-81.78375, 37.282531], + [-81.783822, 37.282511], + [-81.783837, 37.282507], + [-81.783862, 37.2825], + [-81.783961, 37.282445], + [-81.784346, 37.282235], + [-81.784649, 37.282268], + [-81.785021, 37.282333], + [-81.78516, 37.282641], + [-81.785181, 37.282688], + [-81.785291, 37.283011], + [-81.785462, 37.283237], + [-81.786036, 37.283263], + [-81.786076, 37.283256], + [-81.786146, 37.283244], + [-81.786248, 37.283227], + [-81.786505, 37.283179], + [-81.786611, 37.283167], + [-81.786622, 37.283173], + [-81.786902, 37.283321], + [-81.786902, 37.283539], + [-81.786907, 37.283656], + [-81.786909, 37.283704], + [-81.786911, 37.28374], + [-81.786921, 37.283958], + [-81.787223, 37.284056], + [-81.787726, 37.284105], + [-81.787795, 37.284154], + [-81.787907, 37.284235], + [-81.788412, 37.284357], + [-81.788774, 37.28435], + [-81.789036, 37.284415], + [-81.789298, 37.284423], + [-81.78952, 37.284238], + [-81.789974, 37.284143], + [-81.790206, 37.284095], + [-81.790236, 37.284022], + [-81.790238, 37.284016], + [-81.790251, 37.283971], + [-81.790318, 37.283748], + [-81.790324, 37.283671], + [-81.790328, 37.283613], + [-81.790338, 37.28349], + [-81.790673, 37.28312], + [-81.791006, 37.282911], + [-81.791349, 37.282799], + [-81.791462, 37.282681], + [-81.791751, 37.282381], + [-81.791814, 37.282011], + [-81.791837, 37.281863], + [-81.791866, 37.281672], + [-81.792127, 37.281519], + [-81.792702, 37.281311], + [-81.793126, 37.281175], + [-81.793267, 37.281256], + [-81.793414, 37.281341], + [-81.79355, 37.281626], + [-81.793636, 37.281807], + [-81.793669, 37.281877], + [-81.793693, 37.281969], + [-81.79372, 37.282072], + [-81.793643, 37.282195], + [-81.793404, 37.282578], + [-81.793201, 37.283191], + [-81.793119, 37.283545], + [-81.793299, 37.284303], + [-81.793378, 37.284634], + [-81.793599, 37.284845], + [-81.794019, 37.284803], + [-81.794083, 37.284797], + [-81.794456, 37.284717], + [-81.794778, 37.284605], + [-81.794785, 37.284608], + [-81.79483, 37.284624], + [-81.794903, 37.28465], + [-81.795322, 37.2848], + [-81.795543, 37.285002], + [-81.796198, 37.285133], + [-81.797316, 37.285208], + [-81.798122, 37.285258], + [-81.7983, 37.285174], + [-81.798485, 37.285089], + [-81.798658, 37.28488], + [-81.798686, 37.284853], + [-81.798899, 37.284639], + [-81.799131, 37.284712], + [-81.799473, 37.284882], + [-81.799504, 37.284997], + [-81.799508, 37.285011], + [-81.799535, 37.285109], + [-81.799633, 37.285334], + [-81.799965, 37.285496], + [-81.800347, 37.285642], + [-81.80068, 37.285683], + [-81.801164, 37.285474], + [-81.801201, 37.285377], + [-81.801207, 37.285362], + [-81.801222, 37.285322], + [-81.801346, 37.285144], + [-81.801648, 37.285129], + [-81.80195, 37.285194], + [-81.802167, 37.28536], + [-81.802223, 37.285404], + [-81.802351, 37.285534], + [-81.802494, 37.285679], + [-81.802997, 37.285857], + [-81.803279, 37.285923], + [-81.803984, 37.285923], + [-81.804729, 37.285933], + [-81.805385, 37.285628], + [-81.805418, 37.285484], + [-81.805421, 37.285471], + [-81.805498, 37.28512], + [-81.805635, 37.284772], + [-81.805791, 37.284581], + [-81.806275, 37.284364], + [-81.806699, 37.283994], + [-81.806882, 37.283641], + [-81.806974, 37.283391], + [-81.807236, 37.283182], + [-81.807639, 37.283199], + [-81.807911, 37.283288], + [-81.808204, 37.283103], + [-81.808547, 37.282983], + [-81.809173, 37.283009], + [-81.809186, 37.283004], + [-81.809474, 37.282902], + [-81.809598, 37.282869], + [-81.809756, 37.282839], + [-81.809879, 37.282839], + [-81.809976, 37.282851], + [-81.81012, 37.282884], + [-81.810192, 37.282901], + [-81.81034, 37.282921], + [-81.810489, 37.282927], + [-81.810685, 37.282921], + [-81.810849, 37.282902], + [-81.811041, 37.28286], + [-81.811073, 37.282847], + [-81.81108, 37.282844], + [-81.811207, 37.282793], + [-81.811364, 37.282713], + [-81.811391, 37.282697], + [-81.811516, 37.282632], + [-81.81166, 37.282548], + [-81.811797, 37.282465], + [-81.811911, 37.282395], + [-81.812246, 37.282237], + [-81.812305, 37.282219], + [-81.812521, 37.282151], + [-81.812589, 37.28213], + [-81.812736, 37.282084], + [-81.812871, 37.282001], + [-81.812906, 37.281979], + [-81.812896, 37.281936], + [-81.812894, 37.281928], + [-81.81289, 37.281911], + [-81.812887, 37.2819], + [-81.812862, 37.281791], + [-81.812812, 37.281517], + [-81.812974, 37.281243], + [-81.813226, 37.281098], + [-81.813771, 37.280954], + [-81.814259, 37.280972], + [-81.814312, 37.280982], + [-81.814435, 37.281004], + [-81.814779, 37.280755], + [-81.815192, 37.280699], + [-81.815655, 37.280733], + [-81.815938, 37.280587], + [-81.816069, 37.280306], + [-81.816283, 37.280016], + [-81.816706, 37.279872], + [-81.817412, 37.279809], + [-81.817804, 37.279931], + [-81.818096, 37.279923], + [-81.81815, 37.279978], + [-81.818167, 37.279996], + [-81.818257, 37.280077], + [-81.818439, 37.280013], + [-81.81862, 37.27986], + [-81.819014, 37.27957], + [-81.819629, 37.279418], + [-81.820193, 37.27946], + [-81.820506, 37.279415], + [-81.820619, 37.27941], + [-81.820926, 37.279397], + [-81.82112, 37.279389], + [-81.821463, 37.279398], + [-81.821724, 37.279644], + [-81.821921, 37.27974], + [-81.821952, 37.279755], + [-81.822016, 37.279786], + [-81.822267, 37.279867], + [-81.822761, 37.279901], + [-81.823173, 37.279799], + [-81.823226, 37.279786], + [-81.82326, 37.279765], + [-81.82327, 37.279759], + [-81.823547, 37.279628], + [-81.823759, 37.279637], + [-81.824021, 37.279694], + [-81.824394, 37.27963], + [-81.824657, 37.279596], + [-81.824969, 37.279556], + [-81.825069, 37.279543], + [-81.825102, 37.27949], + [-81.82514, 37.27943], + [-81.825594, 37.279108], + [-81.825755, 37.2791], + [-81.825855, 37.279318], + [-81.826065, 37.280165], + [-81.826346, 37.280722], + [-81.826527, 37.280739], + [-81.826759, 37.280699], + [-81.827403, 37.280797], + [-81.827776, 37.28079], + [-81.827997, 37.280976], + [-81.828269, 37.28125], + [-81.82851, 37.281477], + [-81.828862, 37.281485], + [-81.829014, 37.281357], + [-81.829377, 37.281212], + [-81.829401, 37.281214], + [-81.829689, 37.281237], + [-81.829981, 37.281302], + [-81.830345, 37.281158], + [-81.830547, 37.281038], + [-81.830829, 37.280973], + [-81.831131, 37.280958], + [-81.831574, 37.281112], + [-81.831738, 37.281307], + [-81.831826, 37.281411], + [-81.831844, 37.281509], + [-81.831845, 37.281517], + [-81.831852, 37.28156], + [-81.831875, 37.281685], + [-81.831936, 37.281725], + [-81.832141, 37.281708], + [-81.83276, 37.281651], + [-81.833248, 37.281622], + [-81.83394, 37.281529], + [-81.834474, 37.281769], + [-81.834624, 37.282078], + [-81.834544, 37.282667], + [-81.834391, 37.283094], + [-81.833865, 37.283399], + [-81.833811, 37.283646], + [-81.833804, 37.283682], + [-81.833789, 37.283709], + [-81.833768, 37.283736], + [-81.833757, 37.28375], + [-81.833744, 37.283767], + [-81.833511, 37.284067], + [-81.833409, 37.284544], + [-81.833413, 37.284557], + [-81.833562, 37.285019], + [-81.833701, 37.285108], + [-81.833902, 37.285237], + [-81.834436, 37.285424], + [-81.834822, 37.285469], + [-81.83506, 37.285496], + [-81.835289, 37.285417], + [-81.835297, 37.285414], + [-81.835313, 37.285409], + [-81.835331, 37.285403], + [-81.83538, 37.285386], + [-81.835463, 37.285357], + [-81.835493, 37.285347], + [-81.835524, 37.285336], + [-81.836007, 37.285337], + [-81.836403, 37.285628], + [-81.836783, 37.285771], + [-81.836833, 37.28579], + [-81.836924, 37.285823], + [-81.837276, 37.286033], + [-81.837598, 37.28609], + [-81.838112, 37.28618], + [-81.838302, 37.286256], + [-81.838469, 37.286324], + [-81.838494, 37.286334], + [-81.838525, 37.286336], + [-81.838766, 37.28635], + [-81.839028, 37.286174], + [-81.839402, 37.285973], + [-81.839694, 37.285997], + [-81.839966, 37.286079], + [-81.840369, 37.286095], + [-81.840893, 37.285855], + [-81.841206, 37.285678], + [-81.841246, 37.285655], + [-81.841276, 37.285638], + [-81.841369, 37.285509], + [-81.841499, 37.285332], + [-81.841842, 37.28526], + [-81.841976, 37.285242], + [-81.842083, 37.285228], + [-81.842243, 37.285309], + [-81.842268, 37.285396], + [-81.842272, 37.28541], + [-81.84235, 37.285431], + [-81.842368, 37.285439], + [-81.842589, 37.285535], + [-81.842641, 37.285554], + [-81.842651, 37.285558], + [-81.842791, 37.285607], + [-81.842899, 37.285625], + [-81.842996, 37.285628], + [-81.843009, 37.285629], + [-81.843119, 37.285618], + [-81.843174, 37.285606], + [-81.843203, 37.285599], + [-81.843293, 37.285565], + [-81.843324, 37.285555], + [-81.843695, 37.285433], + [-81.844169, 37.285369], + [-81.844563, 37.285265], + [-81.845017, 37.285096], + [-81.845157, 37.285201], + [-81.845464, 37.285249], + [-81.84551, 37.285315], + [-81.845973, 37.285356], + [-81.846284, 37.28535], + [-81.846505, 37.285237], + [-81.846528, 37.285162], + [-81.846534, 37.285144], + [-81.846637, 37.284802], + [-81.846811, 37.284656], + [-81.847234, 37.28477], + [-81.847395, 37.284838], + [-81.847425, 37.284851], + [-81.847498, 37.284882], + [-81.847566, 37.284964], + [-81.847858, 37.284948], + [-81.84812, 37.284909], + [-81.84818, 37.284989], + [-81.848321, 37.285191], + [-81.848542, 37.285401], + [-81.848774, 37.285442], + [-81.848938, 37.285374], + [-81.849151, 37.285339], + [-81.849211, 37.285329], + [-81.849246, 37.285323], + [-81.849349, 37.285299], + [-81.849356, 37.285297], + [-81.849671, 37.285202], + [-81.849953, 37.285234], + [-81.850124, 37.285452], + [-81.850244, 37.285783], + [-81.850082, 37.286097], + [-81.84987, 37.286411], + [-81.849799, 37.286887], + [-81.849842, 37.287153], + [-81.849848, 37.287193], + [-81.849861, 37.287276], + [-81.849969, 37.287436], + [-81.85015, 37.287557], + [-81.851026, 37.287583], + [-81.851299, 37.287535], + [-81.85155, 37.287559], + [-81.852155, 37.28773], + [-81.852316, 37.287779], + [-81.852416, 37.287803], + [-81.852658, 37.287763], + [-81.852809, 37.287704], + [-81.853322, 37.287628], + [-81.853445, 37.287633], + [-81.853557, 37.287713], + [-81.853634, 37.288174], + [-81.853781, 37.289048], + [-81.853928, 37.289711], + [-81.854069, 37.290044], + [-81.854081, 37.290397], + [-81.854028, 37.290778], + [-81.854063, 37.291215], + [-81.854299, 37.291888], + [-81.854312, 37.291926], + [-81.854264, 37.292147], + [-81.854191, 37.292353], + [-81.854149, 37.292472], + [-81.853996, 37.292865], + [-81.853949, 37.293032], + [-81.853923, 37.293196], + [-81.853911, 37.293274], + [-81.853849, 37.293576], + [-81.853705, 37.294068], + [-81.853689, 37.294154], + [-81.853642, 37.294205], + [-81.853201, 37.294675], + [-81.853042, 37.295257], + [-81.852683, 37.295964], + [-81.852377, 37.29631], + [-81.852286, 37.296582], + [-81.852318, 37.296671], + [-81.852319, 37.296694], + [-81.852454, 37.297363], + [-81.852477, 37.297446], + [-81.852481, 37.297571], + [-81.852487, 37.297712], + [-81.852506, 37.297809], + [-81.852707, 37.298011], + [-81.852848, 37.298116], + [-81.853149, 37.298204], + [-81.85333, 37.298277], + [-81.853533, 37.298279], + [-81.853698, 37.298168], + [-81.853784, 37.298069], + [-81.853806, 37.298045], + [-81.853877, 37.297969], + [-81.854121, 37.297886], + [-81.854447, 37.297876], + [-81.854621, 37.29792], + [-81.854845, 37.298038], + [-81.854867, 37.29826], + [-81.85493, 37.298597], + [-81.854944, 37.298905], + [-81.855006, 37.299094], + [-81.855051, 37.299465], + [-81.854994, 37.29977], + [-81.854914, 37.299861], + [-81.854527, 37.300008], + [-81.854514, 37.300018], + [-81.854473, 37.300049], + [-81.854298, 37.300157], + [-81.854216, 37.30022], + [-81.854147, 37.300292], + [-81.854132, 37.300315], + [-81.854114, 37.300343], + [-81.854092, 37.300405], + [-81.85375, 37.300774], + [-81.853757, 37.301236], + [-81.853812, 37.301528], + [-81.85398, 37.301927], + [-81.853991, 37.3023], + [-81.853978, 37.302544], + [-81.854126, 37.302698], + [-81.854291, 37.30289], + [-81.854322, 37.302925], + [-81.85435, 37.302957], + [-81.854531, 37.303441], + [-81.85457, 37.303812], + [-81.854529, 37.304102], + [-81.854448, 37.304464], + [-81.854347, 37.304819], + [-81.854303, 37.304927], + [-81.854298, 37.304939], + [-81.854205, 37.305166], + [-81.854157, 37.305233], + [-81.854083, 37.305431], + [-81.854143, 37.305633], + [-81.854264, 37.305883], + [-81.854384, 37.306182], + [-81.854404, 37.306303], + [-81.854464, 37.306577], + [-81.854756, 37.306747], + [-81.854973, 37.306754], + [-81.855015, 37.306756], + [-81.855528, 37.306776], + [-81.855602, 37.306779], + [-81.856036, 37.306749], + [-81.856408, 37.306591], + [-81.856489, 37.306553], + [-81.856566, 37.306517], + [-81.857206, 37.306219], + [-81.858033, 37.305737], + [-81.858377, 37.305514], + [-81.858413, 37.305491], + [-81.858931, 37.305158], + [-81.859284, 37.304873], + [-81.859316, 37.304847], + [-81.859436, 37.304747], + [-81.859628, 37.304772], + [-81.859849, 37.304958], + [-81.86003, 37.305208], + [-81.860252, 37.305402], + [-81.860705, 37.30554], + [-81.861249, 37.305597], + [-81.862035, 37.305655], + [-81.862259, 37.305874], + [-81.862588, 37.306478], + [-81.864018, 37.307319], + [-81.864036, 37.307381], + [-81.864049, 37.307426], + [-81.864058, 37.307456], + [-81.864072, 37.307586], + [-81.864087, 37.307714], + [-81.864167, 37.307851], + [-81.864349, 37.307941], + [-81.8645, 37.308215], + [-81.864764, 37.308411], + [-81.864945, 37.308505], + [-81.865092, 37.308582], + [-81.865153, 37.308614], + [-81.865251, 37.308692], + [-81.865303, 37.308718], + [-81.865317, 37.308745], + [-81.865379, 37.308865], + [-81.865556, 37.309209], + [-81.865687, 37.309491], + [-81.865525, 37.309813], + [-81.865433, 37.310127], + [-81.865282, 37.310401], + [-81.864999, 37.310788], + [-81.864514, 37.311287], + [-81.864009, 37.311867], + [-81.863716, 37.312237], + [-81.863212, 37.312438], + [-81.862798, 37.312687], + [-81.862324, 37.31292], + [-81.861931, 37.313016], + [-81.861608, 37.313096], + [-81.861487, 37.313306], + [-81.861234, 37.313523], + [-81.86077, 37.313732], + [-81.860164, 37.313827], + [-81.859932, 37.313972], + [-81.859821, 37.314149], + [-81.859871, 37.314319], + [-81.859961, 37.314593], + [-81.860051, 37.314932], + [-81.860151, 37.315351], + [-81.860271, 37.315722], + [-81.860493, 37.315949], + [-81.860839, 37.316117], + [-81.860884, 37.316139], + [-81.861098, 37.31624], + [-81.86139, 37.316168], + [-81.861673, 37.316144], + [-81.861935, 37.316169], + [-81.862106, 37.316314], + [-81.862226, 37.316645], + [-81.862387, 37.316992], + [-81.862648, 37.317371], + [-81.86291, 37.317549], + [-81.863393, 37.317953], + [-81.863745, 37.318276], + [-81.864047, 37.31847], + [-81.864174, 37.318527], + [-81.864951, 37.318876], + [-81.864984, 37.318891], + [-81.865205, 37.319045], + [-81.865507, 37.319343], + [-81.865587, 37.319521], + [-81.865607, 37.319698], + [-81.865718, 37.319795], + [-81.86602, 37.319787], + [-81.866234, 37.319811], + [-81.866292, 37.319755], + [-81.866485, 37.319763], + [-81.866533, 37.319763], + [-81.866675, 37.319764], + [-81.866867, 37.319788], + [-81.867058, 37.319877], + [-81.867098, 37.320039], + [-81.867037, 37.320216], + [-81.867039, 37.320235], + [-81.867043, 37.320274], + [-81.867059, 37.320423], + [-81.867077, 37.320579], + [-81.867198, 37.320724], + [-81.867429, 37.320845], + [-81.867974, 37.320814], + [-81.868821, 37.32059], + [-81.869143, 37.320582], + [-81.869728, 37.320502], + [-81.870183, 37.320674], + [-81.870289, 37.320782], + [-81.870324, 37.320818], + [-81.870363, 37.320858], + [-81.870443, 37.321068], + [-81.870694, 37.321423], + [-81.870925, 37.32173], + [-81.871046, 37.322004], + [-81.871267, 37.322303], + [-81.871539, 37.322295], + [-81.871943, 37.32224], + [-81.872255, 37.322208], + [-81.872456, 37.322369], + [-81.872728, 37.32266], + [-81.87297, 37.322975], + [-81.872949, 37.32308], + [-81.872666, 37.323321], + [-81.872474, 37.323651], + [-81.872423, 37.324119], + [-81.872432, 37.324149], + [-81.872434, 37.324155], + [-81.872448, 37.324204], + [-81.872461, 37.324248], + [-81.87249, 37.324347], + [-81.872514, 37.324431], + [-81.872543, 37.32453], + [-81.873016, 37.325008], + [-81.873217, 37.325073], + [-81.87336, 37.325119], + [-81.873371, 37.325138], + [-81.873567, 37.325474], + [-81.873664, 37.325642], + [-81.8737, 37.325727], + [-81.873716, 37.325815], + [-81.873714, 37.325919], + [-81.873721, 37.326001], + [-81.873748, 37.326088], + [-81.873769, 37.326129], + [-81.873843, 37.326201], + [-81.873977, 37.326356], + [-81.874036, 37.326465], + [-81.874101, 37.326612], + [-81.874119, 37.326652], + [-81.874141, 37.326812], + [-81.874138, 37.327073], + [-81.874124, 37.327198], + [-81.874092, 37.327322], + [-81.87406, 37.327393], + [-81.874005, 37.327485], + [-81.873992, 37.327534], + [-81.873996, 37.327585], + [-81.874017, 37.327633], + [-81.874063, 37.327681], + [-81.874308, 37.32782], + [-81.874736, 37.328078], + [-81.874868, 37.328158], + [-81.874922, 37.328181], + [-81.874995, 37.328197], + [-81.875071, 37.3282], + [-81.875146, 37.328188], + [-81.875194, 37.328169], + [-81.875282, 37.32811], + [-81.875357, 37.32804], + [-81.875528, 37.327826], + [-81.875541, 37.32781], + [-81.875699, 37.327611], + [-81.875738, 37.327582], + [-81.875763, 37.327569], + [-81.875812, 37.327544], + [-81.875894, 37.327519], + [-81.875943, 37.327513], + [-81.875981, 37.327508], + [-81.876117, 37.32751], + [-81.87624, 37.327527], + [-81.876336, 37.327551], + [-81.876739, 37.327702], + [-81.876812, 37.327729], + [-81.876909, 37.327782], + [-81.877054, 37.327862], + [-81.877155, 37.32795], + [-81.87721, 37.328016], + [-81.877266, 37.328105], + [-81.877437, 37.328512], + [-81.877508, 37.328636], + [-81.877597, 37.328753], + [-81.877649, 37.328803], + [-81.877712, 37.328841], + [-81.877774, 37.328863], + [-81.877831, 37.328875], + [-81.87791, 37.328877], + [-81.877941, 37.328872], + [-81.878018, 37.328858], + [-81.878184, 37.328834], + [-81.878252, 37.328826], + [-81.878327, 37.328835], + [-81.878349, 37.328837], + [-81.878112, 37.330246], + [-81.877989, 37.33048], + [-81.877929, 37.330595], + [-81.877744, 37.330816], + [-81.87765, 37.330911], + [-81.877527, 37.331036], + [-81.87738, 37.331216], + [-81.877325, 37.331426], + [-81.877471, 37.331625], + [-81.877675, 37.331742], + [-81.877849, 37.331796], + [-81.878142, 37.331698], + [-81.878228, 37.331669], + [-81.878407, 37.331586], + [-81.878598, 37.331591], + [-81.87869, 37.331662], + [-81.878717, 37.33176], + [-81.878721, 37.331912], + [-81.878956, 37.332007], + [-81.879004, 37.332037], + [-81.879093, 37.332107], + [-81.8791, 37.332113], + [-81.879172, 37.332192], + [-81.879306, 37.332461], + [-81.879321, 37.332479], + [-81.879358, 37.3325], + [-81.879401, 37.332507], + [-81.879437, 37.332503], + [-81.879476, 37.332486], + [-81.879504, 37.332458], + [-81.879513, 37.332424], + [-81.879513, 37.332354], + [-81.879487, 37.332261], + [-81.87948, 37.332196], + [-81.87949, 37.332131], + [-81.879518, 37.33207], + [-81.879523, 37.332064], + [-81.879562, 37.332015], + [-81.879623, 37.33197], + [-81.87966, 37.331928], + [-81.879713, 37.331789], + [-81.879724, 37.331767], + [-81.879739, 37.331735], + [-81.879825, 37.331594], + [-81.879835, 37.331578], + [-81.879932, 37.331454], + [-81.880037, 37.331345], + [-81.88018, 37.331226], + [-81.880292, 37.331179], + [-81.880411, 37.331144], + [-81.880986, 37.331041], + [-81.881209, 37.33078], + [-81.881565, 37.330516], + [-81.88189, 37.330262], + [-81.88218, 37.33016], + [-81.882482, 37.330172], + [-81.882704, 37.330192], + [-81.882835, 37.33019], + [-81.882965, 37.33018], + [-81.883154, 37.330072], + [-81.883304, 37.330054], + [-81.883596, 37.330065], + [-81.883841, 37.330198], + [-81.884064, 37.330258], + [-81.884328, 37.330351], + [-81.884492, 37.330461], + [-81.884796, 37.33052], + [-81.884836, 37.330541], + [-81.884889, 37.330514], + [-81.885038, 37.33045], + [-81.885049, 37.330446], + [-81.885167, 37.330404], + [-81.885369, 37.330366], + [-81.885575, 37.33034], + [-81.885794, 37.330328], + [-81.885983, 37.330328], + [-81.886219, 37.330341], + [-81.886279, 37.330355], + [-81.886373, 37.330377], + [-81.886522, 37.330426], + [-81.886546, 37.330437], + [-81.886558, 37.330442], + [-81.886663, 37.330488], + [-81.886915, 37.33066], + [-81.886975, 37.3307], + [-81.887054, 37.330754], + [-81.887131, 37.3308], + [-81.887266, 37.330867], + [-81.88741, 37.330922], + [-81.887662, 37.330991], + [-81.887782, 37.331036], + [-81.88779, 37.33104], + [-81.887813, 37.331052], + [-81.887872, 37.331081], + [-81.887975, 37.331148], + [-81.888249, 37.331375], + [-81.888439, 37.331521], + [-81.888542, 37.331579], + [-81.888655, 37.331626], + [-81.888747, 37.331652], + [-81.888775, 37.33166], + [-81.889018, 37.33168], + [-81.889312, 37.331684], + [-81.889459, 37.331697], + [-81.889603, 37.331724], + [-81.889692, 37.331754], + [-81.889713, 37.331754], + [-81.890012, 37.331835], + [-81.890221, 37.331876], + [-81.890352, 37.331885], + [-81.890482, 37.33188], + [-81.890611, 37.331861], + [-81.890691, 37.331837], + [-81.890785, 37.331796], + [-81.8909, 37.331729], + [-81.89102, 37.331672], + [-81.891046, 37.331663], + [-81.89115, 37.331628], + [-81.891206, 37.331614], + [-81.891213, 37.331608], + [-81.891589, 37.331306], + [-81.891935, 37.331083], + [-81.892155, 37.330875], + [-81.892405, 37.330559], + [-81.892524, 37.330387], + [-81.892671, 37.330232], + [-81.89288, 37.330137], + [-81.892919, 37.330119], + [-81.893033, 37.329997], + [-81.893286, 37.329905], + [-81.893341, 37.329892], + [-81.893442, 37.329868], + [-81.893585, 37.329852], + [-81.893704, 37.329922], + [-81.893726, 37.329967], + [-81.893784, 37.329982], + [-81.893888, 37.330023], + [-81.893992, 37.330097], + [-81.894065, 37.330165], + [-81.894173, 37.330291], + [-81.894316, 37.330438], + [-81.894331, 37.330454], + [-81.894504, 37.330608], + [-81.894729, 37.330785], + [-81.89484, 37.330894], + [-81.894935, 37.331013], + [-81.894993, 37.33111], + [-81.895016, 37.331162], + [-81.895048, 37.331235], + [-81.895055, 37.331261], + [-81.895089, 37.331389], + [-81.895096, 37.331476], + [-81.895008, 37.331533], + [-81.894949, 37.331587], + [-81.894794, 37.331781], + [-81.894781, 37.33181], + [-81.894774, 37.331862], + [-81.894781, 37.331903], + [-81.894806, 37.33195], + [-81.894847, 37.331991], + [-81.894891, 37.332016], + [-81.894961, 37.332041], + [-81.895021, 37.332051], + [-81.895098, 37.332052], + [-81.895173, 37.332038], + [-81.89539, 37.331957], + [-81.895421, 37.331968], + [-81.895478, 37.331975], + [-81.895499, 37.331978], + [-81.89556, 37.331985], + [-81.8957, 37.331987], + [-81.895709, 37.331986], + [-81.895926, 37.331965], + [-81.896005, 37.331966], + [-81.896104, 37.331975], + [-81.896498, 37.331977], + [-81.896793, 37.332101], + [-81.896874, 37.332155], + [-81.897335, 37.332463], + [-81.897342, 37.332476], + [-81.897367, 37.332523], + [-81.897386, 37.332558], + [-81.897442, 37.332661], + [-81.897747, 37.333221], + [-81.89794, 37.333677], + [-81.897302, 37.333897], + [-81.896817, 37.334203], + [-81.896683, 37.334392], + [-81.896632, 37.334464], + [-81.896603, 37.334907], + [-81.896631, 37.33531], + [-81.896636, 37.33539], + [-81.896825, 37.336095], + [-81.897011, 37.33668], + [-81.897062, 37.336765], + [-81.897152, 37.336921], + [-81.897195, 37.337002], + [-81.8972, 37.33701], + [-81.898467, 37.33929], + [-81.898916, 37.339556], + [-81.899168, 37.339566], + [-81.899303, 37.339547], + [-81.899357, 37.339539], + [-81.899559, 37.339511], + [-81.899681, 37.339581], + [-81.899725, 37.33971], + [-81.89979, 37.33996], + [-81.899768, 37.340268], + [-81.899668, 37.340715], + [-81.899664, 37.340733], + [-81.899657, 37.34084], + [-81.899661, 37.340886], + [-81.899663, 37.340903], + [-81.899498, 37.341108], + [-81.899448, 37.341186], + [-81.899426, 37.34142], + [-81.899605, 37.341614], + [-81.899951, 37.34191], + [-81.900499, 37.342079], + [-81.901061, 37.342038], + [-81.901814, 37.341986], + [-81.902183, 37.341893], + [-81.902234, 37.34188], + [-81.902323, 37.341858], + [-81.902536, 37.341783], + [-81.902667, 37.341797], + [-81.902894, 37.341987], + [-81.902979, 37.342171], + [-81.902993, 37.34232], + [-81.903008, 37.342331], + [-81.903149, 37.342435], + [-81.903303, 37.342565], + [-81.903405, 37.34267], + [-81.903516, 37.342813], + [-81.903588, 37.342888], + [-81.903613, 37.342915], + [-81.903717, 37.343002], + [-81.903779, 37.34304], + [-81.903793, 37.343046], + [-81.903822, 37.343098], + [-81.903899, 37.343233], + [-81.90401, 37.343248], + [-81.90417, 37.343213], + [-81.904285, 37.343155], + [-81.904309, 37.343143], + [-81.90443, 37.343082], + [-81.904685, 37.342891], + [-81.905013, 37.342717], + [-81.905949, 37.342782], + [-81.906272, 37.342771], + [-81.906369, 37.342751], + [-81.906403, 37.342744], + [-81.906531, 37.342645], + [-81.906852, 37.3426], + [-81.907165, 37.342643], + [-81.907269, 37.342779], + [-81.907281, 37.342852], + [-81.907288, 37.342891], + [-81.907422, 37.342976], + [-81.907462, 37.343002], + [-81.907569, 37.343088], + [-81.907653, 37.343179], + [-81.907749, 37.343305], + [-81.907823, 37.343427], + [-81.907907, 37.343541], + [-81.908029, 37.34367], + [-81.908151, 37.343801], + [-81.908421, 37.343849], + [-81.908535, 37.34387], + [-81.908667, 37.343932], + [-81.908712, 37.344148], + [-81.908636, 37.344326], + [-81.90845, 37.34457], + [-81.908329, 37.344641], + [-81.90829, 37.344664], + [-81.908124, 37.344761], + [-81.907946, 37.344885], + [-81.90785, 37.345039], + [-81.907915, 37.345231], + [-81.908211, 37.345388], + [-81.908848, 37.345275], + [-81.908904, 37.345266], + [-81.908972, 37.345255], + [-81.909173, 37.345244], + [-81.909537, 37.345303], + [-81.909652, 37.345462], + [-81.90964, 37.345539], + [-81.909617, 37.345666], + [-81.909561, 37.345984], + [-81.909472, 37.346286], + [-81.909538, 37.346904], + [-81.909607, 37.347808], + [-81.909608, 37.347823], + [-81.909628, 37.348078], + [-81.909749, 37.348463], + [-81.909977, 37.348749], + [-81.910224, 37.348962], + [-81.910375, 37.348952], + [-81.91089, 37.348766], + [-81.910941, 37.348747], + [-81.911005, 37.348725], + [-81.911138, 37.348732], + [-81.911406, 37.348754], + [-81.911784, 37.349172], + [-81.911873, 37.349275], + [-81.911955, 37.349346], + [-81.912061, 37.349352], + [-81.912333, 37.349316], + [-81.912579, 37.349284], + [-81.91263, 37.349277], + [-81.912795, 37.349256], + [-81.913266, 37.349176], + [-81.913458, 37.349213], + [-81.913731, 37.349281], + [-81.91426, 37.349551], + [-81.914413, 37.34956], + [-81.914615, 37.349597], + [-81.914857, 37.349601], + [-81.915047, 37.349581], + [-81.915135, 37.349475], + [-81.915144, 37.349411], + [-81.915152, 37.349354], + [-81.915349, 37.349158], + [-81.915571, 37.349194], + [-81.915846, 37.349327], + [-81.916129, 37.349386], + [-81.916493, 37.349421], + [-81.916682, 37.349353], + [-81.916782, 37.349288], + [-81.916821, 37.349262], + [-81.91693, 37.349196], + [-81.91718, 37.349127], + [-81.917451, 37.349123], + [-81.917488, 37.34913], + [-81.917654, 37.34916], + [-81.917798, 37.349294], + [-81.917831, 37.349423], + [-81.918037, 37.349572], + [-81.917762, 37.350369], + [-81.917711, 37.350463], + [-81.917586, 37.35065], + [-81.917573, 37.35067], + [-81.917537, 37.350723], + [-81.917544, 37.351005], + [-81.917728, 37.351123], + [-81.91786, 37.351153], + [-81.917946, 37.351227], + [-81.918199, 37.351445], + [-81.91825, 37.351847], + [-81.91824, 37.352242], + [-81.91845, 37.352568], + [-81.9186, 37.352944], + [-81.918878, 37.353165], + [-81.919413, 37.353245], + [-81.919897, 37.353286], + [-81.920283, 37.353409], + [-81.920441, 37.353672], + [-81.920647, 37.35428], + [-81.920654, 37.354399], + [-81.920657, 37.354453], + [-81.920681, 37.354851], + [-81.920711, 37.355359], + [-81.920741, 37.355408], + [-81.920828, 37.355553], + [-81.920901, 37.355652], + [-81.920926, 37.355685], + [-81.92095, 37.355715], + [-81.920985, 37.355758], + [-81.921022, 37.355801], + [-81.921061, 37.355845], + [-81.921152, 37.356011], + [-81.921234, 37.356156], + [-81.921574, 37.356428], + [-81.921625, 37.356704], + [-81.921766, 37.35708], + [-81.922256, 37.357338], + [-81.923242, 37.357725], + [-81.9235, 37.357962], + [-81.923636, 37.358177], + [-81.92382, 37.358279], + [-81.92409, 37.358211], + [-81.924364, 37.357925], + [-81.924509, 37.357542], + [-81.92453, 37.357418], + [-81.924536, 37.357383], + [-81.924541, 37.35735], + [-81.925034, 37.356948], + [-81.925306, 37.356976], + [-81.926273, 37.357943], + [-81.926311, 37.358078], + [-81.926412, 37.358355], + [-81.926484, 37.358522], + [-81.926574, 37.358683], + [-81.926595, 37.358714], + [-81.926645, 37.358817], + [-81.926749, 37.359033], + [-81.927099, 37.359757], + [-81.927486, 37.359936], + [-81.928146, 37.360167], + [-81.928466, 37.360468], + [-81.928501, 37.360652], + [-81.928467, 37.360878], + [-81.928199, 37.361414], + [-81.927835, 37.36216], + [-81.927587, 37.362767], + [-81.927576, 37.362794], + [-81.927551, 37.362857], + [-81.927372, 37.36331], + [-81.927322, 37.364132], + [-81.927187, 37.364335], + [-81.926949, 37.364492], + [-81.926701, 37.364625], + [-81.926664, 37.3647], + [-81.92655, 37.364922], + [-81.926448, 37.365065], + [-81.926224, 37.365196], + [-81.926187, 37.365218], + [-81.926083, 37.365278], + [-81.926006, 37.365384], + [-81.926024, 37.365441], + [-81.926049, 37.36552], + [-81.926193, 37.365639], + [-81.92668, 37.365768], + [-81.927026, 37.365816], + [-81.927195, 37.365814], + [-81.92732, 37.365806], + [-81.927403, 37.3658], + [-81.927774, 37.365774], + [-81.928333, 37.365855], + [-81.928678, 37.36597], + [-81.928838, 37.366043], + [-81.928862, 37.366055], + [-81.928866, 37.366241], + [-81.928921, 37.366393], + [-81.929083, 37.366422], + [-81.929333, 37.366386], + [-81.929659, 37.36641], + [-81.929811, 37.366456], + [-81.929911, 37.366601], + [-81.92993, 37.366629], + [-81.929977, 37.36662], + [-81.929989, 37.366625], + [-81.930025, 37.366641], + [-81.930078, 37.366723], + [-81.930084, 37.366741], + [-81.930198, 37.366735], + [-81.930311, 37.36673], + [-81.930434, 37.366791], + [-81.930568, 37.367027], + [-81.930879, 37.3674], + [-81.931219, 37.367676], + [-81.931562, 37.368089], + [-81.931956, 37.368558], + [-81.93256, 37.368951], + [-81.932979, 37.369186], + [-81.933386, 37.369348], + [-81.933334, 37.369655], + [-81.933239, 37.369898], + [-81.933198, 37.370261], + [-81.933239, 37.370671], + [-81.933178, 37.371018], + [-81.933089, 37.371502], + [-81.932944, 37.372092], + [-81.93306, 37.3723], + [-81.933377, 37.372512], + [-81.933783, 37.37265], + [-81.933899, 37.372754], + [-81.934031, 37.372872], + [-81.933978, 37.37317], + [-81.933797, 37.373584], + [-81.933415, 37.37396], + [-81.932767, 37.374236], + [-81.932166, 37.374342], + [-81.931769, 37.374558], + [-81.93121, 37.375118], + [-81.931143, 37.375231], + [-81.931064, 37.375473], + [-81.931147, 37.375764], + [-81.931451, 37.376013], + [-81.931467, 37.376073], + [-81.931575, 37.376488], + [-81.93176, 37.377004], + [-81.931819, 37.377051], + [-81.932074, 37.377253], + [-81.932102, 37.377259], + [-81.932549, 37.377356], + [-81.932924, 37.377685], + [-81.933147, 37.377846], + [-81.933884, 37.377803], + [-81.93463, 37.377848], + [-81.934965, 37.378137], + [-81.935189, 37.378467], + [-81.93537, 37.378453], + [-81.935411, 37.37845], + [-81.935876, 37.378561], + [-81.93607, 37.378851], + [-81.936379, 37.379738], + [-81.936538, 37.380168], + [-81.936748, 37.380737], + [-81.936246, 37.381183], + [-81.936087, 37.381514], + [-81.93597, 37.382096], + [-81.935874, 37.382863], + [-81.935714, 37.383154], + [-81.935001, 37.38365], + [-81.934116, 37.384024], + [-81.933252, 37.38469], + [-81.93261, 37.385185], + [-81.931815, 37.385486], + [-81.931753, 37.385918], + [-81.931728, 37.386092], + [-81.931509, 37.386601], + [-81.931735, 37.387198], + [-81.93205, 37.38756], + [-81.932112, 37.387575], + [-81.932546, 37.387679], + [-81.933062, 37.387983], + [-81.933267, 37.388443], + [-81.933462, 37.388918], + [-81.933695, 37.389095], + [-81.933605, 37.389224], + [-81.933749, 37.389731], + [-81.933853, 37.390095], + [-81.933887, 37.390659], + [-81.933175, 37.39142], + [-81.933095, 37.3915], + [-81.932837, 37.391756], + [-81.932784, 37.391809], + [-81.932725, 37.392043], + [-81.932272, 37.39211], + [-81.931656, 37.392097], + [-81.930892, 37.392455], + [-81.929906, 37.392887], + [-81.929515, 37.393308], + [-81.928992, 37.393536], + [-81.928782, 37.393852], + [-81.928966, 37.394206], + [-81.929392, 37.394632], + [-81.929323, 37.394882], + [-81.929052, 37.395264], + [-81.928973, 37.395375], + [-81.928975, 37.395666], + [-81.929279, 37.395907], + [-81.929857, 37.396292], + [-81.92993, 37.396703], + [-81.929976, 37.396862], + [-81.930054, 37.397131], + [-81.929744, 37.397503], + [-81.929141, 37.397957], + [-81.928284, 37.398066], + [-81.92814, 37.398291], + [-81.928025, 37.39847], + [-81.927931, 37.398585], + [-81.927754, 37.398802], + [-81.927948, 37.399181], + [-81.928283, 37.399406], + [-81.92871, 37.399815], + [-81.928862, 37.39996], + [-81.928856, 37.400167], + [-81.928845, 37.400541], + [-81.929057, 37.400605], + [-81.929976, 37.400714], + [-81.930215, 37.401022], + [-81.930333, 37.401173], + [-81.93079, 37.401663], + [-81.930741, 37.401898], + [-81.930353, 37.402731], + [-81.930292, 37.402986], + [-81.930159, 37.40354], + [-81.930097, 37.403797], + [-81.930234, 37.404636], + [-81.930205, 37.40474], + [-81.930046, 37.405298], + [-81.929641, 37.4054], + [-81.929492, 37.405438], + [-81.928918, 37.405561], + [-81.928794, 37.405649], + [-81.928596, 37.405788], + [-81.928509, 37.406337], + [-81.928177, 37.40646], + [-81.928048, 37.40652], + [-81.927342, 37.406851], + [-81.925768, 37.406881], + [-81.925013, 37.407344], + [-81.924955, 37.407342], + [-81.924286, 37.407323], + [-81.924483, 37.407584], + [-81.92451, 37.40762], + [-81.924603, 37.407991], + [-81.924676, 37.40837], + [-81.924588, 37.408483], + [-81.924346, 37.408791], + [-81.924449, 37.409122], + [-81.924418, 37.40929], + [-81.92439, 37.409437], + [-81.924556, 37.409993], + [-81.924153, 37.410221], + [-81.923438, 37.410453], + [-81.923398, 37.410466], + [-81.923168, 37.410822], + [-81.92296, 37.411396], + [-81.923152, 37.411419], + [-81.923485, 37.411386], + [-81.92404, 37.411512], + [-81.924728, 37.411744], + [-81.925233, 37.411814], + [-81.925942, 37.412143], + [-81.926349, 37.412738], + [-81.926805, 37.412922], + [-81.927494, 37.413258], + [-81.927821, 37.41379], + [-81.928158, 37.414507], + [-81.929047, 37.414608], + [-81.929551, 37.414469], + [-81.930036, 37.414556], + [-81.93015, 37.414599], + [-81.930223, 37.414678], + [-81.930395, 37.41475], + [-81.930455, 37.414798], + [-81.930631, 37.414832], + [-81.930758, 37.414829], + [-81.931, 37.414811], + [-81.931172, 37.414835], + [-81.931219, 37.41489], + [-81.932472, 37.415224], + [-81.932802, 37.415582], + [-81.932909, 37.415698], + [-81.933644, 37.416882], + [-81.933969, 37.417139], + [-81.934293, 37.417412], + [-81.934448, 37.417936], + [-81.934555, 37.418888], + [-81.934977, 37.420024], + [-81.935239, 37.420103], + [-81.935996, 37.42002], + [-81.936954, 37.419927], + [-81.937581, 37.420054], + [-81.937884, 37.420093], + [-81.93781, 37.421191], + [-81.938062, 37.421529], + [-81.938157, 37.421657], + [-81.938916, 37.422009], + [-81.938888, 37.422373], + [-81.938912, 37.422954], + [-81.938573, 37.423585], + [-81.938294, 37.424054], + [-81.938495, 37.424276], + [-81.938578, 37.424367], + [-81.939046, 37.424955], + [-81.93912, 37.425455], + [-81.939286, 37.426084], + [-81.939543, 37.426777], + [-81.940158, 37.428195], + [-81.940306, 37.428428], + [-81.940423, 37.428613], + [-81.940557, 37.429065], + [-81.940287, 37.429332], + [-81.939937, 37.429874], + [-81.939465, 37.430191], + [-81.938831, 37.430581], + [-81.938481, 37.431115], + [-81.938334, 37.431697], + [-81.937842, 37.432118], + [-81.936913, 37.432146], + [-81.936317, 37.432036], + [-81.935651, 37.432006], + [-81.935601, 37.432216], + [-81.935826, 37.432514], + [-81.935979, 37.43286], + [-81.936614, 37.433187], + [-81.936648, 37.433205], + [-81.936713, 37.433314], + [-81.936923, 37.433664], + [-81.937178, 37.434002], + [-81.937111, 37.434623], + [-81.936843, 37.435286], + [-81.936847, 37.435827], + [-81.936778, 37.436053], + [-81.936752, 37.436117], + [-81.93655, 37.436174], + [-81.935471, 37.436324], + [-81.93532, 37.436397], + [-81.935211, 37.436616], + [-81.935213, 37.43693], + [-81.93522, 37.436949], + [-81.93548, 37.437687], + [-81.935544, 37.438005], + [-81.935625, 37.438404], + [-81.935879, 37.438564], + [-81.93596, 37.438725], + [-81.936265, 37.43903], + [-81.936802, 37.439342], + [-81.936954, 37.43943], + [-81.937793, 37.439669], + [-81.938015, 37.439651], + [-81.938086, 37.439812], + [-81.938122, 37.439856], + [-81.93832, 37.440102], + [-81.938544, 37.440351], + [-81.938847, 37.44047], + [-81.939321, 37.440395], + [-81.939569, 37.440324], + [-81.939634, 37.440305], + [-81.939689, 37.440318], + [-81.939997, 37.440392], + [-81.940644, 37.440494], + [-81.941179, 37.440492], + [-81.941642, 37.440417], + [-81.941963, 37.440117], + [-81.942094, 37.439963], + [-81.942082, 37.439817], + [-81.942072, 37.439697], + [-81.942121, 37.439479], + [-81.942243, 37.439648], + [-81.942343, 37.439714], + [-81.942537, 37.43984], + [-81.94286, 37.439936], + [-81.942996, 37.439932], + [-81.943214, 37.439926], + [-81.943617, 37.439956], + [-81.943679, 37.439965], + [-81.943941, 37.440003], + [-81.944293, 37.439929], + [-81.944606, 37.439879], + [-81.945144, 37.439986], + [-81.945202, 37.439998], + [-81.945769, 37.440221], + [-81.945831, 37.440495], + [-81.945847, 37.44068], + [-81.945896, 37.441252], + [-81.945899, 37.441712], + [-81.945981, 37.441825], + [-81.946274, 37.441888], + [-81.946799, 37.442022], + [-81.947418, 37.442471], + [-81.947805, 37.443074], + [-81.947919, 37.443461], + [-81.947901, 37.443864], + [-81.947983, 37.444106], + [-81.948379, 37.444523], + [-81.948855, 37.44465], + [-81.94916, 37.445028], + [-81.949166, 37.445218], + [-81.949172, 37.445391], + [-81.949128, 37.445582], + [-81.949371, 37.445694], + [-81.949937, 37.445813], + [-81.950817, 37.445963], + [-81.951958, 37.445974], + [-81.952898, 37.446196], + [-81.95406, 37.446328], + [-81.954114, 37.446372], + [-81.954252, 37.446484], + [-81.954284, 37.44651], + [-81.954446, 37.446642], + [-81.955095, 37.447034], + [-81.955695, 37.447605], + [-81.955988, 37.447716], + [-81.95687, 37.44827], + [-81.957429, 37.4488], + [-81.957431, 37.449058], + [-81.957583, 37.44913], + [-81.957794, 37.448936], + [-81.958184, 37.448482], + [-81.958676, 37.448052], + [-81.959424, 37.447944], + [-81.960162, 37.448143], + [-81.960597, 37.448222], + [-81.960828, 37.448059], + [-81.961133, 37.44782], + [-81.961147, 37.447809], + [-81.96121, 37.447759], + [-81.961824, 37.447603], + [-81.962032, 37.447652], + [-81.96233, 37.447722], + [-81.962947, 37.447881], + [-81.963026, 37.447859], + [-81.96336, 37.447766], + [-81.964146, 37.447488], + [-81.964276, 37.447522], + [-81.964331, 37.447536], + [-81.964404, 37.447555], + [-81.964571, 37.447599], + [-81.964843, 37.447477], + [-81.96556, 37.446944], + [-81.965586, 37.446925], + [-81.966322, 37.446728], + [-81.967019, 37.446838], + [-81.967977, 37.4466], + [-81.968524, 37.44684], + [-81.969051, 37.447136], + [-81.969658, 37.447408], + [-81.970387, 37.447695], + [-81.970474, 37.448574], + [-81.970255, 37.448995], + [-81.970058, 37.449374], + [-81.97004, 37.449409], + [-81.970016, 37.449456], + [-81.969646, 37.44995], + [-81.969346, 37.450331], + [-81.969097, 37.45084], + [-81.968799, 37.451503], + [-81.969082, 37.451631], + [-81.969467, 37.451799], + [-81.969903, 37.452104], + [-81.970268, 37.452256], + [-81.970653, 37.45244], + [-81.971169, 37.452647], + [-81.971435, 37.452828], + [-81.971758, 37.453048], + [-81.972415, 37.453215], + [-81.972669, 37.453407], + [-81.972813, 37.45377], + [-81.972967, 37.454116], + [-81.973303, 37.454438], + [-81.973558, 37.45488], + [-81.973489, 37.455139], + [-81.973339, 37.455333], + [-81.973181, 37.455439], + [-81.973163, 37.455451], + [-81.973153, 37.455458], + [-81.972997, 37.455561], + [-81.97313, 37.455697], + [-81.973282, 37.455858], + [-81.973385, 37.456076], + [-81.973406, 37.456197], + [-81.973698, 37.456074], + [-81.974364, 37.456039], + [-81.974492, 37.456056], + [-81.97478, 37.456095], + [-81.974829, 37.456102], + [-81.974835, 37.456117], + [-81.974844, 37.456141], + [-81.974932, 37.456367], + [-81.975015, 37.456633], + [-81.975308, 37.456713], + [-81.975652, 37.456784], + [-81.97618, 37.457193], + [-81.976655, 37.457207], + [-81.977503, 37.457187], + [-81.978089, 37.457322], + [-81.978654, 37.457223], + [-81.979187, 37.457111], + [-81.9794, 37.457066], + [-81.980017, 37.457217], + [-81.980258, 37.456981], + [-81.980671, 37.45677], + [-81.98141, 37.456147], + [-81.981614, 37.455975], + [-81.982412, 37.455613], + [-81.982439, 37.4556], + [-81.983094, 37.455234], + [-81.984554, 37.45459], + [-81.984895, 37.454322], + [-81.985531, 37.454335], + [-81.986209, 37.454526], + [-81.98701, 37.454885], + [-81.987538, 37.455343], + [-81.987642, 37.455786], + [-81.987735, 37.456093], + [-81.98793, 37.456431], + [-81.987817, 37.457468], + [-81.987816, 37.45748], + [-81.987633, 37.458668], + [-81.987857, 37.458893], + [-81.988223, 37.459222], + [-81.988457, 37.459536], + [-81.988905, 37.460042], + [-81.989526, 37.460677], + [-81.99, 37.460602], + [-81.990839, 37.460776], + [-81.991577, 37.460893], + [-81.992274, 37.460923], + [-81.992237, 37.461326], + [-81.992433, 37.461866], + [-81.992761, 37.462502], + [-81.993427, 37.463879], + [-81.993574, 37.464637], + [-81.993322, 37.466059], + [-81.993409, 37.466946], + [-81.993141, 37.467529], + [-81.993014, 37.468175], + [-81.992976, 37.468457], + [-81.993373, 37.468851], + [-81.994021, 37.469154], + [-81.994111, 37.469198], + [-81.994152, 37.469218], + [-81.994873, 37.46957], + [-81.995653, 37.46984], + [-81.99582, 37.470663], + [-81.996079, 37.471533], + [-81.996022, 37.47205], + [-81.995711, 37.472229], + [-81.995257, 37.472312], + [-81.995308, 37.472473], + [-81.995478, 37.472696], + [-81.995507, 37.472735], + [-81.995553, 37.472795], + [-81.995537, 37.473311], + [-81.995628, 37.47365], + [-81.995682, 37.473851], + [-81.995959, 37.474447], + [-81.995942, 37.474646], + [-81.995933, 37.474758], + [-81.995913, 37.474996], + [-81.995837, 37.475659], + [-81.99595, 37.475835], + [-81.99596, 37.47585], + [-81.996164, 37.476166], + [-81.996582, 37.476712], + [-81.996503, 37.476931], + [-81.996237, 37.477066], + [-81.996222, 37.477073], + [-81.9961, 37.477134], + [-81.995859, 37.477413], + [-81.99578, 37.477507], + [-81.995601, 37.477887], + [-81.994927, 37.478229], + [-81.994563, 37.478473], + [-81.993981, 37.478863], + [-81.992978, 37.479804], + [-81.993061, 37.480199], + [-81.993155, 37.48057], + [-81.992975, 37.480853], + [-81.992746, 37.481225], + [-81.992537, 37.481686], + [-81.992528, 37.481832], + [-81.992771, 37.482115], + [-81.992803, 37.482153], + [-81.992836, 37.482556], + [-81.99292, 37.482976], + [-81.992628, 37.48313], + [-81.992401, 37.483181], + [-81.99171, 37.483336], + [-81.991517, 37.48358], + [-81.99139, 37.483741], + [-81.991231, 37.484138], + [-81.9909, 37.484438], + [-81.990265, 37.484618], + [-81.989853, 37.484886], + [-81.989659, 37.484918], + [-81.989137, 37.485003], + [-81.988047, 37.485177], + [-81.987549, 37.485179], + [-81.987138, 37.485181], + [-81.986667, 37.485409], + [-81.986584, 37.48545], + [-81.985808, 37.485661], + [-81.985707, 37.485688], + [-81.984806, 37.485474], + [-81.98454, 37.485246], + [-81.984328, 37.485064], + [-81.983863, 37.484978], + [-81.983066, 37.485159], + [-81.982278, 37.485114], + [-81.98135, 37.48532], + [-81.980331, 37.485454], + [-81.979763, 37.485117], + [-81.979173, 37.484611], + [-81.978122, 37.484584], + [-81.977597, 37.48461], + [-81.977447, 37.484853], + [-81.977407, 37.484918], + [-81.977346, 37.48494], + [-81.976833, 37.485122], + [-81.976472, 37.485472], + [-81.976444, 37.485826], + [-81.976495, 37.486089], + [-81.976518, 37.486205], + [-81.976397, 37.486303], + [-81.976206, 37.486456], + [-81.976027, 37.486788], + [-81.975948, 37.48724], + [-81.975759, 37.487701], + [-81.975175, 37.487873], + [-81.973882, 37.487912], + [-81.973236, 37.488004], + [-81.972853, 37.488167], + [-81.972522, 37.488499], + [-81.972199, 37.488557], + [-81.971664, 37.488568], + [-81.971076, 37.488513], + [-81.970663, 37.488475], + [-81.970604, 37.488621], + [-81.970707, 37.488959], + [-81.970832, 37.489443], + [-81.970734, 37.489911], + [-81.9702, 37.490107], + [-81.969515, 37.490377], + [-81.968718, 37.490501], + [-81.967707, 37.490506], + [-81.967489, 37.490599], + [-81.967133, 37.49075], + [-81.966754, 37.491389], + [-81.966633, 37.491562], + [-81.966584, 37.491632], + [-81.966636, 37.491898], + [-81.96668, 37.492214], + [-81.9667, 37.492358], + [-81.966645, 37.492409], + [-81.966348, 37.492682], + [-81.965967, 37.493023], + [-81.965327, 37.493334], + [-81.96499, 37.493495], + [-81.963929, 37.4935], + [-81.963514, 37.493365], + [-81.962547, 37.49305], + [-81.961114, 37.492584], + [-81.960346, 37.492555], + [-81.960313, 37.492543], + [-81.959587, 37.492292], + [-81.959357, 37.492189], + [-81.958411, 37.491764], + [-81.958055, 37.491689], + [-81.957217, 37.491511], + [-81.955915, 37.491581], + [-81.954369, 37.491684], + [-81.953842, 37.491509], + [-81.953268, 37.49177], + [-81.952685, 37.492281], + [-81.95276, 37.492886], + [-81.952694, 37.493507], + [-81.952739, 37.494169], + [-81.953092, 37.494259], + [-81.953174, 37.49428], + [-81.953571, 37.494698], + [-81.954171, 37.495309], + [-81.954368, 37.496091], + [-81.954273, 37.496979], + [-81.954277, 37.497536], + [-81.954078, 37.497994], + [-81.953999, 37.498175], + [-81.954032, 37.49861], + [-81.953853, 37.499095], + [-81.953896, 37.499434], + [-81.954081, 37.499829], + [-81.95389, 37.500117], + [-81.953151, 37.501321], + [-81.952645, 37.501685], + [-81.951835, 37.502057], + [-81.950549, 37.50226], + [-81.949192, 37.502383], + [-81.948321, 37.50227], + [-81.94745, 37.502133], + [-81.946335, 37.5019], + [-81.945961, 37.501908], + [-81.945353, 37.502272], + [-81.944715, 37.502604], + [-81.943916, 37.502936], + [-81.943825, 37.503291], + [-81.943897, 37.505683], + [-81.944161, 37.506337], + [-81.944192, 37.506983], + [-81.943251, 37.508293], + [-81.943049, 37.508616], + [-81.942644, 37.508851], + [-81.941439, 37.509312], + [-81.941155, 37.50949], + [-81.940801, 37.509442], + [-81.940193, 37.509216], + [-81.939453, 37.509508], + [-81.938147, 37.510114], + [-81.936547, 37.510479], + [-81.935058, 37.510512], + [-81.933428, 37.511248], + [-81.932283, 37.511968], + [-81.931918, 37.512211], + [-81.92773, 37.512121], + [-81.927685, 37.51212], + [-81.92764, 37.512152], + [-81.927399, 37.512372], + [-81.927216, 37.512554], + [-81.927054, 37.512718], + [-81.926681, 37.513064], + [-81.92644, 37.513328], + [-81.926247, 37.513581], + [-81.926171, 37.513778], + [-81.926143, 37.513987], + [-81.926162, 37.514066], + [-81.926198, 37.514218], + [-81.926254, 37.514377], + [-81.926357, 37.51457], + [-81.926416, 37.514647], + [-81.926467, 37.514712], + [-81.926729, 37.51496], + [-81.926943, 37.515086], + [-81.927053, 37.515163], + [-81.927198, 37.515339], + [-81.927302, 37.515377], + [-81.927516, 37.515432], + [-81.927771, 37.515526], + [-81.928074, 37.515614], + [-81.928281, 37.515685], + [-81.928542, 37.515802], + [-81.928943, 37.515982], + [-81.929185, 37.516108], + [-81.929343, 37.51618], + [-81.929509, 37.516235], + [-81.92964, 37.516251], + [-81.929957, 37.516262], + [-81.930137, 37.516306], + [-81.930247, 37.51635], + [-81.930461, 37.51646], + [-81.930502, 37.516487], + [-81.930585, 37.51657], + [-81.93075, 37.51663], + [-81.930957, 37.516746], + [-81.931068, 37.516839], + [-81.931364, 37.51713], + [-81.931647, 37.51746], + [-81.931806, 37.517619], + [-81.932082, 37.518026], + [-81.932185, 37.518147], + [-81.932351, 37.518421], + [-81.932792, 37.518993], + [-81.93304, 37.519251], + [-81.933206, 37.519377], + [-81.933268, 37.51941], + [-81.933358, 37.519443], + [-81.933523, 37.519482], + [-81.933744, 37.519498], + [-81.934061, 37.519476], + [-81.934179, 37.519454], + [-81.934468, 37.519372], + [-81.934492, 37.519362], + [-81.93473, 37.519268], + [-81.934792, 37.519229], + [-81.934834, 37.519191], + [-81.935006, 37.519009], + [-81.935324, 37.518603], + [-81.935496, 37.518306], + [-81.935558, 37.518169], + [-81.935606, 37.518009], + [-81.935867, 37.517397], + [-81.935896, 37.517328], + [-81.935986, 37.517048], + [-81.936013, 37.516889], + [-81.936041, 37.516466], + [-81.93603, 37.516295], + [-81.936013, 37.515999], + [-81.936103, 37.515427], + [-81.93642, 37.514949], + [-81.93642, 37.514894], + [-81.936503, 37.514724], + [-81.936669, 37.51446], + [-81.937014, 37.514158], + [-81.937393, 37.513845], + [-81.937736, 37.513607], + [-81.937765, 37.513587], + [-81.938255, 37.513372], + [-81.938739, 37.513102], + [-81.938903, 37.51301], + [-81.939007, 37.512965], + [-81.939088, 37.512931], + [-81.939168, 37.512897], + [-81.939469, 37.512768], + [-81.939993, 37.512598], + [-81.940204, 37.512572], + [-81.940642, 37.512521], + [-81.940938, 37.512521], + [-81.941352, 37.512477], + [-81.941462, 37.512477], + [-81.941911, 37.512504], + [-81.942449, 37.512592], + [-81.942621, 37.51263], + [-81.943421, 37.512878], + [-81.94378, 37.513026], + [-81.944263, 37.513284], + [-81.944659, 37.513578], + [-81.944752, 37.513647], + [-81.944821, 37.513746], + [-81.944821, 37.513927], + [-81.944801, 37.514114], + [-81.944677, 37.514229], + [-81.944635, 37.514306], + [-81.944649, 37.514367], + [-81.944718, 37.514487], + [-81.944752, 37.514564], + [-81.944877, 37.514773], + [-81.944954, 37.514932], + [-81.945015, 37.515059], + [-81.945035, 37.515075], + [-81.945056, 37.51518], + [-81.945056, 37.515295], + [-81.945084, 37.515377], + [-81.945187, 37.515603], + [-81.945318, 37.515822], + [-81.945415, 37.516075], + [-81.945449, 37.516229], + [-81.945453, 37.516357], + [-81.945456, 37.51641], + [-81.945442, 37.51652], + [-81.945374, 37.51673], + [-81.945325, 37.516883], + [-81.945208, 37.517141], + [-81.945029, 37.517388], + [-81.944953, 37.517503], + [-81.944691, 37.517899], + [-81.944553, 37.518081], + [-81.944529, 37.518121], + [-81.944153, 37.518767], + [-81.944091, 37.518971], + [-81.943989, 37.519107], + [-81.943884, 37.519245], + [-81.943774, 37.519421], + [-81.943677, 37.519553], + [-81.943587, 37.519647], + [-81.943511, 37.519795], + [-81.943463, 37.52002], + [-81.943498, 37.520273], + [-81.943505, 37.520553], + [-81.943498, 37.520641], + [-81.943512, 37.520767], + [-81.943622, 37.52113], + [-81.943725, 37.52135], + [-81.943919, 37.521657], + [-81.944174, 37.521949], + [-81.944236, 37.522004], + [-81.94436, 37.52208], + [-81.944652, 37.522284], + [-81.944698, 37.522317], + [-81.94505, 37.52258], + [-81.945312, 37.522745], + [-81.945719, 37.523042], + [-81.945996, 37.523218], + [-81.946099, 37.523284], + [-81.94625, 37.52341], + [-81.94663, 37.523696], + [-81.946726, 37.5238], + [-81.947037, 37.524239], + [-81.947172, 37.524454], + [-81.947196, 37.524492], + [-81.947299, 37.524635], + [-81.947485, 37.524965], + [-81.947617, 37.525448], + [-81.947603, 37.525712], + [-81.947617, 37.525915], + [-81.947596, 37.526064], + [-81.947596, 37.526657], + [-81.947582, 37.526805], + [-81.947465, 37.526998], + [-81.947424, 37.527091], + [-81.947403, 37.527168], + [-81.947389, 37.5273], + [-81.947348, 37.527459], + [-81.947127, 37.527833], + [-81.946982, 37.528036], + [-81.946817, 37.528239], + [-81.946672, 37.528399], + [-81.946389, 37.528679], + [-81.946042, 37.528985], + [-81.94601, 37.529014], + [-81.945768, 37.529206], + [-81.945685, 37.52925], + [-81.945437, 37.529338], + [-81.945278, 37.529432], + [-81.94494, 37.529586], + [-81.944588, 37.529783], + [-81.944541, 37.52982], + [-81.944457, 37.529888], + [-81.944414, 37.52991], + [-81.944285, 37.529981], + [-81.944175, 37.530053], + [-81.944027, 37.530173], + [-81.943926, 37.530256], + [-81.943911, 37.530277], + [-81.943816, 37.530404], + [-81.943781, 37.530514], + [-81.943733, 37.530734], + [-81.94374, 37.530888], + [-81.943761, 37.530976], + [-81.943806, 37.531091], + [-81.943809, 37.531097], + [-81.943857, 37.531168], + [-81.943968, 37.531289], + [-81.944078, 37.531366], + [-81.944257, 37.531448], + [-81.944444, 37.531487], + [-81.944982, 37.531558], + [-81.945168, 37.531563], + [-81.945348, 37.53158], + [-81.945493, 37.531613], + [-81.945762, 37.53186], + [-81.945913, 37.531943], + [-81.945982, 37.53197], + [-81.946136, 37.531978], + [-81.946189, 37.531981], + [-81.946258, 37.53197], + [-81.946479, 37.53191], + [-81.946624, 37.531838], + [-81.946686, 37.531794], + [-81.946755, 37.531728], + [-81.9469, 37.531635], + [-81.94691, 37.53163], + [-81.946986, 37.531595], + [-81.947045, 37.531569], + [-81.947094, 37.53153], + [-81.947107, 37.531514], + [-81.947072, 37.531475], + [-81.947021, 37.53146], + [-81.94694, 37.531438], + [-81.946914, 37.531431], + [-81.946893, 37.531404], + [-81.946902, 37.531387], + [-81.947203, 37.531316], + [-81.947562, 37.531206], + [-81.947779, 37.531146], + [-81.947962, 37.531096], + [-81.948128, 37.531036], + [-81.9483, 37.530986], + [-81.948583, 37.530865], + [-81.948624, 37.53086], + [-81.948659, 37.530871], + [-81.948666, 37.53092], + [-81.948659, 37.530981], + [-81.948714, 37.530981], + [-81.948873, 37.530893], + [-81.949142, 37.530712], + [-81.949356, 37.530607], + [-81.949466, 37.530541], + [-81.949777, 37.530321], + [-81.949901, 37.530211], + [-81.950025, 37.530124], + [-81.950149, 37.530019], + [-81.950272, 37.529944], + [-81.950908, 37.529563], + [-81.951046, 37.52947], + [-81.951094, 37.529431], + [-81.951108, 37.529415], + [-81.951163, 37.529354], + [-81.951171, 37.52934], + [-81.951232, 37.529239], + [-81.951301, 37.529162], + [-81.95136, 37.52912], + [-81.951441, 37.529064], + [-81.951598, 37.528953], + [-81.951742, 37.528882], + [-81.952005, 37.528843], + [-81.952115, 37.52881], + [-81.952281, 37.528739], + [-81.952584, 37.528535], + [-81.952722, 37.528415], + [-81.952783, 37.528382], + [-81.952846, 37.528349], + [-81.952915, 37.528321], + [-81.953025, 37.528294], + [-81.953398, 37.528217], + [-81.953764, 37.528167], + [-81.954184, 37.528151], + [-81.954847, 37.528205], + [-81.955357, 37.528288], + [-81.955599, 37.528315], + [-81.955799, 37.528354], + [-81.955971, 37.528398], + [-81.956254, 37.528485], + [-81.956413, 37.528546], + [-81.956509, 37.528601], + [-81.956647, 37.528694], + [-81.956758, 37.528787], + [-81.957065, 37.529144], + [-81.957075, 37.529156], + [-81.957393, 37.529612], + [-81.957476, 37.529798], + [-81.957552, 37.530035], + [-81.957558, 37.530095], + [-81.957565, 37.530359], + [-81.957579, 37.53048], + [-81.957576, 37.530542], + [-81.957572, 37.530606], + [-81.957586, 37.530716], + [-81.957593, 37.530941], + [-81.957559, 37.531348], + [-81.957393, 37.532375], + [-81.957387, 37.532551], + [-81.957394, 37.532661], + [-81.957336, 37.533115], + [-81.957332, 37.53315], + [-81.957263, 37.533469], + [-81.957166, 37.533688], + [-81.95709, 37.533809], + [-81.956814, 37.534172], + [-81.956649, 37.534425], + [-81.956677, 37.5346], + [-81.956822, 37.53487], + [-81.956987, 37.53504], + [-81.957084, 37.535166], + [-81.957215, 37.535309], + [-81.957291, 37.53538], + [-81.957381, 37.535446], + [-81.957532, 37.535512], + [-81.957622, 37.535523], + [-81.957732, 37.535529], + [-81.958057, 37.535512], + [-81.958312, 37.535545], + [-81.95854, 37.535545], + [-81.95874, 37.535572], + [-81.958843, 37.535578], + [-81.958933, 37.535578], + [-81.959285, 37.535545], + [-81.959664, 37.535468], + [-81.960354, 37.535276], + [-81.960775, 37.535089], + [-81.961009, 37.534962], + [-81.961347, 37.534797], + [-81.96181, 37.534616], + [-81.962151, 37.534498], + [-81.962355, 37.534429], + [-81.962582, 37.534308], + [-81.962741, 37.534242], + [-81.963045, 37.53416], + [-81.963486, 37.534022], + [-81.964203, 37.53372], + [-81.964321, 37.533659], + [-81.964567, 37.533572], + [-81.964679, 37.533527], + [-81.964828, 37.533485], + [-81.964893, 37.533467], + [-81.964983, 37.53345], + [-81.965328, 37.533335], + [-81.965622, 37.53325], + [-81.965888, 37.533175], + [-81.9661, 37.53311], + [-81.966314, 37.53306], + [-81.966611, 37.532977], + [-81.966804, 37.532939], + [-81.966949, 37.532923], + [-81.967087, 37.532928], + [-81.967177, 37.532944], + [-81.967349, 37.532993], + [-81.967466, 37.533027], + [-81.967618, 37.53306], + [-81.967722, 37.533104], + [-81.967908, 37.533224], + [-81.968205, 37.533461], + [-81.96844, 37.533691], + [-81.968543, 37.533812], + [-81.96864, 37.533906], + [-81.968833, 37.534175], + [-81.96893, 37.534372], + [-81.968992, 37.534548], + [-81.969006, 37.534636], + [-81.96902, 37.535087], + [-81.968978, 37.535559], + [-81.968958, 37.53568], + [-81.96893, 37.535708], + [-81.968896, 37.535768], + [-81.968882, 37.535823], + [-81.968696, 37.536257], + [-81.968522, 37.536592], + [-81.968489, 37.536658], + [-81.96842, 37.536812], + [-81.96833, 37.536949], + [-81.96831, 37.537043], + [-81.968337, 37.53718], + [-81.968331, 37.537252], + [-81.968275, 37.537378], + [-81.968241, 37.53751], + [-81.968158, 37.53773], + [-81.968119, 37.537816], + [-81.968016, 37.538042], + [-81.979919, 37.529665], + [-81.980096, 37.529542], + [-81.985175, 37.526007], + [-81.988927, 37.523389], + [-81.996059, 37.518423], + [-82.002675, 37.513796], + [-82.002748, 37.513746], + [-82.008864, 37.50946], + [-82.009015, 37.509353], + [-82.018232, 37.502889], + [-82.018307, 37.502836], + [-82.02079, 37.501096], + [-82.022371, 37.499985], + [-82.02375, 37.499043], + [-82.027692, 37.496343], + [-82.031326, 37.493857], + [-82.035261, 37.491164], + [-82.042408, 37.486274], + [-82.043166, 37.485755], + [-82.050306, 37.48087], + [-82.050659, 37.480628], + [-82.050721, 37.480585], + [-82.051073, 37.480344], + [-82.062024, 37.471645], + [-82.062055, 37.471627], + [-82.062441, 37.471353], + [-82.062896, 37.471034], + [-82.062936, 37.471007], + [-82.062979, 37.470976], + [-82.063199, 37.470823], + [-82.075044, 37.462521], + [-82.079471, 37.459419], + [-82.079651, 37.459292], + [-82.079866, 37.459143], + [-82.087333, 37.453909], + [-82.087392, 37.453868], + [-82.092264, 37.450453], + [-82.095156, 37.448392], + [-82.096005, 37.447788], + [-82.096746, 37.447262], + [-82.10104, 37.444202], + [-82.110064, 37.437853], + [-82.110123, 37.437812], + [-82.110262, 37.437715], + [-82.111545, 37.436816], + [-82.111872, 37.43659], + [-82.112119, 37.436417], + [-82.117034, 37.432984], + [-82.117098, 37.432939], + [-82.118777, 37.431767], + [-82.123409, 37.428446], + [-82.123973, 37.428056], + [-82.124049, 37.427999], + [-82.136748, 37.419182], + [-82.138149, 37.418209], + [-82.141568, 37.415834], + [-82.142987, 37.414849], + [-82.144445, 37.413859], + [-82.144495, 37.413826], + [-82.144805, 37.413615], + [-82.14978, 37.410235], + [-82.150076, 37.410035], + [-82.155342, 37.406461], + [-82.160024, 37.403295], + [-82.163859, 37.400667], + [-82.166556, 37.398807], + [-82.173417, 37.394078], + [-82.178978, 37.390302], + [-82.184016, 37.386873], + [-82.184909, 37.386268], + [-82.189043, 37.383451], + [-82.189857, 37.382898], + [-82.193687, 37.380287], + [-82.19643, 37.378399], + [-82.20258, 37.37417], + [-82.203026, 37.373862], + [-82.20311, 37.373805], + [-82.204146, 37.373092], + [-82.2115, 37.368033], + [-82.212214, 37.367541], + [-82.215094, 37.365503], + [-82.215163, 37.365455], + [-82.216574, 37.364455], + [-82.216929, 37.364203], + [-82.217195, 37.364015], + [-82.217294, 37.363944], + [-82.217449, 37.363837], + [-82.217629, 37.363708], + [-82.217824, 37.363572], + [-82.218713, 37.362939], + [-82.223917, 37.359249], + [-82.224947, 37.358528], + [-82.225235, 37.358322], + [-82.226291, 37.357576], + [-82.226629, 37.357334], + [-82.227567, 37.356666], + [-82.231715, 37.353729], + [-82.233632, 37.352383], + [-82.234007, 37.352122], + [-82.234113, 37.352048], + [-82.240977, 37.347236], + [-82.24144, 37.346913], + [-82.241915, 37.346578], + [-82.242122, 37.346435], + [-82.246197, 37.343572], + [-82.247064, 37.342967], + [-82.254517, 37.337748], + [-82.259933, 37.33395], + [-82.263768, 37.331228], + [-82.265686, 37.329868], + [-82.268335, 37.328007], + [-82.274741, 37.323541], + [-82.275688, 37.322884], + [-82.275873, 37.322756], + [-82.277501, 37.321637], + [-82.278902, 37.320673], + [-82.279442, 37.3203], + [-82.280872, 37.319318], + [-82.282213, 37.318395], + [-82.283111, 37.317767], + [-82.286158, 37.315635], + [-82.286394, 37.315469], + [-82.286449, 37.31543], + [-82.286796, 37.315188], + [-82.287674, 37.314574], + [-82.288878, 37.313731], + [-82.289008, 37.313641], + [-82.289106, 37.313573], + [-82.289287, 37.313443], + [-82.292194, 37.311411], + [-82.301019, 37.305236], + [-82.308456, 37.30007], + [-82.309294, 37.29949], + [-82.314356, 37.295973], + [-82.314624, 37.295789], + [-82.314845, 37.295631], + [-82.315615, 37.295095], + [-82.315759, 37.295005], + [-82.315883, 37.294926], + [-82.316012, 37.294837], + [-82.316128, 37.294727], + [-82.316252, 37.294529], + [-82.316285, 37.294381], + [-82.316277, 37.294249], + [-82.316324, 37.294084], + [-82.316427, 37.293907], + [-82.316475, 37.293831], + [-82.316604, 37.293757], + [-82.316769, 37.29368], + [-82.316907, 37.293647], + [-82.317085, 37.293589], + [-82.317167, 37.293561], + [-82.317216, 37.293542], + [-82.317294, 37.29349], + [-82.317346, 37.293267], + [-82.317385, 37.293052], + [-82.317377, 37.292925], + [-82.317383, 37.292782], + [-82.317334, 37.292667], + [-82.317292, 37.292557], + [-82.317265, 37.292448], + [-82.317285, 37.292337], + [-82.317311, 37.292178], + [-82.317351, 37.292062], + [-82.31742, 37.291842], + [-82.317431, 37.291709], + [-82.317462, 37.291553], + [-82.317465, 37.29138], + [-82.317471, 37.291335], + [-82.317485, 37.291214], + [-82.317506, 37.291123], + [-82.317514, 37.290961], + [-82.31754, 37.290878], + [-82.317625, 37.290632], + [-82.317694, 37.29045], + [-82.317761, 37.290333], + [-82.317843, 37.290163], + [-82.317953, 37.290015], + [-82.318013, 37.2899], + [-82.318124, 37.289844], + [-82.31826, 37.289795], + [-82.318391, 37.289694], + [-82.318513, 37.289611], + [-82.318684, 37.289413], + [-82.318787, 37.289237], + [-82.318861, 37.289037], + [-82.318889, 37.28889], + [-82.318889, 37.288724], + [-82.318901, 37.288618], + [-82.318871, 37.288412], + [-82.318905, 37.288197], + [-82.318911, 37.288132], + [-82.318965, 37.287972], + [-82.319033, 37.287813], + [-82.319142, 37.287608], + [-82.319189, 37.287485], + [-82.31934, 37.2873], + [-82.319442, 37.287144], + [-82.319552, 37.287023], + [-82.319654, 37.286907], + [-82.319722, 37.286835], + [-82.319804, 37.286749], + [-82.319941, 37.286642], + [-82.320141, 37.286494], + [-82.32032, 37.286384], + [-82.320483, 37.286267], + [-82.320619, 37.286185], + [-82.320847, 37.286068], + [-82.321052, 37.285986], + [-82.321292, 37.285892], + [-82.321485, 37.285802], + [-82.321601, 37.285753], + [-82.321827, 37.285651], + [-82.321944, 37.285609], + [-82.32217, 37.285497], + [-82.3223, 37.285387], + [-82.322465, 37.285283], + [-82.322629, 37.285127], + [-82.322794, 37.285012], + [-82.322924, 37.284907], + [-82.323027, 37.284812], + [-82.323129, 37.284762], + [-82.323261, 37.284697], + [-82.32374, 37.284293], + [-82.323811, 37.284179], + [-82.32386, 37.284086], + [-82.323897, 37.283919], + [-82.323975, 37.283816], + [-82.324118, 37.283565], + [-82.324234, 37.283435], + [-82.324352, 37.283262], + [-82.324475, 37.28312], + [-82.324575, 37.283036], + [-82.324722, 37.282988], + [-82.324921, 37.282931], + [-82.324967, 37.282937], + [-82.325168, 37.282974], + [-82.325375, 37.282995], + [-82.325513, 37.283022], + [-82.32576, 37.283004], + [-82.325905, 37.282988], + [-82.325964, 37.282987], + [-82.326111, 37.282961], + [-82.326246, 37.282938], + [-82.326457, 37.282948], + [-82.32669, 37.282935], + [-82.326819, 37.282935], + [-82.327087, 37.282899], + [-82.327207, 37.282897], + [-82.327352, 37.282907], + [-82.327569, 37.282896], + [-82.327851, 37.282855], + [-82.328085, 37.282826], + [-82.328291, 37.282782], + [-82.32852, 37.282746], + [-82.328881, 37.282643], + [-82.329039, 37.282613], + [-82.329198, 37.282582], + [-82.329568, 37.28254], + [-82.329836, 37.282519], + [-82.330064, 37.282447], + [-82.33031, 37.282385], + [-82.330689, 37.28229], + [-82.330984, 37.2822], + [-82.3311, 37.282175], + [-82.331321, 37.282161], + [-82.331527, 37.282133], + [-82.331692, 37.281989], + [-82.331821, 37.281902], + [-82.331945, 37.281819], + [-82.332019, 37.28168], + [-82.332094, 37.281548], + [-82.332225, 37.281461], + [-82.332334, 37.281409], + [-82.33254, 37.281419], + [-82.332746, 37.281351], + [-82.333069, 37.281348], + [-82.333342, 37.281334], + [-82.333537, 37.281301], + [-82.33365, 37.281274], + [-82.333833, 37.281191], + [-82.334018, 37.281135], + [-82.334206, 37.281111], + [-82.334451, 37.281162], + [-82.334537, 37.281181], + [-82.335006, 37.281375], + [-82.335521, 37.281584], + [-82.335732, 37.281597], + [-82.335811, 37.281598], + [-82.335905, 37.281572], + [-82.336035, 37.281546], + [-82.336214, 37.281467], + [-82.336543, 37.281246], + [-82.336589, 37.281131], + [-82.336638, 37.281009], + [-82.336594, 37.28087], + [-82.336452, 37.28036], + [-82.336423, 37.280257], + [-82.336396, 37.280013], + [-82.336411, 37.279832], + [-82.336467, 37.279746], + [-82.336616, 37.279654], + [-82.33675, 37.279609], + [-82.336931, 37.279586], + [-82.33731, 37.279588], + [-82.337723, 37.279609], + [-82.338005, 37.279683], + [-82.338357, 37.279782], + [-82.338721, 37.279907], + [-82.33901, 37.280013], + [-82.339272, 37.280116], + [-82.339427, 37.280176], + [-82.339653, 37.280306], + [-82.339751, 37.280432], + [-82.339806, 37.280542], + [-82.339855, 37.280641], + [-82.339886, 37.280782], + [-82.339877, 37.280878], + [-82.339932, 37.280988], + [-82.340098, 37.281074], + [-82.340284, 37.28114], + [-82.340415, 37.281172], + [-82.340619, 37.281187], + [-82.340794, 37.281123], + [-82.340978, 37.281056], + [-82.341224, 37.280974], + [-82.341491, 37.28089], + [-82.341614, 37.280867], + [-82.341753, 37.280844], + [-82.34182, 37.28083], + [-82.341953, 37.280829], + [-82.342169, 37.280876], + [-82.34234, 37.280986], + [-82.342485, 37.28115], + [-82.342582, 37.28121], + [-82.342678, 37.281258], + [-82.342796, 37.281237], + [-82.342919, 37.281147], + [-82.343393, 37.280922], + [-82.343614, 37.280859], + [-82.343805, 37.280684], + [-82.343816, 37.280545], + [-82.343837, 37.280433], + [-82.34382, 37.280304], + [-82.343814, 37.280144], + [-82.343771, 37.279924], + [-82.343771, 37.279832], + [-82.343767, 37.279633], + [-82.343772, 37.27951], + [-82.343808, 37.27936], + [-82.343774, 37.279287], + [-82.343732, 37.279154], + [-82.343594, 37.278985], + [-82.34344, 37.278769], + [-82.343385, 37.278661], + [-82.343322, 37.278562], + [-82.343253, 37.278462], + [-82.343129, 37.278347], + [-82.342991, 37.278249], + [-82.342935, 37.278123], + [-82.342878, 37.278009], + [-82.342793, 37.277684], + [-82.342796, 37.277594], + [-82.3428, 37.277497], + [-82.342804, 37.277379], + [-82.342848, 37.277235], + [-82.342942, 37.276996], + [-82.342934, 37.276892], + [-82.342895, 37.276819], + [-82.342823, 37.276683], + [-82.342786, 37.276513], + [-82.342767, 37.276381], + [-82.342682, 37.276193], + [-82.342585, 37.276074], + [-82.342495, 37.275969], + [-82.342418, 37.275804], + [-82.342377, 37.275684], + [-82.342313, 37.275514], + [-82.342251, 37.275408], + [-82.342244, 37.275293], + [-82.34228, 37.275067], + [-82.342251, 37.274908], + [-82.342033, 37.274598], + [-82.341995, 37.274346], + [-82.341989, 37.274139], + [-82.342093, 37.273959], + [-82.342446, 37.273619], + [-82.342694, 37.273447], + [-82.343112, 37.273227], + [-82.343341, 37.27316], + [-82.343861, 37.273103], + [-82.344253, 37.273136], + [-82.344756, 37.273109], + [-82.345078, 37.272944], + [-82.345258, 37.272845], + [-82.345468, 37.272734], + [-82.34568, 37.272686], + [-82.345879, 37.272658], + [-82.346306, 37.272634], + [-82.346533, 37.272611], + [-82.346847, 37.27259], + [-82.347075, 37.272588], + [-82.347247, 37.272532], + [-82.347364, 37.272486], + [-82.347673, 37.272458], + [-82.347853, 37.272406], + [-82.348058, 37.272347], + [-82.348328, 37.27225], + [-82.348517, 37.272154], + [-82.348682, 37.272055], + [-82.348866, 37.271927], + [-82.348976, 37.271793], + [-82.34912, 37.271684], + [-82.349236, 37.271525], + [-82.349256, 37.27142], + [-82.349228, 37.271266], + [-82.349179, 37.271171], + [-82.349081, 37.271061], + [-82.348991, 37.270887], + [-82.348873, 37.270695], + [-82.348853, 37.27064], + [-82.348818, 37.27047], + [-82.348824, 37.270333], + [-82.348884, 37.270145], + [-82.348945, 37.270056], + [-82.34902, 37.269985], + [-82.349088, 37.269929], + [-82.349171, 37.269897], + [-82.349274, 37.269863], + [-82.349294, 37.269798], + [-82.349253, 37.269749], + [-82.349108, 37.269665], + [-82.348907, 37.269574], + [-82.348845, 37.269492], + [-82.348803, 37.26936], + [-82.348789, 37.269244], + [-82.348817, 37.26906], + [-82.348889, 37.268946], + [-82.348964, 37.268781], + [-82.348981, 37.268725], + [-82.348998, 37.268665], + [-82.348991, 37.268561], + [-82.348929, 37.268446], + [-82.348811, 37.268358], + [-82.348679, 37.268299], + [-82.34859, 37.268255], + [-82.348582, 37.268162], + [-82.348645, 37.268045], + [-82.348761, 37.267951], + [-82.348898, 37.26788], + [-82.349103, 37.267803], + [-82.349268, 37.267757], + [-82.349501, 37.267694], + [-82.349749, 37.267619], + [-82.349996, 37.267479], + [-82.350216, 37.267369], + [-82.350455, 37.267252], + [-82.350634, 37.267149], + [-82.350873, 37.267025], + [-82.351023, 37.266971], + [-82.351196, 37.266926], + [-82.351346, 37.266875], + [-82.351477, 37.266781], + [-82.351592, 37.266677], + [-82.351772, 37.266549], + [-82.35197, 37.26646], + [-82.352162, 37.266405], + [-82.352361, 37.266366], + [-82.353421, 37.266092], + [-82.354475, 37.265791], + [-82.354839, 37.265493], + [-82.355287, 37.265263], + [-82.355334, 37.26524], + [-82.355429, 37.2652], + [-82.35554, 37.265154], + [-82.355751, 37.265128], + [-82.355964, 37.265105], + [-82.356232, 37.26507], + [-82.356602, 37.26502], + [-82.356815, 37.264981], + [-82.357022, 37.264975], + [-82.357169, 37.264989], + [-82.357476, 37.264977], + [-82.357683, 37.264941], + [-82.357984, 37.264883], + [-82.358224, 37.264815], + [-82.358746, 37.264759], + [-82.35878, 37.264758], + [-82.359159, 37.26475], + [-82.359443, 37.264751], + [-82.359771, 37.264735], + [-82.359998, 37.264721], + [-82.360334, 37.264704], + [-82.360522, 37.264692], + [-82.36102, 37.264652], + [-82.361194, 37.264641], + [-82.361384, 37.264642], + [-82.361678, 37.264625], + [-82.362277, 37.264587], + [-82.362458, 37.264558], + [-82.362711, 37.264476], + [-82.363014, 37.264398], + [-82.363229, 37.264327], + [-82.363496, 37.264266], + [-82.363711, 37.264228], + [-82.363915, 37.264212], + [-82.36404, 37.264193], + [-82.364299, 37.264189], + [-82.364513, 37.264182], + [-82.364645, 37.26416], + [-82.364745, 37.264144], + [-82.364979, 37.264071], + [-82.365123, 37.26396], + [-82.365271, 37.263804], + [-82.36539, 37.263678], + [-82.365473, 37.263607], + [-82.365596, 37.263535], + [-82.365815, 37.263413], + [-82.36596, 37.263331], + [-82.366138, 37.26323], + [-82.366348, 37.263098], + [-82.366568, 37.262965], + [-82.366719, 37.2629], + [-82.366891, 37.262848], + [-82.367089, 37.262808], + [-82.367254, 37.262803], + [-82.367618, 37.262739], + [-82.367805, 37.262685], + [-82.367952, 37.262616], + [-82.368154, 37.26253], + [-82.368305, 37.262464], + [-82.368468, 37.26238], + [-82.368537, 37.262381], + [-82.368992, 37.262362], + [-82.369294, 37.26237], + [-82.369507, 37.262383], + [-82.369724, 37.262371], + [-82.369933, 37.26237], + [-82.370127, 37.262357], + [-82.370278, 37.262323], + [-82.37047, 37.262258], + [-82.370587, 37.262224], + [-82.37075, 37.262145], + [-82.370908, 37.262064], + [-82.371005, 37.261937], + [-82.371096, 37.26186], + [-82.371256, 37.261711], + [-82.371495, 37.261592], + [-82.37189, 37.261609], + [-82.372102, 37.261525], + [-82.372178, 37.261476], + [-82.372402, 37.261393], + [-82.372692, 37.261285], + [-82.372851, 37.261226], + [-82.373061, 37.26118], + [-82.373253, 37.261093], + [-82.373465, 37.261], + [-82.373593, 37.260917], + [-82.373877, 37.260737], + [-82.374392, 37.260503], + [-82.374749, 37.260363], + [-82.374872, 37.260343], + [-82.374962, 37.260316], + [-82.376057, 37.260029], + [-82.376601, 37.259864], + [-82.376814, 37.259832], + [-82.376944, 37.259826], + [-82.377075, 37.259858], + [-82.377171, 37.259913], + [-82.377336, 37.259989], + [-82.37746, 37.260017], + [-82.377578, 37.260035], + [-82.37773, 37.260028], + [-82.3779, 37.260034], + [-82.37819, 37.260028], + [-82.378369, 37.260023], + [-82.378514, 37.260013], + [-82.378735, 37.259968], + [-82.378961, 37.259902], + [-82.379251, 37.25988], + [-82.379485, 37.259878], + [-82.379542, 37.259871], + [-82.379655, 37.259863], + [-82.379767, 37.25988], + [-82.380015, 37.259912], + [-82.380167, 37.259918], + [-82.381093, 37.260042], + [-82.381671, 37.259995], + [-82.381972, 37.259957], + [-82.3825, 37.259923], + [-82.38263, 37.259945], + [-82.382803, 37.25996], + [-82.383106, 37.260026], + [-82.383518, 37.260035], + [-82.383673, 37.259981], + [-82.383789, 37.259857], + [-82.38392, 37.259738], + [-82.384112, 37.25968], + [-82.384302, 37.259645], + [-82.38439, 37.259625], + [-82.384479, 37.259609], + [-82.384599, 37.259548], + [-82.384717, 37.259517], + [-82.384847, 37.259502], + [-82.384881, 37.259508], + [-82.385012, 37.259545], + [-82.385077, 37.259551], + [-82.385141, 37.259572], + [-82.385456, 37.25967], + [-82.385633, 37.259652], + [-82.385788, 37.259604], + [-82.386771, 37.258875], + [-82.387406, 37.258872], + [-82.388258, 37.259027], + [-82.388456, 37.259039], + [-82.388524, 37.25904], + [-82.388673, 37.258987], + [-82.388886, 37.258795], + [-82.38916, 37.258547], + [-82.389585, 37.258266], + [-82.389835, 37.258143], + [-82.389888, 37.258131], + [-82.390153, 37.258075], + [-82.390441, 37.258095], + [-82.390591, 37.258107], + [-82.390785, 37.258133], + [-82.391147, 37.258107], + [-82.391329, 37.258071], + [-82.3914, 37.258049], + [-82.391528, 37.258038], + [-82.391621, 37.258035], + [-82.391875, 37.257977], + [-82.391961, 37.257974], + [-82.392268, 37.257979], + [-82.392468, 37.257937], + [-82.392625, 37.257837], + [-82.392694, 37.257764], + [-82.392864, 37.257491], + [-82.392971, 37.25741], + [-82.393064, 37.257344], + [-82.393213, 37.257273], + [-82.393494, 37.257205], + [-82.393578, 37.257226], + [-82.393832, 37.257265], + [-82.39417, 37.257315], + [-82.394433, 37.257322], + [-82.39464, 37.25727], + [-82.394847, 37.257165], + [-82.395042, 37.25709], + [-82.395303, 37.25697], + [-82.395437, 37.256932], + [-82.395873, 37.256912], + [-82.396043, 37.25687], + [-82.396163, 37.256805], + [-82.396294, 37.256727], + [-82.396376, 37.256712], + [-82.396612, 37.256644], + [-82.396815, 37.256533], + [-82.396955, 37.256327], + [-82.39728, 37.256098], + [-82.397416, 37.256016], + [-82.397633, 37.255969], + [-82.398185, 37.255663], + [-82.398221, 37.255586], + [-82.398268, 37.255497], + [-82.398412, 37.255463], + [-82.398627, 37.255394], + [-82.398895, 37.255434], + [-82.399148, 37.255455], + [-82.399343, 37.255483], + [-82.39957, 37.255508], + [-82.399726, 37.255498], + [-82.399871, 37.255466], + [-82.400013, 37.255444], + [-82.400147, 37.255456], + [-82.400196, 37.255478], + [-82.400319, 37.255494], + [-82.400492, 37.255509], + [-82.400605, 37.255521], + [-82.400746, 37.255515], + [-82.400822, 37.255471], + [-82.400907, 37.255451], + [-82.401007, 37.255403], + [-82.401118, 37.255343], + [-82.401313, 37.25526], + [-82.401482, 37.255195], + [-82.401651, 37.255147], + [-82.402071, 37.255026], + [-82.402652, 37.254916], + [-82.402819, 37.254788], + [-82.403444, 37.254808], + [-82.403654, 37.254831], + [-82.403859, 37.254837], + [-82.404278, 37.254579], + [-82.40449, 37.254513], + [-82.404839, 37.254402], + [-82.405066, 37.254366], + [-82.40517, 37.254388], + [-82.405369, 37.254398], + [-82.4055, 37.254416], + [-82.405672, 37.254351], + [-82.405758, 37.254231], + [-82.4063, 37.253862], + [-82.40688, 37.253624], + [-82.407206, 37.2536], + [-82.407372, 37.253611], + [-82.407549, 37.253575], + [-82.407677, 37.25349], + [-82.407748, 37.253445], + [-82.40779, 37.253418], + [-82.407866, 37.253387], + [-82.408032, 37.253319], + [-82.40817, 37.253262], + [-82.408567, 37.253191], + [-82.40993, 37.253118], + [-82.410331, 37.253111], + [-82.410447, 37.253121], + [-82.410788, 37.253143], + [-82.410991, 37.253191], + [-82.411271, 37.253276], + [-82.411535, 37.253404], + [-82.411738, 37.253437], + [-82.411972, 37.253389], + [-82.412145, 37.25329], + [-82.412361, 37.253075], + [-82.412504, 37.252939], + [-82.412692, 37.252782], + [-82.412736, 37.252762], + [-82.412934, 37.252715], + [-82.413529, 37.25247], + [-82.414094, 37.252254], + [-82.414688, 37.252056], + [-82.415239, 37.25194], + [-82.415797, 37.251928], + [-82.41664, 37.251836], + [-82.417236, 37.251738], + [-82.417553, 37.251643], + [-82.417806, 37.251551], + [-82.418206, 37.251256], + [-82.418618, 37.250798], + [-82.418784, 37.250754], + [-82.419338, 37.250624], + [-82.420414, 37.250348], + [-82.420993, 37.250163], + [-82.422401, 37.249551], + [-82.422869, 37.249219], + [-82.423267, 37.249047], + [-82.423872, 37.248911], + [-82.425405, 37.248711], + [-82.426307, 37.248721], + [-82.426505, 37.248607], + [-82.427802, 37.247773], + [-82.428375, 37.247594], + [-82.429437, 37.24714], + [-82.430335, 37.246862], + [-82.433196, 37.246416], + [-82.43368, 37.246547], + [-82.433988, 37.246624], + [-82.434596, 37.246806], + [-82.434756, 37.246818], + [-82.43496, 37.246781], + [-82.435707, 37.246502], + [-82.435996, 37.246531], + [-82.436105, 37.246589], + [-82.436195, 37.246658], + [-82.436417, 37.246802], + [-82.436553, 37.246915], + [-82.436649, 37.247004], + [-82.436857, 37.247152], + [-82.437033, 37.247222], + [-82.437334, 37.247213], + [-82.437698, 37.247133], + [-82.437888, 37.247079], + [-82.438319, 37.247015], + [-82.438532, 37.247018], + [-82.438717, 37.247037], + [-82.438896, 37.247051], + [-82.439178, 37.247088], + [-82.439363, 37.247109], + [-82.439498, 37.247119], + [-82.43965, 37.247102], + [-82.439771, 37.247069], + [-82.439897, 37.247012], + [-82.439964, 37.246937], + [-82.44004, 37.246802], + [-82.440068, 37.246614], + [-82.440087, 37.246434], + [-82.440152, 37.24634], + [-82.440246, 37.246267], + [-82.440344, 37.24623], + [-82.440563, 37.246144], + [-82.440881, 37.246019], + [-82.441203, 37.245888], + [-82.441471, 37.245776], + [-82.441719, 37.245656], + [-82.442003, 37.245452], + [-82.442332, 37.245235], + [-82.442527, 37.245103], + [-82.442645, 37.244966], + [-82.442715, 37.244736], + [-82.442733, 37.244487], + [-82.44274, 37.244329], + [-82.442762, 37.244218], + [-82.442816, 37.243979], + [-82.442939, 37.243718], + [-82.443077, 37.243548], + [-82.443175, 37.243435], + [-82.443342, 37.243309], + [-82.44355, 37.24324], + [-82.443804, 37.243202], + [-82.44394, 37.243203], + [-82.44419, 37.243217], + [-82.44447, 37.243264], + [-82.44467, 37.243292], + [-82.444792, 37.243337], + [-82.444921, 37.243406], + [-82.445057, 37.243517], + [-82.445137, 37.243616], + [-82.445216, 37.243723], + [-82.445303, 37.243857], + [-82.445373, 37.243956], + [-82.44545, 37.244029], + [-82.445597, 37.244139], + [-82.445666, 37.244166], + [-82.445731, 37.244165], + [-82.445915, 37.244126], + [-82.446029, 37.244085], + [-82.446192, 37.244049], + [-82.446517, 37.243938], + [-82.4467, 37.243879], + [-82.446756, 37.243877], + [-82.44693, 37.243873], + [-82.447056, 37.243906], + [-82.447127, 37.243963], + [-82.447161, 37.24401], + [-82.447189, 37.244089], + [-82.447256, 37.244155], + [-82.447432, 37.244193], + [-82.447714, 37.244191], + [-82.447884, 37.244154], + [-82.448003, 37.244106], + [-82.448204, 37.243989], + [-82.44831, 37.243876], + [-82.448435, 37.243822], + [-82.448539, 37.243797], + [-82.448641, 37.243792], + [-82.448786, 37.243795], + [-82.448939, 37.243799], + [-82.449077, 37.243754], + [-82.449646, 37.243517], + [-82.450208, 37.243278], + [-82.450488, 37.243146], + [-82.450648, 37.243054], + [-82.450796, 37.242936], + [-82.450901, 37.242838], + [-82.451082, 37.242769], + [-82.451302, 37.242704], + [-82.451442, 37.242675], + [-82.451655, 37.242629], + [-82.45185, 37.242567], + [-82.452072, 37.242449], + [-82.452253, 37.242276], + [-82.452361, 37.2421], + [-82.452401, 37.241978], + [-82.452388, 37.241835], + [-82.452358, 37.24169], + [-82.452376, 37.241569], + [-82.452414, 37.241437], + [-82.452506, 37.241302], + [-82.452658, 37.241146], + [-82.452789, 37.241013], + [-82.452921, 37.240939], + [-82.453121, 37.240887], + [-82.453323, 37.240829], + [-82.453584, 37.240796], + [-82.453745, 37.240726], + [-82.453863, 37.240663], + [-82.453995, 37.240602], + [-82.454223, 37.24053], + [-82.454631, 37.240512], + [-82.454707, 37.240501], + [-82.454824, 37.240467], + [-82.455031, 37.240399], + [-82.455194, 37.240311], + [-82.45529, 37.240226], + [-82.455361, 37.240123], + [-82.455385, 37.24001], + [-82.455378, 37.239716], + [-82.455437, 37.239599], + [-82.455541, 37.239491], + [-82.455738, 37.239408], + [-82.455963, 37.239333], + [-82.456207, 37.23926], + [-82.456336, 37.239215], + [-82.456514, 37.23913], + [-82.456655, 37.239045], + [-82.456756, 37.23895], + [-82.456894, 37.238744], + [-82.457061, 37.238406], + [-82.457117, 37.238347], + [-82.457216, 37.238277], + [-82.457365, 37.238221], + [-82.457422, 37.238214], + [-82.457683, 37.238179], + [-82.457818, 37.238126], + [-82.458045, 37.238081], + [-82.458246, 37.23808], + [-82.458475, 37.238104], + [-82.458636, 37.238126], + [-82.458784, 37.238166], + [-82.458931, 37.238207], + [-82.459086, 37.238242], + [-82.459181, 37.238275], + [-82.459232, 37.238291], + [-82.459473, 37.238393], + [-82.459674, 37.238483], + [-82.459959, 37.238634], + [-82.460231, 37.23866], + [-82.460492, 37.238594], + [-82.461205, 37.238371], + [-82.461356, 37.238372], + [-82.461823, 37.238455], + [-82.462085, 37.238493], + [-82.462461, 37.23853], + [-82.462662, 37.238488], + [-82.462861, 37.238387], + [-82.463028, 37.23822], + [-82.46317, 37.237901], + [-82.463241, 37.237724], + [-82.463496, 37.237428], + [-82.463796, 37.23705], + [-82.464013, 37.236772], + [-82.464168, 37.236575], + [-82.464321, 37.236365], + [-82.464513, 37.236084], + [-82.464662, 37.235887], + [-82.464812, 37.235771], + [-82.465057, 37.235693], + [-82.465403, 37.235682], + [-82.465766, 37.235713], + [-82.466617, 37.235828], + [-82.467136, 37.235994], + [-82.467454, 37.236143], + [-82.467601, 37.236193], + [-82.467776, 37.236209], + [-82.46798, 37.236188], + [-82.468267, 37.236134], + [-82.46844, 37.236001], + [-82.468658, 37.235694], + [-82.468801, 37.235416], + [-82.468905, 37.235241], + [-82.469098, 37.235132], + [-82.469305, 37.235086], + [-82.469552, 37.235064], + [-82.469675, 37.235085], + [-82.469931, 37.235238], + [-82.470149, 37.235357], + [-82.470198, 37.235402], + [-82.470334, 37.235448], + [-82.470453, 37.235475], + [-82.470588, 37.235448], + [-82.470753, 37.235375], + [-82.470912, 37.235325], + [-82.471061, 37.235333], + [-82.47124, 37.235403], + [-82.471411, 37.23554], + [-82.47154, 37.23564], + [-82.471783, 37.235708], + [-82.472013, 37.235714], + [-82.472477, 37.235685], + [-82.47283, 37.235592], + [-82.473387, 37.235391], + [-82.473816, 37.235175], + [-82.474005, 37.235056], + [-82.474241, 37.234919], + [-82.474483, 37.234813], + [-82.474766, 37.234707], + [-82.475058, 37.234639], + [-82.4753, 37.234561], + [-82.475527, 37.23456], + [-82.475843, 37.234528], + [-82.476107, 37.234454], + [-82.476329, 37.234411], + [-82.476635, 37.234322], + [-82.477028, 37.234186], + [-82.4773, 37.234093], + [-82.477514, 37.234036], + [-82.47768, 37.233981], + [-82.477964, 37.233885], + [-82.478077, 37.233819], + [-82.478362, 37.233629], + [-82.478543, 37.233577], + [-82.478709, 37.233514], + [-82.478918, 37.233461], + [-82.479211, 37.233348], + [-82.479485, 37.233256], + [-82.479667, 37.233181], + [-82.479798, 37.233145], + [-82.479978, 37.233065], + [-82.480035, 37.233024], + [-82.480231, 37.232865], + [-82.480566, 37.232601], + [-82.480687, 37.232525], + [-82.480825, 37.232438], + [-82.481079, 37.232334], + [-82.481214, 37.232295], + [-82.481535, 37.23221], + [-82.481892, 37.232134], + [-82.482109, 37.232081], + [-82.482337, 37.23202], + [-82.482763, 37.231876], + [-82.483065, 37.231791], + [-82.483387, 37.231748], + [-82.483617, 37.231783], + [-82.483778, 37.231802], + [-82.484013, 37.231823], + [-82.484273, 37.231757], + [-82.484553, 37.231643], + [-82.484698, 37.231604], + [-82.484855, 37.231538], + [-82.485157, 37.231385], + [-82.485388, 37.231294], + [-82.485574, 37.231214], + [-82.485802, 37.23118], + [-82.486009, 37.231176], + [-82.486174, 37.231163], + [-82.486305, 37.231165], + [-82.486443, 37.231112], + [-82.486698, 37.230935], + [-82.486836, 37.230841], + [-82.486926, 37.230784], + [-82.487142, 37.230639], + [-82.487297, 37.230525], + [-82.487366, 37.23046], + [-82.487378, 37.230389], + [-82.48734, 37.230288], + [-82.48729, 37.230214], + [-82.487245, 37.230141], + [-82.487093, 37.230067], + [-82.486942, 37.230021], + [-82.486807, 37.229982], + [-82.486671, 37.229905], + [-82.486642, 37.229857], + [-82.486585, 37.229793], + [-82.486581, 37.229649], + [-82.486672, 37.229554], + [-82.486862, 37.22943], + [-82.486966, 37.229355], + [-82.487072, 37.229263], + [-82.487142, 37.229038], + [-82.487178, 37.228832], + [-82.487243, 37.228497], + [-82.487249, 37.228123], + [-82.487257, 37.227774], + [-82.487328, 37.227683], + [-82.487441, 37.227575], + [-82.4878, 37.227273], + [-82.488297, 37.226947], + [-82.488523, 37.226877], + [-82.488757, 37.226879], + [-82.488975, 37.226881], + [-82.489325, 37.226885], + [-82.489467, 37.22687], + [-82.489598, 37.226776], + [-82.489697, 37.226678], + [-82.48984, 37.226522], + [-82.489931, 37.22639], + [-82.490375, 37.225941], + [-82.490538, 37.225767], + [-82.490578, 37.225718], + [-82.490665, 37.22561], + [-82.490751, 37.225485], + [-82.490878, 37.225328], + [-82.491004, 37.225208], + [-82.491117, 37.225123], + [-82.491269, 37.225025], + [-82.49145, 37.224978], + [-82.491619, 37.224921], + [-82.492378, 37.224982], + [-82.492598, 37.225017], + [-82.493016, 37.225128], + [-82.493471, 37.225244], + [-82.49389, 37.225264], + [-82.49421, 37.225218], + [-82.494395, 37.225221], + [-82.494658, 37.22522], + [-82.494787, 37.225245], + [-82.494978, 37.22529], + [-82.495169, 37.225353], + [-82.495235, 37.225453], + [-82.495343, 37.225577], + [-82.495441, 37.225788], + [-82.495756, 37.226653], + [-82.495874, 37.226999], + [-82.495917, 37.22724], + [-82.49607, 37.227399], + [-82.496313, 37.227501], + [-82.496654, 37.22752], + [-82.496895, 37.227426], + [-82.497, 37.227347], + [-82.497135, 37.227255], + [-82.49735, 37.227168], + [-82.49768, 37.227129], + [-82.497985, 37.227058], + [-82.498413, 37.226993], + [-82.498634, 37.22697], + [-82.498751, 37.226965], + [-82.498917, 37.22689], + [-82.499057, 37.226783], + [-82.499226, 37.226632], + [-82.499311, 37.226534], + [-82.499542, 37.226356], + [-82.499717, 37.226248], + [-82.499806, 37.226206], + [-82.499883, 37.226169], + [-82.500232, 37.226017], + [-82.500518, 37.225956], + [-82.501185, 37.225592], + [-82.501584, 37.225458], + [-82.502102, 37.225404], + [-82.50247, 37.225211], + [-82.502836, 37.22502], + [-82.503199, 37.224916], + [-82.503813, 37.224857], + [-82.504118, 37.224699], + [-82.504147, 37.224608], + [-82.504358, 37.22442], + [-82.504892, 37.224114], + [-82.505955, 37.223805], + [-82.506258, 37.223565], + [-82.506688, 37.22336], + [-82.5077, 37.223013], + [-82.508061, 37.22276], + [-82.508471, 37.222581], + [-82.508512, 37.22243], + [-82.508488, 37.222183], + [-82.508423, 37.22192], + [-82.50832, 37.221503], + [-82.508271, 37.221049], + [-82.508373, 37.220731], + [-82.508556, 37.220576], + [-82.508993, 37.220379], + [-82.509202, 37.220188], + [-82.509309, 37.21994], + [-82.509294, 37.219541], + [-82.509338, 37.219347], + [-82.509628, 37.219135], + [-82.510076, 37.218708], + [-82.510654, 37.2183], + [-82.511206, 37.218078], + [-82.512272, 37.21786], + [-82.512607, 37.217618], + [-82.512903, 37.217271], + [-82.512982, 37.217223], + [-82.513294, 37.217048], + [-82.513483, 37.216937], + [-82.513528, 37.216914], + [-82.513748, 37.21683], + [-82.513946, 37.216779], + [-82.514124, 37.216756], + [-82.514152, 37.216751], + [-82.514359, 37.216718], + [-82.514561, 37.21671], + [-82.514873, 37.216686], + [-82.514967, 37.216685], + [-82.515093, 37.216647], + [-82.515202, 37.21659], + [-82.515302, 37.216452], + [-82.515324, 37.216424], + [-82.515439, 37.216259], + [-82.515492, 37.216157], + [-82.515588, 37.21601], + [-82.515676, 37.215884], + [-82.515829, 37.215763], + [-82.516012, 37.215615], + [-82.516281, 37.215345], + [-82.516446, 37.215203], + [-82.516575, 37.215064], + [-82.516716, 37.214865], + [-82.516789, 37.214766], + [-82.516859, 37.21466], + [-82.517085, 37.214446], + [-82.517212, 37.214325], + [-82.517472, 37.214199], + [-82.517678, 37.214156], + [-82.517935, 37.214127], + [-82.51831, 37.213936], + [-82.518539, 37.213787], + [-82.518656, 37.213702], + [-82.518888, 37.213555], + [-82.519134, 37.213382], + [-82.519291, 37.213293], + [-82.51945, 37.213228], + [-82.519682, 37.213115], + [-82.519935, 37.213025], + [-82.520153, 37.212945], + [-82.520269, 37.212813], + [-82.520337, 37.212671], + [-82.520437, 37.212461], + [-82.520593, 37.212255], + [-82.520757, 37.212117], + [-82.521011, 37.212023], + [-82.521161, 37.212004], + [-82.52138, 37.212057], + [-82.521551, 37.212125], + [-82.521725, 37.212199], + [-82.521876, 37.212263], + [-82.522252, 37.212435], + [-82.522425, 37.21253], + [-82.522624, 37.212618], + [-82.522782, 37.212743], + [-82.522915, 37.212879], + [-82.523026, 37.213007], + [-82.523137, 37.213229], + [-82.523237, 37.213422], + [-82.523294, 37.213643], + [-82.52333, 37.213818], + [-82.523318, 37.213939], + [-82.523298, 37.214109], + [-82.523318, 37.21416], + [-82.523376, 37.214374], + [-82.523452, 37.214451], + [-82.523585, 37.214559], + [-82.523687, 37.214575], + [-82.523894, 37.214591], + [-82.524107, 37.214629], + [-82.524259, 37.214704], + [-82.524382, 37.214823], + [-82.524473, 37.214906], + [-82.524557, 37.214966], + [-82.52466, 37.215006], + [-82.524798, 37.214992], + [-82.524962, 37.214916], + [-82.525161, 37.21482], + [-82.525429, 37.21469], + [-82.525561, 37.21465], + [-82.52582, 37.21463], + [-82.525938, 37.214612], + [-82.526088, 37.214598], + [-82.52633, 37.214508], + [-82.52662, 37.214397], + [-82.526783, 37.214327], + [-82.526981, 37.214276], + [-82.527242, 37.214213], + [-82.527475, 37.21415], + [-82.527941, 37.214022], + [-82.528216, 37.21396], + [-82.528506, 37.21389], + [-82.528716, 37.213814], + [-82.528862, 37.213737], + [-82.529092, 37.213502], + [-82.529216, 37.213443], + [-82.529322, 37.213393], + [-82.529377, 37.213376], + [-82.52957, 37.213367], + [-82.52981, 37.213344], + [-82.530022, 37.213328], + [-82.530594, 37.213043], + [-82.531393, 37.212605], + [-82.532021, 37.212117], + [-82.532046, 37.211846], + [-82.5319, 37.211534], + [-82.531926, 37.211405], + [-82.532232, 37.211038], + [-82.532228, 37.210824], + [-82.532083, 37.210546], + [-82.532147, 37.210177], + [-82.532061, 37.209863], + [-82.531649, 37.209097], + [-82.53111, 37.208586], + [-82.530795, 37.208354], + [-82.530796, 37.208293], + [-82.53085, 37.208236], + [-82.531862, 37.207599], + [-82.532297, 37.207233], + [-82.532526, 37.206933], + [-82.53263, 37.206743], + [-82.532944, 37.206563], + [-82.53313, 37.206541], + [-82.533381, 37.206508], + [-82.533517, 37.206497], + [-82.534154, 37.206496], + [-82.534363, 37.206518], + [-82.534711, 37.206547], + [-82.534992, 37.206594], + [-82.535192, 37.206628], + [-82.535269, 37.206656], + [-82.535399, 37.206762], + [-82.535493, 37.206838], + [-82.535585, 37.206835], + [-82.53577, 37.206839], + [-82.53604, 37.206836], + [-82.536171, 37.206821], + [-82.536392, 37.206804], + [-82.53672, 37.206803], + [-82.536824, 37.206892], + [-82.536892, 37.20703], + [-82.536928, 37.207074], + [-82.536981, 37.207121], + [-82.537127, 37.207201], + [-82.537234, 37.207178], + [-82.537283, 37.207052], + [-82.537338, 37.206975], + [-82.537361, 37.206927], + [-82.537491, 37.206733], + [-82.537567, 37.206643], + [-82.537753, 37.20654], + [-82.53801, 37.206451], + [-82.538281, 37.206421], + [-82.538391, 37.206438], + [-82.538642, 37.206522], + [-82.53879, 37.206591], + [-82.538874, 37.206646], + [-82.538949, 37.206693], + [-82.539019, 37.206741], + [-82.539142, 37.206804], + [-82.539293, 37.206894], + [-82.539372, 37.206925], + [-82.539516, 37.206938], + [-82.539605, 37.206937], + [-82.539796, 37.206863], + [-82.540008, 37.20679], + [-82.540221, 37.206723], + [-82.54044, 37.206655], + [-82.540673, 37.206587], + [-82.540851, 37.206572], + [-82.541064, 37.206575], + [-82.541188, 37.206553], + [-82.541432, 37.206512], + [-82.541486, 37.20646], + [-82.541507, 37.206416], + [-82.541606, 37.20626], + [-82.541821, 37.20595], + [-82.542029, 37.205699], + [-82.542214, 37.205544], + [-82.5424, 37.205472], + [-82.542633, 37.205427], + [-82.542893, 37.205376], + [-82.543086, 37.205336], + [-82.543243, 37.205301], + [-82.543438, 37.205178], + [-82.543441, 37.205028], + [-82.543432, 37.204959], + [-82.543465, 37.204855], + [-82.543512, 37.204771], + [-82.543641, 37.204639], + [-82.543771, 37.204529], + [-82.543893, 37.204369], + [-82.544111, 37.204211], + [-82.544378, 37.204052], + [-82.54448, 37.203984], + [-82.544624, 37.203879], + [-82.544746, 37.203784], + [-82.544916, 37.203559], + [-82.545017, 37.203448], + [-82.545282, 37.203264], + [-82.545515, 37.203126], + [-82.545617, 37.203089], + [-82.5457, 37.203059], + [-82.545878, 37.203034], + [-82.546036, 37.20304], + [-82.546195, 37.203093], + [-82.546313, 37.203193], + [-82.546838, 37.203491], + [-82.547038, 37.203551], + [-82.547097, 37.203558], + [-82.547309, 37.203545], + [-82.547486, 37.203464], + [-82.547716, 37.203353], + [-82.548094, 37.203163], + [-82.548223, 37.203092], + [-82.548415, 37.202986], + [-82.54872, 37.202815], + [-82.548976, 37.202705], + [-82.549101, 37.202755], + [-82.549146, 37.202894], + [-82.549174, 37.202953], + [-82.549182, 37.202972], + [-82.549259, 37.203141], + [-82.549364, 37.203289], + [-82.549482, 37.203427], + [-82.549566, 37.203567], + [-82.549664, 37.203683], + [-82.549664, 37.203805], + [-82.549666, 37.203913], + [-82.549646, 37.204128], + [-82.549662, 37.204316], + [-82.54976, 37.204448], + [-82.549919, 37.204544], + [-82.550078, 37.204566], + [-82.550227, 37.20456], + [-82.55038, 37.204532], + [-82.550593, 37.20449], + [-82.550716, 37.20443], + [-82.550858, 37.204356], + [-82.550907, 37.204329], + [-82.55105, 37.204251], + [-82.551267, 37.20411], + [-82.551754, 37.203728], + [-82.552264, 37.203491], + [-82.552452, 37.203385], + [-82.552643, 37.203273], + [-82.552777, 37.203195], + [-82.552872, 37.203135], + [-82.552975, 37.203096], + [-82.553071, 37.203096], + [-82.553208, 37.20311], + [-82.553299, 37.203115], + [-82.553394, 37.203103], + [-82.553545, 37.203063], + [-82.553661, 37.202998], + [-82.553714, 37.202955], + [-82.553848, 37.202861], + [-82.553782, 37.202454], + [-82.553318, 37.199254], + [-82.553309, 37.19919], + [-82.552577, 37.18992], + [-82.552558, 37.189767], + [-82.552554, 37.189729], + [-82.551871, 37.182759], + [-82.55177, 37.181738], + [-82.551701, 37.181011], + [-82.551668, 37.180667], + [-82.551653, 37.180516], + [-82.551652, 37.180509], + [-82.551413, 37.177891], + [-82.551385, 37.177583], + [-82.551073, 37.174167], + [-82.550729, 37.17039], + [-82.550631, 37.169314], + [-82.550624, 37.169247], + [-82.55062, 37.169207], + [-82.550611, 37.169146], + [-82.55039, 37.166185], + [-82.550191, 37.163522], + [-82.549904, 37.159711], + [-82.549809, 37.158441], + [-82.549807, 37.158418], + [-82.549473, 37.155728], + [-82.549473, 37.155723], + [-82.549395, 37.154884], + [-82.548927, 37.150282], + [-82.54882, 37.149222], + [-82.548664, 37.147687], + [-82.548237, 37.144551], + [-82.548233, 37.144299], + [-82.548231, 37.144206], + [-82.548189, 37.141345], + [-82.548188, 37.141307], + [-82.547965, 37.139079], + [-82.547964, 37.139067], + [-82.547782, 37.137245], + [-82.547688, 37.136309], + [-82.547635, 37.135739], + [-82.547458, 37.13387], + [-82.547458, 37.133862], + [-82.547398, 37.133217], + [-82.547379, 37.133142], + [-82.547202, 37.132487], + [-82.54716, 37.13234], + [-82.547155, 37.132321], + [-82.54694, 37.131628], + [-82.546936, 37.131597], + [-82.546721, 37.129836], + [-82.546642, 37.129194], + [-82.54637, 37.126445], + [-82.546243, 37.125109], + [-82.546224, 37.124989], + [-82.545454, 37.124995], + [-82.5442, 37.124998], + [-82.544059, 37.125005], + [-82.543915, 37.124999], + [-82.543515, 37.124451], + [-82.541897, 37.122236], + [-82.540486, 37.120304], + [-82.540432, 37.120231], + [-82.540371, 37.120148], + [-82.540318, 37.120074], + [-82.540227, 37.119957], + [-82.54012, 37.119817], + [-82.540086, 37.119773], + [-82.540048, 37.119724], + [-82.539895, 37.119526], + [-82.539741, 37.119326], + [-82.539075, 37.118462], + [-82.537401, 37.116291], + [-82.53673, 37.11542], + [-82.535178, 37.113407], + [-82.534064, 37.111962], + [-82.533363, 37.111052], + [-82.533357, 37.111044], + [-82.533034, 37.110625], + [-82.532679, 37.110165], + [-82.532673, 37.110158], + [-82.532029, 37.109322], + [-82.531713, 37.108911], + [-82.530848, 37.107789], + [-82.530325, 37.107111], + [-82.530222, 37.106978], + [-82.528975, 37.105345], + [-82.527587, 37.103529], + [-82.527575, 37.103513], + [-82.526216, 37.101715], + [-82.524653, 37.099647], + [-82.523788, 37.098503], + [-82.523763, 37.098471], + [-82.522946, 37.097439], + [-82.52213, 37.096409], + [-82.521541, 37.095648], + [-82.520317, 37.094063], + [-82.519595, 37.09313], + [-82.518332, 37.091495], + [-82.516824, 37.089543], + [-82.51622, 37.088761], + [-82.516209, 37.088747], + [-82.515007, 37.087192], + [-82.514564, 37.086618], + [-82.514024, 37.085916], + [-82.513573, 37.085329], + [-82.513439, 37.085155], + [-82.513345, 37.085032], + [-82.513227, 37.08488], + [-82.513069, 37.084687], + [-82.51243, 37.083911], + [-82.512123, 37.083515], + [-82.511771, 37.08306], + [-82.511398, 37.082577], + [-82.511075, 37.082157], + [-82.510704, 37.081675], + [-82.510311, 37.081164], + [-82.509927, 37.080666], + [-82.509537, 37.080159], + [-82.509087, 37.079575], + [-82.508682, 37.079049], + [-82.508267, 37.078509], + [-82.507902, 37.078035], + [-82.507503, 37.077516], + [-82.507067, 37.076951], + [-82.506666, 37.07643], + [-82.506234, 37.075869], + [-82.505844, 37.075361], + [-82.505453, 37.074854], + [-82.505094, 37.074388], + [-82.504744, 37.073933], + [-82.504373, 37.07345], + [-82.503998, 37.072963], + [-82.50361, 37.072459], + [-82.502749, 37.07134], + [-82.501418, 37.069611], + [-82.500273, 37.068123], + [-82.499899, 37.067637], + [-82.499879, 37.067611], + [-82.499279, 37.066841], + [-82.498023, 37.06523], + [-82.49765, 37.064751], + [-82.49743, 37.064472], + [-82.496697, 37.063545], + [-82.4966, 37.063423], + [-82.496861, 37.063319], + [-82.497065, 37.063238], + [-82.497277, 37.063167], + [-82.497366, 37.063112], + [-82.497496, 37.062953], + [-82.497592, 37.062793], + [-82.497852, 37.062524], + [-82.498216, 37.062265], + [-82.498394, 37.062023], + [-82.4984, 37.06193], + [-82.498297, 37.061771], + [-82.498078, 37.061612], + [-82.497865, 37.061496], + [-82.497701, 37.061436], + [-82.497605, 37.061299], + [-82.497323, 37.061228], + [-82.496974, 37.061288], + [-82.496686, 37.061255], + [-82.496323, 37.061288], + [-82.495911, 37.061338], + [-82.495761, 37.061322], + [-82.495637, 37.061283], + [-82.495424, 37.061031], + [-82.495246, 37.060844], + [-82.494931, 37.060548], + [-82.494498, 37.05996], + [-82.494421, 37.059833], + [-82.494354, 37.059724], + [-82.494272, 37.059553], + [-82.493997, 37.059262], + [-82.493949, 37.059152], + [-82.493928, 37.058834], + [-82.493866, 37.058548], + [-82.493859, 37.058345], + [-82.493777, 37.058175], + [-82.493749, 37.057999], + [-82.493619, 37.057812], + [-82.493598, 37.057762], + [-82.49355, 37.057647], + [-82.493372, 37.057378], + [-82.493235, 37.057241], + [-82.493207, 37.057164], + [-82.493207, 37.057065], + [-82.493275, 37.056928], + [-82.493282, 37.056834], + [-82.493269, 37.056741], + [-82.49285, 37.056225], + [-82.492788, 37.055994], + [-82.492774, 37.055846], + [-82.492774, 37.0555], + [-82.492801, 37.055274], + [-82.492861, 37.055068], + [-82.492952, 37.054752], + [-82.492986, 37.054456], + [-82.493054, 37.054368], + [-82.493205, 37.054263], + [-82.493411, 37.054181], + [-82.493637, 37.054027], + [-82.493993, 37.053691], + [-82.494301, 37.053422], + [-82.494315, 37.053378], + [-82.494315, 37.053307], + [-82.494267, 37.053175], + [-82.494191, 37.052873], + [-82.494143, 37.052455], + [-82.494136, 37.052043], + [-82.494149, 37.051829], + [-82.494164, 37.051747], + [-82.494217, 37.05145], + [-82.494272, 37.051351], + [-82.494608, 37.050917], + [-82.494628, 37.050779], + [-82.494545, 37.050269], + [-82.494559, 37.050043], + [-82.49499, 37.049307], + [-82.494997, 37.049164], + [-82.494976, 37.049093], + [-82.494921, 37.049054], + [-82.494784, 37.049043], + [-82.494599, 37.049065], + [-82.494428, 37.049137], + [-82.494305, 37.049175], + [-82.494222, 37.04917], + [-82.494169, 37.049141], + [-82.49414, 37.049126], + [-82.494044, 37.049027], + [-82.494023, 37.048813], + [-82.494058, 37.04867], + [-82.494153, 37.04856], + [-82.494188, 37.04845], + [-82.494201, 37.048351], + [-82.494174, 37.04823], + [-82.494043, 37.048066], + [-82.493934, 37.047873], + [-82.493892, 37.047659], + [-82.493775, 37.047302], + [-82.49359, 37.046912], + [-82.493254, 37.046561], + [-82.493103, 37.046396], + [-82.493041, 37.04627], + [-82.493034, 37.046149], + [-82.493041, 37.046], + [-82.493069, 37.045858], + [-82.493075, 37.04572], + [-82.493027, 37.045605], + [-82.492616, 37.04538], + [-82.492862, 37.045248], + [-82.492903, 37.045017], + [-82.492574, 37.044858], + [-82.492444, 37.044649], + [-82.49217, 37.044391], + [-82.492169, 37.044232], + [-82.49206, 37.044149], + [-82.491943, 37.044078], + [-82.491806, 37.043919], + [-82.491765, 37.043836], + [-82.491761, 37.04367], + [-82.491758, 37.043529], + [-82.491675, 37.04343], + [-82.491579, 37.043347], + [-82.491264, 37.043282], + [-82.49101, 37.043271], + [-82.490558, 37.043057], + [-82.49038, 37.043002], + [-82.490284, 37.042832], + [-82.489817, 37.042398], + [-82.489659, 37.042283], + [-82.489509, 37.04225], + [-82.489303, 37.042255], + [-82.489077, 37.042283], + [-82.488871, 37.042321], + [-82.488714, 37.042431], + [-82.488618, 37.042459], + [-82.488453, 37.04247], + [-82.488118, 37.042388], + [-82.488028, 37.042322], + [-82.487699, 37.042141], + [-82.487507, 37.042064], + [-82.487213, 37.04191], + [-82.487123, 37.041828], + [-82.486884, 37.041828], + [-82.486733, 37.041762], + [-82.486582, 37.041652], + [-82.48652, 37.041636], + [-82.48641, 37.04163], + [-82.486301, 37.041636], + [-82.486246, 37.041603], + [-82.486171, 37.04152], + [-82.486006, 37.041405], + [-82.485889, 37.041345], + [-82.48578, 37.041312], + [-82.48567, 37.041257], + [-82.485622, 37.041208], + [-82.485622, 37.041125], + [-82.48556, 37.040944], + [-82.485642, 37.040878], + [-82.485718, 37.040834], + [-82.485731, 37.040631], + [-82.485683, 37.040565], + [-82.485574, 37.040477], + [-82.485471, 37.040422], + [-82.485409, 37.040378], + [-82.485368, 37.040307], + [-82.485265, 37.040241], + [-82.485224, 37.04023], + [-82.485128, 37.04023], + [-82.485078, 37.040233], + [-82.484868, 37.040131], + [-82.484731, 37.040179], + [-82.484688, 37.040195], + [-82.484378, 37.040302], + [-82.484162, 37.040376], + [-82.484085, 37.040283], + [-82.484028, 37.040214], + [-82.482233, 37.038052], + [-82.482089, 37.037878], + [-82.482058, 37.037841], + [-82.481414, 37.037065], + [-82.480949, 37.036526], + [-82.480076, 37.036134], + [-82.478984, 37.035611], + [-82.477947, 37.034958], + [-82.477565, 37.034609], + [-82.477511, 37.033128], + [-82.477292, 37.032518], + [-82.477453, 37.031678], + [-82.477978, 37.028938], + [-82.478002, 37.028815], + [-82.478329, 37.027421], + [-82.478329, 37.027029], + [-82.478153, 37.026868], + [-82.477947, 37.02668], + [-82.477729, 37.02607], + [-82.477784, 37.025286], + [-82.478384, 37.024676], + [-82.478606, 37.024541], + [-82.478924, 37.024471], + [-82.479302, 37.024457], + [-82.479292, 37.024447], + [-82.479087, 37.024248], + [-82.478759, 37.023929], + [-82.477499, 37.022703], + [-82.477479, 37.022684], + [-82.477421, 37.022683], + [-82.476963, 37.022869], + [-82.476821, 37.022927], + [-82.476149, 37.022987], + [-82.47495, 37.022338], + [-82.474456, 37.022041], + [-82.473864, 37.022068], + [-82.473594, 37.022166], + [-82.473065, 37.02258], + [-82.472483, 37.022646], + [-82.4719, 37.022439], + [-82.471633, 37.022349], + [-82.471427, 37.022279], + [-82.471096, 37.02216], + [-82.470684, 37.022178], + [-82.469651, 37.022238], + [-82.469068, 37.022119], + [-82.468385, 37.021969], + [-82.467451, 37.022146], + [-82.467423, 37.022151], + [-82.467079, 37.021949], + [-82.466952, 37.021875], + [-82.463414, 37.019854], + [-82.463301, 37.01979], + [-82.460591, 37.018237], + [-82.460546, 37.018211], + [-82.45206, 37.013353], + [-82.4517, 37.013147], + [-82.450697, 37.012573], + [-82.450638, 37.012539], + [-82.44912, 37.011671], + [-82.448822, 37.0115], + [-82.443852, 37.008654], + [-82.443625, 37.008524], + [-82.442205, 37.00771], + [-82.442, 37.007593], + [-82.438485, 37.005581], + [-82.438331, 37.005493], + [-82.437658, 37.005117], + [-82.437513, 37.005036], + [-82.435962, 37.004149], + [-82.435936, 37.004134], + [-82.435461, 37.003862], + [-82.435039, 37.003621], + [-82.434906, 37.003545], + [-82.431847, 37.001794], + [-82.429864, 37.000654], + [-82.428916, 37.00011], + [-82.426219, 36.998547], + [-82.423359, 36.996889], + [-82.422577, 36.996436], + [-82.422464, 36.996371], + [-82.416023, 36.992636], + [-82.412582, 36.990644], + [-82.411653, 36.990106], + [-82.408756, 36.988429], + [-82.406283, 36.986997], + [-82.406138, 36.986913], + [-82.405994, 36.986829], + [-82.404714, 36.986088], + [-82.404503, 36.985966], + [-82.40432, 36.98586], + [-82.404288, 36.985842], + [-82.404078, 36.985794], + [-82.403617, 36.985794], + [-82.403455, 36.985857], + [-82.402897, 36.986076], + [-82.402758, 36.986122], + [-82.402287, 36.986277], + [-82.402077, 36.986357], + [-82.401786, 36.986469], + [-82.400966, 36.985802], + [-82.400742, 36.985627], + [-82.400673, 36.985614], + [-82.39931, 36.9847], + [-82.399268, 36.984656], + [-82.399143, 36.984588], + [-82.398687, 36.984342], + [-82.397336, 36.983876], + [-82.396576, 36.983498], + [-82.396235, 36.983185], + [-82.396195, 36.982814], + [-82.396055, 36.982372], + [-82.395695, 36.982202], + [-82.395065, 36.982119], + [-82.395024, 36.982114], + [-82.394481, 36.982194], + [-82.39424, 36.982229], + [-82.393549, 36.982406], + [-82.393356, 36.982463], + [-82.393247, 36.982496], + [-82.392906, 36.982448], + [-82.392709, 36.982279], + [-82.392635, 36.982215], + [-82.392578, 36.982192], + [-82.392137, 36.982022], + [-82.391268, 36.981685], + [-82.390795, 36.981484], + [-82.390684, 36.981433], + [-82.390667, 36.981425], + [-82.390461, 36.981228], + [-82.390115, 36.980788], + [-82.389939, 36.980629], + [-82.389866, 36.980566], + [-82.389323, 36.980335], + [-82.389059, 36.98024], + [-82.388952, 36.980201], + [-82.388888, 36.979965], + [-82.388867, 36.979936], + [-82.388769, 36.979804], + [-82.388307, 36.979732], + [-82.388261, 36.979725], + [-82.388188, 36.979735], + [-82.388082, 36.97975], + [-82.387858, 36.979781], + [-82.387468, 36.980002], + [-82.387425, 36.980027], + [-82.387037, 36.98022], + [-82.386955, 36.980334], + [-82.386614, 36.980632], + [-82.385035, 36.980661], + [-82.38491, 36.98066], + [-82.384599, 36.980646], + [-82.384295, 36.980633], + [-82.384093, 36.980585], + [-82.383585, 36.980464], + [-82.383356, 36.980413], + [-82.383349, 36.980411], + [-82.383345, 36.98041], + [-82.382776, 36.980384], + [-82.382766, 36.980384], + [-82.382545, 36.980389], + [-82.382495, 36.980411], + [-82.382307, 36.980507], + [-82.382033, 36.980581], + [-82.381966, 36.980565], + [-82.381958, 36.980563], + [-82.381833, 36.980532], + [-82.381115, 36.980357], + [-82.380244, 36.980293], + [-82.379493, 36.980543], + [-82.378862, 36.980786], + [-82.378672, 36.980601], + [-82.378861, 36.980038], + [-82.379006, 36.979622], + [-82.379021, 36.979579], + [-82.379682, 36.979256], + [-82.379849, 36.979106], + [-82.379919, 36.979043], + [-82.37993, 36.979033], + [-82.379989, 36.978859], + [-82.380082, 36.97858], + [-82.380282, 36.97829], + [-82.380362, 36.978231], + [-82.380586, 36.97758], + [-82.380539, 36.977476], + [-82.380531, 36.977302], + [-82.380527, 36.977228], + [-82.380527, 36.977223], + [-82.380507, 36.976809], + [-82.380314, 36.976148], + [-82.380197, 36.975739], + [-82.380191, 36.975515], + [-82.379859, 36.975381], + [-82.379835, 36.975371], + [-82.379377, 36.975186], + [-82.379323, 36.974983], + [-82.379309, 36.97493], + [-82.379019, 36.974882], + [-82.378877, 36.974864], + [-82.378781, 36.974851], + [-82.378605, 36.974827], + [-82.378527, 36.974815], + [-82.378448, 36.974803], + [-82.37837, 36.97479], + [-82.378291, 36.974777], + [-82.378214, 36.974763], + [-82.378136, 36.974749], + [-82.378058, 36.974734], + [-82.377927, 36.974709], + [-82.377444, 36.974984], + [-82.376831, 36.97492], + [-82.375726, 36.975018], + [-82.375205, 36.975195], + [-82.374874, 36.975501], + [-82.374683, 36.97564], + [-82.374421, 36.975618], + [-82.374415, 36.975567], + [-82.374404, 36.975531], + [-82.374387, 36.975478], + [-82.374326, 36.975288], + [-82.374003, 36.975171], + [-82.373542, 36.97528], + [-82.373254, 36.975461], + [-82.373225, 36.97549], + [-82.373106, 36.975608], + [-82.372687, 36.976029], + [-82.372611, 36.976105], + [-82.37226, 36.975908], + [-82.371432, 36.975443], + [-82.371389, 36.975418], + [-82.371356, 36.9754], + [-82.371402, 36.975365], + [-82.371466, 36.975317], + [-82.371435, 36.97523], + [-82.370891, 36.973715], + [-82.37072, 36.973555], + [-82.370593, 36.973512], + [-82.36915, 36.973029], + [-82.367808, 36.971931], + [-82.367812, 36.971565], + [-82.367813, 36.971451], + [-82.367776, 36.970983], + [-82.367621, 36.970679], + [-82.367238, 36.970586], + [-82.366785, 36.970526], + [-82.366599, 36.970469], + [-82.366145, 36.970329], + [-82.366104, 36.970316], + [-82.365956, 36.970164], + [-82.365381, 36.969574], + [-82.365268, 36.968885], + [-82.365259, 36.968832], + [-82.36525, 36.968777], + [-82.365427, 36.968555], + [-82.365625, 36.968304], + [-82.365638, 36.96829], + [-82.365662, 36.968264], + [-82.365686, 36.968228], + [-82.365737, 36.968152], + [-82.365741, 36.968146], + [-82.365772, 36.9681], + [-82.365738, 36.967826], + [-82.365552, 36.9674], + [-82.365416, 36.967098], + [-82.365107, 36.966412], + [-82.365078, 36.966235], + [-82.36504, 36.966002], + [-82.364926, 36.965728], + [-82.364702, 36.965481], + [-82.364278, 36.965308], + [-82.364228, 36.96528], + [-82.364179, 36.965252], + [-82.363701, 36.964983], + [-82.363669, 36.964838], + [-82.363917, 36.96465], + [-82.364003, 36.964629], + [-82.364267, 36.964565], + [-82.364559, 36.964643], + [-82.364836, 36.964652], + [-82.365007, 36.964377], + [-82.365178, 36.963897], + [-82.36512, 36.962843], + [-82.365319, 36.962408], + [-82.365397, 36.962353], + [-82.365376, 36.96234], + [-82.36533, 36.962313], + [-82.365293, 36.962292], + [-82.365247, 36.962265], + [-82.365206, 36.96224], + [-82.365159, 36.962214], + [-82.365109, 36.962183], + [-82.365091, 36.962172], + [-82.365015, 36.962131], + [-82.364889, 36.962063], + [-82.364478, 36.961835], + [-82.364436, 36.961804], + [-82.364, 36.961462], + [-82.363953, 36.961133], + [-82.363425, 36.960709], + [-82.363052, 36.960495], + [-82.36305, 36.960359], + [-82.363248, 36.96026], + [-82.363436, 36.959976], + [-82.363634, 36.959989], + [-82.363855, 36.960111], + [-82.36397, 36.960117], + [-82.363606, 36.959845], + [-82.362606, 36.958976], + [-82.362491, 36.958747], + [-82.362194, 36.958245], + [-82.36232, 36.95797], + [-82.362397, 36.957711], + [-82.362474, 36.957524], + [-82.362623, 36.957434], + [-82.3627, 36.957159], + [-82.362756, 36.956892], + [-82.362883, 36.956681], + [-82.363042, 36.956583], + [-82.363084, 36.956576], + [-82.363118, 36.95657], + [-82.363113, 36.956538], + [-82.36309, 36.956388], + [-82.362756, 36.9561], + [-82.362746, 36.956091], + [-82.362233, 36.955862], + [-82.361771, 36.955844], + [-82.36174, 36.955861], + [-82.361657, 36.955904], + [-82.361566, 36.95595], + [-82.361473, 36.955995], + [-82.361381, 36.956039], + [-82.361288, 36.956083], + [-82.360946, 36.956266], + [-82.360901, 36.956288], + [-82.360853, 36.956306], + [-82.360803, 36.956319], + [-82.360767, 36.956326], + [-82.360732, 36.956331], + [-82.36062, 36.956342], + [-82.360506, 36.956344], + [-82.360393, 36.956337], + [-82.360281, 36.956317], + [-82.360199, 36.956298], + [-82.35978, 36.95629], + [-82.359114, 36.956278], + [-82.35906, 36.956277], + [-82.358625, 36.956426], + [-82.358555, 36.956466], + [-82.358504, 36.956507], + [-82.358468, 36.956563], + [-82.358459, 36.956587], + [-82.358327, 36.956538], + [-82.358186, 36.956601], + [-82.358063, 36.956842], + [-82.357875, 36.957405], + [-82.3577, 36.957776], + [-82.357691, 36.957776], + [-82.357606, 36.95777], + [-82.357483, 36.957744], + [-82.3574, 36.957719], + [-82.357185, 36.957719], + [-82.356757, 36.957527], + [-82.35666, 36.957345], + [-82.356589, 36.95723], + [-82.356372, 36.956821], + [-82.355823, 36.956342], + [-82.355544, 36.956506], + [-82.355341, 36.956659], + [-82.355217, 36.956752], + [-82.354685, 36.956765], + [-82.354175, 36.956875], + [-82.354014, 36.957047], + [-82.353977, 36.957087], + [-82.353993, 36.957161], + [-82.353134, 36.957354], + [-82.352981, 36.957457], + [-82.353055, 36.957831], + [-82.352845, 36.957921], + [-82.352559, 36.957874], + [-82.352529, 36.957869], + [-82.352258, 36.957565], + [-82.351895, 36.957368], + [-82.351393, 36.957366], + [-82.351129, 36.957464], + [-82.351107, 36.957472], + [-82.350918, 36.957728], + [-82.350751, 36.957982], + [-82.350552, 36.958163], + [-82.350184, 36.958161], + [-82.350141, 36.958161], + [-82.349024, 36.958114], + [-82.348594, 36.958207], + [-82.348156, 36.958413], + [-82.347537, 36.958645], + [-82.34714, 36.958948], + [-82.346764, 36.959339], + [-82.346619, 36.959711], + [-82.341069, 36.963051], + [-82.341044, 36.963066], + [-82.339815, 36.963806], + [-82.338993, 36.964301], + [-82.338672, 36.964494], + [-82.338302, 36.964717], + [-82.336095, 36.966045], + [-82.336075, 36.966057], + [-82.334634, 36.966925], + [-82.332464, 36.968231], + [-82.332457, 36.968235], + [-82.328013, 36.970912], + [-82.327399, 36.96957], + [-82.327164, 36.969055], + [-82.3271, 36.968913], + [-82.324203, 36.962442], + [-82.32406, 36.962145], + [-82.323489, 36.960875], + [-82.321992, 36.957543], + [-82.320909, 36.955138], + [-82.320856, 36.955021], + [-82.318725, 36.950289], + [-82.318687, 36.950203], + [-82.318302, 36.949332], + [-82.317769, 36.948146], + [-82.315111, 36.942231], + [-82.314915, 36.941794], + [-82.314785, 36.941484], + [-82.312252, 36.935855], + [-82.312184, 36.935698], + [-82.310192, 36.931275], + [-82.309041, 36.928744], + [-82.308547, 36.927614], + [-82.308461, 36.927417], + [-82.305637, 36.921161], + [-82.305195, 36.920182], + [-82.305154, 36.920091], + [-82.3038, 36.917164], + [-82.303662, 36.916868], + [-82.303281, 36.916047], + [-82.302221, 36.913585], + [-82.302176, 36.913481], + [-82.301702, 36.91238], + [-82.301485, 36.911924], + [-82.301391, 36.911727], + [-82.30115, 36.9112], + [-82.300364, 36.909552], + [-82.299778, 36.908172], + [-82.299726, 36.908036], + [-82.299231, 36.906899], + [-82.299008, 36.906382], + [-82.298827, 36.905961], + [-82.298789, 36.905872], + [-82.298754, 36.90579], + [-82.298598, 36.905426], + [-82.300881, 36.90486], + [-82.300887, 36.904859], + [-82.301416, 36.904728], + [-82.301824, 36.904678], + [-82.30184, 36.904676], + [-82.301933, 36.904664], + [-82.30194, 36.904663], + [-82.302222, 36.904628], + [-82.302332, 36.904615], + [-82.303257, 36.904679], + [-82.303968, 36.904691], + [-82.304123, 36.904694], + [-82.304229, 36.904703], + [-82.304334, 36.904708], + [-82.304549, 36.904715], + [-82.30492, 36.904612], + [-82.305243, 36.904568], + [-82.305512, 36.904358], + [-82.305747, 36.904254], + [-82.305973, 36.904027], + [-82.306076, 36.903911], + [-82.306859, 36.903321], + [-82.308033, 36.902547], + [-82.308796, 36.902234], + [-82.308935, 36.902177], + [-82.30901, 36.902157], + [-82.309028, 36.902152], + [-82.309121, 36.902127], + [-82.309168, 36.902114], + [-82.309293, 36.902083], + [-82.309326, 36.902075], + [-82.309789, 36.902016], + [-82.311402, 36.901907], + [-82.3126, 36.901896], + [-82.31355, 36.901927], + [-82.314586, 36.902083], + [-82.314951, 36.902138], + [-82.315107, 36.902161], + [-82.315388, 36.902225], + [-82.315977, 36.90237], + [-82.315986, 36.902372], + [-82.316315, 36.902506], + [-82.316985, 36.902916], + [-82.317076, 36.903342], + [-82.317048, 36.903826], + [-82.316968, 36.904024], + [-82.316873, 36.904215], + [-82.316864, 36.904234], + [-82.316791, 36.904382], + [-82.316489, 36.904999], + [-82.316391, 36.9052], + [-82.316365, 36.90525], + [-82.316332, 36.905314], + [-82.316131, 36.90574], + [-82.31599, 36.906534], + [-82.316, 36.907171], + [-82.316351, 36.907805], + [-82.316965, 36.907927], + [-82.317797, 36.907855], + [-82.318258, 36.907626], + [-82.318414, 36.907552], + [-82.318469, 36.907526], + [-82.318793, 36.907369], + [-82.319485, 36.906661], + [-82.319588, 36.906487], + [-82.320065, 36.905679], + [-82.320542, 36.90487], + [-82.320562, 36.904836], + [-82.320574, 36.904781], + [-82.32062, 36.904579], + [-82.320665, 36.904376], + [-82.320722, 36.904124], + [-82.320685, 36.903828], + [-82.320642, 36.90348], + [-82.320188, 36.902646], + [-82.319462, 36.901685], + [-82.319186, 36.901322], + [-82.319172, 36.901303], + [-82.319089, 36.901195], + [-82.319006, 36.901086], + [-82.318993, 36.901068], + [-82.318983, 36.901055], + [-82.31883, 36.900854], + [-82.318732, 36.900725], + [-82.318633, 36.900595], + [-82.318439, 36.900401], + [-82.318251, 36.900239], + [-82.318229, 36.90022], + [-82.318221, 36.900207], + [-82.318208, 36.900186], + [-82.318154, 36.900098], + [-82.318099, 36.900009], + [-82.318032, 36.899901], + [-82.317978, 36.899813], + [-82.317813, 36.899453], + [-82.317755, 36.899347], + [-82.317652, 36.899246], + [-82.317547, 36.899143], + [-82.317426, 36.899052], + [-82.317343, 36.898951], + [-82.316693, 36.898195], + [-82.316436, 36.897553], + [-82.316404, 36.897472], + [-82.316371, 36.897392], + [-82.316349, 36.897336], + [-82.316357, 36.897244], + [-82.316409, 36.896674], + [-82.316834, 36.895834], + [-82.316897, 36.895709], + [-82.31753, 36.894864], + [-82.317585, 36.894791], + [-82.317618, 36.894655], + [-82.317841, 36.89374], + [-82.317786, 36.892137], + [-82.31777, 36.89166], + [-82.317738, 36.889491], + [-82.318153, 36.887814], + [-82.318164, 36.887769], + [-82.318197, 36.887751], + [-82.318831, 36.887408], + [-82.320023, 36.887324], + [-82.320528, 36.887593], + [-82.320966, 36.88804], + [-82.321664, 36.889155], + [-82.321899, 36.89012], + [-82.322041, 36.890869], + [-82.322482, 36.891582], + [-82.32322, 36.892207], + [-82.323508, 36.892451], + [-82.323637, 36.89263], + [-82.324257, 36.893493], + [-82.324669, 36.894465], + [-82.324754, 36.894665], + [-82.324957, 36.895319], + [-82.325039, 36.895582], + [-82.325274, 36.896715], + [-82.325298, 36.89683], + [-82.325377, 36.897442], + [-82.325423, 36.897804], + [-82.325447, 36.898102], + [-82.325643, 36.898488], + [-82.325826, 36.898634], + [-82.326323, 36.899029], + [-82.327193, 36.899481], + [-82.327862, 36.899675], + [-82.327873, 36.899678], + [-82.327898, 36.899684], + [-82.327964, 36.899669], + [-82.328648, 36.899523], + [-82.329263, 36.899049], + [-82.329525, 36.898624], + [-82.329596, 36.898506], + [-82.329597, 36.898465], + [-82.329604, 36.897643], + [-82.329187, 36.895953], + [-82.328944, 36.89487], + [-82.328832, 36.894368], + [-82.32877, 36.894156], + [-82.328409, 36.892928], + [-82.328335, 36.89228], + [-82.328411, 36.891678], + [-82.328814, 36.891126], + [-82.329422, 36.890797], + [-82.330199, 36.890483], + [-82.330729, 36.890372], + [-82.331232, 36.890392], + [-82.331402, 36.890398], + [-82.332005, 36.890521], + [-82.33282, 36.890682], + [-82.333502, 36.890789], + [-82.333885, 36.890849], + [-82.334175, 36.890651], + [-82.334402, 36.890497], + [-82.334836, 36.890017], + [-82.335068, 36.88945], + [-82.335188, 36.888788], + [-82.335344, 36.887786], + [-82.335577, 36.887451], + [-82.335599, 36.887448], + [-82.335888, 36.887297], + [-82.336478, 36.887162], + [-82.336931, 36.887319], + [-82.337418, 36.887669], + [-82.337956, 36.888124], + [-82.338427, 36.888724], + [-82.338979, 36.889436], + [-82.339341, 36.890167], + [-82.339656, 36.891099], + [-82.339769, 36.891961], + [-82.339564, 36.892987], + [-82.339463, 36.894295], + [-82.339641, 36.894801], + [-82.339926, 36.895062], + [-82.340129, 36.895248], + [-82.340552, 36.895562], + [-82.34164, 36.89637], + [-82.341813, 36.896408], + [-82.342063, 36.896463], + [-82.342574, 36.896465], + [-82.342614, 36.896465], + [-82.343261, 36.896128], + [-82.343806, 36.895696], + [-82.344671, 36.895195], + [-82.345368, 36.894833], + [-82.346625, 36.894377], + [-82.346725, 36.89433], + [-82.347288, 36.894067], + [-82.34785, 36.893804], + [-82.34814, 36.893669], + [-82.349148, 36.893124], + [-82.349981, 36.892739], + [-82.350756, 36.892417], + [-82.350798, 36.8924], + [-82.35155, 36.892385], + [-82.351647, 36.892424], + [-82.352004, 36.892566], + [-82.352611, 36.892931], + [-82.353711, 36.894025], + [-82.354615, 36.894742], + [-82.355344, 36.895186], + [-82.356003, 36.895247], + [-82.35676, 36.895317], + [-82.357545, 36.895134], + [-82.357739, 36.895089], + [-82.357907, 36.895019], + [-82.358646, 36.894701], + [-82.358754, 36.894632], + [-82.35949, 36.894177], + [-82.359607, 36.89381], + [-82.359672, 36.893594], + [-82.359671, 36.893425], + [-82.359669, 36.892739], + [-82.359422, 36.892331], + [-82.35889, 36.891626], + [-82.358031, 36.891207], + [-82.357232, 36.890756], + [-82.356891, 36.890081], + [-82.35683, 36.889915], + [-82.356787, 36.889795], + [-82.356743, 36.889675], + [-82.356692, 36.889535], + [-82.356795, 36.889042], + [-82.357258, 36.888497], + [-82.357984, 36.888143], + [-82.358565, 36.888073], + [-82.358709, 36.888095], + [-82.359184, 36.888173], + [-82.359659, 36.888252], + [-82.359771, 36.88827], + [-82.359857, 36.888309], + [-82.36067, 36.888673], + [-82.361238, 36.889086], + [-82.362197, 36.890133], + [-82.363146, 36.891221], + [-82.363754, 36.891741], + [-82.36404, 36.891986], + [-82.364874, 36.892703], + [-82.365353, 36.893182], + [-82.365526, 36.893252], + [-82.365782, 36.893355], + [-82.366039, 36.893458], + [-82.367063, 36.893442], + [-82.367433, 36.893436], + [-82.368576, 36.8934], + [-82.369699, 36.893389], + [-82.369822, 36.893368], + [-82.370299, 36.893286], + [-82.370897, 36.89307], + [-82.371413, 36.892702], + [-82.371879, 36.892326], + [-82.372564, 36.891876], + [-82.372766, 36.891789], + [-82.373122, 36.891636], + [-82.373277, 36.891573], + [-82.373919, 36.891314], + [-82.374872, 36.890979], + [-82.375912, 36.890541], + [-82.376162, 36.890396], + [-82.37622, 36.890349], + [-82.376481, 36.890138], + [-82.376482, 36.890138], + [-82.376744, 36.889927], + [-82.377012, 36.889711], + [-82.377762, 36.889429], + [-82.378516, 36.889211], + [-82.378682, 36.889163], + [-82.379722, 36.8888], + [-82.380349, 36.888464], + [-82.380882, 36.888131], + [-82.382021, 36.887413], + [-82.382747, 36.887032], + [-82.383068, 36.886863], + [-82.383388, 36.886695], + [-82.383602, 36.886583], + [-82.383979, 36.886497], + [-82.384692, 36.886333], + [-82.385418, 36.886164], + [-82.386292, 36.885961], + [-82.387632, 36.885847], + [-82.387835, 36.885848], + [-82.388723, 36.885854], + [-82.389273, 36.885749], + [-82.389743, 36.885628], + [-82.390102, 36.885282], + [-82.390211, 36.884959], + [-82.39026, 36.884595], + [-82.390311, 36.884373], + [-82.390333, 36.884279], + [-82.3904, 36.883994], + [-82.390466, 36.883708], + [-82.390468, 36.883697], + [-82.390491, 36.883591], + [-82.390778, 36.883072], + [-82.390848, 36.882945], + [-82.390919, 36.882818], + [-82.39099, 36.882689], + [-82.391829, 36.881908], + [-82.392049, 36.881786], + [-82.392909, 36.881311], + [-82.394389, 36.880842], + [-82.394859, 36.880672], + [-82.395901, 36.880288], + [-82.396238, 36.880164], + [-82.398068, 36.879695], + [-82.399048, 36.879485], + [-82.400138, 36.879009], + [-82.400839, 36.878671], + [-82.401618, 36.878292], + [-82.402248, 36.877945], + [-82.402804, 36.877806], + [-82.402958, 36.877767], + [-82.404048, 36.87742], + [-82.40445, 36.877291], + [-82.405027, 36.877105], + [-82.405749, 36.87682], + [-82.406083, 36.876688], + [-82.406436, 36.876483], + [-82.406536, 36.876425], + [-82.40663, 36.876367], + [-82.406637, 36.876363], + [-82.406659, 36.876436], + [-82.406709, 36.876604], + [-82.40696, 36.876943], + [-82.407078, 36.877102], + [-82.407196, 36.877262], + [-82.407248, 36.877333], + [-82.407376, 36.877505], + [-82.407445, 36.877782], + [-82.407445, 36.878528], + [-82.407375, 36.878618], + [-82.407143, 36.878727], + [-82.40603, 36.878806], + [-82.405646, 36.878918], + [-82.405246, 36.878974], + [-82.404787, 36.8791], + [-82.404601, 36.879212], + [-82.404562, 36.879229], + [-82.404512, 36.879266], + [-82.403971, 36.879593], + [-82.40371, 36.879922], + [-82.403515, 36.880469], + [-82.40325, 36.88088], + [-82.402944, 36.881231], + [-82.402693, 36.881435], + [-82.402297, 36.881899], + [-82.402066, 36.88217], + [-82.401979, 36.882407], + [-82.402003, 36.882583], + [-82.402478, 36.883054], + [-82.402822, 36.883594], + [-82.402814, 36.883737], + [-82.402602, 36.884088], + [-82.402543, 36.884441], + [-82.402605, 36.884647], + [-82.403291, 36.885341], + [-82.403694, 36.885613], + [-82.405239, 36.885377], + [-82.406452, 36.884988], + [-82.406762, 36.884939], + [-82.407166, 36.884908], + [-82.408064, 36.884955], + [-82.408549, 36.885033], + [-82.408966, 36.885166], + [-82.409053, 36.885222], + [-82.409293, 36.885216], + [-82.411184, 36.885168], + [-82.421111, 36.884916], + [-82.421203, 36.884914], + [-82.4229, 36.884882], + [-82.433363, 36.884682], + [-82.43355, 36.88468], + [-82.43383, 36.884677], + [-82.433901, 36.884674], + [-82.433925, 36.884673], + [-82.434905, 36.884653], + [-82.435039, 36.88465], + [-82.439317, 36.884563], + [-82.439402, 36.884561], + [-82.44014, 36.884545], + [-82.44045, 36.884536], + [-82.440489, 36.884535], + [-82.440623, 36.884531], + [-82.44067, 36.88453], + [-82.440838, 36.884525], + [-82.440882, 36.884524], + [-82.44092, 36.884522], + [-82.440929, 36.884522], + [-82.441168, 36.884515], + [-82.441553, 36.884504], + [-82.445962, 36.884422], + [-82.448605, 36.884371], + [-82.450617, 36.884332], + [-82.46214, 36.884085], + [-82.463306, 36.88406], + [-82.464919, 36.884026], + [-82.472471, 36.883869], + [-82.480345, 36.88372], + [-82.481206, 36.883704], + [-82.492096, 36.883495], + [-82.500028, 36.883342], + [-82.502601, 36.883276], + [-82.505727, 36.883197], + [-82.50594, 36.883194], + [-82.512954, 36.883088], + [-82.513032, 36.883086], + [-82.517301, 36.882999], + [-82.52068, 36.882936], + [-82.521701, 36.882914], + [-82.52513, 36.882839], + [-82.528146, 36.882778], + [-82.5327, 36.882668], + [-82.537581, 36.882584], + [-82.538855, 36.882566], + [-82.539161, 36.882551], + [-82.541657, 36.8825], + [-82.541716, 36.882499], + [-82.541776, 36.882498], + [-82.541805, 36.882497], + [-82.546667, 36.882364], + [-82.547286, 36.88236], + [-82.553667, 36.882224], + [-82.554556, 36.882205], + [-82.561421, 36.882063], + [-82.561564, 36.88206], + [-82.564575, 36.881997], + [-82.564733, 36.881994], + [-82.56631, 36.881961], + [-82.566593, 36.881955], + [-82.566622, 36.881954], + [-82.567023, 36.881946], + [-82.567032, 36.881946], + [-82.567139, 36.881944], + [-82.567154, 36.881944], + [-82.567161, 36.881943], + [-82.567171, 36.881943], + [-82.56722, 36.881942], + [-82.567423, 36.881938], + [-82.569182, 36.881901], + [-82.573455, 36.881811], + [-82.580065, 36.88164], + [-82.587168, 36.881481], + [-82.587185, 36.881481], + [-82.5906, 36.881404], + [-82.590963, 36.881396], + [-82.591888, 36.88138], + [-82.592328, 36.881372], + [-82.592899, 36.881362], + [-82.593022, 36.88136], + [-82.593031, 36.88136], + [-82.59316, 36.881358], + [-82.593506, 36.881352], + [-82.594948, 36.881352], + [-82.61616, 36.880905], + [-82.616701, 36.880893], + [-82.616768, 36.880892], + [-82.616836, 36.880891], + [-82.616864, 36.88089], + [-82.617093, 36.880885], + [-82.617279, 36.880881], + [-82.623381, 36.879958], + [-82.623573, 36.879928], + [-82.627075, 36.879476], + [-82.634495, 36.878506], + [-82.634502, 36.878505], + [-82.634612, 36.878491], + [-82.634687, 36.878424], + [-82.634784, 36.878317], + [-82.634989, 36.87804], + [-82.635126, 36.877886], + [-82.635304, 36.877675], + [-82.635473, 36.87746], + [-82.635666, 36.877161], + [-82.635832, 36.876927], + [-82.635916, 36.876836], + [-82.636067, 36.876691], + [-82.636231, 36.876555], + [-82.636296, 36.876517], + [-82.636413, 36.876465], + [-82.636539, 36.876427], + [-82.636716, 36.876404], + [-82.63689, 36.876365], + [-82.637093, 36.876302], + [-82.637255, 36.876236], + [-82.637409, 36.876158], + [-82.638047, 36.875748], + [-82.638432, 36.875472], + [-82.638548, 36.875377], + [-82.638623, 36.875297], + [-82.638868, 36.874309], + [-82.638902, 36.874174], + [-82.638942, 36.874014], + [-82.639254, 36.873356], + [-82.639257, 36.873349], + [-82.639583, 36.873244], + [-82.639895, 36.872931], + [-82.640029, 36.872689], + [-82.639927, 36.872532], + [-82.639891, 36.872478], + [-82.639887, 36.872469], + [-82.640328, 36.871999], + [-82.640341, 36.871999], + [-82.640366, 36.871998], + [-82.640413, 36.871996], + [-82.640471, 36.871994], + [-82.640482, 36.871994], + [-82.640791, 36.871904], + [-82.641188, 36.871756], + [-82.641605, 36.871528], + [-82.641802, 36.871318], + [-82.64175, 36.871108], + [-82.641744, 36.871085], + [-82.641744, 36.871079], + [-82.641888, 36.870875], + [-82.641998, 36.8702], + [-82.641868, 36.870026], + [-82.641904, 36.869611], + [-82.642156, 36.869279], + [-82.642546, 36.869146], + [-82.642565, 36.869139], + [-82.642574, 36.86913], + [-82.642669, 36.869078], + [-82.642758, 36.869048], + [-82.642871, 36.86903], + [-82.643233, 36.869035], + [-82.643273, 36.869031], + [-82.643352, 36.869016], + [-82.643445, 36.868986], + [-82.643546, 36.868934], + [-82.643671, 36.868854], + [-82.643815, 36.868745], + [-82.643916, 36.868675], + [-82.644177, 36.86851], + [-82.645027, 36.868036], + [-82.645136, 36.86797], + [-82.645214, 36.86791], + [-82.645301, 36.867826], + [-82.645597, 36.867444], + [-82.64568, 36.867336], + [-82.64572, 36.867266], + [-82.645773, 36.867175], + [-82.645959, 36.866932], + [-82.646276, 36.866752], + [-82.646653, 36.866508], + [-82.646888, 36.8662], + [-82.647055, 36.865925], + [-82.647228, 36.865805], + [-82.64723, 36.86579], + [-82.647245, 36.865679], + [-82.647958, 36.863481], + [-82.648122, 36.863345], + [-82.64878, 36.8628], + [-82.648827, 36.862731], + [-82.648832, 36.862724], + [-82.64896, 36.862713], + [-82.649229, 36.862647], + [-82.649487, 36.862499], + [-82.649704, 36.862345], + [-82.649912, 36.86219], + [-82.65022, 36.862107], + [-82.650518, 36.861959], + [-82.650655, 36.861773], + [-82.650572, 36.861508], + [-82.650459, 36.861284], + [-82.650396, 36.861003], + [-82.650411, 36.860689], + [-82.650466, 36.860294], + [-82.650292, 36.859974], + [-82.650087, 36.859802], + [-82.649817, 36.859496], + [-82.649722, 36.859134], + [-82.649837, 36.858731], + [-82.650051, 36.858351], + [-82.650507, 36.858381], + [-82.650621, 36.858394], + [-82.650765, 36.858416], + [-82.650871, 36.858432], + [-82.6511, 36.858374], + [-82.651338, 36.858275], + [-82.651642, 36.857846], + [-82.65189, 36.85761], + [-82.652297, 36.857422], + [-82.65265, 36.856952], + [-82.652756, 36.856613], + [-82.652601, 36.856244], + [-82.652187, 36.855862], + [-82.652074, 36.855678], + [-82.6521, 36.855356], + [-82.652056, 36.855058], + [-82.651773, 36.854812], + [-82.651462, 36.854758], + [-82.651391, 36.854725], + [-82.651385, 36.854723], + [-82.651379, 36.85472], + [-82.651343, 36.854703], + [-82.6513, 36.854683], + [-82.651236, 36.854654], + [-82.651151, 36.854614], + [-82.650712, 36.854376], + [-82.650562, 36.854182], + [-82.65062, 36.853886], + [-82.650742, 36.853583], + [-82.65101, 36.853429], + [-82.651042, 36.85341], + [-82.65129, 36.85332], + [-82.651659, 36.853418], + [-82.651751, 36.853452], + [-82.651765, 36.853454], + [-82.6519, 36.85347], + [-82.651958, 36.853477], + [-82.651983, 36.85348], + [-82.651997, 36.853482], + [-82.65202, 36.853485], + [-82.652123, 36.853497], + [-82.652332, 36.853463], + [-82.652479, 36.853309], + [-82.652638, 36.853146], + [-82.652829, 36.853096], + [-82.653249, 36.853189], + [-82.653722, 36.853378], + [-82.65386, 36.853296], + [-82.653977, 36.853046], + [-82.654043, 36.85278], + [-82.654188, 36.852424], + [-82.654222, 36.851973], + [-82.654299, 36.851715], + [-82.654419, 36.851632], + [-82.654546, 36.851544], + [-82.654755, 36.851486], + [-82.654883, 36.851332], + [-82.654844, 36.851137], + [-82.654434, 36.850524], + [-82.654384, 36.850353], + [-82.654525, 36.849961], + [-82.654586, 36.849757], + [-82.654706, 36.849544], + [-82.654897, 36.849419], + [-82.655389, 36.848795], + [-82.655619, 36.848497], + [-82.65582, 36.84796], + [-82.655803, 36.847942], + [-82.655764, 36.847901], + [-82.655726, 36.847861], + [-82.655684, 36.847833], + [-82.655656, 36.847803], + [-82.655713, 36.847299], + [-82.656045, 36.847049], + [-82.656098, 36.847008], + [-82.656141, 36.846976], + [-82.656281, 36.84679], + [-82.656519, 36.846715], + [-82.656757, 36.846536], + [-82.656873, 36.846237], + [-82.656849, 36.845972], + [-82.656795, 36.845618], + [-82.65678, 36.845305], + [-82.656798, 36.845287], + [-82.656968, 36.845118], + [-82.657342, 36.844769], + [-82.657571, 36.844606], + [-82.65787, 36.844643], + [-82.658352, 36.844564], + [-82.658725, 36.844378], + [-82.65879, 36.84386], + [-82.658791, 36.84385], + [-82.658842, 36.843388], + [-82.659108, 36.843326], + [-82.659245, 36.843307], + [-82.660302, 36.843287], + [-82.660401, 36.843279], + [-82.660538, 36.843253], + [-82.660597, 36.843231], + [-82.660663, 36.843192], + [-82.660804, 36.843054], + [-82.661443, 36.842125], + [-82.661449, 36.842116], + [-82.661788, 36.84177], + [-82.662705, 36.840911], + [-82.662762, 36.840876], + [-82.662988, 36.840738], + [-82.663265, 36.840631], + [-82.663408, 36.840562], + [-82.663602, 36.840445], + [-82.663761, 36.840338], + [-82.664647, 36.839861], + [-82.66465, 36.839859], + [-82.66467, 36.839892], + [-82.664722, 36.839983], + [-82.664764, 36.840055], + [-82.66502, 36.840119], + [-82.665074, 36.840096], + [-82.665534, 36.839897], + [-82.665975, 36.839728], + [-82.666158, 36.839605], + [-82.666516, 36.839358], + [-82.666577, 36.839314], + [-82.666656, 36.839103], + [-82.66673, 36.838904], + [-82.666766, 36.838807], + [-82.668263, 36.838206], + [-82.668384, 36.838266], + [-82.668987, 36.838404], + [-82.669245, 36.838448], + [-82.669517, 36.838491], + [-82.669982, 36.838684], + [-82.670055, 36.83875], + [-82.670075, 36.838769], + [-82.670143, 36.838834], + [-82.670632, 36.838813], + [-82.671211, 36.838832], + [-82.67136, 36.838787], + [-82.671386, 36.838779], + [-82.671414, 36.838771], + [-82.67142, 36.838769], + [-82.671427, 36.838767], + [-82.671433, 36.838765], + [-82.671457, 36.838758], + [-82.671495, 36.838746], + [-82.671529, 36.838735], + [-82.671536, 36.838733], + [-82.671552, 36.838729], + [-82.671559, 36.838727], + [-82.671577, 36.838721], + [-82.67162, 36.838707], + [-82.671983, 36.83835], + [-82.671992, 36.838317], + [-82.67207, 36.838045], + [-82.672093, 36.838031], + [-82.672693, 36.837683], + [-82.672782, 36.837706], + [-82.672856, 36.837726], + [-82.673134, 36.8378], + [-82.673373, 36.83775], + [-82.673789, 36.837513], + [-82.673965, 36.837221], + [-82.673915, 36.8371], + [-82.673909, 36.837085], + [-82.673886, 36.837028], + [-82.673876, 36.837005], + [-82.67387, 36.836991], + [-82.67394, 36.836934], + [-82.674285, 36.836657], + [-82.674311, 36.836634], + [-82.67505, 36.835988], + [-82.675334, 36.83574], + [-82.676303, 36.834893], + [-82.677532, 36.833819], + [-82.677779, 36.83344], + [-82.678095, 36.832956], + [-82.67813, 36.832903], + [-82.678386, 36.832652], + [-82.678754, 36.832567], + [-82.679262, 36.832466], + [-82.68, 36.83241], + [-82.680785, 36.832186], + [-82.681132, 36.831998], + [-82.681338, 36.831722], + [-82.681634, 36.83143], + [-82.682089, 36.831184], + [-82.682254, 36.830829], + [-82.68241, 36.830513], + [-82.682784, 36.830132], + [-82.683199, 36.829838], + [-82.683505, 36.82957], + [-82.683918, 36.829091], + [-82.684412, 36.828717], + [-82.684553, 36.828291], + [-82.684651, 36.828257], + [-82.684907, 36.828051], + [-82.685534, 36.826998], + [-82.68673, 36.825921], + [-82.687494, 36.825328], + [-82.68746, 36.825268], + [-82.687408, 36.825115], + [-82.687404, 36.824818], + [-82.68751, 36.824495], + [-82.687679, 36.824389], + [-82.687812, 36.823952], + [-82.688229, 36.823423], + [-82.688323, 36.823305], + [-82.6887, 36.82318], + [-82.689097, 36.823064], + [-82.689285, 36.822909], + [-82.689681, 36.822664], + [-82.689838, 36.82251], + [-82.689945, 36.82226], + [-82.689919, 36.821915], + [-82.68986, 36.821898], + [-82.689936, 36.8216], + [-82.690243, 36.821412], + [-82.690606, 36.820942], + [-82.690871, 36.820602], + [-82.691048, 36.820415], + [-82.691346, 36.820324], + [-82.691675, 36.820296], + [-82.691972, 36.820149], + [-82.692078, 36.819882], + [-82.692297, 36.819776], + [-82.692635, 36.819684], + [-82.693084, 36.819672], + [-82.693601, 36.819546], + [-82.69391, 36.819495], + [-82.694277, 36.819371], + [-82.694604, 36.819207], + [-82.69494, 36.81897], + [-82.695276, 36.818701], + [-82.695452, 36.818434], + [-82.695778, 36.818214], + [-82.695947, 36.818116], + [-82.696246, 36.818081], + [-82.696854, 36.818019], + [-82.697469, 36.817796], + [-82.697933, 36.817389], + [-82.698167, 36.817025], + [-82.698375, 36.816894], + [-82.698635, 36.816892], + [-82.699415, 36.817029], + [-82.700317, 36.817294], + [-82.700747, 36.817362], + [-82.700996, 36.81732], + [-82.701283, 36.817132], + [-82.70171, 36.816959], + [-82.702099, 36.816971], + [-82.702642, 36.817256], + [-82.702907, 36.817447], + [-82.703116, 36.817597], + [-82.703229, 36.817869], + [-82.703213, 36.818143], + [-82.70314, 36.818618], + [-82.703194, 36.818956], + [-82.70337, 36.819381], + [-82.703563, 36.819604], + [-82.703535, 36.819773], + [-82.70345, 36.820104], + [-82.703547, 36.820674], + [-82.703812, 36.821017], + [-82.704304, 36.821254], + [-82.704827, 36.821515], + [-82.705102, 36.821946], + [-82.705304, 36.822081], + [-82.705735, 36.822262], + [-82.706068, 36.822508], + [-82.706523, 36.822898], + [-82.706682, 36.823049], + [-82.706775, 36.823137], + [-82.707145, 36.823158], + [-82.707784, 36.8232], + [-82.708535, 36.823329], + [-82.709474, 36.823369], + [-82.70987, 36.823156], + [-82.710215, 36.822863], + [-82.710475, 36.822884], + [-82.710887, 36.82309], + [-82.711266, 36.823086], + [-82.711714, 36.822961], + [-82.71259, 36.822775], + [-82.713426, 36.822647], + [-82.714714, 36.822691], + [-82.715664, 36.82281], + [-82.716568, 36.823196], + [-82.717392, 36.82359], + [-82.717805, 36.823859], + [-82.718284, 36.823839], + [-82.718665, 36.823948], + [-82.718876, 36.824066], + [-82.719114, 36.824], + [-82.719293, 36.823942], + [-82.719705, 36.824106], + [-82.720559, 36.824549], + [-82.721356, 36.82504], + [-82.722038, 36.825307], + [-82.722309, 36.825417], + [-82.722634, 36.825767], + [-82.723078, 36.826101], + [-82.723312, 36.826453], + [-82.723512, 36.827143], + [-82.723569, 36.827689], + [-82.723405, 36.828069], + [-82.723239, 36.828344], + [-82.723084, 36.828659], + [-82.723172, 36.829077], + [-82.723201, 36.829213], + [-82.723186, 36.829551], + [-82.72303, 36.829826], + [-82.722677, 36.830232], + [-82.722411, 36.830492], + [-82.722365, 36.830766], + [-82.72244, 36.831127], + [-82.722495, 36.831497], + [-82.722418, 36.831723], + [-82.72238, 36.831828], + [-82.722472, 36.832037], + [-82.722534, 36.832181], + [-82.722989, 36.832368], + [-82.723217, 36.832463], + [-82.723877, 36.832611], + [-82.724489, 36.832749], + [-82.724855, 36.832536], + [-82.725299, 36.83221], + [-82.725932, 36.831875], + [-82.726296, 36.831461], + [-82.726767, 36.830821], + [-82.727235, 36.830188], + [-82.727627, 36.829694], + [-82.72786, 36.829521], + [-82.727984, 36.829425], + [-82.72846, 36.829226], + [-82.728789, 36.829192], + [-82.72911, 36.829317], + [-82.729432, 36.829499], + [-82.729745, 36.829592], + [-82.730083, 36.82958], + [-82.730383, 36.829611], + [-82.730645, 36.829793], + [-82.730875, 36.829871], + [-82.731196, 36.829892], + [-82.731602, 36.829752], + [-82.731798, 36.829685], + [-82.73185, 36.829667], + [-82.731871, 36.82966], + [-82.731881, 36.829656], + [-82.731971, 36.829626], + [-82.732309, 36.829648], + [-82.732511, 36.829775], + [-82.733225, 36.830097], + [-82.733626, 36.830165], + [-82.733753, 36.830044], + [-82.733822, 36.829984], + [-82.73384, 36.829968], + [-82.733865, 36.829946], + [-82.733961, 36.829864], + [-82.73427, 36.829813], + [-82.734867, 36.829702], + [-82.735134, 36.829633], + [-82.735513, 36.829535], + [-82.73579, 36.829377], + [-82.735958, 36.829282], + [-82.736252, 36.828804], + [-82.736466, 36.828319], + [-82.736578, 36.827827], + [-82.736689, 36.827457], + [-82.736722, 36.827361], + [-82.737137, 36.827162], + [-82.737548, 36.827303], + [-82.738023, 36.82737], + [-82.738031, 36.827371], + [-82.738201, 36.827369], + [-82.738369, 36.827368], + [-82.738384, 36.827378], + [-82.738512, 36.827511], + [-82.738539, 36.827531], + [-82.738974, 36.82786], + [-82.739486, 36.828104], + [-82.739626, 36.828272], + [-82.73976, 36.828431], + [-82.740035, 36.828782], + [-82.740242, 36.828866], + [-82.740336, 36.829071], + [-82.740649, 36.829657], + [-82.740716, 36.829775], + [-82.740748, 36.829832], + [-82.740723, 36.830191], + [-82.740869, 36.830616], + [-82.741332, 36.830885], + [-82.741762, 36.830906], + [-82.74225, 36.83078], + [-82.742404, 36.830392], + [-82.742674, 36.830175], + [-82.743281, 36.829708], + [-82.743967, 36.829524], + [-82.744574, 36.829406], + [-82.745083, 36.829433], + [-82.745843, 36.829868], + [-82.745891, 36.829895], + [-82.746304, 36.830257], + [-82.747255, 36.831173], + [-82.747308, 36.831382], + [-82.747375, 36.831872], + [-82.747623, 36.832416], + [-82.748039, 36.832839], + [-82.748397, 36.832771], + [-82.748653, 36.832511], + [-82.749106, 36.832104], + [-82.749141, 36.831709], + [-82.7496, 36.831029], + [-82.749886, 36.830742], + [-82.750259, 36.83045], + [-82.750539, 36.830128], + [-82.75074, 36.829895], + [-82.751016, 36.829722], + [-82.7511, 36.829669], + [-82.75163, 36.829525], + [-82.752061, 36.828929], + [-82.752391, 36.828446], + [-82.752651, 36.827963], + [-82.752822, 36.827721], + [-82.753762, 36.827263], + [-82.754523, 36.826916], + [-82.755074, 36.826457], + [-82.755524, 36.826256], + [-82.755824, 36.826095], + [-82.755904, 36.825886], + [-82.756074, 36.82541], + [-82.756285, 36.824685], + [-82.756725, 36.824041], + [-82.757335, 36.823365], + [-82.758026, 36.822753], + [-82.758606, 36.822181], + [-82.758957, 36.82165], + [-82.759297, 36.820885], + [-82.759627, 36.820442], + [-82.760197, 36.820023], + [-82.760768, 36.819508], + [-82.761068, 36.819025], + [-82.761098, 36.818477], + [-82.76212, 36.817632], + [-82.76229, 36.816947], + [-82.76242, 36.81652], + [-82.76268, 36.816287], + [-82.76317, 36.816037], + [-82.763871, 36.815796], + [-82.764241, 36.815571], + [-82.764311, 36.815329], + [-82.764361, 36.81491], + [-82.764511, 36.814451], + [-82.764921, 36.81396], + [-82.764941, 36.813735], + [-82.764991, 36.813299], + [-82.765301, 36.8128], + [-82.765812, 36.812067], + [-82.766412, 36.811359], + [-82.766982, 36.81098], + [-82.767793, 36.810755], + [-82.768683, 36.810756], + [-82.769464, 36.810571], + [-82.769514, 36.810418], + [-82.769764, 36.809758], + [-82.770294, 36.809549], + [-82.770755, 36.809436], + [-82.771035, 36.809227], + [-82.771075, 36.808856], + [-82.771335, 36.808502], + [-82.771415, 36.808244], + [-82.771314, 36.807825], + [-82.771344, 36.807527], + [-82.771575, 36.807326], + [-82.772765, 36.806996], + [-82.773075, 36.806626], + [-82.773395, 36.805917], + [-82.773655, 36.804967], + [-82.773845, 36.804116], + [-82.77394, 36.803678], + [-82.773725, 36.803256], + [-82.773358, 36.802957], + [-82.773144, 36.802772], + [-82.772561, 36.802547], + [-82.771985, 36.802574], + [-82.77141, 36.802541], + [-82.770851, 36.802316], + [-82.770738, 36.802227], + [-82.769725, 36.801435], + [-82.769498, 36.801257], + [-82.769058, 36.800848], + [-82.7686, 36.800325], + [-82.768442, 36.799906], + [-82.768653, 36.7994], + [-82.768944, 36.799061], + [-82.769025, 36.798973], + [-82.76951, 36.798985], + [-82.769641, 36.799044], + [-82.770359, 36.799371], + [-82.77071, 36.799557], + [-82.771232, 36.799849], + [-82.771312, 36.799887], + [-82.772234, 36.800639], + [-82.772361, 36.800733], + [-82.772372, 36.800741], + [-82.77241, 36.800769], + [-82.772474, 36.800816], + [-82.772583, 36.800896], + [-82.772593, 36.800903], + [-82.772611, 36.800916], + [-82.772799, 36.801052], + [-82.77285, 36.801089], + [-82.785824, 36.810609], + [-82.785978, 36.810722], + [-82.786036, 36.810764], + [-82.786049, 36.810774], + [-82.786091, 36.810805], + [-82.786114, 36.810822], + [-82.786259, 36.810928], + [-82.786311, 36.810966], + [-82.786322, 36.810974], + [-82.786329, 36.810979], + [-82.786621, 36.811231], + [-82.78682, 36.811405], + [-82.787056, 36.811568], + [-82.787072, 36.811579], + [-82.787309, 36.811742], + [-82.787475, 36.811862], + [-82.78751, 36.811887], + [-82.789039, 36.812968], + [-82.790498, 36.814058], + [-82.790505, 36.814063], + [-82.790817, 36.814295], + [-82.790824, 36.8143], + [-82.791506, 36.814803], + [-82.791544, 36.814817], + [-82.791598, 36.814845], + [-82.791757, 36.814942], + [-82.792392, 36.815404], + [-82.792588, 36.815591], + [-82.792608, 36.81561], + [-82.792725, 36.815706], + [-82.792855, 36.815796], + [-82.79286, 36.815799], + [-82.793044, 36.815926], + [-82.793575, 36.816333], + [-82.793963, 36.816589], + [-82.794058, 36.816662], + [-82.79444, 36.816982], + [-82.794461, 36.816995], + [-82.794733, 36.817215], + [-82.79498, 36.817415], + [-82.794981, 36.817416], + [-82.795206, 36.817582], + [-82.79523, 36.8176], + [-82.79536, 36.817696], + [-82.798342, 36.819896], + [-82.799439, 36.820768], + [-82.8003, 36.821452], + [-82.801913, 36.822632], + [-82.805161, 36.825007], + [-82.805225, 36.825054], + [-82.805232, 36.825059], + [-82.805244, 36.825067], + [-82.805249, 36.825071], + [-82.805443, 36.825213], + [-82.805485, 36.825244], + [-82.807298, 36.82657], + [-82.809234, 36.827991], + [-82.812414, 36.830321], + [-82.812586, 36.830447], + [-82.818029, 36.834436], + [-82.818519, 36.834805], + [-82.819311, 36.835401], + [-82.819473, 36.835522], + [-82.820776, 36.836503], + [-82.821282, 36.836884], + [-82.821308, 36.836904], + [-82.821549, 36.837093], + [-82.821561, 36.837102], + [-82.821587, 36.837122], + [-82.821601, 36.837133], + [-82.821607, 36.837138], + [-82.821799, 36.837289], + [-82.822025, 36.83746], + [-82.82203, 36.837464], + [-82.822036, 36.837468], + [-82.822065, 36.83749], + [-82.822695, 36.837968], + [-82.823285, 36.83843], + [-82.8233, 36.838442], + [-82.823362, 36.838491], + [-82.823431, 36.838544], + [-82.823497, 36.838598], + [-82.823613, 36.83869], + [-82.823839, 36.838869], + [-82.82493, 36.839737], + [-82.825066, 36.839842], + [-82.835471, 36.848095], + [-82.835543, 36.848152], + [-82.838437, 36.848869], + [-82.839068, 36.848869], + [-82.839708, 36.848724], + [-82.840569, 36.848257], + [-82.841309, 36.847854], + [-82.84201, 36.847629], + [-82.84264, 36.847484], + [-82.843181, 36.84746], + [-82.843511, 36.847443], + [-82.844071, 36.847194], + [-82.844751, 36.846967], + [-82.844892, 36.84692], + [-82.846274, 36.847089], + [-82.846915, 36.847395], + [-82.846961, 36.847432], + [-82.846979, 36.847447], + [-82.847048, 36.847503], + [-82.847134, 36.847572], + [-82.847273, 36.847685], + [-82.847977, 36.848257], + [-82.848228, 36.848838], + [-82.84868, 36.849812], + [-82.849011, 36.850457], + [-82.849162, 36.850699], + [-82.849443, 36.850924], + [-82.849513, 36.851287], + [-82.849234, 36.851585], + [-82.849163, 36.851666], + [-82.848583, 36.852141], + [-82.848503, 36.852511], + [-82.848524, 36.852729], + [-82.849127, 36.854316], + [-82.849238, 36.855098], + [-82.848278, 36.856008], + [-82.847227, 36.856161], + [-82.844245, 36.857982], + [-82.844386, 36.858256], + [-82.844736, 36.858412], + [-82.845127, 36.858586], + [-82.845298, 36.859207], + [-82.845429, 36.859674], + [-82.845749, 36.859803], + [-82.84611, 36.859795], + [-82.84623, 36.859867], + [-82.846291, 36.860423], + [-82.846412, 36.861213], + [-82.847384, 36.861583], + [-82.849367, 36.862067], + [-82.849918, 36.862123], + [-82.850369, 36.862212], + [-82.850489, 36.862711], + [-82.85076, 36.863259], + [-82.851392, 36.863735], + [-82.851903, 36.864291], + [-82.852525, 36.864718], + [-82.852663, 36.865764], + [-82.852788, 36.8667], + [-82.85237, 36.867111], + [-82.852333, 36.867148], + [-82.852005, 36.867472], + [-82.851787, 36.867687], + [-82.851746, 36.867728], + [-82.85174, 36.867733], + [-82.851734, 36.867739], + [-82.851367, 36.868101], + [-82.851355, 36.868241], + [-82.851355, 36.868246], + [-82.851354, 36.868257], + [-82.85135, 36.868302], + [-82.851348, 36.86832], + [-82.851388, 36.868915], + [-82.851357, 36.869077], + [-82.851351, 36.869108], + [-82.85135, 36.869113], + [-82.851348, 36.869122], + [-82.851324, 36.869252], + [-82.851321, 36.869269], + [-82.85132, 36.869276], + [-82.851318, 36.869283], + [-82.851317, 36.86929], + [-82.851199, 36.869985], + [-82.85118, 36.8701], + [-82.851411, 36.870365], + [-82.851627, 36.870464], + [-82.851653, 36.870476], + [-82.851992, 36.870631], + [-82.852183, 36.870721], + [-82.852687, 36.87096], + [-82.852724, 36.870978], + [-82.853075, 36.871397], + [-82.853425, 36.871598], + [-82.853806, 36.871598], + [-82.854256, 36.87134], + [-82.854497, 36.871509], + [-82.855139, 36.87209], + [-82.855229, 36.872444], + [-82.85553, 36.872798], + [-82.855851, 36.872984], + [-82.856265, 36.873062], + [-82.85641, 36.873089], + [-82.856778, 36.873656], + [-82.856884, 36.873713], + [-82.856949, 36.873748], + [-82.856982, 36.873738], + [-82.857746, 36.873496], + [-82.857974, 36.873518], + [-82.858145, 36.873656], + [-82.858317, 36.874136], + [-82.858402, 36.874182], + [-82.858515, 36.874322], + [-82.859599, 36.875101], + [-82.859397, 36.875101], + [-82.859509, 36.875176], + [-82.859588, 36.875229], + [-82.859613, 36.875277], + [-82.859781, 36.875278], + [-82.860035, 36.875263], + [-82.860307, 36.875313], + [-82.860566, 36.875494], + [-82.860574, 36.8755], + [-82.860821, 36.875647], + [-82.861066, 36.875793], + [-82.861249, 36.875871], + [-82.861259, 36.875875], + [-82.861471, 36.875991], + [-82.861616, 36.87607], + [-82.861647, 36.876087], + [-82.861657, 36.876117], + [-82.861765, 36.876453], + [-82.862033, 36.876689], + [-82.8622, 36.87699], + [-82.862286, 36.877275], + [-82.862513, 36.877479], + [-82.862779, 36.877666], + [-82.86305, 36.877955], + [-82.863151, 36.878063], + [-82.863408, 36.878352], + [-82.86341, 36.878408], + [-82.863435, 36.878449], + [-82.863442, 36.87846], + [-82.863473, 36.878511], + [-82.863494, 36.878546], + [-82.863498, 36.878552], + [-82.863515, 36.87858], + [-82.86352, 36.878588], + [-82.863522, 36.878593], + [-82.863526, 36.878599], + [-82.863555, 36.878648], + [-82.863726, 36.878898], + [-82.863776, 36.879391], + [-82.863926, 36.879974], + [-82.864162, 36.88015], + [-82.864226, 36.880198], + [-82.864332, 36.880361], + [-82.864366, 36.880411], + [-82.864386, 36.880475], + [-82.864432, 36.880608], + [-82.864569, 36.881005], + [-82.86458, 36.881038], + [-82.864822, 36.881343], + [-82.865241, 36.881693], + [-82.865378, 36.881856], + [-82.865383, 36.881861], + [-82.865387, 36.881866], + [-82.865468, 36.881962], + [-82.865651, 36.882179], + [-82.865901, 36.882814], + [-82.865935, 36.882886], + [-82.866019, 36.883059], + [-82.866351, 36.88336], + [-82.866369, 36.883376], + [-82.86672, 36.883861], + [-82.866989, 36.88449], + [-82.867336, 36.884895], + [-82.867354, 36.884916], + [-82.867498, 36.885086], + [-82.868354, 36.885752], + [-82.868845, 36.88616], + [-82.86911, 36.88639], + [-82.869739, 36.886936], + [-82.870106, 36.887244], + [-82.87012, 36.887256], + [-82.870125, 36.88726], + [-82.87015, 36.887281], + [-82.870544, 36.887595], + [-82.870562, 36.887609], + [-82.870573, 36.88785], + [-82.870736, 36.888614], + [-82.87128, 36.889255], + [-82.871995, 36.889872], + [-82.872003, 36.889879], + [-82.872519, 36.890196], + [-82.872524, 36.890199], + [-82.872863, 36.890533], + [-82.873337, 36.890902], + [-82.873788, 36.891133], + [-82.874469, 36.891282], + [-82.874895, 36.891457], + [-82.875556, 36.891788], + [-82.876345, 36.892125], + [-82.876825, 36.892247], + [-82.877405, 36.892392], + [-82.877903, 36.892866], + [-82.878068, 36.892988], + [-82.878527, 36.893353], + [-82.878459, 36.893074], + [-82.878312, 36.892769], + [-82.877865, 36.891963], + [-82.877896, 36.891568], + [-82.878359, 36.890003], + [-82.878687, 36.889539], + [-82.879084, 36.889262], + [-82.879748, 36.889033], + [-82.880285, 36.888939], + [-82.881031, 36.888981], + [-82.881804, 36.888981], + [-82.883443, 36.888702], + [-82.884465, 36.888505], + [-82.884847, 36.8883], + [-82.885261, 36.887979], + [-82.885713, 36.887713], + [-82.887028, 36.887168], + [-82.887575, 36.886861], + [-82.887989, 36.886508], + [-82.888591, 36.885516], + [-82.889347, 36.884668], + [-82.890278, 36.884072], + [-82.891188, 36.883698], + [-82.891603, 36.883635], + [-82.892128, 36.883541], + [-82.892758, 36.88343], + [-82.893611, 36.883484], + [-82.893976, 36.883333], + [-82.894589, 36.882739], + [-82.895155, 36.882238], + [-82.895414, 36.882151], + [-82.895869, 36.882088], + [-82.896409, 36.881919], + [-82.896826, 36.881843], + [-82.897277, 36.881911], + [-82.897811, 36.881891], + [-82.898226, 36.881849], + [-82.898837, 36.88194], + [-82.899336, 36.881816], + [-82.899821, 36.881699], + [-82.900248, 36.881658], + [-82.90053, 36.881622], + [-82.900872, 36.881405], + [-82.901452, 36.880949], + [-82.901806, 36.880777], + [-82.90248, 36.880579], + [-82.903979, 36.880147], + [-82.904893, 36.879947], + [-82.906089, 36.879764], + [-82.906655, 36.879618], + [-82.907389, 36.879305], + [-82.907911, 36.878913], + [-82.908011, 36.878754], + [-82.907999, 36.8784], + [-82.908058, 36.877608], + [-82.907946, 36.87709], + [-82.907396, 36.875876], + [-82.907369, 36.875595], + [-82.907505, 36.875158], + [-82.907827, 36.874771], + [-82.908179, 36.874695], + [-82.909032, 36.874696], + [-82.909408, 36.874632], + [-82.910089, 36.874284], + [-82.91028, 36.874171], + [-82.910969, 36.874262], + [-82.911661, 36.87432], + [-82.911755, 36.874327], + [-82.911945, 36.874335], + [-82.912386, 36.874352], + [-82.912607, 36.874361], + [-82.91395, 36.87413], + [-82.914504, 36.873951], + [-82.914983, 36.873975], + [-82.916199, 36.873922], + [-82.917101, 36.873721], + [-82.917615, 36.873509], + [-82.918023, 36.873669], + [-82.91842, 36.873755], + [-82.918993, 36.873759], + [-82.919888, 36.87374], + [-82.920465, 36.873627], + [-82.920805, 36.873443], + [-82.920966, 36.873457], + [-82.921148, 36.873549], + [-82.922081, 36.873905], + [-82.922467, 36.873905], + [-82.922751, 36.873816], + [-82.923244, 36.873529], + [-82.923811, 36.873307], + [-82.92411, 36.873043], + [-82.92456, 36.872808], + [-82.924874, 36.872623], + [-82.925424, 36.871907], + [-82.925865, 36.871545], + [-82.926105, 36.871219], + [-82.926283, 36.871127], + [-82.926548, 36.871167], + [-82.92695, 36.871122], + [-82.927275, 36.870972], + [-82.928311, 36.870419], + [-82.928566, 36.870428], + [-82.928975, 36.8705], + [-82.929899, 36.870719], + [-82.930232, 36.870728], + [-82.930966, 36.870591], + [-82.931708, 36.870364], + [-82.931898, 36.870306], + [-82.932163, 36.870313], + [-82.93297, 36.870484], + [-82.93349, 36.870475], + [-82.9343, 36.870239], + [-82.934778, 36.869983], + [-82.935066, 36.869766], + [-82.935272, 36.869622], + [-82.936381, 36.869265], + [-82.936626, 36.869132], + [-82.936712, 36.868964], + [-82.936787, 36.86875], + [-82.936732, 36.868491], + [-82.936717, 36.868212], + [-82.936846, 36.867991], + [-82.937025, 36.867835], + [-82.937295, 36.867788], + [-82.937502, 36.86761], + [-82.937682, 36.867326], + [-82.939127, 36.867301], + [-82.940236, 36.867287], + [-82.941331, 36.867218], + [-82.941695, 36.867132], + [-82.942144, 36.866917], + [-82.942269, 36.866771], + [-82.942459, 36.866358], + [-82.94257, 36.866276], + [-82.94269, 36.866268], + [-82.943097, 36.866418], + [-82.943825, 36.866565], + [-82.944543, 36.866596], + [-82.945167, 36.86651], + [-82.945613, 36.866383], + [-82.946212, 36.866045], + [-82.946404, 36.865932], + [-82.946722, 36.865982], + [-82.948689, 36.866463], + [-82.948836, 36.866468], + [-82.949158, 36.8664], + [-82.949721, 36.866039], + [-82.949975, 36.866014], + [-82.951393, 36.866213], + [-82.95158, 36.866197], + [-82.951758, 36.866115], + [-82.952766, 36.865251], + [-82.952975, 36.86501], + [-82.953194, 36.864554], + [-82.953334, 36.86443], + [-82.953606, 36.864286], + [-82.953942, 36.86421], + [-82.954394, 36.864243], + [-82.954691, 36.864165], + [-82.955745, 36.863463], + [-82.95626, 36.863262], + [-82.956717, 36.86321], + [-82.957488, 36.863241], + [-82.958049, 36.863203], + [-82.958495, 36.863075], + [-82.959386, 36.862799], + [-82.959644, 36.862697], + [-82.960714, 36.862618], + [-82.961439, 36.862487], + [-82.961968, 36.862276], + [-82.962463, 36.861892], + [-82.962622, 36.861595], + [-82.96276, 36.86147], + [-82.963191, 36.861374], + [-82.963768, 36.861272], + [-82.963972, 36.861171], + [-82.96449, 36.860571], + [-82.964859, 36.860336], + [-82.965913, 36.860009], + [-82.966367, 36.859666], + [-82.966656, 36.859417], + [-82.967021, 36.859319], + [-82.967434, 36.85934], + [-82.968024, 36.859216], + [-82.968515, 36.85894], + [-82.968837, 36.858607], + [-82.969104, 36.858237], + [-82.969247, 36.858026], + [-82.969571, 36.857906], + [-82.969655, 36.857886], + [-82.970796, 36.857648], + [-82.971142, 36.857637], + [-82.971554, 36.857669], + [-82.971981, 36.857823], + [-82.972439, 36.858373], + [-82.973304, 36.859082], + [-82.973805, 36.8592], + [-82.97459, 36.859243], + [-82.975142, 36.859451], + [-82.975684, 36.859573], + [-82.976171, 36.859544], + [-82.976569, 36.859465], + [-82.977501, 36.85949], + [-82.977923, 36.859588], + [-82.978212, 36.859735], + [-82.978581, 36.85982], + [-82.979116, 36.859779], + [-82.979506, 36.859705], + [-82.980321, 36.859338], + [-82.98113, 36.859093], + [-82.981778, 36.858905], + [-82.982151, 36.858904], + [-82.982614, 36.859012], + [-82.98292, 36.858989], + [-82.983467, 36.85867], + [-82.983792, 36.858528], + [-82.984059, 36.858534], + [-82.984599, 36.85871], + [-82.985458, 36.858872], + [-82.986005, 36.858886], + [-82.986261, 36.858818], + [-82.986682, 36.858614], + [-82.986856, 36.858629], + [-82.987013, 36.858677], + [-82.987245, 36.858876], + [-82.987556, 36.859107], + [-82.988085, 36.859217], + [-82.989, 36.859163], + [-82.989606, 36.859005], + [-82.990204, 36.858742], + [-82.990684, 36.858422], + [-82.991061, 36.858313], + [-82.991384, 36.858259], + [-82.991842, 36.857808], + [-82.992004, 36.857771], + [-82.99223, 36.857756], + [-82.992853, 36.857878], + [-82.99325, 36.857922], + [-82.993628, 36.857823], + [-82.994302, 36.857481], + [-82.994811, 36.857408], + [-82.995761, 36.857326], + [-82.996289, 36.857136], + [-82.996699, 36.856869], + [-82.997594, 36.856858], + [-82.998389, 36.856633], + [-82.998591, 36.856574], + [-82.998689, 36.856458], + [-82.999488, 36.855514], + [-82.999984, 36.855088], + [-83.000349, 36.854978], + [-83.000825, 36.854744], + [-83.001105, 36.854398], + [-83.001792, 36.85357], + [-83.002024, 36.853424], + [-83.002908, 36.852997], + [-83.003061, 36.852797], + [-83.003349, 36.852354], + [-83.003815, 36.851637], + [-83.004048, 36.850828], + [-83.004259, 36.850522], + [-83.004684, 36.850266], + [-83.004918, 36.850075], + [-83.005112, 36.849879], + [-83.005731, 36.84906], + [-83.006378, 36.847886], + [-83.006581, 36.84765], + [-83.007467, 36.84749], + [-83.00862, 36.847327], + [-83.009246, 36.847415], + [-83.010238, 36.847541], + [-83.010868, 36.847792], + [-83.0111, 36.847815], + [-83.011574, 36.847644], + [-83.012287, 36.847128], + [-83.012441, 36.846937], + [-83.012775, 36.846937], + [-83.013034, 36.847146], + [-83.013547, 36.84733], + [-83.013909, 36.847577], + [-83.01523, 36.848564], + [-83.015764, 36.848868], + [-83.016321, 36.848957], + [-83.016737, 36.849038], + [-83.017612, 36.849374], + [-83.018198, 36.849516], + [-83.019003, 36.849707], + [-83.019937, 36.850042], + [-83.021015, 36.8501], + [-83.021499, 36.849995], + [-83.021917, 36.849887], + [-83.022083, 36.849942], + [-83.022336, 36.85007], + [-83.023252, 36.850867], + [-83.023738, 36.851152], + [-83.024151, 36.851393], + [-83.024632, 36.851684], + [-83.024835, 36.851947], + [-83.02523, 36.852729], + [-83.025696, 36.853406], + [-83.025856, 36.853774], + [-83.025974, 36.85485], + [-83.026082, 36.855111], + [-83.026314, 36.855429], + [-83.026611, 36.855563], + [-83.027052, 36.855564], + [-83.028324, 36.855393], + [-83.029072, 36.855348], + [-83.029672, 36.855407], + [-83.030205, 36.855377], + [-83.031745, 36.854847], + [-83.032814, 36.854457], + [-83.033755, 36.854297], + [-83.035708, 36.854124], + [-83.036093, 36.854175], + [-83.036366, 36.854333], + [-83.036581, 36.854628], + [-83.036894, 36.854819], + [-83.037528, 36.854964], + [-83.038724, 36.855058], + [-83.03998, 36.855003], + [-83.041032, 36.85502], + [-83.041381, 36.854964], + [-83.042003, 36.854724], + [-83.042821, 36.854283], + [-83.042913, 36.8542], + [-83.043125, 36.854011], + [-83.043668, 36.853468], + [-83.044709, 36.852756], + [-83.045294, 36.852448], + [-83.046956, 36.851868], + [-83.047804, 36.851687], + [-83.048228, 36.85174], + [-83.048834, 36.851937], + [-83.04967, 36.852033], + [-83.050901, 36.852017], + [-83.051517, 36.852], + [-83.05226, 36.852117], + [-83.05355, 36.85218], + [-83.054239, 36.852273], + [-83.054577, 36.85253], + [-83.055923, 36.852885], + [-83.056701, 36.853076], + [-83.057298, 36.853224], + [-83.057957, 36.853388], + [-83.058807, 36.853461], + [-83.060753, 36.853955], + [-83.062543, 36.852521], + [-83.063045, 36.851977], + [-83.06336, 36.851727], + [-83.063698, 36.85165], + [-83.064247, 36.85159], + [-83.064802, 36.851689], + [-83.065369, 36.851863], + [-83.066249, 36.851865], + [-83.066858, 36.851956], + [-83.067406, 36.852229], + [-83.0679, 36.852582], + [-83.068496, 36.853048], + [-83.068992, 36.853305], + [-83.069533, 36.85345], + [-83.070465, 36.853482], + [-83.070782, 36.853545], + [-83.071704, 36.854202], + [-83.072267, 36.854472], + [-83.072623, 36.854568], + [-83.07284, 36.854464], + [-83.075684, 36.850935], + [-83.075853, 36.850701], + [-83.075768, 36.850487], + [-83.075474, 36.850157], + [-83.075127, 36.849495], + [-83.075113, 36.849161], + [-83.075108, 36.848636], + [-83.074983, 36.848053], + [-83.074692, 36.847307], + [-83.074224, 36.84635], + [-83.074071, 36.8458], + [-83.074144, 36.844945], + [-83.074162, 36.844161], + [-83.074295, 36.843148], + [-83.074445, 36.842722], + [-83.074797, 36.84227], + [-83.074917, 36.841918], + [-83.075008, 36.840934], + [-83.075176, 36.840735], + [-83.075257, 36.840706], + [-83.076145, 36.840846], + [-83.076913, 36.840973], + [-83.077569, 36.840871], + [-83.078117, 36.840852], + [-83.078819, 36.840623], + [-83.080269, 36.84036], + [-83.080971, 36.84012], + [-83.081997, 36.839438], + [-83.083264, 36.839083], + [-83.084074, 36.839013], + [-83.084771, 36.838936], + [-83.085011, 36.838909], + [-83.085872, 36.838725], + [-83.086383, 36.83852], + [-83.086635, 36.838417], + [-83.087463, 36.838231], + [-83.087885, 36.838015], + [-83.088284, 36.837693], + [-83.088462, 36.837214], + [-83.089017, 36.836483], + [-83.089485, 36.835777], + [-83.089845, 36.835422], + [-83.090215, 36.835195], + [-83.090505, 36.834912], + [-83.090904, 36.834601], + [-83.092051, 36.834211], + [-83.092637, 36.833872], + [-83.093109, 36.833734], + [-83.094455, 36.833414], + [-83.09629, 36.832983], + [-83.096858, 36.832792], + [-83.097404, 36.832452], + [-83.098083, 36.832159], + [-83.098688, 36.832012], + [-83.099028, 36.831818], + [-83.099908, 36.831154], + [-83.100268, 36.830767], + [-83.10074, 36.829951], + [-83.10194, 36.828245], + [-83.102009, 36.828039], + [-83.102089, 36.827799], + [-83.102084, 36.827252], + [-83.10176, 36.826665], + [-83.101313, 36.826161], + [-83.10045, 36.825379], + [-83.099488, 36.824752], + [-83.099009, 36.824376], + [-83.098611, 36.823992], + [-83.098512, 36.823806], + [-83.098546, 36.823616], + [-83.098851, 36.823146], + [-83.099228, 36.822339], + [-83.099216, 36.821964], + [-83.099111, 36.821596], + [-83.099195, 36.820817], + [-83.099265, 36.819702], + [-83.099113, 36.819109], + [-83.099062, 36.818723], + [-83.099027, 36.81826], + [-83.099115, 36.817373], + [-83.099088, 36.816696], + [-83.098958, 36.816253], + [-83.099011, 36.815924], + [-83.099146, 36.815529], + [-83.099006, 36.81498], + [-83.098664, 36.814187], + [-83.098484, 36.813524], + [-83.09856, 36.813246], + [-83.099072, 36.812788], + [-83.099756, 36.812344], + [-83.100679, 36.811874], + [-83.101096, 36.811787], + [-83.101954, 36.811637], + [-83.102346, 36.811509], + [-83.102568, 36.811277], + [-83.102809, 36.810742], + [-83.103343, 36.809651], + [-83.103461, 36.809022], + [-83.103396, 36.808624], + [-83.103395, 36.808313], + [-83.103431, 36.807736], + [-83.103315, 36.807304], + [-83.10341, 36.806931], + [-83.103459, 36.806319], + [-83.103619, 36.805615], + [-83.103812, 36.805117], + [-83.104121, 36.804341], + [-83.104335, 36.804004], + [-83.104868, 36.803643], + [-83.105419, 36.803183], + [-83.10559, 36.802887], + [-83.10606, 36.802461], + [-83.106428, 36.802255], + [-83.1069, 36.802085], + [-83.108161, 36.80187], + [-83.108744, 36.801625], + [-83.109751, 36.801073], + [-83.110653, 36.800494], + [-83.111066, 36.800109], + [-83.111532, 36.799433], + [-83.11237, 36.798447], + [-83.112947, 36.797999], + [-83.113156, 36.797758], + [-83.113687, 36.797119], + [-83.114029, 36.796859], + [-83.114582, 36.796346], + [-83.114797, 36.795965], + [-83.114994, 36.795305], + [-83.115166, 36.794856], + [-83.115362, 36.794603], + [-83.115981, 36.794103], + [-83.116242, 36.793864], + [-83.116475, 36.793563], + [-83.116593, 36.793412], + [-83.117046, 36.792372], + [-83.117269, 36.792098], + [-83.117802, 36.791613], + [-83.117986, 36.791349], + [-83.118146, 36.790635], + [-83.118261, 36.790423], + [-83.118934, 36.789695], + [-83.118983, 36.789658], + [-83.119211, 36.789567], + [-83.120712, 36.788994], + [-83.120949, 36.788732], + [-83.121092, 36.78829], + [-83.121332, 36.787985], + [-83.12144, 36.787924], + [-83.121759, 36.78792], + [-83.122225, 36.787942], + [-83.122348, 36.787849], + [-83.122576, 36.787458], + [-83.122834, 36.786983], + [-83.123165, 36.7867], + [-83.123436, 36.786568], + [-83.123704, 36.78651], + [-83.123997, 36.78654], + [-83.124235, 36.786589], + [-83.124585, 36.786479], + [-83.124989, 36.786393], + [-83.125388, 36.786381], + [-83.125797, 36.786486], + [-83.126061, 36.786558], + [-83.126891, 36.786272], + [-83.127295, 36.786155], + [-83.12757, 36.785947], + [-83.127718, 36.785919], + [-83.128127, 36.785993], + [-83.128303, 36.785933], + [-83.128699, 36.785665], + [-83.12889, 36.785583], + [-83.129131, 36.785503], + [-83.129343, 36.785551], + [-83.129523, 36.785727], + [-83.129838, 36.785852], + [-83.130131, 36.785828], + [-83.130686, 36.785596], + [-83.131223, 36.785513], + [-83.131786, 36.785398], + [-83.132219, 36.785225], + [-83.133235, 36.784592], + [-83.133255, 36.784464], + [-83.133228, 36.783765], + [-83.133248, 36.78322], + [-83.133047, 36.782583], + [-83.132756, 36.782157], + [-83.132257, 36.781618], + [-83.131976, 36.781125], + [-83.131537, 36.780106], + [-83.131246, 36.77966], + [-83.13119, 36.779433], + [-83.131271, 36.779016], + [-83.131184, 36.778842], + [-83.130851, 36.778503], + [-83.130626, 36.778153], + [-83.130081, 36.777588], + [-83.129599, 36.776944], + [-83.129419, 36.776445], + [-83.129139, 36.776084], + [-83.128991, 36.775791], + [-83.129106, 36.775569], + [-83.129295, 36.775499], + [-83.129431, 36.775395], + [-83.129806, 36.775029], + [-83.130046, 36.774659], + [-83.130009, 36.774063], + [-83.130123, 36.773873], + [-83.130432, 36.773784], + [-83.130763, 36.773835], + [-83.131458, 36.773799], + [-83.131705, 36.773603], + [-83.131921, 36.773157], + [-83.132118, 36.772884], + [-83.132839, 36.772139], + [-83.133084, 36.771686], + [-83.132969, 36.771553], + [-83.132689, 36.771535], + [-83.132169, 36.771565], + [-83.131756, 36.771554], + [-83.131495, 36.771409], + [-83.131131, 36.771176], + [-83.130629, 36.771076], + [-83.13013, 36.770893], + [-83.129832, 36.770672], + [-83.12957, 36.770193], + [-83.129546, 36.769827], + [-83.129776, 36.769384], + [-83.129885, 36.768946], + [-83.130082, 36.768682], + [-83.130341, 36.768508], + [-83.130634, 36.768547], + [-83.130979, 36.768534], + [-83.131092, 36.768386], + [-83.13126, 36.768155], + [-83.13138, 36.767804], + [-83.131263, 36.767114], + [-83.131196, 36.766716], + [-83.131146, 36.766286], + [-83.13126, 36.766097], + [-83.131406, 36.766068], + [-83.131901, 36.766027], + [-83.132231, 36.765912], + [-83.132366, 36.765716], + [-83.132466, 36.765204], + [-83.132616, 36.764715], + [-83.132549, 36.764402], + [-83.132328, 36.764257], + [-83.13159, 36.764222], + [-83.131208, 36.764117], + [-83.130886, 36.763861], + [-83.13038, 36.763485], + [-83.129763, 36.763243], + [-83.129557, 36.76309], + [-83.129064, 36.762734], + [-83.128152, 36.762561], + [-83.127256, 36.762292], + [-83.126693, 36.762033], + [-83.12639, 36.76196], + [-83.12594, 36.761896], + [-83.125667, 36.761749], + [-83.125577, 36.76163], + [-83.125638, 36.761458], + [-83.125699, 36.761405], + [-83.125976, 36.761163], + [-83.126566, 36.761027], + [-83.12685, 36.760905], + [-83.126977, 36.760747], + [-83.126988, 36.760448], + [-83.127137, 36.760043], + [-83.127401, 36.759761], + [-83.127603, 36.75968], + [-83.127884, 36.759664], + [-83.128373, 36.759752], + [-83.128573, 36.759725], + [-83.128642, 36.759662], + [-83.128621, 36.759533], + [-83.128462, 36.759154], + [-83.128428, 36.758671], + [-83.128544, 36.758427], + [-83.128809, 36.758102], + [-83.128899, 36.757846], + [-83.128822, 36.757393], + [-83.12846, 36.756753], + [-83.128363, 36.756504], + [-83.128387, 36.756257], + [-83.128642, 36.755866], + [-83.12873, 36.755645], + [-83.128714, 36.755022], + [-83.128634, 36.754313], + [-83.128736, 36.753746], + [-83.128927, 36.753259], + [-83.129022, 36.752895], + [-83.128901, 36.75254], + [-83.128657, 36.752351], + [-83.128422, 36.752172], + [-83.128024, 36.75181], + [-83.12784, 36.751388], + [-83.127814, 36.751065], + [-83.127989, 36.750652], + [-83.128208, 36.750485], + [-83.128401, 36.75035], + [-83.128945, 36.750343], + [-83.129627, 36.750284], + [-83.129975, 36.750239], + [-83.12977, 36.750009], + [-83.129737, 36.749826], + [-83.129902, 36.74968], + [-83.130134, 36.749546], + [-83.130873, 36.749737], + [-83.131656, 36.749809], + [-83.131969, 36.749977], + [-83.132165, 36.750047], + [-83.13268, 36.749813], + [-83.133687, 36.749612], + [-83.134319, 36.749457], + [-83.134429, 36.749364], + [-83.133957, 36.748794], + [-83.133944, 36.74846], + [-83.13407, 36.748294], + [-83.134142, 36.748134], + [-83.133981, 36.74784], + [-83.134037, 36.747091], + [-83.133814, 36.746625], + [-83.133631, 36.746525], + [-83.133276, 36.746429], + [-83.133027, 36.746316], + [-83.132996, 36.746101], + [-83.133067, 36.745973], + [-83.133238, 36.745656], + [-83.133402, 36.745574], + [-83.133634, 36.745419], + [-83.133698, 36.745153], + [-83.133865, 36.744954], + [-83.133908, 36.744516], + [-83.133963, 36.74411], + [-83.134637, 36.743526], + [-83.134737, 36.743203], + [-83.134851, 36.742832], + [-83.135124, 36.742636], + [-83.136497, 36.742949], + [-83.13712, 36.743061], + [-83.137546, 36.743028], + [-83.138247, 36.74269], + [-83.138399, 36.742641], + [-83.138784, 36.742662], + [-83.13993, 36.742648], + [-83.14037, 36.742604], + [-83.141019, 36.742364], + [-83.141479, 36.742192], + [-83.142002, 36.742067], + [-83.142426, 36.741808], + [-83.143823, 36.741811], + [-83.144415, 36.741643], + [-83.145212, 36.741696], + [-83.147261, 36.742046], + [-83.148029, 36.74215], + [-83.148522, 36.742164], + [-83.149126, 36.742017], + [-83.149446, 36.742002], + [-83.149844, 36.742044], + [-83.150426, 36.742144], + [-83.151011, 36.742149], + [-83.151477, 36.74216], + [-83.151867, 36.742427], + [-83.152228, 36.742693], + [-83.152494, 36.742711], + [-83.152925, 36.742571], + [-83.153064, 36.742423], + [-83.153162, 36.741956], + [-83.153279, 36.741689], + [-83.153441, 36.74164], + [-83.153777, 36.741552], + [-83.154826, 36.741611], + [-83.156011, 36.741606], + [-83.156503, 36.741629], + [-83.156763, 36.741764], + [-83.157311, 36.741372], + [-83.157744, 36.741198], + [-83.158411, 36.74115], + [-83.158821, 36.740905], + [-83.159302, 36.740807], + [-83.159814, 36.740648], + [-83.160185, 36.740347], + [-83.160652, 36.739972], + [-83.161249, 36.739687], + [-83.161853, 36.73954], + [-83.162467, 36.739513], + [-83.163128, 36.739305], + [-83.16391, 36.739377], + [-83.164974, 36.739425], + [-83.165983, 36.739448], + [-83.166385, 36.739385], + [-83.166732, 36.739372], + [-83.166987, 36.739303], + [-83.167132, 36.739337], + [-83.16676, 36.739683], + [-83.166607, 36.739861], + [-83.166898, 36.740232], + [-83.167274, 36.740522], + [-83.168028, 36.740648], + [-83.168631, 36.740522], + [-83.169927, 36.74006], + [-83.17138, 36.739998], + [-83.171822, 36.739945], + [-83.172006, 36.740014], + [-83.172441, 36.740112], + [-83.172757, 36.739849], + [-83.173159, 36.739774], + [-83.173502, 36.739493], + [-83.174441, 36.739323], + [-83.174832, 36.739182], + [-83.174939, 36.739185], + [-83.17525, 36.739387], + [-83.175631, 36.739523], + [-83.176318, 36.7397], + [-83.176801, 36.739585], + [-83.177356, 36.739331], + [-83.177608, 36.739348], + [-83.178039, 36.739218], + [-83.1785, 36.73939], + [-83.17871, 36.739428], + [-83.17911, 36.739394], + [-83.179481, 36.7395], + [-83.17972, 36.739495], + [-83.18022, 36.739303], + [-83.180496, 36.739364], + [-83.180986, 36.73944], + [-83.181417, 36.739333], + [-83.181803, 36.739309], + [-83.182375, 36.739323], + [-83.183653, 36.739677], + [-83.184186, 36.739647], + [-83.184741, 36.739401], + [-83.185049, 36.739366], + [-83.185767, 36.739396], + [-83.186351, 36.739431], + [-83.187407, 36.739306], + [-83.188827, 36.739438], + [-83.1892, 36.739414], + [-83.190463, 36.739488], + [-83.191109, 36.739265], + [-83.191351, 36.739199], + [-83.191564, 36.739215], + [-83.192168, 36.739421], + [-83.192475, 36.73944], + [-83.193212, 36.739285], + [-83.193307, 36.739277], + [-83.193831, 36.739461], + [-83.194256, 36.739526], + [-83.194843, 36.739455], + [-83.195249, 36.739272], + [-83.195642, 36.738755], + [-83.195835, 36.738694], + [-83.196248, 36.738565], + [-83.196967, 36.738552], + [-83.19759, 36.7383], + [-83.198507, 36.737966], + [-83.199752, 36.737396], + [-83.200006, 36.73735], + [-83.200722, 36.737087], + [-83.201298, 36.737015], + [-83.201606, 36.736937], + [-83.20222, 36.736909], + [-83.203017, 36.73695], + [-83.203683, 36.736591], + [-83.204318, 36.736327], + [-83.204893, 36.736233], + [-83.205223, 36.735962], + [-83.206179, 36.735655], + [-83.206922, 36.735746], + [-83.207086, 36.735623], + [-83.207387, 36.735405], + [-83.207876, 36.735137], + [-83.208443, 36.734914], + [-83.208858, 36.73485], + [-83.209272, 36.734828], + [-83.209554, 36.73477], + [-83.210514, 36.734343], + [-83.210783, 36.734275], + [-83.211684, 36.734359], + [-83.21229, 36.733849], + [-83.213126, 36.73357], + [-83.214208, 36.733456], + [-83.2148, 36.733277], + [-83.215316, 36.733354], + [-83.216246, 36.733408], + [-83.216822, 36.733316], + [-83.217363, 36.733081], + [-83.217609, 36.732916], + [-83.217699, 36.732619], + [-83.217948, 36.732388], + [-83.218871, 36.731895], + [-83.219576, 36.73157], + [-83.220665, 36.731274], + [-83.221733, 36.730828], + [-83.223029, 36.730687], + [-83.223365, 36.730598], + [-83.223723, 36.730265], + [-83.224004, 36.730229], + [-83.22454, 36.730122], + [-83.225246, 36.730129], + [-83.225614, 36.730256], + [-83.225879, 36.730295], + [-83.226603, 36.730109], + [-83.227014, 36.72984], + [-83.227393, 36.729677], + [-83.227766, 36.729644], + [-83.228101, 36.729575], + [-83.228483, 36.729328], + [-83.228883, 36.728952], + [-83.229098, 36.728902], + [-83.229751, 36.728875], + [-83.23021, 36.728682], + [-83.231242, 36.728493], + [-83.232253, 36.728506], + [-83.232442, 36.728425], + [-83.232771, 36.728187], + [-83.233208, 36.727875], + [-83.233677, 36.727779], + [-83.234545, 36.727682], + [-83.235679, 36.727259], + [-83.236183, 36.726971], + [-83.237225, 36.726846], + [-83.238057, 36.726672], + [-83.238658, 36.726621], + [-83.239815, 36.726649], + [-83.240068, 36.726635], + [-83.240473, 36.726472], + [-83.240673, 36.726455], + [-83.240877, 36.726331], + [-83.241224, 36.725966], + [-83.241521, 36.725843], + [-83.24216, 36.725827], + [-83.242442, 36.725779], + [-83.243752, 36.725983], + [-83.244153, 36.725939], + [-83.245055, 36.726012], + [-83.245484, 36.725947], + [-83.246136, 36.725589], + [-83.246865, 36.725264], + [-83.247462, 36.725181], + [-83.247924, 36.725074], + [-83.248223, 36.724899], + [-83.248667, 36.724437], + [-83.24894, 36.724241], + [-83.24981, 36.7241], + [-83.250988, 36.723727], + [-83.251508, 36.723739], + [-83.252282, 36.723659], + [-83.252733, 36.723681], + [-83.253301, 36.723791], + [-83.253609, 36.723767], + [-83.253961, 36.723593], + [-83.254362, 36.723184], + [-83.255239, 36.722476], + [-83.255973, 36.722064], + [-83.256158, 36.722079], + [-83.256995, 36.722152], + [-83.257853, 36.72197], + [-83.258364, 36.722009], + [-83.258783, 36.722168], + [-83.259274, 36.722222], + [-83.259677, 36.722136], + [-83.260528, 36.721791], + [-83.261296, 36.721508], + [-83.262476, 36.721291], + [-83.263627, 36.720938], + [-83.263867, 36.72092], + [-83.264368, 36.72104], + [-83.264583, 36.72097], + [-83.264831, 36.720772], + [-83.265266, 36.720493], + [-83.266671, 36.719916], + [-83.267807, 36.719427], + [-83.270041, 36.71872], + [-83.271274, 36.718479], + [-83.272576, 36.718178], + [-83.273656, 36.718117], + [-83.27477, 36.717877], + [-83.275635, 36.71751], + [-83.276171, 36.717405], + [-83.277637, 36.716604], + [-83.278033, 36.716511], + [-83.279601, 36.716204], + [-83.280343, 36.715943], + [-83.281247, 36.715954], + [-83.281997, 36.715833], + [-83.28326, 36.715861], + [-83.284583, 36.715689], + [-83.284894, 36.715579], + [-83.285306, 36.715234], + [-83.286098, 36.715006], + [-83.286527, 36.714587], + [-83.286789, 36.714336], + [-83.287042, 36.714288], + [-83.287766, 36.714155], + [-83.287878, 36.714019], + [-83.2883, 36.713717], + [-83.289455, 36.713467], + [-83.290468, 36.713392], + [-83.29075, 36.713314], + [-83.291361, 36.713006], + [-83.291561, 36.712989], + [-83.2934, 36.712905], + [-83.29392, 36.712905], + [-83.294843, 36.713099], + [-83.295905, 36.713553], + [-83.296635, 36.713611], + [-83.296837, 36.71353], + [-83.297049, 36.713203], + [-83.298412, 36.712656], + [-83.299533, 36.712222], + [-83.299868, 36.712154], + [-83.301311, 36.711953], + [-83.302356, 36.711771], + [-83.302654, 36.71163], + [-83.302931, 36.711303], + [-83.303137, 36.711158], + [-83.303657, 36.711127], + [-83.30454, 36.710997], + [-83.305032, 36.710976], + [-83.305704, 36.711197], + [-83.30634, 36.711244], + [-83.307195, 36.711145], + [-83.308121, 36.710941], + [-83.308496, 36.710885], + [-83.309715, 36.710646], + [-83.310443, 36.710397], + [-83.311391, 36.709892], + [-83.311948, 36.709625], + [-83.312642, 36.709138], + [-83.313659, 36.708615], + [-83.314628, 36.708294], + [-83.315821, 36.708085], + [-83.316541, 36.708017], + [-83.317266, 36.707862], + [-83.317864, 36.707845], + [-83.318338, 36.707652], + [-83.319212, 36.707424], + [-83.321015, 36.706618], + [-83.321277, 36.706551], + [-83.321719, 36.706475], + [-83.322676, 36.706498], + [-83.323133, 36.70639], + [-83.324361, 36.705935], + [-83.325074, 36.705653], + [-83.327971, 36.704878], + [-83.328741, 36.70453], + [-83.329508, 36.704281], + [-83.330228, 36.704242], + [-83.331094, 36.70397], + [-83.332272, 36.703781], + [-83.332599, 36.703586], + [-83.333205, 36.703374], + [-83.334971, 36.702739], + [-83.335506, 36.702632], + [-83.336164, 36.702664], + [-83.337491, 36.702394], + [-83.338156, 36.702045], + [-83.33857, 36.702001], + [-83.339422, 36.701967], + [-83.340039, 36.701841], + [-83.340848, 36.701506], + [-83.342016, 36.701035], + [-83.342808, 36.70087], + [-83.3442, 36.700582], + [-83.345903, 36.700423], + [-83.346699, 36.700494], + [-83.34709, 36.700331], + [-83.347639, 36.700206], + [-83.347967, 36.699977], + [-83.348986, 36.699001], + [-83.350052, 36.697847], + [-83.350392, 36.69761], + [-83.351567, 36.697121], + [-83.353386, 36.696631], + [-83.3539, 36.696417], + [-83.354746, 36.695815], + [-83.355386, 36.695578], + [-83.358285, 36.693693], + [-83.358771, 36.693513], + [-83.35955, 36.693273], + [-83.359911, 36.693248], + [-83.360373, 36.693354], + [-83.360774, 36.693675], + [-83.361319, 36.694064], + [-83.361682, 36.694349], + [-83.363274, 36.69445], + [-83.363837, 36.694314], + [-83.364977, 36.694103], + [-83.365709, 36.693713], + [-83.366469, 36.693248], + [-83.367636, 36.692587], + [-83.368785, 36.692066], + [-83.369924, 36.691439], + [-83.370433, 36.69099], + [-83.371096, 36.690693], + [-83.371709, 36.690653], + [-83.372211, 36.690364], + [-83.372671, 36.690493], + [-83.373293, 36.690228], + [-83.374051, 36.690094], + [-83.374546, 36.690141], + [-83.37515, 36.690377], + [-83.37527, 36.690735], + [-83.376556, 36.690143], + [-83.37698, 36.689787], + [-83.377752, 36.689752], + [-83.378823, 36.689208], + [-83.378956, 36.688813], + [-83.379111, 36.68855], + [-83.379326, 36.688447], + [-83.379754, 36.688403], + [-83.380694, 36.688541], + [-83.380859, 36.688407], + [-83.380983, 36.687884], + [-83.381242, 36.687333], + [-83.381496, 36.687295], + [-83.382012, 36.687361], + [-83.382373, 36.687326], + [-83.382756, 36.687408], + [-83.383248, 36.687387], + [-83.383441, 36.68721], + [-83.38382, 36.686598], + [-83.384089, 36.686581], + [-83.384773, 36.686789], + [-83.384986, 36.686784], + [-83.385494, 36.68669], + [-83.386465, 36.686689], + [-83.386813, 36.686621], + [-83.387455, 36.686175], + [-83.388321, 36.685735], + [-83.389962, 36.685037], + [-83.389879, 36.684746], + [-83.389503, 36.684446], + [-83.389129, 36.684117], + [-83.389121, 36.683935], + [-83.389357, 36.68366], + [-83.392654, 36.682111], + [-83.392709, 36.682097], + [-83.392985, 36.681855], + [-83.392967, 36.681609], + [-83.392938, 36.681275], + [-83.393079, 36.681011], + [-83.393391, 36.680847], + [-83.39425, 36.680641], + [-83.394902, 36.680269], + [-83.395518, 36.679759], + [-83.395874, 36.679433], + [-83.395911, 36.679135], + [-83.395762, 36.67882], + [-83.395218, 36.678058], + [-83.395243, 36.677716], + [-83.395559, 36.677411], + [-83.396487, 36.676912], + [-83.397441, 36.676677], + [-83.399601, 36.675706], + [-83.400705, 36.675291], + [-83.402113, 36.67498], + [-83.402693, 36.674757], + [-83.403457, 36.674217], + [-83.404294, 36.673839], + [-83.404844, 36.673711], + [-83.40558, 36.673578], + [-83.406118, 36.673376], + [-83.407163, 36.673176], + [-83.407634, 36.673002], + [-83.408804, 36.672268], + [-83.409273, 36.672171], + [-83.409705, 36.671966], + [-83.41061, 36.671536], + [-83.411468, 36.671372], + [-83.411926, 36.671179], + [-83.412282, 36.670877], + [-83.412712, 36.670737], + [-83.413167, 36.670649], + [-83.413573, 36.670477], + [-83.414333, 36.670441], + [-83.414833, 36.670215], + [-83.415756, 36.670022], + [-83.417382, 36.669532], + [-83.4182, 36.668971], + [-83.418686, 36.668736], + [-83.419116, 36.668628], + [-83.420736, 36.668289], + [-83.421551, 36.668178], + [-83.422232, 36.668068], + [-83.424717, 36.667347], + [-83.425827, 36.667189], + [-83.426712, 36.66714], + [-83.427882, 36.667188], + [-83.428416, 36.667103], + [-83.428993, 36.666987], + [-83.430027, 36.667074], + [-83.430547, 36.667011], + [-83.431755, 36.666694], + [-83.432771, 36.666558], + [-83.433278, 36.666472], + [-83.435288, 36.666407], + [-83.436358, 36.666228], + [-83.437102, 36.666266], + [-83.437641, 36.666417], + [-83.43832, 36.666411], + [-83.439513, 36.666545], + [-83.440092, 36.666729], + [-83.440724, 36.66692], + [-83.441548, 36.667001], + [-83.441963, 36.666982], + [-83.442486, 36.667107], + [-83.443549, 36.667186], + [-83.444222, 36.667004], + [-83.445171, 36.666526], + [-83.44631, 36.666052], + [-83.447045, 36.665575], + [-83.447838, 36.665323], + [-83.448675, 36.665321], + [-83.449831, 36.665379], + [-83.450548, 36.665404], + [-83.450972, 36.66532], + [-83.451383, 36.665152], + [-83.451965, 36.665189], + [-83.452313, 36.665143], + [-83.452916, 36.664986], + [-83.453694, 36.6648], + [-83.454491, 36.664828], + [-83.455366, 36.664879], + [-83.456307, 36.664986], + [-83.45694, 36.665149], + [-83.45725, 36.665446], + [-83.457789, 36.665606], + [-83.458348, 36.665598], + [-83.458642, 36.66552], + [-83.459033, 36.665389], + [-83.459674, 36.665341], + [-83.460084, 36.665262], + [-83.460487, 36.665056], + [-83.460724, 36.664941], + [-83.46102, 36.664867], + [-83.461502, 36.664771], + [-83.462026, 36.6648], + [-83.463112, 36.664958], + [-83.46352, 36.664953], + [-83.464975, 36.664753], + [-83.466016, 36.664783], + [-83.466615, 36.664716], + [-83.466959, 36.664771], + [-83.467283, 36.664907], + [-83.467993, 36.665027], + [-83.469038, 36.664993], + [-83.469642, 36.665031], + [-83.470477, 36.66493], + [-83.471001, 36.665044], + [-83.471778, 36.665277], + [-83.473266, 36.665573], + [-83.474015, 36.665453], + [-83.474459, 36.665518], + [-83.475244, 36.665769], + [-83.476591, 36.665854], + [-83.477797, 36.665975], + [-83.478479, 36.66611], + [-83.479613, 36.666617], + [-83.479883, 36.666542], + [-83.48013, 36.666308], + [-83.480681, 36.666119], + [-83.481332, 36.665981], + [-83.481832, 36.666113], + [-83.482684, 36.666194], + [-83.483356, 36.666577], + [-83.484073, 36.666785], + [-83.484813, 36.667061], + [-83.485504, 36.66718], + [-83.486467, 36.667168], + [-83.486926, 36.667378], + [-83.48838, 36.667703], + [-83.488981, 36.667826], + [-83.490551, 36.668397], + [-83.491161, 36.668539], + [-83.491867, 36.669099], + [-83.492809, 36.670194], + [-83.493194, 36.670219], + [-83.494252, 36.670065], + [-83.49463, 36.670049], + [-83.495787, 36.670187], + [-83.496743, 36.670071], + [-83.497157, 36.670153], + [-83.497962, 36.670418], + [-83.498589, 36.6704], + [-83.499223, 36.670446], + [-83.499578, 36.67022], + [-83.49991, 36.670061], + [-83.500178, 36.669769], + [-83.500454, 36.669536], + [-83.500834, 36.669439], + [-83.501568, 36.669472], + [-83.503033, 36.66956], + [-83.503709, 36.669551], + [-83.504247, 36.669449], + [-83.505363, 36.669034], + [-83.505754, 36.668953], + [-83.506964, 36.668973], + [-83.507771, 36.668837], + [-83.508425, 36.668933], + [-83.509263, 36.668781], + [-83.509809, 36.66904], + [-83.510525, 36.669007], + [-83.510762, 36.669053], + [-83.512112, 36.669635], + [-83.512441, 36.669608], + [-83.513064, 36.66939], + [-83.513403, 36.669022], + [-83.513523, 36.668712], + [-83.513822, 36.66839], + [-83.514014, 36.668236], + [-83.514661, 36.668201], + [-83.515258, 36.667853], + [-83.515588, 36.667782], + [-83.515805, 36.667818], + [-83.516129, 36.667928], + [-83.516858, 36.668425], + [-83.517092, 36.668508], + [-83.517292, 36.668505], + [-83.517453, 36.668422], + [-83.517741, 36.66814], + [-83.517933, 36.66799], + [-83.518726, 36.668049], + [-83.519026, 36.667975], + [-83.51953, 36.667728], + [-83.520076, 36.667429], + [-83.520546, 36.667334], + [-83.521077, 36.667179], + [-83.521744, 36.66684], + [-83.522132, 36.666694], + [-83.522813, 36.666583], + [-83.523214, 36.666455], + [-83.523668, 36.666234], + [-83.523998, 36.666176], + [-83.524632, 36.66619], + [-83.52502, 36.666165], + [-83.525762, 36.665982], + [-83.526428, 36.6659], + [-83.526829, 36.66593], + [-83.527311, 36.666084], + [-83.527636, 36.666138], + [-83.528057, 36.666036], + [-83.528824, 36.665634], + [-83.529145, 36.665563], + [-83.529441, 36.665592], + [-83.529725, 36.665726], + [-83.530034, 36.666006], + [-83.53015, 36.666056], + [-83.530343, 36.66594], + [-83.530573, 36.665584], + [-83.530837, 36.665445], + [-83.531766, 36.665218], + [-83.5322, 36.665003], + [-83.532408, 36.664696], + [-83.532321, 36.664326], + [-83.532016, 36.663943], + [-83.531837, 36.663668], + [-83.531835, 36.663091], + [-83.53194, 36.662597], + [-83.532061, 36.662255], + [-83.53231, 36.661972], + [-83.532836, 36.661632], + [-83.533318, 36.66149], + [-83.533817, 36.661396], + [-83.534459, 36.661178], + [-83.535285, 36.660797], + [-83.535861, 36.660629], + [-83.536212, 36.660525], + [-83.536396, 36.660377], + [-83.536453, 36.66016], + [-83.536453, 36.659818], + [-83.536483, 36.659561], + [-83.536722, 36.65919], + [-83.537058, 36.658941], + [-83.53738, 36.658797], + [-83.537849, 36.658743], + [-83.538118, 36.658668], + [-83.538582, 36.658494], + [-83.53912, 36.658417], + [-83.539699, 36.658317], + [-83.540091, 36.658126], + [-83.540358, 36.657859], + [-83.540723, 36.657331], + [-83.540997, 36.657145], + [-83.541429, 36.656986], + [-83.541651, 36.656855], + [-83.541746, 36.65669], + [-83.54205, 36.656502], + [-83.542841, 36.65628], + [-83.543255, 36.656039], + [-83.543861, 36.655462], + [-83.544262, 36.655303], + [-83.544639, 36.655309], + [-83.545059, 36.655216], + [-83.545373, 36.655044], + [-83.545825, 36.654582], + [-83.546199, 36.654359], + [-83.546821, 36.65414], + [-83.548121, 36.653822], + [-83.549068, 36.653723], + [-83.549642, 36.653742], + [-83.550089, 36.653728], + [-83.550577, 36.653675], + [-83.551657, 36.654035], + [-83.552184, 36.654046], + [-83.552532, 36.653948], + [-83.552865, 36.653811], + [-83.553572, 36.653441], + [-83.554095, 36.653221], + [-83.554798, 36.652963], + [-83.555049, 36.652897], + [-83.555968, 36.653004], + [-83.556466, 36.65291], + [-83.556879, 36.652745], + [-83.557778, 36.652259], + [-83.558347, 36.652151], + [-83.559242, 36.652089], + [-83.560098, 36.651995], + [-83.560632, 36.651752], + [-83.560969, 36.651617], + [-83.56145, 36.651491], + [-83.561918, 36.651431], + [-83.56243, 36.651256], + [-83.562725, 36.651023], + [-83.562903, 36.650763], + [-83.562892, 36.65049], + [-83.562651, 36.649909], + [-83.562637, 36.649742], + [-83.562767, 36.649577], + [-83.562833, 36.649519], + [-83.56345, 36.64919], + [-83.564232, 36.648614], + [-83.56457, 36.648293], + [-83.564724, 36.64816], + [-83.56541, 36.647789], + [-83.566055, 36.647173], + [-83.566225, 36.647119], + [-83.566524, 36.647101], + [-83.567073, 36.646993], + [-83.567297, 36.646846], + [-83.567702, 36.646279], + [-83.567857, 36.646058], + [-83.568189, 36.645921], + [-83.568958, 36.645761], + [-83.569179, 36.645668], + [-83.570063, 36.645041], + [-83.570596, 36.644819], + [-83.571649, 36.64448], + [-83.572117, 36.644435], + [-83.572675, 36.644358], + [-83.573032, 36.644326], + [-83.574021, 36.644433], + [-83.574338, 36.644441], + [-83.57462, 36.644343], + [-83.574753, 36.644225], + [-83.574829, 36.64402], + [-83.575018, 36.643678], + [-83.575337, 36.643325], + [-83.576661, 36.642539], + [-83.576867, 36.64231], + [-83.576928, 36.641992], + [-83.577065, 36.64173], + [-83.57732, 36.641503], + [-83.577611, 36.641397], + [-83.577958, 36.641452], + [-83.578471, 36.641847], + [-83.578841, 36.641727], + [-83.579428, 36.641708], + [-83.580299, 36.641764], + [-83.580619, 36.641661], + [-83.581667, 36.641475], + [-83.582548, 36.641541], + [-83.582659, 36.64147], + [-83.582926, 36.641211], + [-83.583128, 36.641111], + [-83.583324, 36.641164], + [-83.58368, 36.641556], + [-83.584242, 36.6416], + [-83.584578, 36.641662], + [-83.584916, 36.641933], + [-83.585656, 36.643013], + [-83.58596, 36.643763], + [-83.586175, 36.643857], + [-83.586453, 36.64387], + [-83.58709, 36.643647], + [-83.587423, 36.643447], + [-83.587441, 36.643215], + [-83.587299, 36.643004], + [-83.587059, 36.642742], + [-83.587064, 36.642567], + [-83.5873, 36.642308], + [-83.587602, 36.642193], + [-83.588505, 36.642189], + [-83.588936, 36.642021], + [-83.589549, 36.64153], + [-83.58986, 36.641385], + [-83.590942, 36.641392], + [-83.591182, 36.641315], + [-83.591762, 36.640904], + [-83.592179, 36.640693], + [-83.592917, 36.640547], + [-83.593708, 36.64066], + [-83.594301, 36.640753], + [-83.594929, 36.64035], + [-83.595753, 36.640047], + [-83.597872, 36.638875], + [-83.598517, 36.638624], + [-83.599278, 36.638399], + [-83.599854, 36.638051], + [-83.600436, 36.637856], + [-83.601687, 36.637678], + [-83.601996, 36.637587], + [-83.602681, 36.637299], + [-83.603072, 36.637154], + [-83.60347, 36.637123], + [-83.603707, 36.637184], + [-83.603881, 36.637299], + [-83.604062, 36.637878], + [-83.604106, 36.637993], + [-83.604647, 36.637866], + [-83.605905, 36.637908], + [-83.607131, 36.637414], + [-83.607932, 36.637165], + [-83.60898, 36.637003], + [-83.609491, 36.636831], + [-83.61008, 36.636442], + [-83.610558, 36.635741], + [-83.611072, 36.635159], + [-83.611254, 36.635043], + [-83.611586, 36.634905], + [-83.611934, 36.634864], + [-83.612584, 36.635038], + [-83.61303, 36.635055], + [-83.613677, 36.634956], + [-83.6139, 36.634857], + [-83.614088, 36.634524], + [-83.614295, 36.634258], + [-83.61463, 36.634048], + [-83.614996, 36.633752], + [-83.615165, 36.633372], + [-83.615171, 36.632939], + [-83.615152, 36.632569], + [-83.615246, 36.632397], + [-83.615381, 36.632272], + [-83.615921, 36.632107], + [-83.616364, 36.631908], + [-83.616638, 36.631688], + [-83.616867, 36.631373], + [-83.617103, 36.630787], + [-83.617437, 36.630305], + [-83.617666, 36.629918], + [-83.618046, 36.628917], + [-83.618265, 36.628594], + [-83.618569, 36.628359], + [-83.619278, 36.627871], + [-83.619833, 36.627609], + [-83.620514, 36.627383], + [-83.620847, 36.627239], + [-83.621393, 36.626914], + [-83.621824, 36.626746], + [-83.621956, 36.626644], + [-83.622676, 36.626023], + [-83.622956, 36.62594], + [-83.623437, 36.625808], + [-83.624021, 36.625516], + [-83.624579, 36.62543], + [-83.624887, 36.62538], + [-83.625239, 36.625237], + [-83.626315, 36.62509], + [-83.626757, 36.624947], + [-83.627303, 36.624926], + [-83.627903, 36.624779], + [-83.628334, 36.624611], + [-83.628611, 36.624337], + [-83.629384, 36.624278], + [-83.630396, 36.623937], + [-83.63188, 36.623504], + [-83.634152, 36.622944], + [-83.634718, 36.622897], + [-83.634936, 36.622894], + [-83.63507, 36.622954], + [-83.635347, 36.623113], + [-83.635576, 36.623157], + [-83.635832, 36.623248], + [-83.636508, 36.6237], + [-83.637008, 36.624021], + [-83.637247, 36.624086], + [-83.637895, 36.624066], + [-83.638446, 36.624101], + [-83.638861, 36.624201], + [-83.640731, 36.62477], + [-83.641075, 36.624768], + [-83.641422, 36.624684], + [-83.641813, 36.624523], + [-83.642467, 36.624006], + [-83.642762, 36.623869], + [-83.642961, 36.623873], + [-83.643188, 36.623945], + [-83.64388, 36.624514], + [-83.644055, 36.62462], + [-83.644307, 36.624549], + [-83.644603, 36.624386], + [-83.645128, 36.624313], + [-83.645382, 36.624191], + [-83.645555, 36.623984], + [-83.645675, 36.623474], + [-83.645852, 36.623191], + [-83.646203, 36.622937], + [-83.646467, 36.622868], + [-83.646694, 36.622906], + [-83.647398, 36.623106], + [-83.647707, 36.62309], + [-83.64809, 36.622846], + [-83.648321, 36.622454], + [-83.648364, 36.622061], + [-83.648188, 36.621342], + [-83.648242, 36.620996], + [-83.648653, 36.620328], + [-83.648724, 36.620084], + [-83.64858, 36.619704], + [-83.64854, 36.619315], + [-83.648647, 36.618888], + [-83.649215, 36.617706], + [-83.649288, 36.617395], + [-83.649231, 36.616872], + [-83.649317, 36.616781], + [-83.64973, 36.616907], + [-83.650311, 36.617004], + [-83.65097, 36.616958], + [-83.651361, 36.616806], + [-83.651662, 36.616551], + [-83.651851, 36.616167], + [-83.652076, 36.615625], + [-83.652686, 36.615132], + [-83.652923, 36.614877], + [-83.653192, 36.61435], + [-83.6542, 36.613437], + [-83.654573, 36.613184], + [-83.654922, 36.613023], + [-83.65513, 36.613002], + [-83.656997, 36.61309], + [-83.657113, 36.613035], + [-83.657405, 36.612693], + [-83.657749, 36.612027], + [-83.65791, 36.611872], + [-83.658229, 36.611692], + [-83.658464, 36.611487], + [-83.658663, 36.611145], + [-83.659016, 36.610876], + [-83.659278, 36.610527], + [-83.659439, 36.610379], + [-83.659873, 36.610143], + [-83.660741, 36.609428], + [-83.660985, 36.609291], + [-83.661544, 36.609059], + [-83.662045, 36.608749], + [-83.662537, 36.608312], + [-83.662971, 36.607783], + [-83.663163, 36.607307], + [-83.663359, 36.607075], + [-83.663552, 36.606935], + [-83.664014, 36.606801], + [-83.66455, 36.606703], + [-83.664889, 36.606499], + [-83.665733, 36.605876], + [-83.66597, 36.605776], + [-83.666148, 36.605764], + [-83.668808, 36.605931], + [-83.668956, 36.605849], + [-83.669433, 36.60532], + [-83.669782, 36.605151], + [-83.67037, 36.604994], + [-83.671011, 36.604873], + [-83.672024, 36.604817], + [-83.672964, 36.604769], + [-83.673208, 36.604648], + [-83.673306, 36.604531], + [-83.673342, 36.604395], + [-83.6734, 36.604171], + [-83.673699, 36.60394], + [-83.673903, 36.603854], + [-83.67444, 36.603628], + [-83.674723, 36.603246], + [-83.67501, 36.602033], + [-83.675202, 36.601566], + [-83.675297, 36.601161], + [-83.675399, 36.600791] + ], + [ + [-81.37943, 36.952424], + [-81.379131, 36.952724], + [-81.37908, 36.952878], + [-81.378931, 36.953324], + [-81.378631, 36.953724], + [-81.378431, 36.953924], + [-81.378331, 36.954124], + [-81.378231, 36.954224], + [-81.377931, 36.954624], + [-81.377731, 36.955124], + [-81.377531, 36.955524], + [-81.377331, 36.956024], + [-81.376931, 36.956824], + [-81.376631, 36.957324], + [-81.376031, 36.957924], + [-81.375631, 36.958424], + [-81.375431, 36.958624], + [-81.375231, 36.958924], + [-81.375031, 36.959424], + [-81.375031, 36.959724], + [-81.374531, 36.960224], + [-81.374531, 36.960524], + [-81.374431, 36.960724], + [-81.374231, 36.961024], + [-81.374131, 36.961324], + [-81.373931, 36.961424], + [-81.373631, 36.961624], + [-81.373431, 36.961724], + [-81.373231, 36.962224], + [-81.373131, 36.962424], + [-81.373231, 36.962524], + [-81.373131, 36.962924], + [-81.372931, 36.963324], + [-81.371831, 36.964424], + [-81.371331, 36.965024], + [-81.370931, 36.965424], + [-81.370531, 36.965724], + [-81.369931, 36.966024], + [-81.369331, 36.966224], + [-81.368831, 36.966424], + [-81.368531, 36.966724], + [-81.367831, 36.967124], + [-81.367231, 36.967224], + [-81.366731, 36.967024], + [-81.366431, 36.966724], + [-81.365931, 36.966524], + [-81.365131, 36.966524], + [-81.364831, 36.966424], + [-81.364431, 36.966424], + [-81.364031, 36.966324], + [-81.363731, 36.966124], + [-81.363131, 36.965524], + [-81.363031, 36.965324], + [-81.362831, 36.965224], + [-81.362731, 36.965124], + [-81.36083, 36.965124], + [-81.36043, 36.964924], + [-81.35993, 36.965024], + [-81.35943, 36.965224], + [-81.359014, 36.965307], + [-81.35893, 36.965324], + [-81.35863, 36.965324], + [-81.358586, 36.965309], + [-81.35833, 36.965224], + [-81.35773, 36.965224], + [-81.35703, 36.965124], + [-81.35663, 36.965024], + [-81.35623, 36.964824], + [-81.35583, 36.964524], + [-81.35493, 36.964524], + [-81.35453, 36.964624], + [-81.35413, 36.964924], + [-81.35353, 36.965224], + [-81.35253, 36.965424], + [-81.35213, 36.965524], + [-81.35183, 36.965524], + [-81.35063, 36.965824], + [-81.35023, 36.966124], + [-81.34993, 36.966324], + [-81.34973, 36.966424], + [-81.34913, 36.966924], + [-81.34853, 36.967224], + [-81.34803, 36.967524], + [-81.34783, 36.967724], + [-81.34783, 36.968124], + [-81.34763, 36.968524], + [-81.34713, 36.968924], + [-81.34653, 36.969224], + [-81.34613, 36.969524], + [-81.345882, 36.969854], + [-81.34583, 36.969924], + [-81.34563, 36.970124], + [-81.34543, 36.970424], + [-81.34513, 36.970824], + [-81.344829, 36.970924], + [-81.344429, 36.971124], + [-81.344429, 36.971324], + [-81.344129, 36.971524], + [-81.343931, 36.971643], + [-81.343629, 36.971824], + [-81.343529, 36.971924], + [-81.343329, 36.972224], + [-81.343029, 36.972624], + [-81.342629, 36.973024], + [-81.342129, 36.973624], + [-81.341629, 36.974024], + [-81.341129, 36.974524], + [-81.340621, 36.974714], + [-81.340329, 36.974824], + [-81.339729, 36.974924], + [-81.339129, 36.974924], + [-81.338629, 36.975224], + [-81.338329, 36.975424], + [-81.338229, 36.975824], + [-81.338129, 36.976124], + [-81.338129, 36.977424], + [-81.337529, 36.977524], + [-81.337229, 36.977724], + [-81.335829, 36.979124], + [-81.335229, 36.979624], + [-81.334729, 36.980124], + [-81.334229, 36.980724], + [-81.333629, 36.981324], + [-81.333129, 36.981924], + [-81.331829, 36.983224], + [-81.331629, 36.983624], + [-81.331329, 36.984024], + [-81.331029, 36.984224], + [-81.330829, 36.984324], + [-81.330529, 36.984724], + [-81.330329, 36.985124], + [-81.330029, 36.985524], + [-81.329729, 36.985524], + [-81.329529, 36.985424], + [-81.329129, 36.985624], + [-81.328629, 36.985924], + [-81.328429, 36.986224], + [-81.328129, 36.986724], + [-81.327737, 36.987124], + [-81.326928, 36.987224], + [-81.326628, 36.987424], + [-81.326428, 36.987724], + [-81.326328, 36.988024], + [-81.326157, 36.988281], + [-81.326128, 36.988324], + [-81.326091, 36.988352], + [-81.325728, 36.988624], + [-81.325228, 36.988924], + [-81.324728, 36.989324], + [-81.324428, 36.989724], + [-81.324241, 36.989911], + [-81.323628, 36.990224], + [-81.323028, 36.990424], + [-81.322528, 36.990724], + [-81.322328, 36.991024], + [-81.321628, 36.991724], + [-81.321528, 36.991924], + [-81.321028, 36.992424], + [-81.320628, 36.992524], + [-81.320428, 36.992724], + [-81.320028, 36.993024], + [-81.319428, 36.993424], + [-81.319128, 36.993724], + [-81.319128, 36.993824], + [-81.319028, 36.994324], + [-81.319028, 36.994524], + [-81.319036, 36.994654], + [-81.319028, 36.994724], + [-81.318928, 36.994724], + [-81.318528, 36.994824], + [-81.318428, 36.994924], + [-81.318428, 36.995224], + [-81.318293, 36.995403], + [-81.318128, 36.995624], + [-81.317628, 36.996124], + [-81.317128, 36.996424], + [-81.316828, 36.996524], + [-81.316428, 36.996824], + [-81.316228, 36.997224], + [-81.315928, 36.997624], + [-81.315828, 36.997924], + [-81.315728, 36.998124], + [-81.315528, 36.998324], + [-81.315428, 36.998524], + [-81.315228, 36.998524], + [-81.314828, 36.998724], + [-81.314328, 36.998824], + [-81.313628, 36.999224], + [-81.313328, 36.999424], + [-81.313028, 36.999724], + [-81.312627, 37.000124], + [-81.311457, 37.000901], + [-81.310257, 37.001696], + [-81.309525, 37.002159], + [-81.308914, 37.002427], + [-81.308243, 37.002736], + [-81.307993, 37.002858], + [-81.307433, 37.003449], + [-81.306893, 37.003855], + [-81.305893, 37.004689], + [-81.305153, 37.005265], + [-81.303492, 37.006522], + [-81.302181, 37.007277], + [-81.301662, 37.007852], + [-81.300431, 37.008857], + [-81.299161, 37.00991], + [-81.298371, 37.010478], + [-81.297592, 37.011385], + [-81.296612, 37.012357], + [-81.2952, 37.013063], + [-81.294089, 37.013753], + [-81.292276, 37.014994], + [-81.291447, 37.01578], + [-81.290345, 37.016364], + [-81.289073, 37.017159], + [-81.287922, 37.017938], + [-81.287122, 37.018554], + [-81.286461, 37.019], + [-81.285318, 37.019334], + [-81.283744, 37.01967], + [-81.283073, 37.020076], + [-81.282261, 37.020369], + [-81.281047, 37.02055], + [-81.278739, 37.020766], + [-81.277948, 37.021075], + [-81.276716, 37.021838], + [-81.275142, 37.022504], + [-81.273789, 37.023178], + [-81.272417, 37.02399], + [-81.271104, 37.024534], + [-81.270162, 37.024892], + [-81.268811, 37.025833], + [-81.267609, 37.026668], + [-81.266538, 37.027406], + [-81.265827, 37.027997], + [-81.265138, 37.028758], + [-81.264257, 37.029592], + [-81.263697, 37.03007], + [-81.263127, 37.030564], + [-81.262295, 37.031132], + [-81.261183, 37.031628], + [-81.25988, 37.032181], + [-81.257482, 37.032712], + [-81.256458, 37.032933], + [-81.254964, 37.033373], + [-81.253529, 37.033603], + [-81.252325, 37.033816], + [-81.251011, 37.033997], + [-81.249824, 37.034339], + [-81.249322, 37.034527], + [-81.248569, 37.034663], + [-81.247907, 37.034823], + [-81.247033, 37.035152], + [-81.24621, 37.035424], + [-81.245135, 37.035841], + [-81.243689, 37.036427], + [-81.242514, 37.036852], + [-81.24168, 37.037334], + [-81.240876, 37.037824], + [-81.23977, 37.038387], + [-81.238565, 37.038844], + [-81.238113, 37.03902], + [-81.237399, 37.039478], + [-81.236123, 37.04033], + [-81.234876, 37.041158], + [-81.234062, 37.041777], + [-81.233066, 37.04242], + [-81.232292, 37.04304], + [-81.231874, 37.043334], + [-81.231448, 37.043635], + [-81.230664, 37.044028], + [-81.22998, 37.044422], + [-81.229317, 37.044848], + [-81.228714, 37.045266], + [-81.228261, 37.04566], + [-81.228239, 37.045678], + [-81.227903, 37.045948], + [-81.226636, 37.046717], + [-81.22544, 37.047439], + [-81.224616, 37.047847], + [-81.223555, 37.047943], + [-81.222181, 37.047955], + [-81.221569, 37.047952], + [-81.220768, 37.047805], + [-81.220046, 37.047649], + [-81.219325, 37.047454], + [-81.218788, 37.047327], + [-81.218463, 37.047251], + [-81.217681, 37.047201], + [-81.217199, 37.047208], + [-81.216999, 37.047167], + [-81.215927, 37.046713], + [-81.214123, 37.046217], + [-81.212819, 37.046076], + [-81.211867, 37.0458], + [-81.210854, 37.045612], + [-81.210202, 37.045514], + [-81.20937, 37.045318], + [-81.208198, 37.044703], + [-81.207086, 37.044111], + [-81.206155, 37.043593], + [-81.205624, 37.043414], + [-81.205062, 37.043413], + [-81.204571, 37.043259], + [-81.20379, 37.04295], + [-81.202527, 37.042455], + [-81.201236, 37.041831], + [-81.200184, 37.041313], + [-81.198922, 37.040769], + [-81.197761, 37.040121], + [-81.196709, 37.039651], + [-81.195658, 37.039124], + [-81.194627, 37.038492], + [-81.192945, 37.037561], + [-81.191822, 37.037042], + [-81.191392, 37.036686], + [-81.191133, 37.036266], + [-81.190873, 37.035854], + [-81.190664, 37.035442], + [-81.190255, 37.034917], + [-81.189696, 37.034077], + [-81.189238, 37.033173], + [-81.18871, 37.032212], + [-81.18842, 37.031937], + [-81.1879, 37.031629], + [-81.18744, 37.031104], + [-81.186361, 37.030036], + [-81.185231, 37.029001], + [-81.184451, 37.028491], + [-81.18293, 37.027487], + [-81.181199, 37.026362], + [-81.180258, 37.026053], + [-81.179737, 37.025858], + [-81.179587, 37.025769], + [-81.179367, 37.025526], + [-81.179067, 37.025268], + [-81.178857, 37.025106], + [-81.178216, 37.024983], + [-81.176782, 37.024874], + [-81.175658, 37.024759], + [-81.174465, 37.024667], + [-81.173482, 37.02468], + [-81.172509, 37.024662], + [-81.172028, 37.024596], + [-81.171546, 37.024603], + [-81.170754, 37.024673], + [-81.169781, 37.024791], + [-81.169149, 37.024773], + [-81.167454, 37.024664], + [-81.16606, 37.02466], + [-81.164876, 37.024851], + [-81.16337, 37.025137], + [-81.161784, 37.025536], + [-81.160397, 37.025919], + [-81.158288, 37.026703], + [-81.154319, 37.028321], + [-81.151385, 37.029579], + [-81.147968, 37.031327], + [-81.147626, 37.031526], + [-81.145726, 37.032635], + [-81.143091, 37.033982], + [-81.141513, 37.034671], + [-81.140238, 37.034885], + [-81.138731, 37.035542], + [-81.135979, 37.036372], + [-81.13418, 37.037085], + [-81.132491, 37.037822], + [-81.131997, 37.038045], + [-81.131342, 37.038342], + [-81.13123, 37.03826], + [-81.131039, 37.038102], + [-81.129615, 37.036926], + [-81.126973, 37.03476], + [-81.126731, 37.034561], + [-81.126305, 37.034198], + [-81.124816, 37.032938], + [-81.122805, 37.030921], + [-81.122587, 37.030708], + [-81.122542, 37.030664], + [-81.118201, 37.026415], + [-81.116144, 37.024402], + [-81.114322, 37.022619], + [-81.113446, 37.022987], + [-81.112105, 37.023536], + [-81.110037, 37.024187], + [-81.108061, 37.024797], + [-81.107107, 37.025108], + [-81.106953, 37.025154], + [-81.106898, 37.02517], + [-81.106812, 37.025197], + [-81.106412, 37.025316], + [-81.105531, 37.025584], + [-81.104475, 37.025948], + [-81.103273, 37.026179], + [-81.101355, 37.026246], + [-81.100285, 37.026375], + [-81.100119, 37.026393], + [-81.099826, 37.026441], + [-81.099723, 37.026458], + [-81.099699, 37.026462], + [-81.098967, 37.026554], + [-81.097656, 37.026994], + [-81.096422, 37.027575], + [-81.095356, 37.027997], + [-81.094164, 37.028328], + [-81.093837, 37.028499], + [-81.09333, 37.02902], + [-81.092624, 37.029527], + [-81.09202, 37.029795], + [-81.091006, 37.030094], + [-81.089644, 37.030579], + [-81.088123, 37.030987], + [-81.086667, 37.031207], + [-81.086206, 37.031376], + [-81.08591, 37.031643], + [-81.084941, 37.032391], + [-81.083642, 37.03306], + [-81.082157, 37.033605], + [-81.080335, 37.034126], + [-81.078956, 37.034464], + [-81.077255, 37.034792], + [-81.075778, 37.035123], + [-81.07473, 37.035151], + [-81.072672, 37.035333], + [-81.072065, 37.035299], + [-81.07173, 37.035304], + [-81.071168, 37.035552], + [-81.0708, 37.035651], + [-81.070033, 37.035736], + [-81.068471, 37.035957], + [-81.066398, 37.036365], + [-81.064554, 37.036798], + [-81.064312, 37.036851], + [-81.063617, 37.03741], + [-81.06311, 37.037567], + [-81.062177, 37.037697], + [-81.061161, 37.037769], + [-81.060508, 37.038017], + [-81.059815, 37.038387], + [-81.058981, 37.038739], + [-81.057978, 37.039036], + [-81.057125, 37.039252], + [-81.056231, 37.039451], + [-81.055399, 37.039418], + [-81.054768, 37.039441], + [-81.054506, 37.039561], + [-81.054305, 37.039754], + [-81.053852, 37.040172], + [-81.053481, 37.04026], + [-81.052769, 37.040226], + [-81.052308, 37.040282], + [-81.051596, 37.040264], + [-81.050994, 37.040328], + [-81.050482, 37.040464], + [-81.049981, 37.040519], + [-81.048787, 37.040589], + [-81.048124, 37.040636], + [-81.047823, 37.040789], + [-81.04741, 37.041086], + [-81.047099, 37.04119], + [-81.044963, 37.041395], + [-81.044691, 37.041484], + [-81.04441, 37.041652], + [-81.043808, 37.04178], + [-81.043276, 37.041803], + [-81.042835, 37.041955], + [-81.042372, 37.042164], + [-81.042041, 37.042324], + [-81.04153, 37.042315], + [-81.040958, 37.042378], + [-81.040586, 37.042515], + [-81.038035, 37.043581], + [-81.037, 37.044183], + [-81.036587, 37.044561], + [-81.036184, 37.044955], + [-81.035501, 37.04526], + [-81.034828, 37.045581], + [-81.034004, 37.046095], + [-81.0333, 37.046512], + [-81.033029, 37.046721], + [-81.032517, 37.046865], + [-81.032004, 37.046904], + [-81.031592, 37.047032], + [-81.031, 37.0472], + [-81.030358, 37.047151], + [-81.027409, 37.047491], + [-81.026807, 37.047497], + [-81.026506, 37.047497], + [-81.026025, 37.047576], + [-81.025613, 37.047753], + [-81.02516, 37.047977], + [-81.024518, 37.048177], + [-81.02223, 37.048575], + [-81.019079, 37.048955], + [-81.016078, 37.049392], + [-81.013299, 37.049595], + [-81.012416, 37.049698], + [-81.011894, 37.049761], + [-81.011463, 37.049897], + [-81.011171, 37.049985], + [-81.009446, 37.050086], + [-81.00755, 37.050218], + [-81.005403, 37.050568], + [-81.003909, 37.050733], + [-81.003627, 37.050765], + [-81.002874, 37.050836], + [-81.001951, 37.051051], + [-81.000967, 37.051202], + [-81.000526, 37.051225], + [-81.000235, 37.051249], + [-80.999808, 37.051321], + [-80.999611, 37.051341], + [-80.998949, 37.051388], + [-80.998277, 37.05148], + [-80.997577, 37.051573], + [-80.997017, 37.051619], + [-80.995728, 37.051648], + [-80.995696, 37.051654], + [-80.99106, 37.051704], + [-80.986351, 37.052472], + [-80.983601, 37.05298], + [-80.981403, 37.053559], + [-80.980727, 37.053035], + [-80.979668, 37.053112], + [-80.974834, 37.054596], + [-80.972966, 37.054824], + [-80.971956, 37.056063], + [-80.971463, 37.056086], + [-80.970932, 37.05636], + [-80.970431, 37.056632], + [-80.969707, 37.057025], + [-80.967863, 37.057568], + [-80.967189, 37.057556], + [-80.966192, 37.057661], + [-80.965571, 37.057962], + [-80.964744, 37.058364], + [-80.963857, 37.058777], + [-80.962582, 37.059079], + [-80.96138, 37.059109], + [-80.96048, 37.059133], + [-80.960189, 37.059595], + [-80.960038, 37.059698], + [-80.957928, 37.060996], + [-80.956416, 37.061018], + [-80.955415, 37.06124], + [-80.953929, 37.061717], + [-80.952687, 37.062114], + [-80.952332, 37.062229], + [-80.949058, 37.063281], + [-80.943137, 37.065414], + [-80.938532, 37.066639], + [-80.937, 37.066897], + [-80.935713, 37.066464], + [-80.934556, 37.066693], + [-80.933859, 37.067043], + [-80.933087, 37.067433], + [-80.929772, 37.06849], + [-80.926995, 37.069255], + [-80.924577, 37.070307], + [-80.922619, 37.071494], + [-80.92125, 37.071945], + [-80.919677, 37.07199], + [-80.916716, 37.072954], + [-80.915782, 37.072757], + [-80.913966, 37.073412], + [-80.912677, 37.073356], + [-80.91215, 37.072109], + [-80.911077, 37.069568], + [-80.911075, 37.069563], + [-80.911072, 37.069556], + [-80.910993, 37.069368], + [-80.910572, 37.068372], + [-80.910046, 37.067127], + [-80.910022, 37.067062], + [-80.909952, 37.066871], + [-80.909928, 37.066807], + [-80.909739, 37.066287], + [-80.909174, 37.064727], + [-80.908986, 37.064207], + [-80.908165, 37.06228], + [-80.905704, 37.056501], + [-80.904884, 37.054575], + [-80.904879, 37.054563], + [-80.904694, 37.054129], + [-80.904139, 37.052825], + [-80.903954, 37.052392], + [-80.903947, 37.052376], + [-80.90379, 37.052007], + [-80.903319, 37.050901], + [-80.903162, 37.050533], + [-80.90221, 37.048304], + [-80.900237, 37.043683], + [-80.900187, 37.043566], + [-80.900167, 37.04352], + [-80.90015, 37.043479], + [-80.90014, 37.043455], + [-80.900132, 37.043437], + [-80.90005, 37.043245], + [-80.899355, 37.041618], + [-80.898467, 37.039539], + [-80.898387, 37.039398], + [-80.898321, 37.039276], + [-80.898125, 37.038909], + [-80.89806, 37.038787], + [-80.897953, 37.038575], + [-80.897854, 37.03838], + [-80.897837, 37.038346], + [-80.897835, 37.038341], + [-80.897632, 37.037938], + [-80.897525, 37.037726], + [-80.897491, 37.037638], + [-80.897191, 37.036882], + [-80.896744, 37.035757], + [-80.896731, 37.035725], + [-80.896685, 37.03561], + [-80.896666, 37.035562], + [-80.896661, 37.035548], + [-80.896601, 37.035397], + [-80.896185, 37.03435], + [-80.89585, 37.033507], + [-80.895836, 37.033475], + [-80.895834, 37.03347], + [-80.894789, 37.031011], + [-80.894747, 37.030913], + [-80.894733, 37.03088], + [-80.894725, 37.03086], + [-80.894708, 37.03082], + [-80.894679, 37.030752], + [-80.894518, 37.030373], + [-80.893258, 37.027408], + [-80.888027, 37.022769], + [-80.887137, 37.02198], + [-80.887002, 37.02186], + [-80.88689, 37.021761], + [-80.886805, 37.021686], + [-80.88548, 37.020511], + [-80.885247, 37.020303], + [-80.885236, 37.020293], + [-80.884841, 37.019941], + [-80.884832, 37.019933], + [-80.884804, 37.019908], + [-80.884795, 37.0199], + [-80.88387, 37.01908], + [-80.883199, 37.018485], + [-80.883194, 37.018481], + [-80.883156, 37.018447], + [-80.881095, 37.01662], + [-80.880171, 37.015801], + [-80.880168, 37.015799], + [-80.879895, 37.015557], + [-80.879077, 37.014831], + [-80.878805, 37.014589], + [-80.878494, 37.014313], + [-80.877563, 37.013485], + [-80.877376, 37.013319], + [-80.877247, 37.013217], + [-80.876645, 37.012734], + [-80.876537, 37.012647], + [-80.876323, 37.012475], + [-80.876124, 37.012316], + [-80.876102, 37.012298], + [-80.876083, 37.012283], + [-80.875862, 37.012105], + [-80.87585, 37.012095], + [-80.875636, 37.011923], + [-80.87551, 37.011822], + [-80.87548, 37.011798], + [-80.875444, 37.011769], + [-80.875403, 37.011736], + [-80.875265, 37.011625], + [-80.87515, 37.011533], + [-80.875068, 37.011467], + [-80.874998, 37.01141], + [-80.874912, 37.011341], + [-80.874851, 37.011292], + [-80.874838, 37.011282], + [-80.874816, 37.011265], + [-80.874787, 37.011241], + [-80.874706, 37.011226], + [-80.87455, 37.011203], + [-80.874538, 37.011201], + [-80.87453, 37.0112], + [-80.874523, 37.011199], + [-80.87451, 37.011197], + [-80.874491, 37.011194], + [-80.87436, 37.011174], + [-80.874225, 37.011087], + [-80.874129, 37.011025], + [-80.874104, 37.011009], + [-80.874091, 37.011], + [-80.874054, 37.010977], + [-80.874049, 37.010974], + [-80.874035, 37.010965], + [-80.87398, 37.01093], + [-80.873814, 37.010824], + [-80.873758, 37.010788], + [-80.873696, 37.010748], + [-80.873444, 37.010588], + [-80.87194, 37.009627], + [-80.867427, 37.006745], + [-80.865922, 37.005784], + [-80.864638, 37.004964], + [-80.864587, 37.004931], + [-80.864558, 37.004913], + [-80.864545, 37.004905], + [-80.864507, 37.004881], + [-80.864454, 37.004847], + [-80.864174, 37.004668], + [-80.863175, 37.00403], + [-80.862579, 37.003649], + [-80.858601, 37.000126], + [-80.858562, 37.00009], + [-80.858551, 37.00008], + [-80.858544, 37.000074], + [-80.858535, 37.000066], + [-80.857627, 36.999244], + [-80.855816, 36.997603], + [-80.8534, 36.995413], + [-80.852658, 36.994743], + [-80.850429, 36.992732], + [-80.849686, 36.992061], + [-80.84883, 36.99129], + [-80.846261, 36.988973], + [-80.845405, 36.988201], + [-80.843401, 36.986392], + [-80.837388, 36.980965], + [-80.835383, 36.979156], + [-80.83536, 36.979136], + [-80.83529, 36.979075], + [-80.835266, 36.979054], + [-80.835243, 36.979033], + [-80.835172, 36.97897], + [-80.835147, 36.978949], + [-80.835009, 36.978824], + [-80.834967, 36.978786], + [-80.834949, 36.978768], + [-80.834646, 36.978468], + [-80.834558, 36.97838], + [-80.834375, 36.978199], + [-80.834184, 36.978009], + [-80.834152, 36.977977], + [-80.834054, 36.977881], + [-80.834048, 36.977876], + [-80.833988, 36.977816], + [-80.833953, 36.97778], + [-80.833748, 36.977573], + [-80.83368, 36.977504], + [-80.831737, 36.975582], + [-80.825906, 36.969817], + [-80.823962, 36.967895], + [-80.823959, 36.967892], + [-80.82307, 36.967013], + [-80.820402, 36.964375], + [-80.819512, 36.963495], + [-80.817966, 36.961966], + [-80.813327, 36.957379], + [-80.81178, 36.95585], + [-80.810513, 36.954558], + [-80.80936, 36.953382], + [-80.809356, 36.953378], + [-80.809471, 36.953289], + [-80.809478, 36.953284], + [-80.810039, 36.952852], + [-80.812118, 36.95257], + [-80.811827, 36.951806], + [-80.811183, 36.950114], + [-80.810709, 36.948838], + [-80.809494, 36.945568], + [-80.809457, 36.944973], + [-80.809375, 36.943644], + [-80.809373, 36.943614], + [-80.809247, 36.941373], + [-80.809198, 36.940493], + [-80.803841, 36.942857], + [-80.801786, 36.943764], + [-80.801721, 36.943793], + [-80.801826, 36.94395], + [-80.802237, 36.944561], + [-80.802412, 36.944819], + [-80.803186, 36.945966], + [-80.803098, 36.946134], + [-80.803068, 36.946191], + [-80.803032, 36.94626], + [-80.803021, 36.946282], + [-80.803012, 36.946299], + [-80.802823, 36.946662], + [-80.799853, 36.943797], + [-80.798727, 36.942711], + [-80.79872, 36.942704], + [-80.798666, 36.942648], + [-80.798503, 36.942477], + [-80.798448, 36.94242], + [-80.797844, 36.941788], + [-80.79603, 36.939892], + [-80.795425, 36.939259], + [-80.79541, 36.939243], + [-80.795362, 36.939193], + [-80.795346, 36.939177], + [-80.795305, 36.939134], + [-80.795181, 36.939004], + [-80.79514, 36.938961], + [-80.795124, 36.938944], + [-80.795106, 36.938925], + [-80.79479, 36.938587], + [-80.793741, 36.937465], + [-80.793391, 36.93709], + [-80.793359, 36.937056], + [-80.793315, 36.937008], + [-80.793262, 36.936952], + [-80.793229, 36.936917], + [-80.793192, 36.936877], + [-80.79308, 36.936756], + [-80.793072, 36.936748], + [-80.793042, 36.936716], + [-80.792869, 36.936547], + [-80.792519, 36.936205], + [-80.792353, 36.936042], + [-80.792181, 36.935874], + [-80.791868, 36.935567], + [-80.790931, 36.934647], + [-80.790618, 36.93434], + [-80.790586, 36.934304], + [-80.790558, 36.934273], + [-80.790376, 36.934073], + [-80.790315, 36.934006], + [-80.790239, 36.93392], + [-80.790115, 36.933781], + [-80.790006, 36.933665], + [-80.789927, 36.93358], + [-80.789882, 36.93353], + [-80.789781, 36.933419], + [-80.789628, 36.933251], + [-80.789476, 36.933084], + [-80.789374, 36.932972], + [-80.78924, 36.93282], + [-80.788839, 36.932365], + [-80.788753, 36.932268], + [-80.788719, 36.932229], + [-80.788705, 36.932213], + [-80.787628, 36.931029], + [-80.784397, 36.927476], + [-80.783324, 36.926297], + [-80.78332, 36.926292], + [-80.782845, 36.92578], + [-80.781422, 36.924244], + [-80.780947, 36.923732], + [-80.780848, 36.923625], + [-80.780669, 36.923432], + [-80.780604, 36.923362], + [-80.780585, 36.923341], + [-80.78055, 36.923304], + [-80.78045, 36.923196], + [-80.7798, 36.922495], + [-80.779219, 36.921868], + [-80.779163, 36.921808], + [-80.778883, 36.921506], + [-80.778865, 36.921486], + [-80.778852, 36.921472], + [-80.778814, 36.921431], + [-80.778626, 36.921228], + [-80.777851, 36.920392], + [-80.777202, 36.919692], + [-80.776558, 36.918993], + [-80.774625, 36.916896], + [-80.774051, 36.916274], + [-80.773994, 36.916212], + [-80.773981, 36.916198], + [-80.77347, 36.915581], + [-80.772117, 36.913948], + [-80.772111, 36.913941], + [-80.772104, 36.913932], + [-80.772071, 36.913892], + [-80.772031, 36.913844], + [-80.771939, 36.913733], + [-80.771429, 36.913118], + [-80.771366, 36.913042], + [-80.771179, 36.912816], + [-80.771149, 36.91278], + [-80.771115, 36.912743], + [-80.771101, 36.912727], + [-80.77106, 36.912681], + [-80.771047, 36.912666], + [-80.771036, 36.912654], + [-80.771004, 36.912619], + [-80.770994, 36.912608], + [-80.770863, 36.912462], + [-80.770859, 36.912457], + [-80.770681, 36.912258], + [-80.769744, 36.911209], + [-80.769432, 36.91086], + [-80.769428, 36.910845], + [-80.769197, 36.91053], + [-80.769107, 36.910431], + [-80.768318, 36.909565], + [-80.764858, 36.905769], + [-80.76377, 36.904576], + [-80.763705, 36.904505], + [-80.763127, 36.903862], + [-80.762781, 36.903478], + [-80.762378, 36.90303], + [-80.761394, 36.901936], + [-80.760817, 36.901294], + [-80.760505, 36.900947], + [-80.760377, 36.900805], + [-80.760161, 36.900565], + [-80.75957, 36.899908], + [-80.759259, 36.899562], + [-80.759046, 36.899325], + [-80.758973, 36.899244], + [-80.758969, 36.89924], + [-80.758951, 36.89922], + [-80.758927, 36.899193], + [-80.758406, 36.898615], + [-80.758193, 36.898379], + [-80.757196, 36.897271], + [-80.754205, 36.893946], + [-80.753209, 36.892838], + [-80.753027, 36.892635], + [-80.752479, 36.892026], + [-80.752297, 36.891824], + [-80.752271, 36.891795], + [-80.750942, 36.890322], + [-80.749829, 36.889088], + [-80.746844, 36.885843], + [-80.746432, 36.885394], + [-80.746427, 36.885389], + [-80.746391, 36.88535], + [-80.74638, 36.885338], + [-80.746376, 36.885333], + [-80.746321, 36.885273], + [-80.746293, 36.885243], + [-80.746168, 36.885107], + [-80.746152, 36.88509], + [-80.746038, 36.884966], + [-80.745989, 36.884913], + [-80.745474, 36.884353], + [-80.745368, 36.884238], + [-80.745122, 36.883971], + [-80.74509, 36.883936], + [-80.745082, 36.883928], + [-80.745046, 36.883889], + [-80.74503, 36.883872], + [-80.744989, 36.883827], + [-80.744985, 36.883822], + [-80.744939, 36.883772], + [-80.744913, 36.883743], + [-80.744833, 36.883656], + [-80.744806, 36.883627], + [-80.744793, 36.883613], + [-80.744759, 36.883577], + [-80.744687, 36.883499], + [-80.744614, 36.883421], + [-80.744565, 36.883368], + [-80.744118, 36.88289], + [-80.742775, 36.881454], + [-80.742327, 36.880975], + [-80.741959, 36.880582], + [-80.741493, 36.880084], + [-80.741484, 36.880075], + [-80.741478, 36.880068], + [-80.741474, 36.880064], + [-80.741341, 36.879921], + [-80.740855, 36.879402], + [-80.740486, 36.879008], + [-80.741889, 36.87859], + [-80.744222, 36.877895], + [-80.744238, 36.87789], + [-80.746157, 36.877318], + [-80.747212, 36.876942], + [-80.74981, 36.876016], + [-80.753074, 36.875125], + [-80.753921, 36.874869], + [-80.756231, 36.874177], + [-80.757334, 36.873865], + [-80.757804, 36.873734], + [-80.760401, 36.873007], + [-80.760451, 36.872993], + [-80.761528, 36.872692], + [-80.763468, 36.87215], + [-80.763535, 36.872131], + [-80.763885, 36.872033], + [-80.76972, 36.870402], + [-80.770145, 36.870282], + [-80.771542, 36.869891], + [-80.774163, 36.869159], + [-80.774273, 36.869128], + [-80.774348, 36.869107], + [-80.782349, 36.866869], + [-80.784506, 36.866266], + [-80.790156, 36.864686], + [-80.792699, 36.863975], + [-80.79295, 36.863905], + [-80.793995, 36.863613], + [-80.794343, 36.863516], + [-80.794779, 36.863394], + [-80.796024, 36.862507], + [-80.79644, 36.86221], + [-80.797771, 36.861283], + [-80.799871, 36.860975], + [-80.801673, 36.859678], + [-80.802794, 36.858897], + [-80.804185, 36.858622], + [-80.806746, 36.857034], + [-80.809477, 36.855447], + [-80.810397, 36.854858], + [-80.811608, 36.854447], + [-80.812178, 36.853802], + [-80.812738, 36.853239], + [-80.813736, 36.853132], + [-80.813919, 36.853108], + [-80.814851, 36.853209], + [-80.815568, 36.85272], + [-80.816314, 36.852626], + [-80.816514, 36.852601], + [-80.816884, 36.852554], + [-80.819747, 36.852191], + [-80.82082, 36.852055], + [-80.82123, 36.852291], + [-80.822231, 36.852866], + [-80.822294, 36.852864], + [-80.824202, 36.852807], + [-80.824562, 36.852195], + [-80.825972, 36.851759], + [-80.826475, 36.851783], + [-80.827102, 36.851814], + [-80.828213, 36.851781], + [-80.829053, 36.851377], + [-80.830053, 36.85144], + [-80.831033, 36.85115], + [-80.831713, 36.850666], + [-80.832593, 36.850456], + [-80.833223, 36.8499], + [-80.833482, 36.849781], + [-80.834079, 36.849507], + [-80.836494, 36.849549], + [-80.837294, 36.849474], + [-80.838214, 36.849392], + [-80.838664, 36.849486], + [-80.840345, 36.849243], + [-80.840895, 36.848784], + [-80.841995, 36.84839], + [-80.843366, 36.848132], + [-80.843596, 36.847845], + [-80.843894, 36.847318], + [-80.845005, 36.847002], + [-80.846217, 36.84655], + [-80.849095, 36.846942], + [-80.849685, 36.847109], + [-80.849966, 36.84763], + [-80.850745, 36.848255], + [-80.851747, 36.848907], + [-80.852534, 36.849076], + [-80.856258, 36.848247], + [-80.856425, 36.848203], + [-80.859586, 36.847499], + [-80.859898, 36.84743], + [-80.859986, 36.84741], + [-80.860196, 36.847363], + [-80.860437, 36.847307], + [-80.870696, 36.845018], + [-80.872822, 36.844543], + [-80.874075, 36.844251], + [-80.874773, 36.844089], + [-80.876329, 36.843811], + [-80.876445, 36.84379], + [-80.878002, 36.843469], + [-80.878011, 36.843467], + [-80.878457, 36.843375], + [-80.879015, 36.843259], + [-80.879793, 36.843099], + [-80.880064, 36.843043], + [-80.882098, 36.842624], + [-80.882691, 36.84249], + [-80.882924, 36.842436], + [-80.883589, 36.84228], + [-80.884115, 36.842158], + [-80.884187, 36.842141], + [-80.884318, 36.842111], + [-80.884386, 36.842095], + [-80.885911, 36.841739], + [-80.886234, 36.841666], + [-80.887035, 36.841485], + [-80.89286, 36.84017], + [-80.893399, 36.840049], + [-80.895378, 36.839599], + [-80.895455, 36.839581], + [-80.901197, 36.838274], + [-80.907159, 36.836917], + [-80.907333, 36.836878], + [-80.90748, 36.836845], + [-80.907506, 36.836839], + [-80.911049, 36.836044], + [-80.911883, 36.835857], + [-80.919045, 36.834252], + [-80.919615, 36.834125], + [-80.919667, 36.834113], + [-80.91972, 36.834101], + [-80.920894, 36.833837], + [-80.925107, 36.832897], + [-80.926925, 36.83251], + [-80.932295, 36.831364], + [-80.937863, 36.830176], + [-80.944032, 36.82886], + [-80.947352, 36.828152], + [-80.947855, 36.828043], + [-80.94811, 36.827989], + [-80.948365, 36.827936], + [-80.94841, 36.827928], + [-80.948486, 36.827912], + [-80.94891, 36.827814], + [-80.951229, 36.827324], + [-80.951637, 36.827234], + [-80.951783, 36.827202], + [-80.95371, 36.826796], + [-80.957972, 36.825921], + [-80.958716, 36.825745], + [-80.960235, 36.82537], + [-80.960942, 36.825191], + [-80.961307, 36.825098], + [-80.962861, 36.824708], + [-80.963856, 36.824459], + [-80.963996, 36.824428], + [-80.972877, 36.822445], + [-80.97309, 36.822397], + [-80.990982, 36.818435], + [-80.999807, 36.81648], + [-81.015825, 36.8128], + [-81.015971, 36.812766], + [-81.016042, 36.81275], + [-81.022272, 36.81132], + [-81.024409, 36.810829], + [-81.025609, 36.812329], + [-81.025609, 36.812429], + [-81.025709, 36.812629], + [-81.026609, 36.813529], + [-81.027009, 36.813829], + [-81.027409, 36.813929], + [-81.027909, 36.814129], + [-81.028309, 36.814429], + [-81.028509, 36.814429], + [-81.028909, 36.814529], + [-81.029509, 36.814629], + [-81.030309, 36.814529], + [-81.030909, 36.814229], + [-81.03121, 36.813829], + [-81.03181, 36.813329], + [-81.03261, 36.812829], + [-81.03311, 36.812429], + [-81.03371, 36.812029], + [-81.034059, 36.81161], + [-81.03421, 36.811429], + [-81.03441, 36.811129], + [-81.03461, 36.811029], + [-81.03491, 36.810929], + [-81.034992, 36.81088], + [-81.03541, 36.810629], + [-81.035648, 36.81045], + [-81.03581, 36.810329], + [-81.03621, 36.810329], + [-81.036233, 36.810325], + [-81.03681, 36.810229], + [-81.03741, 36.809929], + [-81.03771, 36.809829], + [-81.03821, 36.809629], + [-81.03881, 36.809229], + [-81.03921, 36.808929], + [-81.03961, 36.808429], + [-81.03981, 36.808129], + [-81.039879, 36.808043], + [-81.04021, 36.807629], + [-81.04041, 36.807529], + [-81.04081, 36.807129], + [-81.04101, 36.807029], + [-81.04131, 36.806829], + [-81.04161, 36.806729], + [-81.04171, 36.806729], + [-81.04201, 36.806629], + [-81.04211, 36.806529], + [-81.042409, 36.806429], + [-81.04271, 36.806329], + [-81.04321, 36.806229], + [-81.04383, 36.805875], + [-81.04391, 36.805829], + [-81.043948, 36.805807], + [-81.04461, 36.805429], + [-81.04531, 36.805029], + [-81.045633, 36.804867], + [-81.04591, 36.804729], + [-81.04671, 36.804729], + [-81.047511, 36.804929], + [-81.048211, 36.805329], + [-81.048911, 36.805529], + [-81.049411, 36.805429], + [-81.049711, 36.805229], + [-81.050311, 36.805029], + [-81.052711, 36.803729], + [-81.053011, 36.803629], + [-81.053511, 36.803429], + [-81.054411, 36.803229], + [-81.055111, 36.803029], + [-81.055611, 36.802829], + [-81.056611, 36.802829], + [-81.056811, 36.802329], + [-81.056811, 36.802129], + [-81.056411, 36.801529], + [-81.056211, 36.801129], + [-81.056211, 36.800629], + [-81.057411, 36.799429], + [-81.057711, 36.799029], + [-81.057911, 36.798629], + [-81.058111, 36.798129], + [-81.058311, 36.797829], + [-81.058511, 36.797629], + [-81.059111, 36.797529], + [-81.060311, 36.797429], + [-81.061311, 36.797329], + [-81.061711, 36.797329], + [-81.062711, 36.797229], + [-81.062858, 36.797174], + [-81.063512, 36.796929], + [-81.064112, 36.796729], + [-81.064912, 36.796529], + [-81.065512, 36.796429], + [-81.066412, 36.796329], + [-81.067412, 36.795729], + [-81.067712, 36.795529], + [-81.068112, 36.795229], + [-81.068812, 36.795029], + [-81.068853, 36.795013], + [-81.069312, 36.794829], + [-81.069712, 36.794429], + [-81.069912, 36.794129], + [-81.070312, 36.793329], + [-81.070412, 36.793029], + [-81.070712, 36.792629], + [-81.071512, 36.791829], + [-81.072112, 36.791029], + [-81.072312, 36.790829], + [-81.072812, 36.790629], + [-81.073144, 36.790582], + [-81.073512, 36.790529], + [-81.073812, 36.790529], + [-81.07444, 36.790617], + [-81.074512, 36.790629], + [-81.075212, 36.790529], + [-81.076712, 36.790029], + [-81.077512, 36.789729], + [-81.078212, 36.789729], + [-81.078913, 36.789829], + [-81.079513, 36.790029], + [-81.080013, 36.790129], + [-81.080613, 36.790229], + [-81.080913, 36.790129], + [-81.081413, 36.789929], + [-81.081913, 36.789529], + [-81.083313, 36.788729], + [-81.083413, 36.788629], + [-81.083513, 36.788429], + [-81.083813, 36.788229], + [-81.08418, 36.788082], + [-81.084313, 36.788029], + [-81.084637, 36.787936], + [-81.085013, 36.787829], + [-81.085547, 36.787753], + [-81.085713, 36.787729], + [-81.086035, 36.787665], + [-81.086213, 36.787629], + [-81.086513, 36.787529], + [-81.086613, 36.787229], + [-81.086413, 36.786729], + [-81.085913, 36.786529], + [-81.085513, 36.786329], + [-81.084813, 36.786229], + [-81.084413, 36.786029], + [-81.084113, 36.785629], + [-81.084013, 36.785229], + [-81.084113, 36.785029], + [-81.084613, 36.784729], + [-81.085113, 36.784629], + [-81.086013, 36.784529], + [-81.086713, 36.784429], + [-81.087013, 36.784329], + [-81.087313, 36.784029], + [-81.087513, 36.783729], + [-81.087813, 36.783029], + [-81.087813, 36.782629], + [-81.087713, 36.782129], + [-81.087613, 36.781429], + [-81.087313, 36.781029], + [-81.086913, 36.780429], + [-81.086413, 36.779929], + [-81.085513, 36.779529], + [-81.085113, 36.779129], + [-81.084913, 36.778629], + [-81.084813, 36.778229], + [-81.085013, 36.777829], + [-81.085213, 36.777529], + [-81.085713, 36.776929], + [-81.085793, 36.776595], + [-81.085813, 36.77653], + [-81.086013, 36.77593], + [-81.086413, 36.77533], + [-81.086613, 36.77473], + [-81.086513, 36.77443], + [-81.086513, 36.77393], + [-81.086613, 36.77363], + [-81.086813, 36.77313], + [-81.087213, 36.77263], + [-81.088213, 36.77163], + [-81.088513, 36.77113], + [-81.088613, 36.77073], + [-81.088413, 36.76993], + [-81.088313, 36.76933], + [-81.088113, 36.76873], + [-81.088113, 36.76813], + [-81.088513, 36.767429], + [-81.088814, 36.76733], + [-81.089179, 36.767237], + [-81.089213, 36.767229], + [-81.090013, 36.767229], + [-81.090713, 36.767329], + [-81.091413, 36.767629], + [-81.092013, 36.767729], + [-81.093913, 36.767529], + [-81.094103, 36.767532], + [-81.094413, 36.767529], + [-81.094913, 36.767529], + [-81.095414, 36.767629], + [-81.095714, 36.767829], + [-81.095814, 36.768029], + [-81.096014, 36.768329], + [-81.096314, 36.768529], + [-81.096714, 36.768729], + [-81.097414, 36.768929], + [-81.098114, 36.768929], + [-81.098514, 36.769029], + [-81.099014, 36.768929], + [-81.099503, 36.768685], + [-81.099614, 36.768629], + [-81.100814, 36.768029], + [-81.101514, 36.767829], + [-81.102414, 36.767629], + [-81.103314, 36.767529], + [-81.104014, 36.767429], + [-81.104614, 36.767229], + [-81.105114, 36.767429], + [-81.105814, 36.767529], + [-81.107614, 36.767529], + [-81.108314, 36.767429], + [-81.109214, 36.767629], + [-81.109814, 36.767729], + [-81.110214, 36.767829], + [-81.111515, 36.767829], + [-81.112115, 36.767729], + [-81.112615, 36.767729], + [-81.113115, 36.767829], + [-81.113815, 36.767929], + [-81.114715, 36.768029], + [-81.115215, 36.768029], + [-81.115515, 36.767929], + [-81.116015, 36.767729], + [-81.116415, 36.767429], + [-81.117015, 36.767129], + [-81.117615, 36.766929], + [-81.118015, 36.766829], + [-81.118415, 36.766829], + [-81.118415, 36.766729], + [-81.118815, 36.766729], + [-81.119315, 36.766629], + [-81.119915, 36.766429], + [-81.120315, 36.766429], + [-81.120615, 36.766329], + [-81.122315, 36.766329], + [-81.122615, 36.766229], + [-81.123215, 36.766229], + [-81.123615, 36.766329], + [-81.123715, 36.766429], + [-81.124815, 36.766429], + [-81.124915, 36.766529], + [-81.125015, 36.766529], + [-81.125115, 36.766629], + [-81.125215, 36.766629], + [-81.125515, 36.766729], + [-81.126116, 36.766729], + [-81.126316, 36.766629], + [-81.126716, 36.766529], + [-81.127016, 36.766429], + [-81.127216, 36.766329], + [-81.127816, 36.766329], + [-81.127916, 36.766429], + [-81.128316, 36.766529], + [-81.129016, 36.766829], + [-81.129567, 36.767036], + [-81.129816, 36.767129], + [-81.130052, 36.76723], + [-81.130222, 36.767303], + [-81.130297, 36.767335], + [-81.13042, 36.767388], + [-81.130516, 36.767429], + [-81.131016, 36.767429], + [-81.131516, 36.767329], + [-81.131616, 36.767229], + [-81.131816, 36.766929], + [-81.132116, 36.766429], + [-81.132216, 36.766029], + [-81.132216, 36.764729], + [-81.132383, 36.764506], + [-81.132516, 36.764329], + [-81.132816, 36.764029], + [-81.1329, 36.763946], + [-81.133116, 36.763729], + [-81.133316, 36.763629], + [-81.133816, 36.763429], + [-81.134616, 36.763129], + [-81.135016, 36.763129], + [-81.135616, 36.763029], + [-81.136716, 36.763029], + [-81.137216, 36.763129], + [-81.137716, 36.763129], + [-81.138216, 36.763329], + [-81.138616, 36.763429], + [-81.138916, 36.763629], + [-81.139516, 36.763929], + [-81.139774, 36.764121], + [-81.139916, 36.764228], + [-81.140316, 36.764428], + [-81.140716, 36.764828], + [-81.141017, 36.765028], + [-81.141417, 36.765228], + [-81.141817, 36.765328], + [-81.142217, 36.765328], + [-81.142617, 36.765228], + [-81.143617, 36.765228], + [-81.143917, 36.765328], + [-81.145517, 36.765328], + [-81.145717, 36.765428], + [-81.145817, 36.765428], + [-81.146117, 36.765528], + [-81.146317, 36.765528], + [-81.147017, 36.765328], + [-81.147217, 36.765328], + [-81.147817, 36.765228], + [-81.148217, 36.765328], + [-81.148317, 36.765428], + [-81.148517, 36.765528], + [-81.149017, 36.765528], + [-81.149217, 36.765728], + [-81.149617, 36.765928], + [-81.149817, 36.766128], + [-81.150117, 36.766528], + [-81.150217, 36.766628], + [-81.150239, 36.766657], + [-81.150517, 36.767028], + [-81.150817, 36.767328], + [-81.151017, 36.767428], + [-81.151117, 36.767528], + [-81.151417, 36.767628], + [-81.151617, 36.767728], + [-81.152117, 36.767928], + [-81.152217, 36.768028], + [-81.152617, 36.768128], + [-81.153217, 36.768428], + [-81.153317, 36.768528], + [-81.153917, 36.768828], + [-81.154117, 36.769028], + [-81.154917, 36.769028], + [-81.155317, 36.768928], + [-81.155817, 36.768828], + [-81.156039, 36.768717], + [-81.156282, 36.768596], + [-81.156818, 36.768328], + [-81.157118, 36.768228], + [-81.157218, 36.768128], + [-81.157618, 36.767928], + [-81.158118, 36.767928], + [-81.158618, 36.767828], + [-81.158718, 36.767628], + [-81.159718, 36.767628], + [-81.160318, 36.767428], + [-81.160918, 36.767128], + [-81.160918, 36.767028], + [-81.161118, 36.766928], + [-81.161318, 36.766728], + [-81.161618, 36.766528], + [-81.162018, 36.766228], + [-81.162518, 36.765928], + [-81.162718, 36.765928], + [-81.163118, 36.765728], + [-81.163318, 36.765528], + [-81.163518, 36.765528], + [-81.163718, 36.765428], + [-81.163718, 36.765328], + [-81.163818, 36.765228], + [-81.163818, 36.765028], + [-81.163718, 36.764828], + [-81.163718, 36.764628], + [-81.163618, 36.764428], + [-81.163618, 36.763928], + [-81.163518, 36.763728], + [-81.163518, 36.763628], + [-81.163418, 36.763328], + [-81.163418, 36.763228], + [-81.163818, 36.762928], + [-81.164018, 36.762828], + [-81.164518, 36.762628], + [-81.165118, 36.762528], + [-81.168318, 36.762528], + [-81.168918, 36.762628], + [-81.169418, 36.762628], + [-81.169718, 36.762728], + [-81.169818, 36.762728], + [-81.170418, 36.762828], + [-81.171018, 36.762828], + [-81.171619, 36.762928], + [-81.172051, 36.76305], + [-81.172315, 36.763128], + [-81.172827, 36.763297], + [-81.172919, 36.763328], + [-81.173119, 36.763328], + [-81.173519, 36.763428], + [-81.173819, 36.763528], + [-81.174119, 36.763728], + [-81.174519, 36.763928], + [-81.174619, 36.763928], + [-81.174819, 36.764128], + [-81.175119, 36.764228], + [-81.175219, 36.764328], + [-81.175319, 36.764328], + [-81.175419, 36.764428], + [-81.176219, 36.764428], + [-81.176819, 36.764328], + [-81.177019, 36.764228], + [-81.177619, 36.764128], + [-81.179419, 36.764128], + [-81.180019, 36.764228], + [-81.180419, 36.764328], + [-81.181019, 36.764328], + [-81.181419, 36.764428], + [-81.181919, 36.764428], + [-81.182219, 36.764528], + [-81.182619, 36.764528], + [-81.183219, 36.764628], + [-81.183519, 36.764728], + [-81.183819, 36.764628], + [-81.184319, 36.764628], + [-81.185519, 36.764028], + [-81.186119, 36.763428], + [-81.186384, 36.763082], + [-81.186419, 36.763028], + [-81.186519, 36.762828], + [-81.186619, 36.762728], + [-81.18682, 36.762528], + [-81.18682, 36.762028], + [-81.186619, 36.761728], + [-81.186519, 36.761428], + [-81.186319, 36.761128], + [-81.186119, 36.760728], + [-81.185919, 36.760228], + [-81.185819, 36.759928], + [-81.185819, 36.759228], + [-81.185919, 36.758828], + [-81.185919, 36.758728], + [-81.186019, 36.758428], + [-81.18782, 36.758428], + [-81.18842, 36.758328], + [-81.18962, 36.758228], + [-81.18982, 36.758328], + [-81.190219, 36.758327], + [-81.19038, 36.758408], + [-81.190419, 36.758428], + [-81.19052, 36.758428], + [-81.190559, 36.758401], + [-81.19082, 36.758228], + [-81.19102, 36.758028], + [-81.19112, 36.758028], + [-81.191365, 36.757945], + [-81.19202, 36.757728], + [-81.19222, 36.757728], + [-81.19302, 36.757628], + [-81.19372, 36.757728], + [-81.19412, 36.757828], + [-81.19422, 36.757928], + [-81.19482, 36.758228], + [-81.19502, 36.758428], + [-81.19522, 36.758428], + [-81.19542, 36.758528], + [-81.19592, 36.758528], + [-81.19632, 36.758628], + [-81.19662, 36.758828], + [-81.19722, 36.759028], + [-81.19762, 36.759128], + [-81.19812, 36.759328], + [-81.19852, 36.759328], + [-81.19892, 36.759428], + [-81.19952, 36.759528], + [-81.19962, 36.759628], + [-81.20002, 36.759628], + [-81.20012, 36.759528], + [-81.20042, 36.759528], + [-81.20062, 36.759428], + [-81.20112, 36.759428], + [-81.20162, 36.759528], + [-81.20182, 36.759628], + [-81.20192, 36.759528], + [-81.202321, 36.759528], + [-81.202726, 36.759416], + [-81.202876, 36.75948], + [-81.203016, 36.75954], + [-81.203399, 36.759703], + [-81.203619, 36.75974], + [-81.203634, 36.759743], + [-81.204082, 36.759818], + [-81.204566, 36.759726], + [-81.206418, 36.759132], + [-81.206435, 36.759127], + [-81.206921, 36.759127], + [-81.207292, 36.759074], + [-81.207473, 36.759048], + [-81.20779, 36.759053], + [-81.210279, 36.7591], + [-81.211448, 36.759102], + [-81.212075, 36.759263], + [-81.213015, 36.759836], + [-81.213957, 36.76009], + [-81.214469, 36.760181], + [-81.214492, 36.760177], + [-81.215238, 36.760127], + [-81.215621, 36.760127], + [-81.215634, 36.760124], + [-81.216421, 36.759927], + [-81.218722, 36.759927], + [-81.219322, 36.760027], + [-81.219622, 36.760127], + [-81.220022, 36.760227], + [-81.221022, 36.760627], + [-81.221365, 36.760764], + [-81.221525, 36.760828], + [-81.221826, 36.760911], + [-81.222422, 36.761227], + [-81.223322, 36.761527], + [-81.223522, 36.761727], + [-81.223622, 36.761927], + [-81.223622, 36.762327], + [-81.223718, 36.762713], + [-81.223722, 36.763027], + [-81.223722, 36.763727], + [-81.223728, 36.763844], + [-81.224022, 36.764327], + [-81.224622, 36.764527], + [-81.224822, 36.764627], + [-81.225235, 36.76473], + [-81.225228, 36.764758], + [-81.225399, 36.764941], + [-81.226345, 36.76491], + [-81.22685, 36.764895], + [-81.227109, 36.76483], + [-81.227461, 36.764742], + [-81.22777, 36.764664], + [-81.228328, 36.764554], + [-81.229138, 36.764458], + [-81.230424, 36.764156], + [-81.231109, 36.763787], + [-81.231511, 36.763147], + [-81.231623, 36.762613], + [-81.231798, 36.762241], + [-81.232104, 36.76194], + [-81.232701, 36.761604], + [-81.233059, 36.761448], + [-81.233256, 36.761394], + [-81.233544, 36.761419], + [-81.23479, 36.761526], + [-81.235241, 36.761501], + [-81.235387, 36.761446], + [-81.235699, 36.761327], + [-81.235923, 36.761327], + [-81.236523, 36.761427], + [-81.236923, 36.761427], + [-81.237305, 36.761488], + [-81.23737, 36.761482], + [-81.237526, 36.761627], + [-81.238925, 36.761627], + [-81.239424, 36.761427], + [-81.239724, 36.761427], + [-81.239824, 36.761327], + [-81.240223, 36.761027], + [-81.240423, 36.760927], + [-81.240723, 36.760627], + [-81.240777, 36.760467], + [-81.240823, 36.760327], + [-81.240923, 36.760227], + [-81.241023, 36.760027], + [-81.241123, 36.759927], + [-81.241223, 36.759927], + [-81.241423, 36.759827], + [-81.242623, 36.759827], + [-81.242923, 36.759927], + [-81.243023, 36.759927], + [-81.243623, 36.760527], + [-81.243782, 36.760606], + [-81.24417, 36.760766], + [-81.244323, 36.760827], + [-81.244624, 36.760927], + [-81.244821, 36.761026], + [-81.245323, 36.761227], + [-81.245523, 36.761327], + [-81.245823, 36.761427], + [-81.246423, 36.761827], + [-81.246523, 36.762027], + [-81.246574, 36.762078], + [-81.246722, 36.762227], + [-81.246809, 36.762357], + [-81.246899, 36.762491], + [-81.246923, 36.762527], + [-81.247223, 36.762827], + [-81.247624, 36.763027], + [-81.247624, 36.763127], + [-81.247824, 36.763427], + [-81.248324, 36.763827], + [-81.248624, 36.764027], + [-81.248817, 36.764021], + [-81.248927, 36.764012], + [-81.249206, 36.763929], + [-81.249386, 36.763879], + [-81.249824, 36.763627], + [-81.250324, 36.763627], + [-81.250624, 36.763827], + [-81.251424, 36.764227], + [-81.251624, 36.764227], + [-81.251824, 36.764327], + [-81.252824, 36.764327], + [-81.253324, 36.764127], + [-81.253524, 36.764027], + [-81.254024, 36.763927], + [-81.254624, 36.763927], + [-81.255124, 36.763827], + [-81.255824, 36.763727], + [-81.256224, 36.763627], + [-81.256624, 36.763427], + [-81.257424, 36.763227], + [-81.257624, 36.763127], + [-81.258524, 36.763127], + [-81.259024, 36.763227], + [-81.259524, 36.763227], + [-81.260124, 36.763427], + [-81.260524, 36.763427], + [-81.260624, 36.763327], + [-81.260824, 36.763327], + [-81.260924, 36.763227], + [-81.261524, 36.763227], + [-81.261623, 36.763127], + [-81.263274, 36.767656], + [-81.266408, 36.77626], + [-81.271011, 36.788893], + [-81.272225, 36.792226], + [-81.273354, 36.794484], + [-81.27346, 36.794697], + [-81.274854, 36.797485], + [-81.279949, 36.807674], + [-81.281671, 36.811117], + [-81.281803, 36.811382], + [-81.281819, 36.811414], + [-81.283127, 36.814029], + [-81.284355, 36.816484], + [-81.284726, 36.817224], + [-81.285607, 36.818985], + [-81.285633, 36.819038], + [-81.286282, 36.820337], + [-81.286413, 36.820599], + [-81.287999, 36.823772], + [-81.288778, 36.82533], + [-81.288882, 36.825537], + [-81.289397, 36.826566], + [-81.289966, 36.827716], + [-81.290008, 36.827748], + [-81.290156, 36.82782], + [-81.290166, 36.827825], + [-81.2902, 36.827858], + [-81.2902, 36.827984], + [-81.290159, 36.828089], + [-81.290158, 36.828096], + [-81.290353, 36.828475], + [-81.290405, 36.82857], + [-81.290835, 36.829353], + [-81.292198, 36.831855], + [-81.292212, 36.83188], + [-81.292245, 36.831941], + [-81.292269, 36.831985], + [-81.292411, 36.832245], + [-81.298349, 36.843117], + [-81.298947, 36.844212], + [-81.298997, 36.844303], + [-81.299067, 36.844432], + [-81.299409, 36.845057], + [-81.301862, 36.849549], + [-81.307262, 36.859439], + [-81.308269, 36.861282], + [-81.310039, 36.864524], + [-81.311032, 36.866342], + [-81.311408, 36.86703], + [-81.312406, 36.868858], + [-81.313017, 36.869977], + [-81.313214, 36.870337], + [-81.313394, 36.870666], + [-81.313639, 36.871115], + [-81.315828, 36.875125], + [-81.316463, 36.876546], + [-81.320757, 36.886159], + [-81.322607, 36.890299], + [-81.322993, 36.891163], + [-81.32303, 36.891247], + [-81.323087, 36.891374], + [-81.32319, 36.891605], + [-81.326594, 36.899223], + [-81.326708, 36.89948], + [-81.326732, 36.899534], + [-81.327494, 36.900299], + [-81.327646, 36.900452], + [-81.327879, 36.900687], + [-81.334918, 36.907776], + [-81.337836, 36.910715], + [-81.338566, 36.91145], + [-81.338596, 36.91148], + [-81.339272, 36.912161], + [-81.343131, 36.916048], + [-81.343819, 36.91649], + [-81.344054, 36.916641], + [-81.344203, 36.916792], + [-81.344346, 36.916915], + [-81.344488, 36.91703], + [-81.344676, 36.917232], + [-81.344733, 36.917328], + [-81.345804, 36.918429], + [-81.345949, 36.918577], + [-81.346853, 36.919489], + [-81.36129, 36.934179], + [-81.36226, 36.935174], + [-81.364169, 36.937135], + [-81.364242, 36.93721], + [-81.369286, 36.94239], + [-81.371491, 36.944611], + [-81.371667, 36.944788], + [-81.374831, 36.947974], + [-81.377243, 36.950309], + [-81.378825, 36.951839], + [-81.37943, 36.952424] + ], + [ + [-78.386685, 38.83016], + [-78.386457, 38.830335], + [-78.385811, 38.830956], + [-78.385238, 38.831738], + [-78.384715, 38.832205], + [-78.384131, 38.832512], + [-78.383865, 38.833019], + [-78.383415, 38.83368], + [-78.382933, 38.834196], + [-78.382369, 38.834663], + [-78.381806, 38.835389], + [-78.381224, 38.836445], + [-78.380506, 38.836993], + [-78.379912, 38.83759], + [-78.37903, 38.838324], + [-78.378498, 38.838969], + [-78.37773, 38.840089], + [-78.377238, 38.840702], + [-78.376695, 38.841065], + [-78.376182, 38.841387], + [-78.375434, 38.842202], + [-78.375097, 38.842806], + [-78.37473, 38.843145], + [-78.37401, 38.84458], + [-78.373088, 38.84516], + [-78.372187, 38.84574], + [-78.370447, 38.847358], + [-78.369537, 38.848494], + [-78.368924, 38.84938], + [-78.368863, 38.849613], + [-78.367172, 38.850628], + [-78.366774, 38.851337], + [-78.366089, 38.852198], + [-78.364984, 38.85335], + [-78.364114, 38.854373], + [-78.363387, 38.854791], + [-78.362332, 38.855661], + [-78.362087, 38.856321], + [-78.36178, 38.856668], + [-78.361463, 38.857022], + [-78.361033, 38.857288], + [-78.3605, 38.857594], + [-78.360039, 38.857779], + [-78.359483, 38.857978], + [-78.359311, 38.858222], + [-78.358984, 38.858681], + [-78.358585, 38.859374], + [-78.357366, 38.860445], + [-78.355847, 38.861584], + [-78.353654, 38.863369], + [-78.352776, 38.863941], + [-78.351255, 38.864765], + [-78.35107, 38.864923], + [-78.350492, 38.865526], + [-78.349796, 38.866259], + [-78.349478, 38.8665], + [-78.347509, 38.867193], + [-78.346617, 38.86758], + [-78.34552, 38.868272], + [-78.345193, 38.868762], + [-78.344938, 38.869471], + [-78.34416, 38.870139], + [-78.343453, 38.870831], + [-78.342644, 38.871612], + [-78.34204, 38.872192], + [-78.341045, 38.872691], + [-78.340831, 38.873142], + [-78.340432, 38.873867], + [-78.339798, 38.874712], + [-78.339274, 38.87512], + [-78.339039, 38.875393], + [-78.338732, 38.875572], + [-78.338569, 38.875726], + [-78.338468, 38.875888], + [-78.33842, 38.876259], + [-78.338349, 38.87642], + [-78.337222, 38.878015], + [-78.336713, 38.878517], + [-78.336355, 38.878785], + [-78.336048, 38.878956], + [-78.335885, 38.879167], + [-78.33543, 38.880032], + [-78.335116, 38.880557], + [-78.334637, 38.881076], + [-78.334373, 38.881448], + [-78.334252, 38.881683], + [-78.334144, 38.882167], + [-78.334063, 38.882329], + [-78.333941, 38.882466], + [-78.333725, 38.882564], + [-78.333627, 38.883032], + [-78.333497, 38.88346], + [-78.333135, 38.884373], + [-78.332851, 38.884737], + [-78.332596, 38.88498], + [-78.332505, 38.885158], + [-78.332438, 38.885691], + [-78.332218, 38.886417], + [-78.331894, 38.886991], + [-78.331815, 38.88729], + [-78.331776, 38.887548], + [-78.332051, 38.88836], + [-78.332313, 38.888794], + [-78.332396, 38.888898], + [-78.33362, 38.888803], + [-78.33397, 38.888712], + [-78.334885, 38.888691], + [-78.335286, 38.88864], + [-78.335851, 38.888475], + [-78.338622, 38.888653], + [-78.338424, 38.890596], + [-78.338041, 38.891445], + [-78.337971, 38.89163], + [-78.337471, 38.892052], + [-78.336738, 38.892992], + [-78.336444, 38.893445], + [-78.336262, 38.8938], + [-78.33613, 38.893962], + [-78.335874, 38.894085], + [-78.335413, 38.894305], + [-78.334872, 38.894759], + [-78.334076, 38.89557], + [-78.333904, 38.895804], + [-78.333713, 38.896289], + [-78.333509, 38.896564], + [-78.333204, 38.896897], + [-78.332642, 38.897416], + [-78.332521, 38.897618], + [-78.332487, 38.898351], + [-78.332386, 38.898553], + [-78.332233, 38.898724], + [-78.331486, 38.899251], + [-78.331007, 38.899713], + [-78.330916, 38.899875], + [-78.330848, 38.90031], + [-78.330737, 38.900553], + [-78.33039, 38.900941], + [-78.330144, 38.901064], + [-78.329899, 38.901186], + [-78.329512, 38.901648], + [-78.329266, 38.901794], + [-78.328804, 38.901982], + [-78.328654, 38.902442], + [-78.327996, 38.903607], + [-78.327803, 38.903898], + [-78.327609, 38.904068], + [-78.327385, 38.904287], + [-78.327284, 38.904489], + [-78.327056, 38.905482], + [-78.326856, 38.906031], + [-78.326562, 38.90654], + [-78.326226, 38.906937], + [-78.326174, 38.907058], + [-78.326156, 38.907332], + [-78.325989, 38.908123], + [-78.32592, 38.908502], + [-78.325851, 38.908769], + [-78.324731, 38.911185], + [-78.324376, 38.911775], + [-78.324144, 38.912341], + [-78.324116, 38.912591], + [-78.324058, 38.913026], + [-78.324009, 38.913252], + [-78.323696, 38.91389], + [-78.323626, 38.914181], + [-78.323293, 38.914836], + [-78.323039, 38.915296], + [-78.321812, 38.917326], + [-78.321672, 38.917714], + [-78.321523, 38.918303], + [-78.321319, 38.91853], + [-78.320972, 38.91883], + [-78.320419, 38.91922], + [-78.319804, 38.919538], + [-78.318881, 38.919873], + [-78.318253, 38.920083], + [-78.317186, 38.920383], + [-78.316776, 38.92057], + [-78.316336, 38.920847], + [-78.315895, 38.921107], + [-78.315198, 38.921417], + [-78.31486, 38.92158], + [-78.314215, 38.922035], + [-78.313776, 38.922392], + [-78.31348, 38.922724], + [-78.313318, 38.923024], + [-78.313144, 38.923178], + [-78.312816, 38.923333], + [-78.311883, 38.923757], + [-78.311187, 38.924188], + [-78.310849, 38.924423], + [-78.310278, 38.925007], + [-78.310125, 38.925233], + [-78.309963, 38.925573], + [-78.309729, 38.925848], + [-78.309392, 38.926148], + [-78.309085, 38.926384], + [-78.308788, 38.926514], + [-78.308625, 38.926725], + [-78.308505, 38.92708], + [-78.308476, 38.92737], + [-78.308567, 38.928272], + [-78.30856, 38.928651], + [-78.308481, 38.928958], + [-78.308391, 38.929256], + [-78.307963, 38.929838], + [-78.307842, 38.930081], + [-78.307743, 38.930468], + [-78.307734, 38.930613], + [-78.307318, 38.931308], + [-78.307177, 38.931648], + [-78.307148, 38.931857], + [-78.307212, 38.932179], + [-78.307214, 38.932365], + [-78.307144, 38.932599], + [-78.306757, 38.933036], + [-78.306413, 38.933699], + [-78.306312, 38.933941], + [-78.306037, 38.934297], + [-78.305823, 38.934605], + [-78.305774, 38.934823], + [-78.305721, 38.935774], + [-78.305661, 38.935968], + [-78.305591, 38.936161], + [-78.305286, 38.936679], + [-78.305249, 38.936728], + [-78.305062, 38.936986], + [-78.30491, 38.937261], + [-78.304374, 38.938336], + [-78.304303, 38.938457], + [-78.303935, 38.938774], + [-78.303304, 38.939535], + [-78.302255, 38.940878], + [-78.30195, 38.941347], + [-78.301412, 38.942269], + [-78.301179, 38.942673], + [-78.300547, 38.943538], + [-78.303295, 38.945982], + [-78.303362, 38.946041], + [-78.303426, 38.946098], + [-78.303559, 38.946216], + [-78.303766, 38.9464], + [-78.30454, 38.947089], + [-78.309274, 38.953051], + [-78.310647, 38.952522], + [-78.311268, 38.952273], + [-78.311987, 38.951851], + [-78.312436, 38.951805], + [-78.312745, 38.951681], + [-78.312852, 38.951639], + [-78.313155, 38.951517], + [-78.313402, 38.95168], + [-78.313758, 38.951774], + [-78.314092, 38.951979], + [-78.3144, 38.952236], + [-78.314759, 38.952467], + [-78.315093, 38.95275], + [-78.315401, 38.952955], + [-78.315786, 38.953109], + [-78.316197, 38.953314], + [-78.316428, 38.953289], + [-78.316633, 38.953289], + [-78.316916, 38.953314], + [-78.317173, 38.953314], + [-78.317327, 38.953391], + [-78.317506, 38.953494], + [-78.317814, 38.953751], + [-78.318071, 38.954033], + [-78.318377, 38.954358], + [-78.318687, 38.95456], + [-78.319138, 38.954839], + [-78.319674, 38.955161], + [-78.320097, 38.955309], + [-78.320383, 38.955294], + [-78.320482, 38.955258], + [-78.320848, 38.955305], + [-78.321276, 38.95548], + [-78.321871, 38.955734], + [-78.323121, 38.956269], + [-78.323563, 38.956432], + [-78.326594, 38.955651], + [-78.326839, 38.95742], + [-78.327929, 38.96325], + [-78.328492, 38.964281], + [-78.328598, 38.96449], + [-78.332855, 38.97089], + [-78.33466, 38.973951], + [-78.334943, 38.974204], + [-78.335099, 38.974344], + [-78.335297, 38.974518], + [-78.335314, 38.974675], + [-78.335686, 38.975091], + [-78.335791, 38.975433], + [-78.336079, 38.975983], + [-78.336469, 38.976729], + [-78.336666, 38.97693], + [-78.336924, 38.977194], + [-78.337015, 38.977207], + [-78.337608, 38.977692], + [-78.338872, 38.979109], + [-78.338998, 38.979563], + [-78.338745, 38.980398], + [-78.338313, 38.980808], + [-78.336898, 38.981548], + [-78.336371, 38.981763], + [-78.336216, 38.981813], + [-78.335987, 38.98178], + [-78.334882, 38.981839], + [-78.334049, 38.981755], + [-78.333737, 38.981674], + [-78.333047, 38.981393], + [-78.331387, 38.980428], + [-78.331084, 38.980311], + [-78.330861, 38.980061], + [-78.330632, 38.980028], + [-78.330346, 38.979842], + [-78.329742, 38.97921], + [-78.328649, 38.978254], + [-78.327957, 38.977791], + [-78.327771, 38.977583], + [-78.32755, 38.977515], + [-78.327142, 38.977114], + [-78.326901, 38.976876], + [-78.326764, 38.976857], + [-78.326169, 38.97619], + [-78.325948, 38.976122], + [-78.32491, 38.975137], + [-78.324772, 38.975117], + [-78.323863, 38.974187], + [-78.323789, 38.974104], + [-78.323082, 38.973893], + [-78.322002, 38.973846], + [-78.321911, 38.973833], + [-78.321421, 38.97409], + [-78.320997, 38.974464], + [-78.32071, 38.97544], + [-78.320626, 38.975972], + [-78.320366, 38.976262], + [-78.31985, 38.976623], + [-78.319237, 38.977188], + [-78.318947, 38.977982], + [-78.318984, 38.978604], + [-78.318906, 38.97892], + [-78.31898, 38.979003], + [-78.318974, 38.97922], + [-78.319598, 38.979964], + [-78.319675, 38.980229], + [-78.319574, 38.980832], + [-78.319468, 38.981071], + [-78.319196, 38.981213], + [-78.31899, 38.981474], + [-78.318448, 38.981941], + [-78.317614, 38.982438], + [-78.317018, 38.982933], + [-78.316357, 38.98331], + [-78.316614, 38.98342], + [-78.316641, 38.983441], + [-78.316892, 38.983641], + [-78.318099, 38.984905], + [-78.318422, 38.985133], + [-78.318728, 38.985431], + [-78.318969, 38.985611], + [-78.319106, 38.985631], + [-78.319218, 38.985756], + [-78.319355, 38.985776], + [-78.319678, 38.986004], + [-78.320663, 38.986436], + [-78.320737, 38.986519], + [-78.321012, 38.986559], + [-78.321252, 38.986739], + [-78.321564, 38.98682], + [-78.321676, 38.986945], + [-78.32222, 38.987242], + [-78.323281, 38.98852], + [-78.324131, 38.989115], + [-78.324317, 38.989323], + [-78.324454, 38.989343], + [-78.324806, 38.989648], + [-78.325433, 38.989992], + [-78.326286, 38.990188], + [-78.326484, 38.990369], + [-78.326589, 38.990304], + [-78.326976, 38.990469], + [-78.327526, 38.990548], + [-78.328109, 38.990769], + [-78.32823, 38.990901], + [-78.328238, 38.99091], + [-78.328579, 38.991281], + [-78.32908, 38.991752], + [-78.329104, 38.991787], + [-78.32917, 38.991882], + [-78.329264, 38.992017], + [-78.329642, 38.992561], + [-78.329861, 38.992877], + [-78.32992, 38.992963], + [-78.330026, 38.993305], + [-78.329877, 38.993719], + [-78.329605, 38.993861], + [-78.328903, 38.994015], + [-78.328513, 38.994249], + [-78.32843, 38.994782], + [-78.328895, 38.995303], + [-78.330791, 38.996756], + [-78.331681, 38.997574], + [-78.332156, 38.998151], + [-78.332331, 38.998212], + [-78.332665, 38.998587], + [-78.332794, 38.998642], + [-78.333389, 38.999309], + [-78.333495, 38.999651], + [-78.333443, 39.000022], + [-78.333404, 39.000255], + [-78.333207, 39.000481], + [-78.332145, 39.00108], + [-78.33172, 39.00132], + [-78.331419, 39.001385], + [-78.330311, 39.001262], + [-78.328933, 39.000882], + [-78.327884, 39.000227], + [-78.327827, 39.000192], + [-78.327806, 39.000179], + [-78.327797, 39.000173], + [-78.327789, 39.000168], + [-78.327703, 39.000115], + [-78.327696, 39.00011], + [-78.327556, 39.000023], + [-78.327538, 38.999955], + [-78.327272, 38.99988], + [-78.326356, 38.999748], + [-78.325488, 38.999805], + [-78.324987, 38.999914], + [-78.324882, 39.000023], + [-78.324862, 39.000078], + [-78.324786, 39.000127], + [-78.324511, 39.000305], + [-78.32447, 39.000331], + [-78.324128, 39.000553], + [-78.323257, 39.00159], + [-78.32303, 39.00168], + [-78.322987, 39.001914], + [-78.322474, 39.002458], + [-78.322242, 39.002824], + [-78.32193, 39.00373], + [-78.321927, 39.00374], + [-78.321909, 39.003793], + [-78.321696, 39.004117], + [-78.321689, 39.004128], + [-78.321605, 39.004257], + [-78.321415, 39.00443], + [-78.321373, 39.004469], + [-78.320197, 39.005543], + [-78.319309, 39.006069], + [-78.318945, 39.006198], + [-78.318883, 39.006202], + [-78.31887, 39.006203], + [-78.318269, 39.006246], + [-78.317759, 39.00639], + [-78.317477, 39.00642], + [-78.317321, 39.006436], + [-78.316803, 39.006616], + [-78.316678, 39.006675], + [-78.316669, 39.006684], + [-78.31666, 39.006694], + [-78.316629, 39.006698], + [-78.315622, 39.007172], + [-78.314943, 39.007619], + [-78.314676, 39.00779], + [-78.314415, 39.007958], + [-78.314219, 39.007983], + [-78.314199, 39.007985], + [-78.314055, 39.007976], + [-78.314032, 39.007975], + [-78.313911, 39.007968], + [-78.312583, 39.007892], + [-78.312449, 39.007901], + [-78.311731, 39.007949], + [-78.311657, 39.007954], + [-78.311419, 39.007969], + [-78.310699, 39.008018], + [-78.310126, 39.008055], + [-78.308876, 39.008139], + [-78.308092, 39.008192], + [-78.302349, 39.008578], + [-78.302259, 39.008584], + [-78.302233, 39.008586], + [-78.302113, 39.008594], + [-78.299427, 39.008729], + [-78.299354, 39.008733], + [-78.298774, 39.008764], + [-78.297005, 39.008888], + [-78.295451, 39.008997], + [-78.294959, 39.009032], + [-78.294531, 39.009062], + [-78.294328, 39.009077], + [-78.289655, 39.009426], + [-78.289411, 39.009443], + [-78.286501, 39.009641], + [-78.286175, 39.009663], + [-78.281665, 39.009973], + [-78.278663, 39.010132], + [-78.278537, 39.01014], + [-78.275254, 39.010366], + [-78.273244, 39.010504], + [-78.273083, 39.010515], + [-78.270345, 39.010703], + [-78.267525, 39.010896], + [-78.267318, 39.01091], + [-78.262702, 39.011227], + [-78.255554, 39.011718], + [-78.251994, 39.011964], + [-78.251912, 39.01197], + [-78.25183, 39.011975], + [-78.251663, 39.011985], + [-78.251655, 39.011985], + [-78.251526, 39.011996], + [-78.251449, 39.012002], + [-78.251371, 39.012007], + [-78.249726, 39.01212], + [-78.24741, 39.012283], + [-78.243816, 39.012535], + [-78.241807, 39.012676], + [-78.239415, 39.012842], + [-78.23096, 39.013429], + [-78.228561, 39.013597], + [-78.228557, 39.013597], + [-78.228524, 39.0136], + [-78.228468, 39.013606], + [-78.222743, 39.014002], + [-78.222411, 39.014026], + [-78.220957, 39.014127], + [-78.220295, 39.014173], + [-78.220152, 39.014183], + [-78.219513, 39.014228], + [-78.218992, 39.014264], + [-78.217147, 39.014393], + [-78.217072, 39.014398], + [-78.217038, 39.014401], + [-78.216903, 39.01441], + [-78.213514, 39.014646], + [-78.213392, 39.014654], + [-78.21327, 39.014663], + [-78.209401, 39.014933], + [-78.209298, 39.01494], + [-78.208951, 39.014965], + [-78.208837, 39.014973], + [-78.204241, 39.015322], + [-78.204171, 39.015327], + [-78.204112, 39.015332], + [-78.200463, 39.015592], + [-78.191993, 39.016196], + [-78.191522, 39.016229], + [-78.191261, 39.016248], + [-78.186462, 39.016587], + [-78.18621, 39.01659], + [-78.185888, 39.016596], + [-78.182323, 39.016845], + [-78.18136, 39.016904], + [-78.170649, 39.017556], + [-78.169353, 39.017631], + [-78.168815, 39.017664], + [-78.168711, 39.017667], + [-78.167852, 39.017691], + [-78.167755, 39.017694], + [-78.167659, 39.017696], + [-78.167285, 39.017707], + [-78.167208, 39.017711], + [-78.165143, 39.01783], + [-78.164475, 39.017869], + [-78.16425, 39.017878], + [-78.16417, 39.017881], + [-78.163978, 39.017888], + [-78.163113, 39.019492], + [-78.163043, 39.019822], + [-78.163017, 39.019945], + [-78.162945, 39.020308], + [-78.162653, 39.021376], + [-78.162467, 39.021708], + [-78.162378, 39.021868], + [-78.161897, 39.022472], + [-78.161835, 39.022554], + [-78.16175, 39.022657], + [-78.161712, 39.022704], + [-78.15838, 39.026906], + [-78.157764, 39.027673], + [-78.157636, 39.027833], + [-78.157521, 39.027978], + [-78.157044, 39.028579], + [-78.156865, 39.028736], + [-78.15657, 39.028995], + [-78.156553, 39.029011], + [-78.156426, 39.029126], + [-78.156302, 39.029234], + [-78.156019, 39.02948], + [-78.155572, 39.029873], + [-78.155489, 39.029946], + [-78.154717, 39.030626], + [-78.153611, 39.031669], + [-78.153186, 39.032725], + [-78.153234, 39.033216], + [-78.15327, 39.03359], + [-78.153274, 39.033636], + [-78.153297, 39.033866], + [-78.153254, 39.034078], + [-78.153218, 39.034252], + [-78.152883, 39.034802], + [-78.152797, 39.034942], + [-78.15231, 39.035747], + [-78.151984, 39.036285], + [-78.151773, 39.036195], + [-78.151497, 39.036078], + [-78.14541, 39.033492], + [-78.144689, 39.033185], + [-78.134739, 39.028951], + [-78.126122, 39.025298], + [-78.124808, 39.024741], + [-78.117764, 39.021667], + [-78.11739, 39.021504], + [-78.11731, 39.021469], + [-78.116979, 39.02131], + [-78.116896, 39.021275], + [-78.114843, 39.020401], + [-78.114713, 39.020346], + [-78.114408, 39.020216], + [-78.114337, 39.020186], + [-78.114201, 39.020128], + [-78.114149, 39.020106], + [-78.114133, 39.020099], + [-78.114115, 39.020091], + [-78.114082, 39.020077], + [-78.113923, 39.020009], + [-78.11276, 39.019515], + [-78.112726, 39.0195], + [-78.112692, 39.019486], + [-78.11267, 39.019476], + [-78.112647, 39.019466], + [-78.112628, 39.019458], + [-78.112621, 39.019455], + [-78.112596, 39.019445], + [-78.111387, 39.01893], + [-78.111315, 39.018899], + [-78.109113, 39.017962], + [-78.107364, 39.017217], + [-78.106518, 39.016857], + [-78.104426, 39.015952], + [-78.102365, 39.01506], + [-78.100377, 39.0142], + [-78.100197, 39.014122], + [-78.100093, 39.014077], + [-78.10006, 39.014063], + [-78.100053, 39.01406], + [-78.100043, 39.014056], + [-78.099994, 39.014035], + [-78.099569, 39.013851], + [-78.099066, 39.013633], + [-78.097557, 39.01298], + [-78.09711, 39.012777], + [-78.097009, 39.012731], + [-78.096886, 39.012676], + [-78.094555, 39.013017], + [-78.093691, 39.013143], + [-78.093675, 39.013145], + [-78.09314, 39.013223], + [-78.093054, 39.013236], + [-78.090657, 39.013587], + [-78.087961, 39.013981], + [-78.087231, 39.014088], + [-78.084686, 39.0147], + [-78.08411, 39.014839], + [-78.083811, 39.014911], + [-78.083712, 39.014935], + [-78.083701, 39.014938], + [-78.08349, 39.014989], + [-78.083006, 39.015105], + [-78.082994, 39.015108], + [-78.0829, 39.01513], + [-78.082672, 39.015185], + [-78.082627, 39.015196], + [-78.082472, 39.015233], + [-78.082008, 39.015346], + [-78.081678, 39.015426], + [-78.081492, 39.015471], + [-78.08129, 39.015503], + [-78.080484, 39.015632], + [-78.080449, 39.015638], + [-78.080413, 39.015644], + [-78.080363, 39.015652], + [-78.080343, 39.015655], + [-78.080299, 39.015662], + [-78.079232, 39.015833], + [-78.077322, 39.016139], + [-78.075354, 39.016454], + [-78.073565, 39.016741], + [-78.071064, 39.017141], + [-78.070279, 39.017267], + [-78.070006, 39.017311], + [-78.069955, 39.017319], + [-78.069947, 39.01732], + [-78.069353, 39.017415], + [-78.068225, 39.017597], + [-78.065528, 39.01801], + [-78.065493, 39.018015], + [-78.062968, 39.018401], + [-78.060577, 39.018767], + [-78.060231, 39.01882], + [-78.059671, 39.018905], + [-78.05954, 39.018926], + [-78.05891, 39.019023], + [-78.058815, 39.018958], + [-78.058795, 39.018944], + [-78.058763, 39.018922], + [-78.058743, 39.018908], + [-78.058721, 39.018893], + [-78.058715, 39.018889], + [-78.058677, 39.018864], + [-78.058422, 39.018688], + [-78.05837, 39.018653], + [-78.058324, 39.018621], + [-78.058281, 39.018592], + [-78.058245, 39.018568], + [-78.058059, 39.01844], + [-78.057987, 39.018389], + [-78.056873, 39.017596], + [-78.056653, 39.017439], + [-78.056389, 39.01726], + [-78.056342, 39.017228], + [-78.056138, 39.017089], + [-78.052136, 39.01437], + [-78.051994, 39.014274], + [-78.051836, 39.014167], + [-78.051824, 39.014159], + [-78.051771, 39.014123], + [-78.051701, 39.014075], + [-78.051696, 39.014072], + [-78.051684, 39.014064], + [-78.051228, 39.013754], + [-78.051072, 39.013648], + [-78.051064, 39.013643], + [-78.051034, 39.013623], + [-78.051002, 39.013601], + [-78.050952, 39.013567], + [-78.050741, 39.013424], + [-78.050506, 39.013264], + [-78.049995, 39.012917], + [-78.049189, 39.012331], + [-78.049047, 39.012228], + [-78.048738, 39.012003], + [-78.04865, 39.011939], + [-78.048119, 39.011553], + [-78.047919, 39.011408], + [-78.047889, 39.011386], + [-78.047867, 39.01137], + [-78.047859, 39.011364], + [-78.047853, 39.01136], + [-78.047471, 39.011082], + [-78.047233, 39.01091], + [-78.047216, 39.010898], + [-78.046908, 39.010674], + [-78.046577, 39.010433], + [-78.045459, 39.00962], + [-78.043448, 39.008157], + [-78.043443, 39.008153], + [-78.041069, 39.006428], + [-78.041025, 39.006396], + [-78.040996, 39.006375], + [-78.040937, 39.006332], + [-78.040827, 39.006252], + [-78.038991, 39.004917], + [-78.03734, 39.003717], + [-78.036647, 39.003213], + [-78.036467, 39.003082], + [-78.036382, 39.00302], + [-78.036305, 39.002964], + [-78.036265, 39.002935], + [-78.036259, 39.002931], + [-78.035946, 39.002704], + [-78.033444, 39.000885], + [-78.032461, 39.00017], + [-78.032453, 39.000165], + [-78.032164, 38.999966], + [-78.032156, 38.999961], + [-78.03215, 38.999956], + [-78.032141, 38.99995], + [-78.032119, 38.999935], + [-78.032108, 38.999928], + [-78.032048, 38.999887], + [-78.029323, 38.998043], + [-78.029304, 38.99803], + [-78.028798, 38.997688], + [-78.028566, 38.997531], + [-78.027982, 38.997137], + [-78.02788, 38.997068], + [-78.027844, 38.997044], + [-78.027821, 38.997028], + [-78.027789, 38.997006], + [-78.027383, 38.996705], + [-78.022158, 38.992828], + [-78.013605, 38.986485], + [-78.009203, 38.98322], + [-78.005343, 38.980356], + [-78.005315, 38.980335], + [-78.005219, 38.980265], + [-78.004673, 38.979913], + [-78.004538, 38.979799], + [-78.0045, 38.979767], + [-78.004443, 38.979718], + [-78.004169, 38.979487], + [-78.00441, 38.979305], + [-78.004798, 38.979005], + [-78.005057, 38.978556], + [-78.005188, 38.9783], + [-78.005208, 38.978261], + [-78.005271, 38.97824], + [-78.005717, 38.978092], + [-78.005978, 38.977926], + [-78.006497, 38.977338], + [-78.00686, 38.976811], + [-78.007728, 38.976269], + [-78.007991, 38.976031], + [-78.008145, 38.976017], + [-78.008183, 38.975995], + [-78.008397, 38.975868], + [-78.009185, 38.975638], + [-78.009557, 38.975168], + [-78.009691, 38.974735], + [-78.010038, 38.974442], + [-78.011311, 38.973719], + [-78.012073, 38.973303], + [-78.012253, 38.973088], + [-78.012613, 38.972699], + [-78.013211, 38.972256], + [-78.014696, 38.971287], + [-78.015029, 38.971139], + [-78.015515, 38.971041], + [-78.016164, 38.97105], + [-78.016737, 38.970817], + [-78.017327, 38.970254], + [-78.01773, 38.96976], + [-78.01782, 38.969463], + [-78.01782, 38.969044], + [-78.017732, 38.968012], + [-78.017707, 38.967762], + [-78.017549, 38.967485], + [-78.017346, 38.966532], + [-78.017294, 38.966112], + [-78.017373, 38.965839], + [-78.017941, 38.96534], + [-78.018663, 38.964883], + [-78.019201, 38.964609], + [-78.020244, 38.964143], + [-78.020363, 38.963934], + [-78.020461, 38.963742], + [-78.020409, 38.96345], + [-78.02045, 38.963207], + [-78.020469, 38.963096], + [-78.020511, 38.962845], + [-78.020931, 38.961771], + [-78.021464, 38.960696], + [-78.021895, 38.959792], + [-78.022193, 38.959315], + [-78.022383, 38.959109], + [-78.023222, 38.958207], + [-78.02342, 38.957636], + [-78.023505, 38.957541], + [-78.02371, 38.957149], + [-78.023902, 38.956854], + [-78.02427, 38.956521], + [-78.024615, 38.956324], + [-78.024764, 38.956117], + [-78.024964, 38.955508], + [-78.025033, 38.955202], + [-78.025339, 38.954925], + [-78.026198, 38.954269], + [-78.026783, 38.953668], + [-78.027026, 38.953233], + [-78.027131, 38.952735], + [-78.027137, 38.952494], + [-78.027198, 38.952116], + [-78.027453, 38.951773], + [-78.027643, 38.951582], + [-78.027966, 38.951402], + [-78.028354, 38.951101], + [-78.028589, 38.950766], + [-78.028706, 38.950591], + [-78.028836, 38.950327], + [-78.029057, 38.950153], + [-78.029284, 38.950132], + [-78.029651, 38.95025], + [-78.030184, 38.950346], + [-78.030636, 38.950377], + [-78.030952, 38.950381], + [-78.031182, 38.950436], + [-78.031518, 38.950518], + [-78.031866, 38.950572], + [-78.032433, 38.950556], + [-78.032725, 38.950383], + [-78.032902, 38.950297], + [-78.033401, 38.950086], + [-78.034155, 38.949889], + [-78.034534, 38.949532], + [-78.034765, 38.94914], + [-78.035061, 38.948637], + [-78.035645, 38.947848], + [-78.036365, 38.947223], + [-78.036481, 38.947123], + [-78.03671, 38.946926], + [-78.037508, 38.946176], + [-78.037783, 38.945363], + [-78.038142, 38.944282], + [-78.038693, 38.943265], + [-78.038768, 38.942987], + [-78.038887, 38.942578], + [-78.03895, 38.942342], + [-78.038953, 38.941915], + [-78.038954, 38.94181], + [-78.038963, 38.94133], + [-78.039226, 38.940598], + [-78.039487, 38.939656], + [-78.039521, 38.939535], + [-78.039755, 38.939199], + [-78.04026, 38.938775], + [-78.041252, 38.938203], + [-78.041977, 38.938012], + [-78.042368, 38.938018], + [-78.042626, 38.93815], + [-78.042886, 38.938283], + [-78.043276, 38.938313], + [-78.043556, 38.938252], + [-78.044313, 38.937989], + [-78.045061, 38.937702], + [-78.046341, 38.937076], + [-78.046849, 38.936954], + [-78.047271, 38.936928], + [-78.048269, 38.936926], + [-78.04861, 38.936906], + [-78.048662, 38.936903], + [-78.048826, 38.936894], + [-78.049271, 38.936779], + [-78.049453, 38.936674], + [-78.049539, 38.936624], + [-78.049584, 38.936598], + [-78.050407, 38.936181], + [-78.051065, 38.935766], + [-78.052526, 38.934898], + [-78.053028, 38.934575], + [-78.053614, 38.934156], + [-78.053994, 38.933767], + [-78.054332, 38.933385], + [-78.054791, 38.933142], + [-78.055755, 38.932834], + [-78.056922, 38.932649], + [-78.057517, 38.93273], + [-78.057826, 38.932711], + [-78.058149, 38.932547], + [-78.058492, 38.93239], + [-78.059, 38.932374], + [-78.059124, 38.932389], + [-78.059249, 38.932404], + [-78.060084, 38.932501], + [-78.060649, 38.932549], + [-78.060999, 38.932521], + [-78.061588, 38.932369], + [-78.061728, 38.932145], + [-78.061758, 38.931718], + [-78.061787, 38.931388], + [-78.061763, 38.931105], + [-78.061815, 38.930966], + [-78.061872, 38.930817], + [-78.06195, 38.930576], + [-78.061956, 38.930487], + [-78.061959, 38.930434], + [-78.06212, 38.929918], + [-78.062366, 38.929526], + [-78.062889, 38.929179], + [-78.063162, 38.928933], + [-78.063278, 38.928806], + [-78.063561, 38.928617], + [-78.063989, 38.928317], + [-78.064372, 38.927799], + [-78.064661, 38.927336], + [-78.064776, 38.92683], + [-78.064615, 38.926155], + [-78.064598, 38.926086], + [-78.064239, 38.925179], + [-78.063955, 38.924619], + [-78.063836, 38.924408], + [-78.063809, 38.924246], + [-78.063878, 38.923949], + [-78.064335, 38.923327], + [-78.065, 38.922636], + [-78.065905, 38.921756], + [-78.066409, 38.921336], + [-78.066692, 38.921131], + [-78.066959, 38.920691], + [-78.067479, 38.92003], + [-78.067871, 38.919544], + [-78.068188, 38.919218], + [-78.068678, 38.918516], + [-78.068952, 38.918238], + [-78.069228, 38.917855], + [-78.069403, 38.917398], + [-78.06952, 38.917255], + [-78.069751, 38.917155], + [-78.070204, 38.917031], + [-78.07071, 38.916941], + [-78.071246, 38.916506], + [-78.071761, 38.916054], + [-78.072316, 38.915224], + [-78.072558, 38.91482], + [-78.072699, 38.914585], + [-78.074587, 38.913508], + [-78.074703, 38.912828], + [-78.074826, 38.912141], + [-78.074984, 38.911981], + [-78.074995, 38.911886], + [-78.07503, 38.911578], + [-78.075031, 38.91157], + [-78.075076, 38.911155], + [-78.075081, 38.911052], + [-78.075069, 38.910143], + [-78.075157, 38.909674], + [-78.075197, 38.909476], + [-78.075213, 38.909445], + [-78.075383, 38.90911], + [-78.075668, 38.908783], + [-78.075816, 38.908561], + [-78.075825, 38.908528], + [-78.075883, 38.908345], + [-78.075753, 38.908019], + [-78.075604, 38.907724], + [-78.07551, 38.90759], + [-78.075156, 38.907335], + [-78.074589, 38.90717], + [-78.074287, 38.907081], + [-78.074216, 38.907048], + [-78.073791, 38.906768], + [-78.073166, 38.906228], + [-78.07214, 38.905238], + [-78.071959, 38.905059], + [-78.071896, 38.904695], + [-78.072051, 38.903763], + [-78.07205, 38.903678], + [-78.063699, 38.901635], + [-78.063699, 38.900483], + [-78.062529, 38.90039], + [-78.062194, 38.900022], + [-78.061192, 38.899745], + [-78.061532, 38.897845], + [-78.061629, 38.896709], + [-78.061362, 38.89647], + [-78.061708, 38.895785], + [-78.06174, 38.895294], + [-78.06157, 38.895099], + [-78.061396, 38.895019], + [-78.061316, 38.894982], + [-78.061188, 38.891381], + [-78.062272, 38.891156], + [-78.062978, 38.891094], + [-78.063725, 38.891094], + [-78.064492, 38.891105], + [-78.065149, 38.891014], + [-78.066551, 38.890544], + [-78.066933, 38.890921], + [-78.067231, 38.891125], + [-78.067143, 38.891186], + [-78.067072, 38.891258], + [-78.067036, 38.891313], + [-78.066979, 38.891433], + [-78.066878, 38.891747], + [-78.066822, 38.891888], + [-78.068103, 38.892486], + [-78.068011, 38.891727], + [-78.068089, 38.891677], + [-78.068695, 38.891577], + [-78.072243, 38.890772], + [-78.07267, 38.890719], + [-78.073305, 38.886112], + [-78.075384, 38.885592], + [-78.077122, 38.887239], + [-78.077473, 38.887285], + [-78.077513, 38.887321], + [-78.079242, 38.885949], + [-78.080518, 38.88598], + [-78.081451, 38.885957], + [-78.081547, 38.885955], + [-78.084158, 38.885938], + [-78.084654, 38.885824], + [-78.085673, 38.885592], + [-78.08667, 38.885434], + [-78.087323, 38.885368], + [-78.088125, 38.885377], + [-78.08892, 38.88546], + [-78.089831, 38.885742], + [-78.090664, 38.885903], + [-78.090898, 38.885816], + [-78.091092, 38.885708], + [-78.091873, 38.88543], + [-78.092099, 38.885353], + [-78.092474, 38.88481], + [-78.093012, 38.883611], + [-78.0931, 38.882973], + [-78.093147, 38.882343], + [-78.093407, 38.881484], + [-78.093822, 38.880537], + [-78.094533, 38.879476], + [-78.096804, 38.879413], + [-78.09987, 38.878984], + [-78.101641, 38.878846], + [-78.10234, 38.878953], + [-78.102697, 38.879042], + [-78.103467, 38.879203], + [-78.106172, 38.879398], + [-78.107693, 38.879631], + [-78.111434, 38.880268], + [-78.1115, 38.880059], + [-78.111562, 38.879868], + [-78.111657, 38.879572], + [-78.111819, 38.879179], + [-78.112011, 38.878602], + [-78.11266, 38.877676], + [-78.113741, 38.876531], + [-78.114518, 38.876477], + [-78.116499, 38.876284], + [-78.122242, 38.874077], + [-78.122363, 38.874075], + [-78.122482, 38.874057], + [-78.122582, 38.874028], + [-78.122722, 38.873995], + [-78.124376, 38.873327], + [-78.125633, 38.872854], + [-78.126149, 38.872537], + [-78.126571, 38.872166], + [-78.127217, 38.87132], + [-78.127569, 38.870733], + [-78.128949, 38.870791], + [-78.129297, 38.870557], + [-78.130438, 38.86979], + [-78.130851, 38.867419], + [-78.130512, 38.866395], + [-78.130592, 38.865596], + [-78.13061, 38.865411], + [-78.130646, 38.865049], + [-78.130576, 38.864873], + [-78.13055, 38.864808], + [-78.130081, 38.863622], + [-78.130011, 38.863349], + [-78.129876, 38.862815], + [-78.130197, 38.862155], + [-78.130211, 38.862126], + [-78.130268, 38.862009], + [-78.130339, 38.861864], + [-78.13076, 38.861637], + [-78.131177, 38.861705], + [-78.131596, 38.861773], + [-78.131835, 38.861812], + [-78.132188, 38.861869], + [-78.132348, 38.861895], + [-78.132768, 38.861963], + [-78.13299, 38.861999], + [-78.134373, 38.861282], + [-78.134901, 38.861008], + [-78.135005, 38.860954], + [-78.135139, 38.860885], + [-78.135453, 38.860761], + [-78.136514, 38.860342], + [-78.137807, 38.859833], + [-78.138294, 38.859641], + [-78.140411, 38.859405], + [-78.141426, 38.859652], + [-78.14223, 38.859847], + [-78.14295, 38.859274], + [-78.142944, 38.859157], + [-78.142889, 38.858038], + [-78.142827, 38.856775], + [-78.143433, 38.855596], + [-78.143532, 38.855403], + [-78.144092, 38.854314], + [-78.144574, 38.85322], + [-78.144912, 38.852454], + [-78.144948, 38.852371], + [-78.145004, 38.852245], + [-78.145212, 38.851773], + [-78.145251, 38.85168], + [-78.145501, 38.851078], + [-78.145716, 38.850563], + [-78.14582, 38.850555], + [-78.148336, 38.850368], + [-78.149068, 38.84961], + [-78.149477, 38.849189], + [-78.149857, 38.849102], + [-78.150801, 38.848887], + [-78.151143, 38.848809], + [-78.151426, 38.84849], + [-78.153177, 38.846525], + [-78.154976, 38.845855], + [-78.157236, 38.844918], + [-78.158654, 38.84311], + [-78.159106, 38.841981], + [-78.158767, 38.840836], + [-78.161069, 38.838947], + [-78.159671, 38.837005], + [-78.160267, 38.836214], + [-78.162175, 38.836387], + [-78.162571, 38.836423], + [-78.162625, 38.836423], + [-78.162856, 38.836422], + [-78.164377, 38.83588], + [-78.166174, 38.834378], + [-78.168291, 38.833957], + [-78.168878, 38.831933], + [-78.168896, 38.831871], + [-78.169074, 38.83126], + [-78.169316, 38.830742], + [-78.169693, 38.830313], + [-78.170163, 38.829907], + [-78.170541, 38.829622], + [-78.170797, 38.829492], + [-78.170806, 38.829435], + [-78.170764, 38.82925], + [-78.170398, 38.828622], + [-78.170282, 38.828251], + [-78.170093, 38.827752], + [-78.169904, 38.827317], + [-78.169701, 38.826929], + [-78.16958, 38.826697], + [-78.169536, 38.826455], + [-78.169667, 38.826051], + [-78.170514, 38.824453], + [-78.170935, 38.823845], + [-78.170968, 38.823799], + [-78.171055, 38.823695], + [-78.171023, 38.823542], + [-78.170939, 38.823405], + [-78.170825, 38.823244], + [-78.17068, 38.823091], + [-78.170697, 38.822784], + [-78.170664, 38.82247], + [-78.170518, 38.822196], + [-78.170422, 38.82189], + [-78.17042, 38.821615], + [-78.170397, 38.821293], + [-78.170458, 38.821008], + [-78.170548, 38.819296], + [-78.17252, 38.818882], + [-78.174976, 38.819227], + [-78.177934, 38.818998], + [-78.180029, 38.818003], + [-78.179505, 38.817101], + [-78.178508, 38.815917], + [-78.178847, 38.81436], + [-78.179318, 38.811223], + [-78.18019, 38.809157], + [-78.180775, 38.807108], + [-78.180854, 38.806907], + [-78.181565, 38.805116], + [-78.182068, 38.80447], + [-78.182098, 38.803744], + [-78.181995, 38.802527], + [-78.182365, 38.801744], + [-78.182303, 38.801051], + [-78.18146, 38.800181], + [-78.18183, 38.799358], + [-78.182569, 38.799123], + [-78.183606, 38.7978], + [-78.184149, 38.795985], + [-78.184333, 38.793857], + [-78.184476, 38.792986], + [-78.185862, 38.792339], + [-78.187258, 38.7912], + [-78.188665, 38.790602], + [-78.188694, 38.790579], + [-78.188706, 38.790569], + [-78.188692, 38.790097], + [-78.188686, 38.78985], + [-78.188682, 38.789713], + [-78.188664, 38.789037], + [-78.188664, 38.789021], + [-78.190378, 38.788277], + [-78.193057, 38.787644], + [-78.193088, 38.787637], + [-78.193344, 38.786701], + [-78.194021, 38.785587], + [-78.194923, 38.782691], + [-78.195569, 38.780618], + [-78.198186, 38.779042], + [-78.200012, 38.77704], + [-78.200767, 38.776673], + [-78.202197, 38.775981], + [-78.204681, 38.775018], + [-78.206723, 38.774088], + [-78.207883, 38.774376], + [-78.210358, 38.774833], + [-78.21218, 38.77477], + [-78.212472, 38.77476], + [-78.212678, 38.774716], + [-78.21551, 38.774075], + [-78.218373, 38.773016], + [-78.220117, 38.771949], + [-78.221534, 38.770608], + [-78.222569, 38.769461], + [-78.224241, 38.768072], + [-78.226663, 38.76802], + [-78.228091, 38.768558], + [-78.229161, 38.768937], + [-78.229821, 38.7692], + [-78.230118, 38.769134], + [-78.230404, 38.768971], + [-78.231386, 38.768498], + [-78.232113, 38.768187], + [-78.232544, 38.768096], + [-78.232945, 38.767925], + [-78.233448, 38.76771], + [-78.233884, 38.767499], + [-78.234242, 38.767392], + [-78.234519, 38.767278], + [-78.234774, 38.767123], + [-78.234977, 38.766864], + [-78.235077, 38.766589], + [-78.235147, 38.766314], + [-78.235145, 38.766128], + [-78.235163, 38.765918], + [-78.235254, 38.765724], + [-78.235488, 38.765529], + [-78.235959, 38.765325], + [-78.236215, 38.765259], + [-78.236377, 38.765016], + [-78.236447, 38.764765], + [-78.236752, 38.764384], + [-78.236976, 38.764205], + [-78.23718, 38.764043], + [-78.237435, 38.763831], + [-78.237524, 38.763508], + [-78.237653, 38.763023], + [-78.237762, 38.762635], + [-78.237934, 38.762327], + [-78.238117, 38.762108], + [-78.238331, 38.761954], + [-78.238607, 38.761855], + [-78.239153, 38.761973], + [-78.239678, 38.762067], + [-78.240192, 38.762097], + [-78.240634, 38.762151], + [-78.241066, 38.762132], + [-78.241384, 38.762155], + [-78.241848, 38.76229], + [-78.241965, 38.76237], + [-78.241988, 38.762385], + [-78.242272, 38.762578], + [-78.242686, 38.762858], + [-78.243088, 38.76305], + [-78.243316, 38.763202], + [-78.243583, 38.763176], + [-78.243801, 38.763057], + [-78.244043, 38.762923], + [-78.244166, 38.762856], + [-78.244338, 38.762655], + [-78.244675, 38.762427], + [-78.245135, 38.762199], + [-78.24586, 38.761694], + [-78.246237, 38.761369], + [-78.246469, 38.76094], + [-78.246649, 38.760455], + [-78.247085, 38.759928], + [-78.247433, 38.759724], + [-78.248843, 38.759088], + [-78.249059, 38.759061], + [-78.249724, 38.758899], + [-78.250346, 38.758833], + [-78.250582, 38.75876], + [-78.250911, 38.758621], + [-78.2511, 38.758498], + [-78.251268, 38.758388], + [-78.251555, 38.758202], + [-78.251879, 38.757869], + [-78.252002, 38.75775], + [-78.252339, 38.757477], + [-78.252616, 38.757235], + [-78.252872, 38.75705], + [-78.253271, 38.756994], + [-78.253712, 38.757059], + [-78.254214, 38.757172], + [-78.254522, 38.757365], + [-78.255035, 38.757591], + [-78.255373, 38.757768], + [-78.25565, 38.75801], + [-78.255713, 38.758085], + [-78.255809, 38.758198], + [-78.255865, 38.758265], + [-78.256071, 38.758509], + [-78.256492, 38.758992], + [-78.256943, 38.759282], + [-78.257722, 38.759403], + [-78.258347, 38.759404], + [-78.25928, 38.759307], + [-78.260458, 38.759083], + [-78.261308, 38.758842], + [-78.262098, 38.758617], + [-78.262369, 38.758558], + [-78.26278, 38.758468], + [-78.263543, 38.758392], + [-78.264219, 38.75844], + [-78.264895, 38.758529], + [-78.265449, 38.758602], + [-78.26551, 38.758626], + [-78.265818, 38.758747], + [-78.266126, 38.758948], + [-78.266454, 38.759295], + [-78.266752, 38.759641], + [-78.267131, 38.759955], + [-78.267706, 38.760398], + [-78.268055, 38.760583], + [-78.268465, 38.76068], + [-78.268998, 38.760769], + [-78.269387, 38.760874], + [-78.269859, 38.760978], + [-78.270382, 38.761301], + [-78.271049, 38.761567], + [-78.271346, 38.761671], + [-78.272043, 38.76176], + [-78.273222, 38.761938], + [-78.274391, 38.761938], + [-78.274455, 38.761937], + [-78.274995, 38.76193], + [-78.276215, 38.762237], + [-78.27744, 38.76201], + [-78.277455, 38.762008], + [-78.277919, 38.761968], + [-78.278659, 38.761997], + [-78.278967, 38.76199], + [-78.27947, 38.761932], + [-78.27987, 38.761803], + [-78.280597, 38.761503], + [-78.28157, 38.761105], + [-78.281877, 38.76096], + [-78.282075, 38.760869], + [-78.283048, 38.760436], + [-78.283447, 38.760194], + [-78.283693, 38.760041], + [-78.283949, 38.759921], + [-78.284441, 38.759832], + [-78.284768, 38.759494], + [-78.28488, 38.759237], + [-78.286226, 38.761153], + [-78.288383, 38.764188], + [-78.290253, 38.766957], + [-78.290922, 38.768228], + [-78.29123, 38.768928], + [-78.29116, 38.769605], + [-78.291216, 38.769708], + [-78.291235, 38.769744], + [-78.291448, 38.770356], + [-78.29148, 38.770417], + [-78.291585, 38.77068], + [-78.29162, 38.770806], + [-78.291634, 38.771009], + [-78.291627, 38.771108], + [-78.291585, 38.771388], + [-78.291627, 38.771734], + [-78.291613, 38.771888], + [-78.291585, 38.771998], + [-78.29155, 38.772102], + [-78.291501, 38.772217], + [-78.291339, 38.772481], + [-78.290855, 38.773046], + [-78.290722, 38.773216], + [-78.290645, 38.773326], + [-78.290322, 38.77382], + [-78.290301, 38.773842], + [-78.290154, 38.774062], + [-78.290091, 38.774177], + [-78.29002, 38.77433], + [-78.289929, 38.774627], + [-78.289852, 38.774814], + [-78.28974, 38.775066], + [-78.289655, 38.775225], + [-78.289564, 38.775379], + [-78.289501, 38.775467], + [-78.289333, 38.775824], + [-78.289319, 38.775878], + [-78.289312, 38.775955], + [-78.28939, 38.776542], + [-78.289568, 38.77704], + [-78.289569, 38.777368], + [-78.28964, 38.778058], + [-78.289638, 38.778339], + [-78.289755, 38.778905], + [-78.289871, 38.779142], + [-78.289944, 38.779292], + [-78.290185, 38.779981], + [-78.290747, 38.780569], + [-78.291118, 38.780824], + [-78.291782, 38.78128], + [-78.292253, 38.781545], + [-78.292726, 38.781769], + [-78.29309, 38.781941], + [-78.293412, 38.782132], + [-78.293532, 38.782209], + [-78.293812, 38.782452], + [-78.29404, 38.782747], + [-78.294044, 38.782752], + [-78.294304, 38.783019], + [-78.294495, 38.783385], + [-78.294881, 38.784006], + [-78.295235, 38.784224], + [-78.295446, 38.784169], + [-78.295746, 38.783886], + [-78.296005, 38.783814], + [-78.296772, 38.783829], + [-78.296954, 38.783862], + [-78.297192, 38.783917], + [-78.299442, 38.784602], + [-78.299744, 38.784839], + [-78.299952, 38.784736], + [-78.300617, 38.784278], + [-78.300993, 38.784166], + [-78.301401, 38.783906], + [-78.301721, 38.783866], + [-78.301917, 38.783899], + [-78.30244, 38.783966], + [-78.302703, 38.784097], + [-78.302894, 38.784182], + [-78.303139, 38.78425], + [-78.303366, 38.78417], + [-78.303508, 38.784244], + [-78.303606, 38.784452], + [-78.30367, 38.784555], + [-78.303715, 38.784582], + [-78.304815, 38.78504], + [-78.30521, 38.785374], + [-78.30555, 38.785605], + [-78.30711, 38.785724], + [-78.307468, 38.785768], + [-78.307685, 38.785801], + [-78.308057, 38.785888], + [-78.308668, 38.78585], + [-78.309109, 38.786114], + [-78.309195, 38.786161], + [-78.309363, 38.786444], + [-78.309544, 38.786652], + [-78.309666, 38.786781], + [-78.309825, 38.786806], + [-78.310207, 38.786713], + [-78.310413, 38.786701], + [-78.31054, 38.786707], + [-78.310764, 38.786745], + [-78.310883, 38.786794], + [-78.310947, 38.786816], + [-78.311136, 38.786904], + [-78.311402, 38.787107], + [-78.311515, 38.787184], + [-78.311599, 38.787217], + [-78.31176, 38.787261], + [-78.311936, 38.787288], + [-78.312097, 38.787305], + [-78.312216, 38.787332], + [-78.312721, 38.787497], + [-78.312882, 38.78753], + [-78.313044, 38.787557], + [-78.313612, 38.787684], + [-78.313794, 38.787777], + [-78.313921, 38.787826], + [-78.314089, 38.787876], + [-78.314215, 38.787903], + [-78.314454, 38.787931], + [-78.314622, 38.787942], + [-78.314699, 38.787958], + [-78.314748, 38.78798], + [-78.314854, 38.788046], + [-78.314945, 38.788117], + [-78.315001, 38.788167], + [-78.315113, 38.788249], + [-78.315352, 38.788359], + [-78.315562, 38.788425], + [-78.31585, 38.788491], + [-78.316116, 38.788584], + [-78.316193, 38.788628], + [-78.316404, 38.788776], + [-78.31646, 38.788831], + [-78.316482, 38.788838], + [-78.316558, 38.788919], + [-78.316663, 38.789007], + [-78.316783, 38.789095], + [-78.317084, 38.789259], + [-78.317442, 38.789408], + [-78.317765, 38.78949], + [-78.318171, 38.789517], + [-78.318726, 38.789528], + [-78.319048, 38.789501], + [-78.319203, 38.789462], + [-78.319259, 38.78944], + [-78.319385, 38.78938], + [-78.319403, 38.789367], + [-78.319532, 38.789314], + [-78.319588, 38.789303], + [-78.31968, 38.789292], + [-78.319771, 38.789298], + [-78.320023, 38.789352], + [-78.320185, 38.789374], + [-78.320676, 38.789396], + [-78.320956, 38.789418], + [-78.321146, 38.789457], + [-78.321342, 38.789534], + [-78.321447, 38.789594], + [-78.32156, 38.789671], + [-78.321714, 38.789824], + [-78.321777, 38.789879], + [-78.321945, 38.790066], + [-78.32217, 38.790286], + [-78.322471, 38.790511], + [-78.322626, 38.790598], + [-78.322892, 38.790736], + [-78.322998, 38.790807], + [-78.32311, 38.790895], + [-78.323306, 38.791087], + [-78.323419, 38.791252], + [-78.323517, 38.791367], + [-78.323538, 38.791378], + [-78.323601, 38.791427], + [-78.323692, 38.791471], + [-78.323853, 38.791532], + [-78.324155, 38.791614], + [-78.324345, 38.791652], + [-78.324492, 38.791674], + [-78.324597, 38.79168], + [-78.325228, 38.791691], + [-78.325895, 38.791669], + [-78.325965, 38.791674], + [-78.326042, 38.791691], + [-78.326126, 38.791724], + [-78.326168, 38.791745], + [-78.326239, 38.791767], + [-78.326309, 38.791773], + [-78.326372, 38.791767], + [-78.326498, 38.791729], + [-78.326709, 38.791614], + [-78.326786, 38.791592], + [-78.326891, 38.791586], + [-78.326982, 38.791592], + [-78.32708, 38.791619], + [-78.327129, 38.791641], + [-78.327384, 38.791778], + [-78.327634, 38.792194], + [-78.32802, 38.792399], + [-78.328049, 38.792404], + [-78.328092, 38.792405], + [-78.328544, 38.792417], + [-78.328843, 38.792605], + [-78.329012, 38.79262], + [-78.329255, 38.792731], + [-78.329851, 38.792975], + [-78.329969, 38.793015], + [-78.330155, 38.793256], + [-78.330844, 38.793462], + [-78.331627, 38.794528], + [-78.331725, 38.794643], + [-78.331788, 38.794731], + [-78.331886, 38.794918], + [-78.331935, 38.795], + [-78.331942, 38.795028], + [-78.331963, 38.795061], + [-78.332013, 38.795121], + [-78.33209, 38.795198], + [-78.332153, 38.795242], + [-78.332244, 38.795291], + [-78.332405, 38.79534], + [-78.332588, 38.795384], + [-78.332889, 38.795439], + [-78.333009, 38.795467], + [-78.33311, 38.795499], + [-78.333198, 38.795527], + [-78.333745, 38.795757], + [-78.333893, 38.795829], + [-78.333928, 38.79584], + [-78.334054, 38.795911], + [-78.334293, 38.796076], + [-78.334454, 38.796208], + [-78.334637, 38.796416], + [-78.334763, 38.796581], + [-78.334903, 38.796718], + [-78.335058, 38.796861], + [-78.33517, 38.796932], + [-78.33538, 38.797086], + [-78.335822, 38.797333], + [-78.335871, 38.797355], + [-78.335977, 38.797421], + [-78.336222, 38.797552], + [-78.336328, 38.797624], + [-78.336447, 38.797717], + [-78.336467, 38.797728], + [-78.336601, 38.79786], + [-78.336671, 38.797958], + [-78.336689, 38.797996], + [-78.336707, 38.798035], + [-78.336716, 38.79808], + [-78.336735, 38.798178], + [-78.336721, 38.798277], + [-78.3367, 38.798376], + [-78.33658, 38.798721], + [-78.336538, 38.798958], + [-78.336553, 38.799029], + [-78.336595, 38.799166], + [-78.33663, 38.799232], + [-78.336665, 38.799276], + [-78.336707, 38.799314], + [-78.336917, 38.799419], + [-78.336932, 38.799424], + [-78.337198, 38.799517], + [-78.337352, 38.799616], + [-78.337423, 38.799666], + [-78.337436, 38.799682], + [-78.337528, 38.799759], + [-78.337626, 38.799874], + [-78.33764, 38.799902], + [-78.337682, 38.799956], + [-78.337753, 38.800072], + [-78.337991, 38.8005], + [-78.338132, 38.80072], + [-78.338251, 38.800934], + [-78.338349, 38.801246], + [-78.338462, 38.801526], + [-78.338514, 38.801611], + [-78.338567, 38.801697], + [-78.338623, 38.801757], + [-78.338679, 38.80179], + [-78.338777, 38.801834], + [-78.339065, 38.801916], + [-78.339304, 38.802037], + [-78.339395, 38.802108], + [-78.339458, 38.802169], + [-78.339563, 38.802284], + [-78.339612, 38.802366], + [-78.339732, 38.802613], + [-78.33983, 38.802893], + [-78.3399, 38.803069], + [-78.339935, 38.80314], + [-78.339966, 38.803191], + [-78.340078, 38.803378], + [-78.340083, 38.803387], + [-78.340223, 38.803552], + [-78.3403, 38.803629], + [-78.340364, 38.803684], + [-78.340785, 38.803963], + [-78.340846, 38.803993], + [-78.340876, 38.804007], + [-78.340995, 38.804057], + [-78.341157, 38.804139], + [-78.341718, 38.804463], + [-78.341907, 38.804589], + [-78.342167, 38.804803], + [-78.342181, 38.804819], + [-78.342399, 38.80499], + [-78.342427, 38.805006], + [-78.342602, 38.805149], + [-78.342609, 38.805154], + [-78.342623, 38.805171], + [-78.342647, 38.805191], + [-78.342691, 38.805226], + [-78.342719, 38.805248], + [-78.342785, 38.805302], + [-78.343065, 38.805467], + [-78.343311, 38.805626], + [-78.343529, 38.805752], + [-78.343655, 38.805813], + [-78.343732, 38.80584], + [-78.343809, 38.805862], + [-78.343865, 38.805884], + [-78.344027, 38.805912], + [-78.344146, 38.805928], + [-78.344427, 38.805939], + [-78.3451, 38.805944], + [-78.345549, 38.805933], + [-78.34583, 38.805895], + [-78.34589, 38.805856], + [-78.345949, 38.805818], + [-78.346091, 38.805856], + [-78.346197, 38.805829], + [-78.346391, 38.805779], + [-78.346566, 38.805753], + [-78.346625, 38.805745], + [-78.34687, 38.805733], + [-78.3473, 38.805722], + [-78.347404, 38.805719], + [-78.34764, 38.805713], + [-78.347698, 38.805715], + [-78.347801, 38.805718], + [-78.3479, 38.805729], + [-78.348019, 38.805757], + [-78.348159, 38.805817], + [-78.348265, 38.805877], + [-78.34837, 38.805976], + [-78.348419, 38.806015], + [-78.348451, 38.80603], + [-78.348489, 38.806048], + [-78.348776, 38.806149], + [-78.348829, 38.806224], + [-78.348872, 38.806254], + [-78.348956, 38.806311], + [-78.349203, 38.806478], + [-78.349381, 38.806598], + [-78.349451, 38.806645], + [-78.349619, 38.806758], + [-78.349788, 38.806871], + [-78.349822, 38.806894], + [-78.350136, 38.807106], + [-78.350264, 38.807189], + [-78.350387, 38.807249], + [-78.350409, 38.807259], + [-78.351779, 38.808134], + [-78.359974, 38.813364], + [-78.360056, 38.813417], + [-78.366264, 38.817321], + [-78.366709, 38.817601], + [-78.367139, 38.817871], + [-78.378581, 38.825067], + [-78.378644, 38.825107], + [-78.386685, 38.83016] + ], + [ + [-77.619031, 36.877851], + [-77.616206, 36.879209], + [-77.606771, 36.884094], + [-77.600964, 36.887124], + [-77.594965, 36.890254], + [-77.594081, 36.890715], + [-77.587133, 36.894342], + [-77.586292, 36.894781], + [-77.582882, 36.896562], + [-77.574928, 36.900726], + [-77.57453, 36.900948], + [-77.569216, 36.903554], + [-77.566874, 36.904885], + [-77.560868, 36.908014], + [-77.557926, 36.909547], + [-77.555821, 36.910641], + [-77.555534, 36.91079], + [-77.553021, 36.912101], + [-77.543031, 36.917313], + [-77.542486, 36.917512], + [-77.536064, 36.920892], + [-77.535396, 36.921243], + [-77.534265, 36.921836], + [-77.534221, 36.92186], + [-77.525674, 36.926362], + [-77.521866, 36.928312], + [-77.518309, 36.930185], + [-77.517858, 36.930441], + [-77.51122, 36.933852], + [-77.508593, 36.935204], + [-77.502305, 36.938517], + [-77.500973, 36.939207], + [-77.499706, 36.939885], + [-77.496345, 36.941541], + [-77.491098, 36.944307], + [-77.490856, 36.944433], + [-77.49012, 36.944822], + [-77.486225, 36.946767], + [-77.481076, 36.949441], + [-77.476035, 36.952062], + [-77.473468, 36.953398], + [-77.472943, 36.953672], + [-77.472869, 36.95371], + [-77.463354, 36.958666], + [-77.461117, 36.959833], + [-77.456419, 36.96232], + [-77.452137, 36.964587], + [-77.452131, 36.96459], + [-77.449411, 36.966029], + [-77.44549, 36.968106], + [-77.441989, 36.96996], + [-77.440146, 36.970939], + [-77.437683, 36.972247], + [-77.434507, 36.973935], + [-77.427773, 36.977513], + [-77.42774, 36.97753], + [-77.427039, 36.977902], + [-77.423376, 36.979848], + [-77.422005, 36.980577], + [-77.416777, 36.983376], + [-77.41527, 36.984287], + [-77.414755, 36.984482], + [-77.414546, 36.984652], + [-77.412944, 36.98537], + [-77.411721, 36.986102], + [-77.411629, 36.986147], + [-77.411504, 36.986209], + [-77.411367, 36.986325], + [-77.410179, 36.986863], + [-77.409458, 36.987239], + [-77.403108, 36.990588], + [-77.400343, 36.992021], + [-77.399497, 36.992466], + [-77.399351, 36.992541], + [-77.399083, 36.992684], + [-77.3985, 36.992992], + [-77.395134, 36.99446], + [-77.392723, 36.995561], + [-77.392537, 36.995646], + [-77.392501, 36.995663], + [-77.392465, 36.995679], + [-77.392362, 36.995726], + [-77.392316, 36.995747], + [-77.391816, 36.995975], + [-77.382386, 37.000157], + [-77.372911, 37.005315], + [-77.371767, 37.00594], + [-77.37141, 37.006134], + [-77.371221, 37.006237], + [-77.370946, 37.006373], + [-77.36985, 37.006916], + [-77.362233, 37.010688], + [-77.361001, 37.011295], + [-77.359163, 37.012264], + [-77.35802, 37.012861], + [-77.357939, 37.012899], + [-77.356673, 37.013501], + [-77.355092, 37.014253], + [-77.354864, 37.014372], + [-77.353314, 37.015152], + [-77.352432, 37.015597], + [-77.342959, 37.02028], + [-77.342787, 37.020365], + [-77.340378, 37.021556], + [-77.340278, 37.021606], + [-77.337297, 37.023072], + [-77.337175, 37.023144], + [-77.335699, 37.023866], + [-77.335529, 37.023947], + [-77.335299, 37.024061], + [-77.331643, 37.025846], + [-77.329174, 37.027075], + [-77.323521, 37.029902], + [-77.322563, 37.030381], + [-77.320096, 37.031634], + [-77.319424, 37.031972], + [-77.318863, 37.03225], + [-77.318479, 37.032441], + [-77.317925, 37.032714], + [-77.317829, 37.032763], + [-77.313955, 37.034685], + [-77.313916, 37.034704], + [-77.313868, 37.034728], + [-77.309451, 37.036892], + [-77.308291, 37.037458], + [-77.305738, 37.038764], + [-77.302328, 37.040512], + [-77.299634, 37.041885], + [-77.296315, 37.043506], + [-77.295872, 37.043722], + [-77.290691, 37.046252], + [-77.283806, 37.049678], + [-77.275921, 37.053596], + [-77.269133, 37.056861], + [-77.26593, 37.058415], + [-77.258545, 37.061884], + [-77.254925, 37.06363], + [-77.251565, 37.06525], + [-77.249696, 37.066151], + [-77.246553, 37.06777], + [-77.246484, 37.067781], + [-77.246391, 37.067854], + [-77.246084, 37.068011], + [-77.244518, 37.068753], + [-77.239063, 37.071523], + [-77.237985, 37.07207], + [-77.228735, 37.076768], + [-77.226532, 37.077893], + [-77.226488, 37.077915], + [-77.221378, 37.080511], + [-77.221082, 37.080661], + [-77.220854, 37.080777], + [-77.219873, 37.081276], + [-77.209826, 37.086319], + [-77.205309, 37.088602], + [-77.205088, 37.088714], + [-77.20291, 37.089823], + [-77.196691, 37.092965], + [-77.194241, 37.094568], + [-77.191776, 37.096205], + [-77.19002, 37.097359], + [-77.189071, 37.097993], + [-77.18704, 37.09894], + [-77.173442, 37.105245], + [-77.173167, 37.105373], + [-77.173097, 37.105398], + [-77.170539, 37.106356], + [-77.156951, 37.111467], + [-77.155417, 37.112041], + [-77.155768, 37.112317], + [-77.155978, 37.112667], + [-77.156092, 37.113186], + [-77.155969, 37.113954], + [-77.155941, 37.113975], + [-77.15509, 37.114617], + [-77.15111, 37.117619], + [-77.15101, 37.117695], + [-77.148833, 37.119362], + [-77.148671, 37.119463], + [-77.146263, 37.121292], + [-77.144922, 37.122297], + [-77.140975, 37.125265], + [-77.139394, 37.126456], + [-77.130596, 37.133076], + [-77.127136, 37.135638], + [-77.124772, 37.137371], + [-77.123849, 37.13799], + [-77.123736, 37.138115], + [-77.123714, 37.138139], + [-77.123361, 37.138438], + [-77.123354, 37.138444], + [-77.123344, 37.138452], + [-77.121639, 37.139895], + [-77.121618, 37.139913], + [-77.121589, 37.139938], + [-77.121086, 37.140363], + [-77.121026, 37.140415], + [-77.118553, 37.14256], + [-77.118524, 37.142585], + [-77.115242, 37.145432], + [-77.108808, 37.150959], + [-77.101161, 37.157553], + [-77.10078, 37.157881], + [-77.100422, 37.158194], + [-77.095681, 37.162245], + [-77.093904, 37.163767], + [-77.093612, 37.164013], + [-77.092981, 37.164566], + [-77.092259, 37.1652], + [-77.09225, 37.165208], + [-77.092236, 37.16522], + [-77.090988, 37.166314], + [-77.090024, 37.16716], + [-77.087778, 37.169078], + [-77.087128, 37.169085], + [-77.086528, 37.169314], + [-77.084841, 37.170848], + [-77.083897, 37.171077], + [-77.083297, 37.171077], + [-77.082239, 37.171306], + [-77.081123, 37.171696], + [-77.079007, 37.172611], + [-77.07815, 37.173161], + [-77.077063, 37.174031], + [-77.075547, 37.175564], + [-77.0751, 37.176278], + [-77.074661, 37.176983], + [-77.074204, 37.177922], + [-77.074119, 37.178693], + [-77.074118, 37.1787], + [-77.073321, 37.18276], + [-77.073318, 37.182774], + [-77.073147, 37.184079], + [-77.072975, 37.184422], + [-77.072746, 37.184605], + [-77.072722, 37.184612], + [-77.072715, 37.184614], + [-77.072589, 37.184648], + [-77.072174, 37.18472], + [-77.071701, 37.184742], + [-77.071651, 37.184744], + [-77.071202, 37.184765], + [-77.071097, 37.184804], + [-77.070949, 37.184859], + [-77.070086, 37.185178], + [-77.068027, 37.186345], + [-77.06607, 37.187748], + [-77.066058, 37.187756], + [-77.065878, 37.187885], + [-77.065281, 37.188313], + [-77.064022, 37.189023], + [-77.063279, 37.189298], + [-77.062788, 37.189411], + [-77.062755, 37.189419], + [-77.062432, 37.189493], + [-77.061982, 37.189596], + [-77.059589, 37.190145], + [-77.059125, 37.19049], + [-77.058929, 37.190636], + [-77.058792, 37.190738], + [-77.058657, 37.19081], + [-77.058444, 37.190923], + [-77.058361, 37.190906], + [-77.058267, 37.190887], + [-77.058237, 37.190881], + [-77.05823, 37.190879], + [-77.058214, 37.190876], + [-77.057214, 37.190671], + [-77.055956, 37.190648], + [-77.052379, 37.191106], + [-77.051796, 37.191267], + [-77.051756, 37.191278], + [-77.051738, 37.191283], + [-77.051703, 37.191293], + [-77.051622, 37.191315], + [-77.050805, 37.19154], + [-77.048774, 37.192295], + [-77.048088, 37.192273], + [-77.047487, 37.192021], + [-77.0466, 37.191403], + [-77.046057, 37.191448], + [-77.045313, 37.192181], + [-77.044712, 37.192387], + [-77.043997, 37.192432], + [-77.043367, 37.192798], + [-77.042795, 37.193508], + [-77.042765, 37.193566], + [-77.042652, 37.193782], + [-77.042758, 37.194764], + [-77.042907, 37.195278], + [-77.042909, 37.195285], + [-77.042912, 37.195294], + [-77.043013, 37.195549], + [-77.043015, 37.195554], + [-77.04316, 37.195919], + [-77.043749, 37.19656], + [-77.04391, 37.196735], + [-77.044711, 37.197353], + [-77.045912, 37.198086], + [-77.046313, 37.198521], + [-77.046284, 37.19907], + [-77.04554, 37.200214], + [-77.045483, 37.200443], + [-77.04469, 37.20155], + [-77.04467, 37.201577], + [-77.044342, 37.202013], + [-77.043942, 37.202221], + [-77.043935, 37.202224], + [-77.043817, 37.202285], + [-77.043413, 37.202285], + [-77.043402, 37.202276], + [-77.042564, 37.201593], + [-77.042026, 37.201505], + [-77.04158, 37.201497], + [-77.041523, 37.201497], + [-77.04116, 37.201492], + [-77.040384, 37.20169], + [-77.040377, 37.201692], + [-77.040369, 37.201694], + [-77.039503, 37.201915], + [-77.038739, 37.201933], + [-77.038731, 37.201933], + [-77.038136, 37.201947], + [-77.037645, 37.201882], + [-77.037472, 37.201792], + [-77.037071, 37.201838], + [-77.036842, 37.201975], + [-77.036642, 37.202273], + [-77.036384, 37.203051], + [-77.036098, 37.203257], + [-77.035612, 37.203348], + [-77.035011, 37.203234], + [-77.034124, 37.202959], + [-77.033809, 37.202707], + [-77.033781, 37.201631], + [-77.033467, 37.200166], + [-77.033267, 37.199823], + [-77.032437, 37.198953], + [-77.031493, 37.198678], + [-77.031121, 37.198793], + [-77.030663, 37.199456], + [-77.030635, 37.199891], + [-77.030262, 37.200875], + [-77.029947, 37.201287], + [-77.029604, 37.201584], + [-77.029089, 37.201813], + [-77.028459, 37.201905], + [-77.028145, 37.201744], + [-77.027687, 37.201355], + [-77.027601, 37.201103], + [-77.027463, 37.200463], + [-77.027299, 37.2001], + [-77.026825, 37.20003], + [-77.026291, 37.200097], + [-77.025568, 37.200415], + [-77.024907, 37.200734], + [-77.024795, 37.200789], + [-77.024071, 37.201035], + [-77.023852, 37.201351], + [-77.023787, 37.202062], + [-77.023838, 37.20341], + [-77.023968, 37.204662], + [-77.024164, 37.205637], + [-77.024178, 37.205703], + [-77.024266, 37.206607], + [-77.023947, 37.207117], + [-77.023445, 37.207386], + [-77.022841, 37.207445], + [-77.021783, 37.207385], + [-77.020331, 37.20731], + [-77.01927, 37.207016], + [-77.018442, 37.206858], + [-77.017879, 37.206965], + [-77.017619, 37.207265], + [-77.016951, 37.208229], + [-77.01656, 37.208505], + [-77.015664, 37.208687], + [-77.014941, 37.209085], + [-77.014462, 37.209652], + [-77.014312, 37.20982], + [-77.014236, 37.209905], + [-77.013672, 37.210543], + [-77.01218, 37.211737], + [-77.011782, 37.212417], + [-77.011775, 37.212789], + [-77.011842, 37.213003], + [-77.012002, 37.213515], + [-77.012745, 37.214311], + [-77.013823, 37.215615], + [-77.014521, 37.215968], + [-77.015461, 37.216303], + [-77.016845, 37.216677], + [-77.018061, 37.217415], + [-77.018703, 37.218349], + [-77.018813, 37.2196], + [-77.017842, 37.221696], + [-77.016765, 37.223244], + [-77.015751, 37.223846], + [-77.014303, 37.224312], + [-77.01346, 37.224768], + [-77.013141, 37.225181], + [-77.013124, 37.225585], + [-77.013319, 37.226093], + [-77.013666, 37.226633], + [-77.014158, 37.227656], + [-77.014241, 37.228019], + [-77.014206, 37.228674], + [-77.013655, 37.230405], + [-77.012732, 37.232379], + [-77.012303, 37.23289], + [-77.01163, 37.23324], + [-77.010763, 37.233308], + [-77.009188, 37.232983], + [-77.008196, 37.232446], + [-77.006385, 37.23167], + [-77.004853, 37.231677], + [-77.003818, 37.232069], + [-77.003429, 37.232676], + [-77.003185, 37.233743], + [-77.002542, 37.236702], + [-77.002177, 37.23785], + [-77.00173, 37.2387], + [-77.000665, 37.239237], + [-76.999691, 37.239257], + [-76.999219, 37.239097], + [-76.998897, 37.238985], + [-76.998736, 37.238768], + [-76.998453, 37.238043], + [-76.99797, 37.237302], + [-76.996059, 37.23641], + [-76.994913, 37.236315], + [-76.993487, 37.236527], + [-76.991912, 37.237109], + [-76.990307, 37.238175], + [-76.983226, 37.24235], + [-76.981417, 37.243418], + [-76.972441, 37.248508], + [-76.969591, 37.246228], + [-76.965636, 37.244052], + [-76.964384, 37.243736], + [-76.960116, 37.242068], + [-76.956177, 37.2404], + [-76.952239, 37.23901], + [-76.948628, 37.237342], + [-76.946001, 37.235952], + [-76.943703, 37.234562], + [-76.941404, 37.233172], + [-76.939726, 37.232134], + [-76.938035, 37.231088], + [-76.936283, 37.229977], + [-76.933666, 37.229017], + [-76.929461, 37.227475], + [-76.921571, 37.225347], + [-76.917083, 37.224372], + [-76.910176, 37.223416], + [-76.904764, 37.223117], + [-76.900139, 37.222946], + [-76.895928, 37.222959], + [-76.889713, 37.223079], + [-76.884231, 37.222996], + [-76.883158, 37.223064], + [-76.878864, 37.22334], + [-76.874686, 37.223631], + [-76.861852, 37.223989], + [-76.851482, 37.22435], + [-76.844391, 37.224552], + [-76.835038, 37.224896], + [-76.831085, 37.224915], + [-76.827223, 37.22495], + [-76.823442, 37.224945], + [-76.818513, 37.224625], + [-76.815527, 37.22408], + [-76.812491, 37.223456], + [-76.808932, 37.222354], + [-76.804873, 37.220196], + [-76.801679, 37.217853], + [-76.798837, 37.215205], + [-76.797742, 37.214094], + [-76.795725, 37.212048], + [-76.791557, 37.207571], + [-76.791178, 37.207163], + [-76.785478, 37.201051], + [-76.781731, 37.19715], + [-76.781244, 37.196642], + [-76.781166, 37.196563], + [-76.77727, 37.192653], + [-76.773528, 37.188857], + [-76.769706, 37.185287], + [-76.765954, 37.181821], + [-76.760316, 37.176806], + [-76.75632, 37.174259], + [-76.753128, 37.172687], + [-76.749682, 37.171597], + [-76.74797, 37.171482], + [-76.745474, 37.171306], + [-76.743554, 37.171178], + [-76.741346, 37.171258], + [-76.739506, 37.171322], + [-76.737858, 37.17145], + [-76.736066, 37.171706], + [-76.734946, 37.171962], + [-76.733234, 37.172378], + [-76.732657, 37.172549], + [-76.731938, 37.172762], + [-76.73053, 37.173498], + [-76.728514, 37.17481], + [-76.726882, 37.176266], + [-76.726257, 37.177031], + [-76.725745, 37.177658], + [-76.724753, 37.17929], + [-76.723937, 37.181258], + [-76.723936, 37.181258], + [-76.723029, 37.183382], + [-76.722993, 37.183466], + [-76.721937, 37.186074], + [-76.721217, 37.187674], + [-76.721505, 37.189114], + [-76.721153, 37.189994], + [-76.720353, 37.191194], + [-76.718497, 37.194298], + [-76.718466, 37.194354], + [-76.717265, 37.196554], + [-76.715057, 37.199146], + [-76.712849, 37.201594], + [-76.710961, 37.202986], + [-76.708833, 37.204682], + [-76.705633, 37.206442], + [-76.701665, 37.208154], + [-76.697312, 37.209706], + [-76.691808, 37.210874], + [-76.689888, 37.210969], + [-76.686784, 37.210953], + [-76.683088, 37.210969], + [-76.679744, 37.210937], + [-76.677661, 37.210701], + [-76.676352, 37.210553], + [-76.673088, 37.209689], + [-76.6708, 37.208953], + [-76.668768, 37.208121], + [-76.666793, 37.207283], + [-76.666016, 37.206953], + [-76.663503, 37.205833], + [-76.660447, 37.204153], + [-76.658829, 37.203052], + [-76.658143, 37.202585], + [-76.655663, 37.200969], + [-76.652447, 37.198825], + [-76.650175, 37.196985], + [-76.649497, 37.196409], + [-76.648031, 37.195161], + [-76.646175, 37.193737], + [-76.644879, 37.192169], + [-76.643679, 37.190345], + [-76.642847, 37.188793], + [-76.642927, 37.187545], + [-76.642655, 37.185881], + [-76.642303, 37.178777], + [-76.642047, 37.169529], + [-76.641615, 37.155194], + [-76.641583, 37.153834], + [-76.67159, 37.142067], + [-76.671776, 37.141994], + [-76.671929, 37.141928], + [-76.672264, 37.141783], + [-76.672736, 37.141578], + [-76.673328, 37.141274], + [-76.673792, 37.140986], + [-76.674144, 37.140698], + [-76.674704, 37.140154], + [-76.675424, 37.13905], + [-76.675712, 37.138346], + [-76.67584, 37.137658], + [-76.675824, 37.136986], + [-76.675744, 37.136506], + [-76.675504, 37.13601], + [-76.675136, 37.13553], + [-76.674656, 37.13505], + [-76.673056, 37.134154], + [-76.672608, 37.133882], + [-76.672432, 37.133674], + [-76.672416, 37.133498], + [-76.672528, 37.132986], + [-76.672656, 37.132778], + [-76.673056, 37.13265], + [-76.673952, 37.132538], + [-76.674944, 37.132378], + [-76.675824, 37.132154], + [-76.676416, 37.131866], + [-76.67712, 37.131466], + [-76.67768, 37.131034], + [-76.678224, 37.13041], + [-76.679008, 37.129114], + [-76.679116, 37.128953], + [-76.679808, 37.12793], + [-76.680128, 37.127226], + [-76.680256, 37.126762], + [-76.680288, 37.126298], + [-76.680176, 37.125722], + [-76.680032, 37.125146], + [-76.68016, 37.12409], + [-76.680192, 37.12353], + [-76.680096, 37.122794], + [-76.679872, 37.121722], + [-76.679792, 37.12113], + [-76.679792, 37.121082], + [-76.679808, 37.120634], + [-76.679856, 37.119882], + [-76.679968, 37.119194], + [-76.680016, 37.118554], + [-76.680048, 37.118106], + [-76.679968, 37.11769], + [-76.679904, 37.117578], + [-76.679472, 37.116938], + [-76.6792, 37.116442], + [-76.679008, 37.115898], + [-76.678608, 37.115434], + [-76.678304, 37.115226], + [-76.678048, 37.115082], + [-76.677936, 37.11505], + [-76.677712, 37.114938], + [-76.67744, 37.114794], + [-76.677168, 37.114554], + [-76.677088, 37.114458], + [-76.67704, 37.114298], + [-76.677136, 37.11393], + [-76.677408, 37.113642], + [-76.677952, 37.113226], + [-76.678656, 37.112874], + [-76.679104, 37.112634], + [-76.67936, 37.112218], + [-76.679392, 37.111882], + [-76.67938, 37.111726], + [-76.67936, 37.111434], + [-76.6792, 37.111226], + [-76.678848, 37.111002], + [-76.678496, 37.110458], + [-76.678176, 37.110154], + [-76.678016, 37.11001], + [-76.677792, 37.109818], + [-76.677472, 37.109674], + [-76.676896, 37.109434], + [-76.676496, 37.109306], + [-76.676128, 37.109242], + [-76.675936, 37.10921], + [-76.675728, 37.109194], + [-76.675504, 37.10913], + [-76.675408, 37.109066], + [-76.675328, 37.108954], + [-76.675168, 37.10865], + [-76.675184, 37.108378], + [-76.675296, 37.108106], + [-76.675504, 37.107914], + [-76.675872, 37.107578], + [-76.6764, 37.106842], + [-76.676464, 37.106458], + [-76.677056, 37.105274], + [-76.677392, 37.104714], + [-76.67768, 37.104474], + [-76.677968, 37.104186], + [-76.678432, 37.104058], + [-76.679008, 37.10441], + [-76.679232, 37.105274], + [-76.679456, 37.105914], + [-76.679872, 37.106266], + [-76.680096, 37.10649], + [-76.680672, 37.10681], + [-76.68112, 37.10689], + [-76.681408, 37.106746], + [-76.681744, 37.106426], + [-76.682128, 37.105818], + [-76.682624, 37.105034], + [-76.683424, 37.104378], + [-76.684032, 37.104058], + [-76.684192, 37.103898], + [-76.684256, 37.103466], + [-76.684192, 37.103178], + [-76.68384, 37.10281], + [-76.683456, 37.102426], + [-76.683152, 37.102234], + [-76.682976, 37.101978], + [-76.682784, 37.101306], + [-76.682528, 37.100666], + [-76.682272, 37.099898], + [-76.682144, 37.099322], + [-76.68208, 37.098666], + [-76.68232, 37.098458], + [-76.68312, 37.098042], + [-76.683664, 37.097818], + [-76.684064, 37.097434], + [-76.684144, 37.097018], + [-76.684016, 37.096858], + [-76.683776, 37.096426], + [-76.683616, 37.09593], + [-76.683232, 37.095514], + [-76.68256, 37.095034], + [-76.681936, 37.094522], + [-76.681792, 37.094234], + [-76.681696, 37.093786], + [-76.682144, 37.093403], + [-76.683232, 37.093003], + [-76.68384, 37.092635], + [-76.684048, 37.092443], + [-76.684272, 37.092155], + [-76.68432, 37.091803], + [-76.684, 37.091291], + [-76.683824, 37.090843], + [-76.683904, 37.090427], + [-76.684128, 37.090075], + [-76.684224, 37.089499], + [-76.68432, 37.089003], + [-76.684352, 37.088475], + [-76.68448, 37.088171], + [-76.684928, 37.087979], + [-76.685777, 37.087963], + [-76.686433, 37.087851], + [-76.687041, 37.087675], + [-76.687681, 37.087419], + [-76.687873, 37.087323], + [-76.687969, 37.087083], + [-76.687809, 37.086555], + [-76.687777, 37.086027], + [-76.687855, 37.085966], + [-76.687921, 37.085915], + [-76.688385, 37.085563], + [-76.689025, 37.085339], + [-76.689777, 37.085131], + [-76.690513, 37.085403], + [-76.691089, 37.085467], + [-76.691585, 37.085339], + [-76.692593, 37.085067], + [-76.693249, 37.084763], + [-76.693378, 37.084729], + [-76.69342, 37.084719], + [-76.693729, 37.084635], + [-76.694433, 37.084171], + [-76.694977, 37.083739], + [-76.695233, 37.083547], + [-76.695649, 37.083291], + [-76.695457, 37.082875], + [-76.695073, 37.082475], + [-76.694305, 37.082267], + [-76.693761, 37.082171], + [-76.693409, 37.081883], + [-76.693297, 37.081419], + [-76.693409, 37.080459], + [-76.693729, 37.079755], + [-76.694129, 37.079067], + [-76.694401, 37.078331], + [-76.694753, 37.077531], + [-76.695009, 37.076667], + [-76.694641, 37.076139], + [-76.694225, 37.075835], + [-76.693569, 37.075307], + [-76.693457, 37.075147], + [-76.693324, 37.074845], + [-76.693233, 37.074347], + [-76.693169, 37.074059], + [-76.693393, 37.073563], + [-76.694017, 37.073195], + [-76.694465, 37.072891], + [-76.695153, 37.072667], + [-76.695809, 37.072651], + [-76.696161, 37.072571], + [-76.696817, 37.071851], + [-76.697185, 37.071003], + [-76.697777, 37.070299], + [-76.698433, 37.069579], + [-76.698929, 37.068955], + [-76.699153, 37.068747], + [-76.699841, 37.067867], + [-76.700753, 37.066939], + [-76.701185, 37.066203], + [-76.701153, 37.065291], + [-76.700993, 37.064331], + [-76.700657, 37.063579], + [-76.699969, 37.062859], + [-76.698881, 37.062171], + [-76.697969, 37.061275], + [-76.697617, 37.060491], + [-76.697633, 37.059803], + [-76.698257, 37.059147], + [-76.699313, 37.058427], + [-76.701681, 37.057211], + [-76.702881, 37.056779], + [-76.704129, 37.056891], + [-76.705089, 37.056347], + [-76.705601, 37.055931], + [-76.706209, 37.055755], + [-76.706229, 37.055759], + [-76.706945, 37.055931], + [-76.707633, 37.056331], + [-76.708129, 37.056507], + [-76.708929, 37.056475], + [-76.709537, 37.056459], + [-76.709857, 37.056331], + [-76.710177, 37.055931], + [-76.710401, 37.055483], + [-76.710721, 37.055259], + [-76.710902, 37.055298], + [-76.711457, 37.055419], + [-76.711777, 37.055387], + [-76.712401, 37.054971], + [-76.712978, 37.054843], + [-76.713586, 37.054715], + [-76.714306, 37.054395], + [-76.71527, 37.053994], + [-76.722162, 37.051138], + [-76.729755, 37.04813], + [-76.733682, 37.046521], + [-76.738791, 37.044436], + [-76.741602, 37.043291], + [-76.748194, 37.040583], + [-76.748321, 37.040531], + [-76.748351, 37.040519], + [-76.748419, 37.040491], + [-76.749683, 37.039966], + [-76.749764, 37.03992], + [-76.763179, 37.034373], + [-76.763405, 37.03428], + [-76.767661, 37.032525], + [-76.771011, 37.03114], + [-76.771097, 37.031106], + [-76.771588, 37.030914], + [-76.774167, 37.02984], + [-76.774556, 37.029679], + [-76.77547, 37.029301], + [-76.779229, 37.027676], + [-76.779841, 37.027411], + [-76.790927, 37.022569], + [-76.791088, 37.022499], + [-76.796429, 37.020169], + [-76.796638, 37.020078], + [-76.796846, 37.019987], + [-76.79752, 37.019693], + [-76.801042, 37.01815], + [-76.807334, 37.01541], + [-76.809572, 37.014435], + [-76.818955, 37.010345], + [-76.819074, 37.010293], + [-76.822799, 37.00871], + [-76.825669, 37.00749], + [-76.825901, 37.007388], + [-76.831641, 37.004855], + [-76.835664, 37.00308], + [-76.837583, 37.002244], + [-76.841602, 37.000163], + [-76.842866, 36.999547], + [-76.845246, 36.998386], + [-76.847668, 36.997204], + [-76.849142, 36.996484], + [-76.849686, 36.996218], + [-76.850553, 36.995779], + [-76.850631, 36.99574], + [-76.850697, 36.995706], + [-76.851851, 36.995122], + [-76.854982, 36.993525], + [-76.856242, 36.992911], + [-76.86384, 36.989206], + [-76.870707, 36.985673], + [-76.871841, 36.98508], + [-76.874623, 36.983644], + [-76.875895, 36.983009], + [-76.875985, 36.982965], + [-76.885132, 36.978464], + [-76.887442, 36.977328], + [-76.890302, 36.975818], + [-76.892956, 36.974486], + [-76.89314, 36.974395], + [-76.896906, 36.972526], + [-76.904399, 36.968796], + [-76.90686, 36.967546], + [-76.910512, 36.96573], + [-76.916094, 36.962943], + [-76.918647, 36.961669], + [-76.920678, 36.960662], + [-76.920823, 36.96059], + [-76.921045, 36.960479], + [-76.944177, 36.94894], + [-76.944393, 36.948832], + [-76.952272, 36.94509], + [-76.95301, 36.944745], + [-76.953321, 36.944572], + [-76.953403, 36.944531], + [-76.953423, 36.94452], + [-76.953482, 36.94449], + [-76.953548, 36.944457], + [-76.953785, 36.94434], + [-76.957481, 36.942506], + [-76.961191, 36.940663], + [-76.964197, 36.938919], + [-76.96481, 36.938567], + [-76.966432, 36.937766], + [-76.966739, 36.937614], + [-76.966967, 36.937501], + [-76.967236, 36.937368], + [-76.968388, 36.936797], + [-76.968897, 36.936545], + [-76.969029, 36.936479], + [-76.969106, 36.93644], + [-76.971436, 36.93526], + [-76.975496, 36.933205], + [-76.982592, 36.929616], + [-76.989131, 36.926581], + [-76.994368, 36.92415], + [-76.998429, 36.922265], + [-76.999606, 36.921719], + [-76.999685, 36.921681], + [-77.002105, 36.920754], + [-77.002148, 36.920733], + [-77.008169, 36.917547], + [-77.008275, 36.917491], + [-77.018385, 36.912204], + [-77.020667, 36.911026], + [-77.021719, 36.910482], + [-77.025736, 36.908358], + [-77.027017, 36.907684], + [-77.027133, 36.907623], + [-77.028458, 36.907007], + [-77.029517, 36.906418], + [-77.031251, 36.905529], + [-77.031356, 36.905475], + [-77.031462, 36.905421], + [-77.031762, 36.905251], + [-77.038869, 36.901239], + [-77.043628, 36.898711], + [-77.043689, 36.898679], + [-77.051531, 36.894532], + [-77.051539, 36.894528], + [-77.056871, 36.89154], + [-77.06992, 36.884573], + [-77.071151, 36.883914], + [-77.073702, 36.88255], + [-77.085927, 36.87619], + [-77.087917, 36.87516], + [-77.090621, 36.873661], + [-77.090724, 36.873603], + [-77.091565, 36.873174], + [-77.094212, 36.871826], + [-77.097826, 36.869986], + [-77.099534, 36.869114], + [-77.113839, 36.861826], + [-77.11981, 36.858766], + [-77.121795, 36.857748], + [-77.123608, 36.856842], + [-77.124691, 36.856292], + [-77.128303, 36.854533], + [-77.133015, 36.85224], + [-77.134095, 36.851726], + [-77.138719, 36.849471], + [-77.142286, 36.847731], + [-77.148457, 36.844728], + [-77.163735, 36.837345], + [-77.167277, 36.835634], + [-77.179084, 36.829867], + [-77.179244, 36.829788], + [-77.17991, 36.829464], + [-77.189565, 36.824762], + [-77.195471, 36.82188], + [-77.197924, 36.820693], + [-77.207273, 36.816138], + [-77.210626, 36.814507], + [-77.218701, 36.810611], + [-77.221044, 36.809481], + [-77.224443, 36.80782], + [-77.226045, 36.80705], + [-77.239096, 36.800663], + [-77.249705, 36.795556], + [-77.252459, 36.794301], + [-77.25663, 36.792402], + [-77.256977, 36.792244], + [-77.258176, 36.791698], + [-77.258762, 36.791494], + [-77.260767, 36.790618], + [-77.267344, 36.787611], + [-77.274377, 36.784429], + [-77.279113, 36.782287], + [-77.279514, 36.782107], + [-77.279847, 36.781957], + [-77.286906, 36.778764], + [-77.288974, 36.777831], + [-77.31145, 36.767665], + [-77.312307, 36.767279], + [-77.312845, 36.767035], + [-77.313139, 36.766902], + [-77.314078, 36.766478], + [-77.316186, 36.765525], + [-77.318078, 36.76467], + [-77.323858, 36.762058], + [-77.324235, 36.761888], + [-77.324914, 36.761579], + [-77.325192, 36.761456], + [-77.325212, 36.76143], + [-77.32525, 36.761429], + [-77.325325, 36.761395], + [-77.330089, 36.759242], + [-77.330349, 36.759124], + [-77.334703, 36.757156], + [-77.339672, 36.75491], + [-77.3448, 36.752593], + [-77.345117, 36.752422], + [-77.349324, 36.75016], + [-77.350933, 36.749434], + [-77.359581, 36.74493], + [-77.363185, 36.743053], + [-77.369254, 36.739919], + [-77.374698, 36.737124], + [-77.377705, 36.735539], + [-77.377994, 36.735399], + [-77.382868, 36.732819], + [-77.387736, 36.730254], + [-77.397049, 36.725349], + [-77.405107, 36.721082], + [-77.406009, 36.7206], + [-77.406831, 36.720169], + [-77.407147, 36.720001], + [-77.411931, 36.717444], + [-77.413202, 36.71684], + [-77.414837, 36.715953], + [-77.414895, 36.715923], + [-77.418481, 36.714055], + [-77.418488, 36.714051], + [-77.418594, 36.713996], + [-77.418782, 36.713898], + [-77.419022, 36.713751], + [-77.419266, 36.713601], + [-77.419692, 36.713368], + [-77.430129, 36.707665], + [-77.430379, 36.708178], + [-77.430692, 36.708635], + [-77.431516, 36.709688], + [-77.432255, 36.710626], + [-77.433422, 36.711427], + [-77.43399, 36.71161], + [-77.434814, 36.711633], + [-77.435724, 36.711473], + [-77.436974, 36.710992], + [-77.438083, 36.710741], + [-77.439532, 36.709985], + [-77.439873, 36.710031], + [-77.439987, 36.710123], + [-77.439959, 36.710535], + [-77.439675, 36.710878], + [-77.439078, 36.71129], + [-77.439049, 36.711656], + [-77.439504, 36.711953], + [-77.439981, 36.711981], + [-77.440744, 36.711768], + [-77.441067, 36.711679], + [-77.441124, 36.71161], + [-77.442119, 36.711381], + [-77.442773, 36.711381], + [-77.447121, 36.71193], + [-77.447917, 36.71225], + [-77.448912, 36.712822], + [-77.449395, 36.713005], + [-77.449735, 36.713028], + [-77.449822, 36.71312], + [-77.450959, 36.713302], + [-77.451226, 36.713407], + [-77.45184, 36.713646], + [-77.452352, 36.713829], + [-77.452977, 36.713714], + [-77.453687, 36.713348], + [-77.454341, 36.713187], + [-77.454995, 36.713164], + [-77.455536, 36.71337], + [-77.455991, 36.713805], + [-77.456417, 36.714606], + [-77.456759, 36.71488], + [-77.457213, 36.714995], + [-77.458976, 36.715177], + [-77.460113, 36.715406], + [-77.463296, 36.715291], + [-77.46466, 36.715085], + [-77.467304, 36.715221], + [-77.46773, 36.715381], + [-77.468811, 36.716113], + [-77.469465, 36.716822], + [-77.469892, 36.717692], + [-77.470375, 36.718332], + [-77.471313, 36.718996], + [-77.472508, 36.719384], + [-77.473303, 36.71927], + [-77.474014, 36.719041], + [-77.474582, 36.719086], + [-77.47572, 36.719749], + [-77.476289, 36.719726], + [-77.477369, 36.719566], + [-77.478705, 36.719634], + [-77.479359, 36.719862], + [-77.481037, 36.720869], + [-77.481862, 36.721669], + [-77.482402, 36.721875], + [-77.483596, 36.722058], + [-77.48425, 36.72192], + [-77.485188, 36.721462], + [-77.486495, 36.72153], + [-77.487177, 36.721484], + [-77.48749, 36.721392], + [-77.488257, 36.720843], + [-77.48874, 36.720659], + [-77.489422, 36.72075], + [-77.490001, 36.721016], + [-77.489028, 36.725533], + [-77.487739, 36.731198], + [-77.487015, 36.734446], + [-77.486165, 36.73823], + [-77.48472, 36.744758], + [-77.483566, 36.750156], + [-77.483211, 36.751719], + [-77.483031, 36.752536], + [-77.482227, 36.756078], + [-77.482142, 36.756453], + [-77.482041, 36.756901], + [-77.481163, 36.760811], + [-77.480894, 36.76206], + [-77.480263, 36.765029], + [-77.480213, 36.765274], + [-77.480206, 36.765305], + [-77.480112, 36.765743], + [-77.480036, 36.766103], + [-77.47998, 36.766316], + [-77.479925, 36.766553], + [-77.479468, 36.768562], + [-77.478587, 36.772433], + [-77.478191, 36.774173], + [-77.476565, 36.781371], + [-77.476532, 36.781519], + [-77.476454, 36.781885], + [-77.476289, 36.782625], + [-77.47586, 36.784582], + [-77.47556, 36.785954], + [-77.475395, 36.786706], + [-77.475386, 36.786745], + [-77.475384, 36.786755], + [-77.474134, 36.792467], + [-77.474127, 36.7925], + [-77.473521, 36.795265], + [-77.472834, 36.798399], + [-77.472751, 36.798777], + [-77.472432, 36.800229], + [-77.472287, 36.800847], + [-77.471821, 36.802859], + [-77.471806, 36.802921], + [-77.471449, 36.804472], + [-77.471213, 36.805486], + [-77.471004, 36.806372], + [-77.470981, 36.806488], + [-77.470909, 36.806804], + [-77.470439, 36.808897], + [-77.470277, 36.809592], + [-77.470139, 36.810186], + [-77.470127, 36.810239], + [-77.469982, 36.810863], + [-77.469501, 36.812945], + [-77.469078, 36.814792], + [-77.468758, 36.816206], + [-77.467469, 36.821791], + [-77.467429, 36.821971], + [-77.466857, 36.82466], + [-77.466578, 36.825964], + [-77.465968, 36.828811], + [-77.462429, 36.845386], + [-77.461473, 36.849877], + [-77.461469, 36.849894], + [-77.461455, 36.84996], + [-77.459501, 36.85911], + [-77.458938, 36.861765], + [-77.458915, 36.861872], + [-77.45868, 36.86297], + [-77.45905, 36.862878], + [-77.459516, 36.862669], + [-77.466254, 36.861366], + [-77.46782, 36.861228], + [-77.471263, 36.861651], + [-77.472462, 36.861799], + [-77.473146, 36.861684], + [-77.475196, 36.861134], + [-77.475632, 36.86091], + [-77.475822, 36.860813], + [-77.476505, 36.860241], + [-77.477445, 36.859943], + [-77.477758, 36.859714], + [-77.478071, 36.859142], + [-77.478583, 36.858684], + [-77.479494, 36.858272], + [-77.482199, 36.85644], + [-77.484533, 36.854425], + [-77.486184, 36.853349], + [-77.486211, 36.853142], + [-77.487847, 36.851003], + [-77.489629, 36.849505], + [-77.491245, 36.848481], + [-77.493142, 36.847736], + [-77.493169, 36.847726], + [-77.493728, 36.847508], + [-77.497, 36.846613], + [-77.499706, 36.845574], + [-77.501222, 36.845084], + [-77.503272, 36.84504], + [-77.503841, 36.845109], + [-77.504781, 36.845224], + [-77.505977, 36.845248], + [-77.508768, 36.84502], + [-77.509053, 36.844997], + [-77.509878, 36.844997], + [-77.510362, 36.845089], + [-77.511102, 36.845547], + [-77.512184, 36.846783], + [-77.513208, 36.847402], + [-77.514489, 36.847951], + [-77.518503, 36.849188], + [-77.519917, 36.849418], + [-77.520221, 36.849468], + [-77.520453, 36.849506], + [-77.52061, 36.849532], + [-77.523684, 36.850426], + [-77.525934, 36.850884], + [-77.526702, 36.85125], + [-77.528639, 36.852372], + [-77.529778, 36.852853], + [-77.531031, 36.852944], + [-77.53365, 36.852716], + [-77.536583, 36.852785], + [-77.539003, 36.853037], + [-77.54037, 36.8529], + [-77.541224, 36.852763], + [-77.541765, 36.852763], + [-77.543075, 36.853107], + [-77.543417, 36.853084], + [-77.544698, 36.852924], + [-77.544801, 36.852893], + [-77.545723, 36.852626], + [-77.546321, 36.852329], + [-77.548141, 36.850935], + [-77.549401, 36.850216], + [-77.549896, 36.849933], + [-77.551475, 36.849034], + [-77.552187, 36.848348], + [-77.552813, 36.847181], + [-77.553725, 36.846242], + [-77.55532, 36.845579], + [-77.5568, 36.845464], + [-77.55754, 36.845579], + [-77.560729, 36.847043], + [-77.560997, 36.847202], + [-77.562155, 36.847887], + [-77.562442, 36.848057], + [-77.56277, 36.848252], + [-77.564149, 36.848899], + [-77.564247, 36.848977], + [-77.565854, 36.850407], + [-77.566224, 36.850864], + [-77.566338, 36.851276], + [-77.566367, 36.852329], + [-77.56668, 36.852809], + [-77.567278, 36.853107], + [-77.568019, 36.85329], + [-77.568466, 36.853172], + [-77.571521, 36.852077], + [-77.57246, 36.851573], + [-77.572916, 36.851459], + [-77.573029, 36.851275], + [-77.573627, 36.851024], + [-77.574616, 36.850994], + [-77.576279, 36.851518], + [-77.576447, 36.851572], + [-77.577323, 36.852412], + [-77.577359, 36.852739], + [-77.577827, 36.852977], + [-77.578897, 36.854206], + [-77.579096, 36.854432], + [-77.579239, 36.855302], + [-77.579537, 36.855681], + [-77.57978, 36.855988], + [-77.58015, 36.856308], + [-77.580336, 36.856358], + [-77.58337, 36.857183], + [-77.5842, 36.85752], + [-77.584883, 36.85811], + [-77.585401, 36.858455], + [-77.586501, 36.85919], + [-77.586615, 36.85919], + [-77.586643, 36.859373], + [-77.586926, 36.85967], + [-77.587755, 36.861135], + [-77.588032, 36.862231], + [-77.588097, 36.862485], + [-77.588126, 36.863309], + [-77.588753, 36.864384], + [-77.588724, 36.864498], + [-77.588924, 36.864681], + [-77.589095, 36.865048], + [-77.590348, 36.866329], + [-77.590861, 36.866717], + [-77.591374, 36.867381], + [-77.591517, 36.867747], + [-77.592144, 36.868456], + [-77.592942, 36.868936], + [-77.594053, 36.869966], + [-77.594339, 36.870675], + [-77.594737, 36.871087], + [-77.595991, 36.871681], + [-77.5977, 36.872115], + [-77.599437, 36.872], + [-77.600387, 36.871841], + [-77.601625, 36.871624], + [-77.603338, 36.871152], + [-77.603708, 36.870878], + [-77.604306, 36.870603], + [-77.604733, 36.870648], + [-77.605275, 36.870946], + [-77.605319, 36.871029], + [-77.60554, 36.871438], + [-77.605476, 36.872354], + [-77.605475, 36.872364], + [-77.605361, 36.872845], + [-77.604365, 36.874104], + [-77.604053, 36.874666], + [-77.604107, 36.875156], + [-77.604189, 36.875517], + [-77.606156, 36.877276], + [-77.606668, 36.877414], + [-77.609146, 36.877069], + [-77.610712, 36.87668], + [-77.61282, 36.875878], + [-77.613739, 36.875844], + [-77.614757, 36.876037], + [-77.615343, 36.876272], + [-77.615954, 36.876517], + [-77.616951, 36.877066], + [-77.61809, 36.877477], + [-77.618489, 36.877523], + [-77.618602, 36.877684], + [-77.619031, 36.877851] + ], + [ + [-76.755513, 37.354227], + [-76.755479, 37.354332], + [-76.755403, 37.354392], + [-76.755183, 37.354518], + [-76.755049, 37.354602], + [-76.755041, 37.354607], + [-76.754832, 37.354738], + [-76.754749, 37.354809], + [-76.754652, 37.354974], + [-76.754501, 37.355155], + [-76.754439, 37.355331], + [-76.754404, 37.355737], + [-76.754335, 37.355869], + [-76.754191, 37.356012], + [-76.753681, 37.356308], + [-76.753206, 37.356506], + [-76.752628, 37.356698], + [-76.752243, 37.356846], + [-76.752064, 37.356939], + [-76.751671, 37.357225], + [-76.751465, 37.357389], + [-76.751258, 37.357626], + [-76.750934, 37.358686], + [-76.750789, 37.359103], + [-76.750665, 37.3594], + [-76.750513, 37.35968], + [-76.750238, 37.36007], + [-76.749685, 37.360599], + [-76.748743, 37.360989], + [-76.748165, 37.361187], + [-76.747876, 37.361303], + [-76.747635, 37.361429], + [-76.747071, 37.361776], + [-76.746893, 37.361875], + [-76.746714, 37.361957], + [-76.746177, 37.362282], + [-76.745943, 37.362474], + [-76.745826, 37.362633], + [-76.745703, 37.362881], + [-76.745627, 37.363183], + [-76.745579, 37.363458], + [-76.745552, 37.363705], + [-76.745463, 37.36415], + [-76.745412, 37.364352], + [-76.745312, 37.364751], + [-76.74531, 37.364758], + [-76.745257, 37.364968], + [-76.745184, 37.36514], + [-76.745168, 37.365177], + [-76.745065, 37.365293], + [-76.744975, 37.365413], + [-76.744927, 37.365622], + [-76.744907, 37.365639], + [-76.744865, 37.365705], + [-76.744769, 37.365765], + [-76.744563, 37.365831], + [-76.744301, 37.365936], + [-76.744074, 37.366101], + [-76.743889, 37.366298], + [-76.743448, 37.367281], + [-76.743445, 37.367287], + [-76.743264, 37.367662], + [-76.743043, 37.368125], + [-76.743044, 37.368201], + [-76.743046, 37.368276], + [-76.743046, 37.368279], + [-76.743049, 37.368431], + [-76.743049, 37.368436], + [-76.743057, 37.368863], + [-76.742835, 37.369153], + [-76.742796, 37.369204], + [-76.74278, 37.369225], + [-76.742785, 37.369287], + [-76.742804, 37.369507], + [-76.742529, 37.369666], + [-76.742485, 37.369716], + [-76.742384, 37.369831], + [-76.742247, 37.370117], + [-76.742082, 37.370265], + [-76.741813, 37.370403], + [-76.741669, 37.370447], + [-76.74138, 37.370453], + [-76.741139, 37.370557], + [-76.741029, 37.370574], + [-76.740974, 37.370568], + [-76.74076, 37.370508], + [-76.740698, 37.370508], + [-76.740581, 37.37053], + [-76.740403, 37.370607], + [-76.740258, 37.37064], + [-76.739907, 37.370624], + [-76.739721, 37.37064], + [-76.739556, 37.370684], + [-76.739033, 37.370932], + [-76.738827, 37.370992], + [-76.737829, 37.371092], + [-76.737457, 37.371191], + [-76.737285, 37.371218], + [-76.737023, 37.371229], + [-76.736397, 37.371213], + [-76.736067, 37.371235], + [-76.735909, 37.371263], + [-76.735792, 37.371301], + [-76.735042, 37.371604], + [-76.73478, 37.371648], + [-76.734473, 37.37165], + [-76.734023, 37.371653], + [-76.733851, 37.371648], + [-76.733686, 37.371665], + [-76.733562, 37.371654], + [-76.73328, 37.371665], + [-76.732639, 37.37166], + [-76.731972, 37.371632], + [-76.731566, 37.371605], + [-76.730313, 37.371567], + [-76.729962, 37.371523], + [-76.729535, 37.371386], + [-76.72926, 37.371375], + [-76.729087, 37.371326], + [-76.728791, 37.371178], + [-76.728688, 37.371145], + [-76.728468, 37.371112], + [-76.728014, 37.371128], + [-76.727787, 37.371167], + [-76.727408, 37.371233], + [-76.727105, 37.371255], + [-76.726899, 37.371233], + [-76.726733, 37.371184], + [-76.726713, 37.371162], + [-76.726665, 37.371145], + [-76.726417, 37.370997], + [-76.726307, 37.370964], + [-76.726217, 37.370953], + [-76.725871, 37.370614], + [-76.725513, 37.369477], + [-76.725211, 37.369078], + [-76.724199, 37.369023], + [-76.724012, 37.369034], + [-76.722022, 37.36915], + [-76.721298, 37.369192], + [-76.719825, 37.36921], + [-76.719644, 37.369131], + [-76.719543, 37.369087], + [-76.719443, 37.369043], + [-76.718933, 37.368818], + [-76.718465, 37.367924], + [-76.718409, 37.367817], + [-76.718085, 37.36749], + [-76.717779, 37.36718], + [-76.717294, 37.366689], + [-76.716657, 37.366428], + [-76.716491, 37.366462], + [-76.715975, 37.366569], + [-76.715849, 37.366584], + [-76.715625, 37.366578], + [-76.715423, 37.366573], + [-76.715336, 37.366555], + [-76.715264, 37.36654], + [-76.71514, 37.366485], + [-76.715092, 37.366448], + [-76.71501, 37.366386], + [-76.714858, 37.366188], + [-76.714762, 37.366128], + [-76.714631, 37.366095], + [-76.714473, 37.366084], + [-76.714177, 37.366117], + [-76.713805, 37.366057], + [-76.713027, 37.366024], + [-76.712387, 37.366013], + [-76.712208, 37.36598], + [-76.71205, 37.365898], + [-76.711926, 37.365783], + [-76.711898, 37.365766], + [-76.711713, 37.365717], + [-76.711615, 37.36571], + [-76.71154, 37.365706], + [-76.711437, 37.365678], + [-76.711162, 37.365673], + [-76.710701, 37.365756], + [-76.710584, 37.365745], + [-76.710391, 37.365679], + [-76.710212, 37.365558], + [-76.709964, 37.365305], + [-76.709833, 37.365201], + [-76.709703, 37.365173], + [-76.709558, 37.365168], + [-76.709131, 37.365245], + [-76.708719, 37.36525], + [-76.708588, 37.365322], + [-76.708471, 37.365349], + [-76.70834, 37.365333], + [-76.708264, 37.365338], + [-76.708079, 37.365421], + [-76.707975, 37.365415], + [-76.707803, 37.365366], + [-76.707693, 37.365355], + [-76.707617, 37.365388], + [-76.707583, 37.365421], + [-76.707473, 37.365586], + [-76.707432, 37.365613], + [-76.707356, 37.365641], + [-76.707308, 37.365619], + [-76.707081, 37.365564], + [-76.706785, 37.365454], + [-76.706613, 37.365465], + [-76.706351, 37.365592], + [-76.706241, 37.365624], + [-76.706151, 37.365608], + [-76.706034, 37.365531], + [-76.70589, 37.365377], + [-76.705731, 37.365262], + [-76.705663, 37.365224], + [-76.705546, 37.365196], + [-76.70536, 37.365207], + [-76.70514, 37.365301], + [-76.705002, 37.365389], + [-76.704946, 37.365487], + [-76.705025, 37.365786], + [-76.704981, 37.365892], + [-76.704814, 37.365945], + [-76.704516, 37.365948], + [-76.704076, 37.365867], + [-76.703806, 37.365958], + [-76.703523, 37.366046], + [-76.703282, 37.366041], + [-76.703076, 37.365944], + [-76.702929, 37.3659], + [-76.702629, 37.365982], + [-76.701961, 37.366225], + [-76.701644, 37.366293], + [-76.701451, 37.366395], + [-76.701302, 37.366454], + [-76.701142, 37.366463], + [-76.700928, 37.366374], + [-76.700801, 37.36627], + [-76.700426, 37.366148], + [-76.700211, 37.366038], + [-76.700102, 37.365926], + [-76.700117, 37.36582], + [-76.70021, 37.365585], + [-76.700216, 37.365479], + [-76.700091, 37.365452], + [-76.699907, 37.36554], + [-76.699683, 37.365826], + [-76.699428, 37.366311], + [-76.699383, 37.366637], + [-76.69944, 37.366827], + [-76.699764, 37.367049], + [-76.700003, 37.367427], + [-76.699921, 37.367704], + [-76.698751, 37.368089], + [-76.698336, 37.368166], + [-76.697938, 37.3682], + [-76.697732, 37.368118], + [-76.697815, 37.367869], + [-76.69815, 37.36739], + [-76.69842, 37.36716], + [-76.698638, 37.367008], + [-76.698794, 37.366872], + [-76.698783, 37.366759], + [-76.698603, 37.366641], + [-76.698196, 37.366307], + [-76.697887, 37.365937], + [-76.697416, 37.365894], + [-76.697116, 37.365934], + [-76.695965, 37.366007], + [-76.695613, 37.365949], + [-76.695394, 37.365592], + [-76.695128, 37.365282], + [-76.694799, 37.365141], + [-76.694502, 37.365169], + [-76.694323, 37.365332], + [-76.694281, 37.365578], + [-76.694385, 37.365959], + [-76.69439, 37.366158], + [-76.69421, 37.36626], + [-76.693807, 37.366243], + [-76.693557, 37.366208], + [-76.693148, 37.366382], + [-76.69281, 37.366693], + [-76.692652, 37.366902], + [-76.692586, 37.366979], + [-76.692519, 37.367057], + [-76.692584, 37.367214], + [-76.692749, 37.367249], + [-76.693007, 37.367208], + [-76.693249, 37.367152], + [-76.69331, 37.367132], + [-76.693609, 37.367045], + [-76.693865, 37.366952], + [-76.69413, 37.366839], + [-76.694426, 37.36682], + [-76.694475, 37.366932], + [-76.694447, 37.367009], + [-76.694413, 37.367101], + [-76.694276, 37.367272], + [-76.69405, 37.367466], + [-76.694004, 37.367517], + [-76.693959, 37.367569], + [-76.693807, 37.367725], + [-76.693673, 37.367813], + [-76.693522, 37.367973], + [-76.693326, 37.368054], + [-76.693138, 37.368042], + [-76.692962, 37.367928], + [-76.692812, 37.367732], + [-76.692744, 37.367667], + [-76.692677, 37.367602], + [-76.692586, 37.367545], + [-76.692496, 37.367489], + [-76.692407, 37.367475], + [-76.692337, 37.367465], + [-76.692318, 37.367462], + [-76.692267, 37.367454], + [-76.69187, 37.367419], + [-76.691513, 37.367405], + [-76.691119, 37.367422], + [-76.690958, 37.367383], + [-76.690774, 37.367367], + [-76.690656, 37.367339], + [-76.690612, 37.367249], + [-76.690619, 37.367148], + [-76.690696, 37.367035], + [-76.690836, 37.366973], + [-76.691191, 37.366889], + [-76.691556, 37.366827], + [-76.691813, 37.366764], + [-76.691975, 37.366671], + [-76.69208, 37.366516], + [-76.692346, 37.366021], + [-76.692441, 37.365769], + [-76.692376, 37.365604], + [-76.692118, 37.365598], + [-76.691939, 37.365776], + [-76.691758, 37.365876], + [-76.691539, 37.365997], + [-76.691202, 37.365949], + [-76.690974, 37.365917], + [-76.69075, 37.365858], + [-76.690728, 37.365852], + [-76.690544, 37.365865], + [-76.690435, 37.365915], + [-76.690404, 37.366179], + [-76.690428, 37.366697], + [-76.690249, 37.366895], + [-76.69008, 37.367035], + [-76.689643, 37.367217], + [-76.689377, 37.367367], + [-76.689271, 37.367525], + [-76.689386, 37.367748], + [-76.689601, 37.368039], + [-76.689891, 37.368416], + [-76.690032, 37.368678], + [-76.689974, 37.368845], + [-76.68977, 37.369043], + [-76.689441, 37.369097], + [-76.689283, 37.369177], + [-76.68914, 37.369336], + [-76.689046, 37.369533], + [-76.688858, 37.369526], + [-76.688344, 37.369357], + [-76.687335, 37.369137], + [-76.687076, 37.369092], + [-76.686806, 37.369056], + [-76.686475, 37.369032], + [-76.686183, 37.369114], + [-76.685956, 37.369371], + [-76.685887, 37.369588], + [-76.685657, 37.369718], + [-76.684643, 37.36982], + [-76.68358, 37.369972], + [-76.683361, 37.370015], + [-76.683091, 37.369989], + [-76.682904, 37.369845], + [-76.682895, 37.369811], + [-76.682864, 37.369689], + [-76.682856, 37.369337], + [-76.683044, 37.368425], + [-76.683089, 37.368259], + [-76.68316, 37.368179], + [-76.683376, 37.367961], + [-76.683435, 37.367843], + [-76.683419, 37.367667], + [-76.683218, 37.367465], + [-76.682958, 37.367332], + [-76.682242, 37.367097], + [-76.681494, 37.367049], + [-76.681048, 37.36685], + [-76.680591, 37.366681], + [-76.680297, 37.366656], + [-76.680015, 37.366669], + [-76.679848, 37.366867], + [-76.679848, 37.367405], + [-76.679662, 37.367848], + [-76.67929, 37.368195], + [-76.678711, 37.368585], + [-76.678385, 37.368814], + [-76.677982, 37.368888], + [-76.676938, 37.368971], + [-76.676491, 37.369007], + [-76.676053, 37.369034], + [-76.675684, 37.369003], + [-76.675622, 37.368963], + [-76.675437, 37.368842], + [-76.675258, 37.36858], + [-76.675112, 37.368365], + [-76.675055, 37.368219], + [-76.674966, 37.367992], + [-76.674794, 37.367792], + [-76.674243, 37.367597], + [-76.674153, 37.367603], + [-76.67399, 37.367613], + [-76.673937, 37.367617], + [-76.673828, 37.367624], + [-76.673637, 37.367636], + [-76.673613, 37.367638], + [-76.673188, 37.367863], + [-76.673182, 37.367866], + [-76.67311, 37.367904], + [-76.673099, 37.36791], + [-76.67309, 37.367915], + [-76.673049, 37.367936], + [-76.673029, 37.367947], + [-76.672971, 37.368017], + [-76.67289, 37.368116], + [-76.672754, 37.36828], + [-76.672538, 37.368543], + [-76.672533, 37.368549], + [-76.672479, 37.368614], + [-76.672164, 37.368997], + [-76.671714, 37.369376], + [-76.671707, 37.369382], + [-76.671661, 37.369421], + [-76.671608, 37.369465], + [-76.670826, 37.370135], + [-76.670765, 37.370187], + [-76.670704, 37.37024], + [-76.664973, 37.375151], + [-76.658653, 37.380146], + [-76.654401, 37.377462], + [-76.650738, 37.375151], + [-76.650509, 37.374989], + [-76.650093, 37.374693], + [-76.649675, 37.374397], + [-76.649522, 37.374289], + [-76.648128, 37.372426], + [-76.648057, 37.372331], + [-76.647455, 37.371529], + [-76.646972, 37.370779], + [-76.646707, 37.370367], + [-76.64516, 37.367964], + [-76.644846, 37.367457], + [-76.644385, 37.366714], + [-76.642949, 37.364398], + [-76.642778, 37.36411], + [-76.641746, 37.362379], + [-76.641277, 37.361592], + [-76.640802, 37.360794], + [-76.640264, 37.359891], + [-76.639652, 37.358864], + [-76.639307, 37.35839], + [-76.637279, 37.355602], + [-76.63533, 37.353598], + [-76.63354, 37.351758], + [-76.632435, 37.350623], + [-76.632129, 37.350259], + [-76.629382, 37.346998], + [-76.628518, 37.345791], + [-76.626664, 37.343202], + [-76.624678, 37.340321], + [-76.623519, 37.339175], + [-76.623486, 37.339145], + [-76.621491, 37.337314], + [-76.619921, 37.336067], + [-76.619625, 37.335832], + [-76.618092, 37.334632], + [-76.616327, 37.333094], + [-76.615066, 37.331595], + [-76.613481, 37.329686], + [-76.612249, 37.327914], + [-76.611683, 37.32669], + [-76.611061, 37.325663], + [-76.610531, 37.324789], + [-76.608974, 37.322862], + [-76.607252, 37.32093], + [-76.606196, 37.31981], + [-76.604942, 37.318481], + [-76.602852, 37.316239], + [-76.602621, 37.315992], + [-76.600756, 37.314083], + [-76.600715, 37.314045], + [-76.599386, 37.312798], + [-76.599229, 37.312651], + [-76.598497, 37.312071], + [-76.597765, 37.31149], + [-76.59745, 37.311239], + [-76.597134, 37.310989], + [-76.59682, 37.310741], + [-76.596506, 37.310492], + [-76.596011, 37.310099], + [-76.595516, 37.309707], + [-76.595416, 37.309628], + [-76.59537, 37.309591], + [-76.595225, 37.309476], + [-76.59075, 37.305929], + [-76.588957, 37.304599], + [-76.586199, 37.302686], + [-76.585981, 37.302535], + [-76.583411, 37.301031], + [-76.580109, 37.299255], + [-76.576733, 37.296903], + [-76.575783, 37.295977], + [-76.5735, 37.293751], + [-76.571401, 37.290887], + [-76.57126, 37.290695], + [-76.56998, 37.289111], + [-76.568812, 37.287991], + [-76.566604, 37.286359], + [-76.564805, 37.285352], + [-76.563916, 37.284855], + [-76.56126, 37.283543], + [-76.557212, 37.282359], + [-76.555053, 37.281595], + [-76.554917, 37.281547], + [-76.554851, 37.281523], + [-76.554646, 37.281451], + [-76.553324, 37.280983], + [-76.551156, 37.279918], + [-76.549612, 37.279159], + [-76.546653, 37.277524], + [-76.546308, 37.277333], + [-76.545964, 37.277143], + [-76.545791, 37.277061], + [-76.544684, 37.276535], + [-76.542351, 37.2751], + [-76.542108, 37.274951], + [-76.539691, 37.273335], + [-76.536412, 37.271126], + [-76.533468, 37.268234], + [-76.53317, 37.267941], + [-76.533081, 37.267854], + [-76.533072, 37.267845], + [-76.532694, 37.267473], + [-76.532635, 37.267415], + [-76.530091, 37.264599], + [-76.529505, 37.263768], + [-76.529267, 37.263431], + [-76.529029, 37.263093], + [-76.528523, 37.262375], + [-76.526894, 37.260541], + [-76.525693, 37.259425], + [-76.524492, 37.25831], + [-76.524459, 37.258279], + [-76.522911, 37.256933], + [-76.521755, 37.255927], + [-76.520283, 37.254583], + [-76.518811, 37.252663], + [-76.517131, 37.250183], + [-76.516884, 37.249862], + [-76.516491, 37.249351], + [-76.516059, 37.248759], + [-76.515925, 37.248657], + [-76.515791, 37.248554], + [-76.514717, 37.247736], + [-76.512591, 37.246377], + [-76.510129, 37.245082], + [-76.50698, 37.243596], + [-76.506423, 37.243434], + [-76.506314, 37.243399], + [-76.501941, 37.241763], + [-76.499252, 37.241111], + [-76.498874, 37.241015], + [-76.497753, 37.240738], + [-76.49577, 37.240247], + [-76.491034, 37.239223], + [-76.488138, 37.238455], + [-76.486553, 37.23808], + [-76.484959, 37.237721], + [-76.483948, 37.237488], + [-76.482938, 37.237255], + [-76.480804, 37.236711], + [-76.48017, 37.236549], + [-76.479525, 37.236384], + [-76.478361, 37.236086], + [-76.473782, 37.234936], + [-76.471946, 37.234464], + [-76.468921, 37.233878], + [-76.465359, 37.233552], + [-76.464073, 37.233542], + [-76.460339, 37.233368], + [-76.459385, 37.233323], + [-76.455192, 37.233623], + [-76.452568, 37.233814], + [-76.446872, 37.234598], + [-76.441523, 37.235645], + [-76.436268, 37.236679], + [-76.430428, 37.237835], + [-76.425139, 37.238894], + [-76.413543, 37.241173], + [-76.410866, 37.241443], + [-76.409094, 37.241621], + [-76.405345, 37.241716], + [-76.404068, 37.241761], + [-76.383023, 37.247762], + [-76.377819, 37.249247], + [-76.374669, 37.250148], + [-76.372532, 37.251007], + [-76.371772, 37.251313], + [-76.357837, 37.256918], + [-76.304502, 37.278368], + [-76.249663, 37.278995], + [-76.136303, 37.282144], + [-76.136141, 37.26405], + [-76.136016, 37.250145], + [-76.135862, 37.232025], + [-76.135859, 37.231628], + [-76.13555, 37.195344], + [-76.135522, 37.191977], + [-76.249663, 37.191023], + [-76.330437, 37.190991], + [-76.330419, 37.197845], + [-76.344302, 37.191063], + [-76.354451, 37.186106], + [-76.355448, 37.185619], + [-76.355491, 37.185598], + [-76.355537, 37.185576], + [-76.355768, 37.185463], + [-76.355823, 37.185436], + [-76.355855, 37.18542], + [-76.355986, 37.185356], + [-76.356444, 37.185132], + [-76.357534, 37.1846], + [-76.357859, 37.184441], + [-76.358303, 37.184224], + [-76.358492, 37.184132], + [-76.358513, 37.184122], + [-76.358624, 37.184068], + [-76.359509, 37.183636], + [-76.360393, 37.183204], + [-76.362145, 37.182348], + [-76.362168, 37.182337], + [-76.362246, 37.182299], + [-76.362253, 37.182295], + [-76.362277, 37.182283], + [-76.36229, 37.182277], + [-76.363551, 37.181661], + [-76.364532, 37.181182], + [-76.368672, 37.17916], + [-76.3776, 37.174799], + [-76.386529, 37.170437], + [-76.387286, 37.170067], + [-76.389185, 37.169139], + [-76.391675, 37.167923], + [-76.39239, 37.167574], + [-76.392892, 37.167286], + [-76.3944, 37.166421], + [-76.396656, 37.165128], + [-76.397891, 37.164419], + [-76.399214, 37.163659], + [-76.399799, 37.163322], + [-76.40044, 37.162954], + [-76.400528, 37.162905], + [-76.400536, 37.1629], + [-76.400709, 37.162801], + [-76.40074, 37.162783], + [-76.403161, 37.161394], + [-76.403222, 37.161359], + [-76.403242, 37.161347], + [-76.403612, 37.161135], + [-76.403631, 37.161124], + [-76.403637, 37.161121], + [-76.403651, 37.161113], + [-76.403684, 37.161094], + [-76.403794, 37.161031], + [-76.403961, 37.160935], + [-76.404407, 37.160681], + [-76.404853, 37.160424], + [-76.404882, 37.160407], + [-76.405064, 37.160302], + [-76.405147, 37.160255], + [-76.405156, 37.16025], + [-76.405223, 37.160212], + [-76.405245, 37.160199], + [-76.405416, 37.160102], + [-76.405586, 37.160005], + [-76.40589, 37.159829], + [-76.405997, 37.159768], + [-76.4061, 37.159708], + [-76.406106, 37.159705], + [-76.406113, 37.159701], + [-76.406165, 37.159671], + [-76.406174, 37.159666], + [-76.406176, 37.159665], + [-76.406236, 37.159631], + [-76.406528, 37.159463], + [-76.409236, 37.157909], + [-76.412887, 37.155815], + [-76.412599, 37.151559], + [-76.412053, 37.149417], + [-76.411889, 37.148773], + [-76.411735, 37.148167], + [-76.411914, 37.147644], + [-76.412295, 37.146535], + [-76.412266, 37.146142], + [-76.41225, 37.145916], + [-76.412215, 37.145431], + [-76.412439, 37.144519], + [-76.412486, 37.144369], + [-76.412653, 37.143828], + [-76.412727, 37.143591], + [-76.412835, 37.143072], + [-76.412864, 37.142931], + [-76.412887, 37.142823], + [-76.413031, 37.142167], + [-76.413052, 37.141958], + [-76.413084, 37.14166], + [-76.413115, 37.141362], + [-76.413128, 37.141233], + [-76.41314, 37.141105], + [-76.413176, 37.140753], + [-76.413192, 37.140599], + [-76.413181, 37.140081], + [-76.413176, 37.139831], + [-76.41338, 37.139337], + [-76.413672, 37.138631], + [-76.413661, 37.138377], + [-76.413654, 37.138258], + [-76.413648, 37.138139], + [-76.41364, 37.137975], + [-76.413624, 37.137951], + [-76.413541, 37.137822], + [-76.413262, 37.137385], + [-76.413258, 37.13738], + [-76.412824, 37.136826], + [-76.412515, 37.136441], + [-76.412337, 37.136226], + [-76.412103, 37.135956], + [-76.411686, 37.13578], + [-76.411399, 37.135645], + [-76.411196, 37.135442], + [-76.410974, 37.135219], + [-76.410574, 37.13481], + [-76.41047, 37.134609], + [-76.410408, 37.134109], + [-76.410393, 37.134082], + [-76.410375, 37.13405], + [-76.41037, 37.134041], + [-76.410367, 37.134036], + [-76.410338, 37.133985], + [-76.410268, 37.13386], + [-76.410216, 37.133767], + [-76.410184, 37.133709], + [-76.410119, 37.133591], + [-76.410436, 37.132781], + [-76.410488, 37.132647], + [-76.410613, 37.132513], + [-76.410618, 37.132508], + [-76.410651, 37.132472], + [-76.410792, 37.132321], + [-76.410844, 37.132267], + [-76.41085, 37.132261], + [-76.410872, 37.132238], + [-76.410884, 37.132225], + [-76.41089, 37.132218], + [-76.410905, 37.132202], + [-76.410946, 37.132158], + [-76.411063, 37.132034], + [-76.411095, 37.132], + [-76.411105, 37.131989], + [-76.411114, 37.13198], + [-76.41124, 37.131847], + [-76.412024, 37.130775], + [-76.413239, 37.128952], + [-76.410311, 37.1254], + [-76.410115, 37.125165], + [-76.410121, 37.125279], + [-76.410107, 37.125515], + [-76.410074, 37.12575], + [-76.41002, 37.126009], + [-76.409857, 37.12665], + [-76.40977, 37.126935], + [-76.409691, 37.127134], + [-76.409627, 37.127256], + [-76.409543, 37.127383], + [-76.409443, 37.127502], + [-76.4094, 37.127543], + [-76.409193, 37.127744], + [-76.409189, 37.127748], + [-76.409179, 37.127757], + [-76.409163, 37.127773], + [-76.409036, 37.127896], + [-76.408373, 37.12854], + [-76.408089, 37.128811], + [-76.408074, 37.128825], + [-76.407907, 37.128981], + [-76.407798, 37.129087], + [-76.407218, 37.12965], + [-76.407129, 37.129743], + [-76.407063, 37.129621], + [-76.406694, 37.128932], + [-76.406273, 37.128146], + [-76.404957, 37.125691], + [-76.403356, 37.122666], + [-76.402047, 37.120196], + [-76.401557, 37.119272], + [-76.399684, 37.115812], + [-76.399172, 37.114866], + [-76.399149, 37.114823], + [-76.399129, 37.114786], + [-76.399121, 37.114772], + [-76.399118, 37.114767], + [-76.399027, 37.114599], + [-76.398752, 37.114091], + [-76.397978, 37.112661], + [-76.397843, 37.112411], + [-76.396118, 37.109224], + [-76.395938, 37.108899], + [-76.394531, 37.106362], + [-76.394502, 37.106309], + [-76.394472, 37.106255], + [-76.394527, 37.106207], + [-76.394642, 37.106155], + [-76.394731, 37.106142], + [-76.394776, 37.106144], + [-76.394818, 37.106156], + [-76.394856, 37.106175], + [-76.394993, 37.106268], + [-76.395037, 37.10633], + [-76.395131, 37.10649], + [-76.395328, 37.106728], + [-76.39544, 37.106843], + [-76.395521, 37.106925], + [-76.395537, 37.106939], + [-76.395755, 37.107139], + [-76.395782, 37.107168], + [-76.395872, 37.107248], + [-76.396011, 37.107338], + [-76.396077, 37.107386], + [-76.396294, 37.107515], + [-76.3965, 37.107586], + [-76.39663, 37.107617], + [-76.396752, 37.107641], + [-76.396777, 37.107646], + [-76.396825, 37.107655], + [-76.397051, 37.107667], + [-76.397263, 37.10766], + [-76.397367, 37.107658], + [-76.3975, 37.107636], + [-76.39754, 37.107619], + [-76.397574, 37.107608], + [-76.397623, 37.107592], + [-76.397703, 37.107558], + [-76.397737, 37.107534], + [-76.397795, 37.107479], + [-76.397819, 37.107449], + [-76.397844, 37.107381], + [-76.39785, 37.107346], + [-76.397851, 37.107168], + [-76.397864, 37.106991], + [-76.397875, 37.106921], + [-76.397874, 37.106885], + [-76.397895, 37.106816], + [-76.397914, 37.106784], + [-76.39799, 37.106695], + [-76.398134, 37.10661], + [-76.398175, 37.106595], + [-76.39835, 37.106558], + [-76.398572, 37.106526], + [-76.398886, 37.106501], + [-76.399151, 37.106455], + [-76.399454, 37.106382], + [-76.399645, 37.106287], + [-76.399861, 37.106157], + [-76.400138, 37.105976], + [-76.400318, 37.105867], + [-76.400394, 37.105829], + [-76.400515, 37.105782], + [-76.400813, 37.105696], + [-76.400986, 37.105654], + [-76.401067, 37.105623], + [-76.401178, 37.105562], + [-76.401207, 37.105536], + [-76.401223, 37.105502], + [-76.401235, 37.105432], + [-76.401234, 37.105255], + [-76.401226, 37.10522], + [-76.401133, 37.105019], + [-76.401096, 37.104954], + [-76.401025, 37.104864], + [-76.400916, 37.10475], + [-76.400899, 37.104718], + [-76.400893, 37.104682], + [-76.400901, 37.104576], + [-76.400928, 37.104508], + [-76.401006, 37.10442], + [-76.401074, 37.104373], + [-76.401113, 37.104355], + [-76.401335, 37.104319], + [-76.401514, 37.104299], + [-76.401819, 37.104231], + [-76.401902, 37.104202], + [-76.401981, 37.104169], + [-76.402016, 37.104066], + [-76.402016, 37.104061], + [-76.402013, 37.10403], + [-76.402004, 37.103995], + [-76.401959, 37.103894], + [-76.401921, 37.10383], + [-76.401872, 37.10377], + [-76.40184, 37.103704], + [-76.401608, 37.103358], + [-76.401551, 37.103261], + [-76.40147, 37.103098], + [-76.401447, 37.103067], + [-76.401368, 37.10298], + [-76.401338, 37.102954], + [-76.40127, 37.102907], + [-76.401193, 37.102872], + [-76.401151, 37.102858], + [-76.401056, 37.102846], + [-76.400922, 37.10286], + [-76.400883, 37.102876], + [-76.400782, 37.102946], + [-76.400755, 37.102975], + [-76.400669, 37.1031], + [-76.400537, 37.103243], + [-76.400462, 37.103283], + [-76.400419, 37.103294], + [-76.400285, 37.10331], + [-76.40015, 37.103312], + [-76.400105, 37.103307], + [-76.400015, 37.103308], + [-76.399884, 37.103283], + [-76.399755, 37.103253], + [-76.399634, 37.103204], + [-76.399549, 37.10318], + [-76.399326, 37.103157], + [-76.39928, 37.103156], + [-76.399147, 37.103172], + [-76.399108, 37.103189], + [-76.398981, 37.103291], + [-76.398958, 37.103322], + [-76.398923, 37.103589], + [-76.398907, 37.103711], + [-76.39885, 37.103883], + [-76.39879, 37.104017], + [-76.398749, 37.10408], + [-76.398681, 37.104171], + [-76.398623, 37.104226], + [-76.398587, 37.104248], + [-76.398509, 37.104283], + [-76.398383, 37.104323], + [-76.398339, 37.10433], + [-76.398293, 37.104328], + [-76.398208, 37.104304], + [-76.398169, 37.104286], + [-76.398136, 37.104262], + [-76.398049, 37.10418], + [-76.397924, 37.104033], + [-76.397869, 37.103977], + [-76.397825, 37.103877], + [-76.39781, 37.103807], + [-76.397801, 37.103736], + [-76.397802, 37.103701], + [-76.397822, 37.103595], + [-76.39789, 37.1035], + [-76.397965, 37.103414], + [-76.398027, 37.103362], + [-76.398421, 37.103071], + [-76.398441, 37.103039], + [-76.39848, 37.102937], + [-76.398486, 37.102902], + [-76.398551, 37.102659], + [-76.398624, 37.102529], + [-76.398728, 37.102373], + [-76.398773, 37.102272], + [-76.398787, 37.102166], + [-76.398781, 37.102095], + [-76.398768, 37.102061], + [-76.398743, 37.102032], + [-76.398535, 37.101845], + [-76.398285, 37.101691], + [-76.398074, 37.101506], + [-76.397965, 37.101392], + [-76.397733, 37.10113], + [-76.397685, 37.10107], + [-76.39765, 37.101004], + [-76.397589, 37.100909], + [-76.397403, 37.100708], + [-76.396936, 37.100374], + [-76.396885, 37.100331], + [-76.396721, 37.100193], + [-76.39667, 37.100134], + [-76.396656, 37.1001], + [-76.396661, 37.099959], + [-76.396666, 37.099923], + [-76.396684, 37.09989], + [-76.396712, 37.099863], + [-76.396733, 37.099851], + [-76.396749, 37.099842], + [-76.396839, 37.099832], + [-76.397064, 37.099841], + [-76.397193, 37.099875], + [-76.397319, 37.099913], + [-76.397536, 37.099965], + [-76.397712, 37.099995], + [-76.397892, 37.100008], + [-76.398481, 37.10003], + [-76.398614, 37.100045], + [-76.398657, 37.100057], + [-76.398745, 37.100072], + [-76.398875, 37.100101], + [-76.398916, 37.100116], + [-76.398991, 37.100155], + [-76.39911, 37.100206], + [-76.399196, 37.100229], + [-76.399284, 37.100242], + [-76.399329, 37.100242], + [-76.399373, 37.100234], + [-76.399442, 37.100188], + [-76.399469, 37.100159], + [-76.399485, 37.100126], + [-76.399492, 37.100091], + [-76.399493, 37.100056], + [-76.399508, 37.099996], + [-76.399475, 37.099714], + [-76.399419, 37.0994], + [-76.399398, 37.099368], + [-76.399298, 37.099296], + [-76.39926, 37.099278], + [-76.399215, 37.099272], + [-76.399126, 37.099268], + [-76.398414, 37.099206], + [-76.398341, 37.099193], + [-76.39806, 37.099145], + [-76.398023, 37.099125], + [-76.397922, 37.099053], + [-76.397897, 37.099024], + [-76.397896, 37.098991], + [-76.397916, 37.098959], + [-76.397944, 37.098931], + [-76.398031, 37.098868], + [-76.398044, 37.098858], + [-76.398081, 37.098838], + [-76.398295, 37.098785], + [-76.398474, 37.098764], + [-76.398518, 37.098756], + [-76.39869, 37.098711], + [-76.398813, 37.098666], + [-76.398886, 37.098625], + [-76.39949, 37.098195], + [-76.39952, 37.098168], + [-76.3996, 37.098082], + [-76.399701, 37.097964], + [-76.399716, 37.097931], + [-76.399724, 37.097825], + [-76.39972, 37.09779], + [-76.399709, 37.097755], + [-76.399659, 37.097697], + [-76.399594, 37.097647], + [-76.399554, 37.097631], + [-76.399511, 37.09762], + [-76.399423, 37.097605], + [-76.399381, 37.097592], + [-76.399293, 37.097579], + [-76.399248, 37.097583], + [-76.399068, 37.097586], + [-76.398983, 37.097608], + [-76.398944, 37.097625], + [-76.39886, 37.097652], + [-76.398703, 37.097722], + [-76.398598, 37.097788], + [-76.398429, 37.097904], + [-76.398184, 37.09806], + [-76.398061, 37.098104], + [-76.397889, 37.098149], + [-76.397845, 37.098156], + [-76.397665, 37.098172], + [-76.397484, 37.098168], + [-76.397395, 37.098157], + [-76.397352, 37.098145], + [-76.397328, 37.098132], + [-76.397315, 37.098125], + [-76.397282, 37.0981], + [-76.397255, 37.098072], + [-76.397244, 37.098044], + [-76.397242, 37.098038], + [-76.39721, 37.097898], + [-76.397208, 37.097862], + [-76.397218, 37.097828], + [-76.397321, 37.097592], + [-76.397364, 37.09753], + [-76.397416, 37.097472], + [-76.397508, 37.097394], + [-76.397617, 37.09733], + [-76.397702, 37.097305], + [-76.397968, 37.097269], + [-76.398057, 37.09726], + [-76.398233, 37.097224], + [-76.39836, 37.097188], + [-76.398398, 37.097169], + [-76.398461, 37.097118], + [-76.398483, 37.097087], + [-76.398532, 37.096951], + [-76.398501, 37.096811], + [-76.398483, 37.096779], + [-76.398355, 37.096679], + [-76.398244, 37.096619], + [-76.398084, 37.096553], + [-76.398046, 37.096544], + [-76.397998, 37.096533], + [-76.397679, 37.096401], + [-76.397522, 37.096331], + [-76.397491, 37.096305], + [-76.39744, 37.096247], + [-76.39742, 37.096215], + [-76.397401, 37.096166], + [-76.397412, 37.096132], + [-76.397431, 37.096099], + [-76.397484, 37.096042], + [-76.397543, 37.095989], + [-76.397598, 37.095932], + [-76.397632, 37.095908], + [-76.397696, 37.095883], + [-76.397876, 37.095871], + [-76.397965, 37.095881], + [-76.398005, 37.095898], + [-76.398346, 37.096071], + [-76.398424, 37.096106], + [-76.398535, 37.096167], + [-76.398606, 37.096212], + [-76.398636, 37.096239], + [-76.398704, 37.096285], + [-76.398952, 37.096491], + [-76.399179, 37.096713], + [-76.399242, 37.096763], + [-76.39927, 37.096792], + [-76.399405, 37.096884], + [-76.399572, 37.096938], + [-76.399661, 37.096945], + [-76.399978, 37.09693], + [-76.400067, 37.096918], + [-76.400108, 37.096903], + [-76.400144, 37.096882], + [-76.400176, 37.096857], + [-76.4002, 37.096827], + [-76.400218, 37.096794], + [-76.400222, 37.096759], + [-76.400217, 37.096723], + [-76.400155, 37.09659], + [-76.40009, 37.096498], + [-76.399986, 37.096382], + [-76.399969, 37.096349], + [-76.399955, 37.096279], + [-76.399956, 37.096243], + [-76.399965, 37.096208], + [-76.399981, 37.096175], + [-76.40003, 37.096115], + [-76.40013, 37.096017], + [-76.400136, 37.096011], + [-76.40019, 37.095958], + [-76.400226, 37.095922], + [-76.400284, 37.095865], + [-76.400292, 37.095858], + [-76.400313, 37.09584], + [-76.400377, 37.095787], + [-76.400438, 37.095736], + [-76.400448, 37.09573], + [-76.400508, 37.095692], + [-76.40054, 37.095666], + [-76.400575, 37.095644], + [-76.400615, 37.095627], + [-76.400658, 37.095616], + [-76.400717, 37.095613], + [-76.400747, 37.095611], + [-76.400877, 37.095642], + [-76.400954, 37.095679], + [-76.401035, 37.09571], + [-76.401228, 37.095798], + [-76.401301, 37.095839], + [-76.401423, 37.095884], + [-76.401557, 37.095894], + [-76.401647, 37.095887], + [-76.40169, 37.095875], + [-76.40173, 37.095858], + [-76.401764, 37.095835], + [-76.401987, 37.095614], + [-76.402112, 37.095513], + [-76.402153, 37.095496], + [-76.402377, 37.095488], + [-76.402512, 37.095498], + [-76.402554, 37.095512], + [-76.402709, 37.095585], + [-76.402752, 37.095596], + [-76.402797, 37.0956], + [-76.402955, 37.095593], + [-76.402983, 37.095553], + [-76.402971, 37.095519], + [-76.402953, 37.095486], + [-76.402881, 37.095396], + [-76.402863, 37.095363], + [-76.402861, 37.095328], + [-76.402901, 37.095264], + [-76.402932, 37.095238], + [-76.403046, 37.09518], + [-76.403167, 37.095133], + [-76.403292, 37.095092], + [-76.403465, 37.095055], + [-76.403549, 37.095028], + [-76.403593, 37.095019], + [-76.403755, 37.094957], + [-76.403828, 37.094916], + [-76.403863, 37.094852], + [-76.403867, 37.094817], + [-76.403847, 37.094748], + [-76.403832, 37.094714], + [-76.403787, 37.094652], + [-76.403607, 37.094449], + [-76.40359, 37.094416], + [-76.403581, 37.094359], + [-76.403578, 37.094341], + [-76.403629, 37.094206], + [-76.403678, 37.094155], + [-76.403888, 37.09402], + [-76.403925, 37.094001], + [-76.40395, 37.093991], + [-76.404084, 37.093936], + [-76.404129, 37.093932], + [-76.404237, 37.093997], + [-76.404295, 37.094046], + [-76.40445, 37.094178], + [-76.404514, 37.094228], + [-76.404558, 37.094236], + [-76.404646, 37.094224], + [-76.404679, 37.094199], + [-76.404694, 37.094165], + [-76.404701, 37.09413], + [-76.4047, 37.09406], + [-76.404684, 37.093876], + [-76.404682, 37.093849], + [-76.404672, 37.093778], + [-76.404679, 37.093708], + [-76.404708, 37.093681], + [-76.404811, 37.093613], + [-76.404926, 37.093559], + [-76.405044, 37.093509], + [-76.405132, 37.093495], + [-76.405223, 37.093493], + [-76.405266, 37.093503], + [-76.4053, 37.093524], + [-76.405332, 37.09355], + [-76.405355, 37.093583], + [-76.405397, 37.093643], + [-76.405447, 37.093742], + [-76.405492, 37.093804], + [-76.405528, 37.093869], + [-76.405554, 37.093936], + [-76.405574, 37.093968], + [-76.405586, 37.094002], + [-76.405596, 37.094108], + [-76.405586, 37.094248], + [-76.405588, 37.094319], + [-76.405582, 37.094354], + [-76.40559, 37.094389], + [-76.405628, 37.094419], + [-76.405674, 37.094422], + [-76.405808, 37.094419], + [-76.405851, 37.094408], + [-76.40593, 37.094375], + [-76.406005, 37.094337], + [-76.406047, 37.094324], + [-76.40622, 37.09429], + [-76.406489, 37.09426], + [-76.406528, 37.094244], + [-76.406558, 37.094217], + [-76.406571, 37.094184], + [-76.406577, 37.094149], + [-76.406571, 37.094114], + [-76.406541, 37.094048], + [-76.406517, 37.09398], + [-76.406498, 37.093875], + [-76.406465, 37.093593], + [-76.406468, 37.093522], + [-76.406465, 37.093486], + [-76.406469, 37.093416], + [-76.406454, 37.093345], + [-76.40643, 37.093315], + [-76.406356, 37.093275], + [-76.406312, 37.093268], + [-76.4061, 37.093257], + [-76.406086, 37.093256], + [-76.405997, 37.093245], + [-76.40591, 37.093228], + [-76.405869, 37.093213], + [-76.405797, 37.093171], + [-76.405765, 37.093146], + [-76.405693, 37.093104], + [-76.405611, 37.093019], + [-76.405609, 37.092913], + [-76.405627, 37.09288], + [-76.405652, 37.092851], + [-76.405685, 37.092827], + [-76.405728, 37.092815], + [-76.405997, 37.092827], + [-76.406086, 37.09282], + [-76.406173, 37.0928], + [-76.406245, 37.092765], + [-76.406364, 37.092708], + [-76.406405, 37.092692], + [-76.406578, 37.092655], + [-76.406622, 37.09265], + [-76.406668, 37.09265], + [-76.406702, 37.09267], + [-76.406718, 37.092704], + [-76.406723, 37.092739], + [-76.40668, 37.092911], + [-76.406674, 37.092982], + [-76.406677, 37.093005], + [-76.406689, 37.093088], + [-76.406712, 37.093118], + [-76.406743, 37.093144], + [-76.406786, 37.093155], + [-76.406964, 37.093172], + [-76.407099, 37.09316], + [-76.407365, 37.093128], + [-76.407496, 37.093104], + [-76.407667, 37.093063], + [-76.407755, 37.093049], + [-76.407792, 37.093029], + [-76.40789, 37.092955], + [-76.407908, 37.092923], + [-76.40791, 37.092887], + [-76.407893, 37.092818], + [-76.407837, 37.092763], + [-76.407803, 37.092739], + [-76.407764, 37.092722], + [-76.407677, 37.092704], + [-76.407638, 37.092687], + [-76.407539, 37.092628], + [-76.407494, 37.092601], + [-76.407307, 37.092449], + [-76.407303, 37.092377], + [-76.407308, 37.092342], + [-76.40732, 37.092308], + [-76.40734, 37.092276], + [-76.407427, 37.092195], + [-76.407495, 37.092148], + [-76.407699, 37.092076], + [-76.407833, 37.092061], + [-76.407909, 37.092067], + [-76.407955, 37.092101], + [-76.407979, 37.092131], + [-76.408072, 37.092395], + [-76.408088, 37.092439], + [-76.408108, 37.092471], + [-76.408199, 37.092549], + [-76.408272, 37.09259], + [-76.408397, 37.092632], + [-76.408594, 37.092715], + [-76.408727, 37.092736], + [-76.408772, 37.092739], + [-76.408859, 37.092754], + [-76.408939, 37.092785], + [-76.408979, 37.092786], + [-76.40904, 37.092786], + [-76.409115, 37.092599], + [-76.409527, 37.092231], + [-76.409527, 37.092126], + [-76.409451, 37.092044], + [-76.409479, 37.091923], + [-76.409541, 37.091901], + [-76.409616, 37.091912], + [-76.410432, 37.092335], + [-76.410508, 37.092434], + [-76.410459, 37.092654], + [-76.41048, 37.092704], + [-76.410665, 37.092726], + [-76.410789, 37.092704], + [-76.410905, 37.092621], + [-76.410988, 37.092599], + [-76.411049, 37.092621], + [-76.411097, 37.092868], + [-76.411255, 37.09289], + [-76.411475, 37.092819], + [-76.411797, 37.092808], + [-76.411975, 37.092852], + [-76.412176, 37.092961], + [-76.412311, 37.093034], + [-76.412544, 37.093149], + [-76.41258, 37.09322], + [-76.412648, 37.093353], + [-76.412675, 37.093407], + [-76.412853, 37.09355], + [-76.413017, 37.093539], + [-76.413237, 37.093429], + [-76.413559, 37.093407], + [-76.413676, 37.09355], + [-76.413744, 37.093583], + [-76.41382, 37.093594], + [-76.414087, 37.09355], + [-76.414156, 37.093561], + [-76.414286, 37.093622], + [-76.414526, 37.093633], + [-76.414979, 37.093594], + [-76.415015, 37.093589], + [-76.415834, 37.093485], + [-76.4166, 37.093388], + [-76.420967, 37.092827], + [-76.425253, 37.092277], + [-76.425384, 37.092261], + [-76.425419, 37.092285], + [-76.425453, 37.092308], + [-76.425498, 37.092339], + [-76.425507, 37.092345], + [-76.425512, 37.092348], + [-76.425521, 37.092354], + [-76.425652, 37.092441], + [-76.427248, 37.093527], + [-76.42881, 37.094589], + [-76.430371, 37.095652], + [-76.4308, 37.095588], + [-76.431228, 37.095525], + [-76.432939, 37.095271], + [-76.43465, 37.095018], + [-76.434826, 37.094992], + [-76.435003, 37.094966], + [-76.435117, 37.094949], + [-76.435158, 37.094943], + [-76.435262, 37.094927], + [-76.435521, 37.094889], + [-76.43853, 37.094443], + [-76.440426, 37.094162], + [-76.440683, 37.094124], + [-76.441688, 37.093976], + [-76.450504, 37.096648], + [-76.451472, 37.098152], + [-76.45434, 37.098694], + [-76.455172, 37.098852], + [-76.45836, 37.100582], + [-76.458518, 37.100668], + [-76.458673, 37.100752], + [-76.463385, 37.103608], + [-76.464073, 37.104852], + [-76.466673, 37.107152], + [-76.467388, 37.10799], + [-76.467772, 37.10844], + [-76.468326, 37.10909], + [-76.468518, 37.109315], + [-76.469156, 37.110063], + [-76.469528, 37.110499], + [-76.46977, 37.110782], + [-76.469846, 37.110871], + [-76.470068, 37.111132], + [-76.47095, 37.112165], + [-76.47096, 37.112177], + [-76.470972, 37.112192], + [-76.471046, 37.112279], + [-76.47112, 37.112365], + [-76.47125, 37.112517], + [-76.471562, 37.112883], + [-76.471638, 37.112972], + [-76.471695, 37.113039], + [-76.472028, 37.113429], + [-76.472116, 37.113532], + [-76.472172, 37.113598], + [-76.473075, 37.114657], + [-76.47319, 37.114858], + [-76.473307, 37.115016], + [-76.473337, 37.115056], + [-76.473352, 37.115071], + [-76.473505, 37.115231], + [-76.473832, 37.115544], + [-76.473871, 37.11559], + [-76.47398, 37.115725], + [-76.474036, 37.115836], + [-76.474282, 37.116327], + [-76.474308, 37.116361], + [-76.481239, 37.125448], + [-76.482347, 37.125689], + [-76.482507, 37.125726], + [-76.482531, 37.12574], + [-76.482165, 37.125932], + [-76.481742, 37.126154], + [-76.482575, 37.127153], + [-76.482627, 37.127216], + [-76.484621, 37.128723], + [-76.48577, 37.129592], + [-76.486124, 37.130046], + [-76.486245, 37.130202], + [-76.48625, 37.130208], + [-76.486674, 37.130752], + [-76.486915, 37.131048], + [-76.487541, 37.131818], + [-76.491834, 37.137097], + [-76.492818, 37.138307], + [-76.496584, 37.142939], + [-76.496709, 37.143092], + [-76.49673, 37.143118], + [-76.498392, 37.145161], + [-76.500056, 37.147207], + [-76.500264, 37.147453], + [-76.50027, 37.14746], + [-76.500313, 37.147511], + [-76.50357, 37.151237], + [-76.50456, 37.15237], + [-76.506012, 37.154032], + [-76.506103, 37.154136], + [-76.506243, 37.154295], + [-76.505179, 37.155456], + [-76.504879, 37.155788], + [-76.504465, 37.156249], + [-76.505583, 37.157265], + [-76.504903, 37.158017], + [-76.504455, 37.158513], + [-76.507202, 37.162215], + [-76.5079, 37.163155], + [-76.508001, 37.163297], + [-76.510615, 37.167012], + [-76.511593, 37.168402], + [-76.514169, 37.172082], + [-76.514872, 37.17308], + [-76.514987, 37.173231], + [-76.515104, 37.173192], + [-76.515069, 37.173347], + [-76.515058, 37.173402], + [-76.51501, 37.173707], + [-76.514944, 37.174415], + [-76.514882, 37.174752], + [-76.514804, 37.175241], + [-76.514779, 37.17541], + [-76.514768, 37.175568], + [-76.514775, 37.175726], + [-76.514806, 37.175914], + [-76.514852, 37.176067], + [-76.5149, 37.176188], + [-76.514963, 37.176312], + [-76.515057, 37.176462], + [-76.515166, 37.176605], + [-76.515264, 37.176714], + [-76.515773, 37.17737], + [-76.516157, 37.177955], + [-76.516232, 37.178049], + [-76.516339, 37.17816], + [-76.517072, 37.17867], + [-76.51716, 37.178737], + [-76.517437, 37.178643], + [-76.521739, 37.177243], + [-76.521786, 37.177228], + [-76.521988, 37.177168], + [-76.522192, 37.177114], + [-76.522398, 37.177068], + [-76.522605, 37.177028], + [-76.522814, 37.176996], + [-76.523023, 37.176971], + [-76.523233, 37.176953], + [-76.523277, 37.17695], + [-76.524108, 37.176898], + [-76.524327, 37.176885], + [-76.524408, 37.17688], + [-76.52445, 37.176877], + [-76.524734, 37.176863], + [-76.524688, 37.176593], + [-76.524661, 37.176433], + [-76.52471, 37.176428], + [-76.524914, 37.176405], + [-76.524993, 37.176396], + [-76.525166, 37.176628], + [-76.525351, 37.176627], + [-76.525626, 37.176635], + [-76.525668, 37.176707], + [-76.525875, 37.177052], + [-76.529914, 37.181402], + [-76.530351, 37.181844], + [-76.530438, 37.181932], + [-76.530699, 37.182198], + [-76.530811, 37.182312], + [-76.53246, 37.184162], + [-76.532545, 37.184257], + [-76.532651, 37.184376], + [-76.532975, 37.184852], + [-76.533707, 37.185496], + [-76.534075, 37.186152], + [-76.534891, 37.187032], + [-76.538572, 37.191016], + [-76.539194, 37.19169], + [-76.53934, 37.191848], + [-76.539676, 37.192252], + [-76.54518, 37.19828], + [-76.546376, 37.199652], + [-76.553476, 37.207852], + [-76.555676, 37.210254], + [-76.555864, 37.210469], + [-76.555952, 37.210569], + [-76.556481, 37.211172], + [-76.557012, 37.211779], + [-76.56028, 37.215514], + [-76.560394, 37.215644], + [-76.560615, 37.215896], + [-76.562443, 37.217986], + [-76.562676, 37.218252], + [-76.562895, 37.218515], + [-76.563224, 37.218909], + [-76.563676, 37.219452], + [-76.564447, 37.220104], + [-76.565094, 37.220652], + [-76.56539, 37.220329], + [-76.565719, 37.219969], + [-76.565768, 37.219915], + [-76.565838, 37.219838], + [-76.566541, 37.21907], + [-76.56726, 37.218161], + [-76.56777, 37.21752], + [-76.568002, 37.217228], + [-76.568196, 37.217192], + [-76.56838, 37.217153], + [-76.568501, 37.217128], + [-76.568694, 37.217083], + [-76.568702, 37.217081], + [-76.568797, 37.217059], + [-76.569873, 37.21682], + [-76.570074, 37.216775], + [-76.570177, 37.216752], + [-76.57029, 37.216525], + [-76.570677, 37.215752], + [-76.573977, 37.215752], + [-76.574375, 37.213961], + [-76.574553, 37.213162], + [-76.574577, 37.213052], + [-76.575076, 37.212979], + [-76.57537, 37.213021], + [-76.576473, 37.213087], + [-76.57724, 37.213006], + [-76.577506, 37.212958], + [-76.579608, 37.212926], + [-76.580781, 37.212905], + [-76.581577, 37.212852], + [-76.581581, 37.212822], + [-76.581715, 37.212798], + [-76.581883, 37.21276], + [-76.582077, 37.212713], + [-76.582317, 37.212652], + [-76.58237, 37.212638], + [-76.582448, 37.212607], + [-76.582489, 37.212621], + [-76.583125, 37.212681], + [-76.584092, 37.212762], + [-76.586322, 37.212972], + [-76.58753, 37.213093], + [-76.587651, 37.213166], + [-76.588041, 37.21339], + [-76.588259, 37.213515], + [-76.588878, 37.213853], + [-76.589381, 37.214114], + [-76.589748, 37.214296], + [-76.590017, 37.214429], + [-76.590663, 37.214732], + [-76.591485, 37.21509], + [-76.591477, 37.215032], + [-76.591453, 37.214861], + [-76.591437, 37.214746], + [-76.591434, 37.214728], + [-76.591482, 37.21472], + [-76.591475, 37.214682], + [-76.591523, 37.214355], + [-76.591638, 37.21426], + [-76.591677, 37.214232], + [-76.591837, 37.214424], + [-76.591879, 37.214507], + [-76.591919, 37.214588], + [-76.592029, 37.214808], + [-76.592213, 37.215049], + [-76.592412, 37.215311], + [-76.59254, 37.215479], + [-76.592545, 37.215485], + [-76.592568, 37.215516], + [-76.592583, 37.215535], + [-76.592603, 37.215561], + [-76.592645, 37.215616], + [-76.5927, 37.215688], + [-76.592742, 37.215756], + [-76.592866, 37.215955], + [-76.592972, 37.216127], + [-76.593533, 37.217032], + [-76.593741, 37.217864], + [-76.594237, 37.218744], + [-76.594493, 37.2194], + [-76.594893, 37.220008], + [-76.595065, 37.221128], + [-76.595101, 37.222232], + [-76.594669, 37.22316], + [-76.594365, 37.223992], + [-76.594633, 37.225395], + [-76.594726, 37.225913], + [-76.594813, 37.226296], + [-76.594799, 37.226611], + [-76.594781, 37.227], + [-76.594653, 37.227864], + [-76.594717, 37.228142], + [-76.594835, 37.228659], + [-76.594914, 37.229473], + [-76.594935, 37.22951], + [-76.595021, 37.230456], + [-76.595358, 37.231061], + [-76.595362, 37.231069], + [-76.595645, 37.231576], + [-76.596349, 37.232376], + [-76.597309, 37.233256], + [-76.598141, 37.23356], + [-76.598957, 37.23404], + [-76.599261, 37.234696], + [-76.599821, 37.235096], + [-76.600285, 37.235672], + [-76.60032, 37.235755], + [-76.600442, 37.236039], + [-76.600493, 37.236158], + [-76.600525, 37.236232], + [-76.600749, 37.23692], + [-76.600813, 37.237624], + [-76.601117, 37.2382], + [-76.603197, 37.237832], + [-76.603457, 37.237803], + [-76.604667, 37.237667], + [-76.604682, 37.237665], + [-76.606336, 37.23748], + [-76.606495, 37.237458], + [-76.60947, 37.237048], + [-76.613636, 37.236512], + [-76.614015, 37.236463], + [-76.614482, 37.236403], + [-76.614579, 37.23639], + [-76.614862, 37.236364], + [-76.61491, 37.23636], + [-76.615496, 37.236308], + [-76.615663, 37.236293], + [-76.616288, 37.236237], + [-76.616346, 37.236232], + [-76.617196, 37.236155], + [-76.617224, 37.236152], + [-76.617582, 37.23612], + [-76.61804, 37.236033], + [-76.621118, 37.235448], + [-76.623004, 37.2351], + [-76.623198, 37.235064], + [-76.624518, 37.234338], + [-76.624757, 37.234206], + [-76.625763, 37.233647], + [-76.625918, 37.23356], + [-76.626093, 37.233465], + [-76.626334, 37.233336], + [-76.626379, 37.233305], + [-76.626386, 37.2333], + [-76.626583, 37.233166], + [-76.62673, 37.233066], + [-76.626941, 37.232921], + [-76.627182, 37.232649], + [-76.627427, 37.232473], + [-76.627603, 37.232347], + [-76.627624, 37.232332], + [-76.627689, 37.232285], + [-76.627838, 37.232543], + [-76.628003, 37.232796], + [-76.628123, 37.23296], + [-76.628316, 37.233199], + [-76.628453, 37.233355], + [-76.628597, 37.233506], + [-76.628825, 37.233724], + [-76.628914, 37.233801], + [-76.629068, 37.233934], + [-76.629229, 37.23406], + [-76.629932, 37.234639], + [-76.63014, 37.23481], + [-76.63018, 37.234843], + [-76.630197, 37.234857], + [-76.630207, 37.234865], + [-76.630241, 37.234893], + [-76.63028, 37.234925], + [-76.630364, 37.234994], + [-76.630503, 37.235108], + [-76.630566, 37.23516], + [-76.63058, 37.235171], + [-76.630721, 37.235287], + [-76.630752, 37.235313], + [-76.630768, 37.235326], + [-76.630984, 37.235481], + [-76.631021, 37.235508], + [-76.631288, 37.235683], + [-76.63143, 37.235766], + [-76.631471, 37.23579], + [-76.631756, 37.235946], + [-76.631825, 37.23598], + [-76.631953, 37.236042], + [-76.632088, 37.236102], + [-76.632252, 37.236176], + [-76.632384, 37.236228], + [-76.632558, 37.236296], + [-76.632724, 37.236352], + [-76.632848, 37.236394], + [-76.632972, 37.236431], + [-76.633001, 37.23644], + [-76.633132, 37.23648], + [-76.633202, 37.236501], + [-76.633243, 37.236513], + [-76.633346, 37.23654], + [-76.633568, 37.23659], + [-76.633681, 37.236613], + [-76.633729, 37.236623], + [-76.633805, 37.236638], + [-76.633868, 37.23665], + [-76.634636, 37.236804], + [-76.634666, 37.23681], + [-76.634788, 37.236835], + [-76.636625, 37.237205], + [-76.636787, 37.23724], + [-76.638594, 37.237631], + [-76.639827, 37.237897], + [-76.640159, 37.237971], + [-76.641098, 37.23818], + [-76.642024, 37.238387], + [-76.644028, 37.238823], + [-76.644712, 37.238979], + [-76.645052, 37.23905], + [-76.646074, 37.239282], + [-76.646318, 37.239337], + [-76.646405, 37.239356], + [-76.647472, 37.239594], + [-76.647846, 37.239498], + [-76.647903, 37.239483], + [-76.648574, 37.239305], + [-76.648648, 37.239301], + [-76.648739, 37.239296], + [-76.649045, 37.23928], + [-76.649207, 37.239271], + [-76.651279, 37.239161], + [-76.65279, 37.240181], + [-76.653151, 37.240425], + [-76.65322, 37.240467], + [-76.653477, 37.240621], + [-76.653791, 37.240809], + [-76.654204, 37.241001], + [-76.654687, 37.241225], + [-76.65505, 37.241541], + [-76.655183, 37.241657], + [-76.655727, 37.242089], + [-76.656618, 37.242966], + [-76.656733, 37.243079], + [-76.657663, 37.244121], + [-76.658686, 37.245144], + [-76.659182, 37.24565], + [-76.659266, 37.245736], + [-76.659967, 37.246457], + [-76.660303, 37.246921], + [-76.660396, 37.247139], + [-76.660418, 37.247191], + [-76.660527, 37.247449], + [-76.660555, 37.247648], + [-76.660623, 37.248136], + [-76.660735, 37.248569], + [-76.660679, 37.249134], + [-76.660661, 37.249313], + [-76.660635, 37.249579], + [-76.660795, 37.249761], + [-76.661218, 37.250254], + [-76.661389, 37.250454], + [-76.661427, 37.250499], + [-76.66144, 37.250514], + [-76.661517, 37.250604], + [-76.661555, 37.250649], + [-76.661601, 37.250702], + [-76.661656, 37.250767], + [-76.661781, 37.250916], + [-76.661813, 37.250954], + [-76.661879, 37.251032], + [-76.661888, 37.251042], + [-76.66195, 37.25111], + [-76.662052, 37.251221], + [-76.662262, 37.251424], + [-76.662317, 37.251478], + [-76.662373, 37.251528], + [-76.662445, 37.251594], + [-76.662468, 37.251616], + [-76.662311, 37.251707], + [-76.6625, 37.25195], + [-76.662889, 37.252452], + [-76.662971, 37.252515], + [-76.663136, 37.252643], + [-76.663183, 37.25268], + [-76.66326, 37.252815], + [-76.663297, 37.252933], + [-76.663606, 37.253911], + [-76.663588, 37.253949], + [-76.663553, 37.254028], + [-76.663524, 37.254132], + [-76.66351, 37.254229], + [-76.663504, 37.254273], + [-76.663505, 37.254497], + [-76.663505, 37.254555], + [-76.663509, 37.254608], + [-76.663544, 37.255093], + [-76.663545, 37.25511], + [-76.663593, 37.255768], + [-76.663639, 37.256409], + [-76.663636, 37.25666], + [-76.663604, 37.256858], + [-76.663602, 37.25687], + [-76.663569, 37.257025], + [-76.663548, 37.2571], + [-76.663542, 37.257123], + [-76.663531, 37.257163], + [-76.663443, 37.257392], + [-76.663497, 37.257442], + [-76.663554, 37.257514], + [-76.663593, 37.257592], + [-76.663643, 37.257777], + [-76.663683, 37.25799], + [-76.6637, 37.258115], + [-76.663752, 37.258405], + [-76.663754, 37.258415], + [-76.663794, 37.258637], + [-76.663881, 37.259022], + [-76.663885, 37.259037], + [-76.663968, 37.259355], + [-76.66401, 37.259516], + [-76.664027, 37.259585], + [-76.664049, 37.25967], + [-76.664062, 37.259722], + [-76.664069, 37.259748], + [-76.664079, 37.259788], + [-76.664084, 37.259804], + [-76.664131, 37.259967], + [-76.664237, 37.260334], + [-76.664233, 37.260382], + [-76.664212, 37.260428], + [-76.664136, 37.260513], + [-76.664174, 37.260554], + [-76.664261, 37.260662], + [-76.664291, 37.260705], + [-76.664338, 37.260773], + [-76.66442, 37.260919], + [-76.664464, 37.261023], + [-76.664468, 37.261034], + [-76.664575, 37.261347], + [-76.664676, 37.261679], + [-76.664731, 37.261861], + [-76.664763, 37.26195], + [-76.664875, 37.262265], + [-76.664938, 37.262426], + [-76.66527, 37.26316], + [-76.665276, 37.263174], + [-76.665463, 37.263585], + [-76.665555, 37.263744], + [-76.665663, 37.263897], + [-76.665794, 37.264041], + [-76.665826, 37.26407], + [-76.66597, 37.264204], + [-76.666895, 37.26493], + [-76.667115, 37.265081], + [-76.667167, 37.265112], + [-76.667341, 37.265217], + [-76.667394, 37.265249], + [-76.667589, 37.265351], + [-76.667953, 37.265513], + [-76.668001, 37.265534], + [-76.668511, 37.265759], + [-76.668654, 37.265819], + [-76.668802, 37.26588], + [-76.669101, 37.265987], + [-76.669268, 37.266037], + [-76.669274, 37.266039], + [-76.669568, 37.266105], + [-76.669799, 37.26614], + [-76.66987, 37.266147], + [-76.669939, 37.266153], + [-76.669987, 37.266158], + [-76.670167, 37.266166], + [-76.670435, 37.266167], + [-76.670543, 37.26616], + [-76.670656, 37.266152], + [-76.670695, 37.266149], + [-76.670949, 37.266122], + [-76.67205, 37.266006], + [-76.672253, 37.265986], + [-76.672464, 37.265968], + [-76.673018, 37.265937], + [-76.674612, 37.265893], + [-76.675043, 37.265875], + [-76.675126, 37.265871], + [-76.675151, 37.265869], + [-76.675179, 37.265867], + [-76.675254, 37.265862], + [-76.675698, 37.265822], + [-76.676077, 37.265772], + [-76.6761, 37.265769], + [-76.67613, 37.265766], + [-76.67664, 37.265707], + [-76.677213, 37.265631], + [-76.677227, 37.265629], + [-76.677608, 37.265585], + [-76.677909, 37.265563], + [-76.678112, 37.265558], + [-76.678367, 37.26556], + [-76.678387, 37.26556], + [-76.678421, 37.265562], + [-76.678877, 37.265585], + [-76.679259, 37.265615], + [-76.679406, 37.265641], + [-76.67947, 37.265659], + [-76.679549, 37.265681], + [-76.679693, 37.265738], + [-76.679833, 37.265802], + [-76.679999, 37.265892], + [-76.680114, 37.265974], + [-76.680466, 37.266245], + [-76.681811, 37.267308], + [-76.681971, 37.267437], + [-76.682452, 37.267804], + [-76.682911, 37.268173], + [-76.68343, 37.268575], + [-76.684035, 37.269058], + [-76.684155, 37.269169], + [-76.684293, 37.269314], + [-76.684417, 37.269468], + [-76.684535, 37.269662], + [-76.684612, 37.269814], + [-76.684653, 37.269911], + [-76.684707, 37.270075], + [-76.68475, 37.270284], + [-76.684784, 37.270488], + [-76.684798, 37.270673], + [-76.684788, 37.270776], + [-76.684515, 37.271184], + [-76.684048, 37.271257], + [-76.683856, 37.272025], + [-76.683648, 37.272649], + [-76.683417, 37.273035], + [-76.683358, 37.273132], + [-76.683168, 37.273406], + [-76.68312, 37.273475], + [-76.683105, 37.273497], + [-76.683072, 37.273545], + [-76.683059, 37.273556], + [-76.682672, 37.273881], + [-76.682048, 37.274185], + [-76.681249, 37.274441], + [-76.680337, 37.274681], + [-76.680284, 37.274688], + [-76.680112, 37.274713], + [-76.678817, 37.275081], + [-76.678112, 37.275465], + [-76.677896, 37.27563], + [-76.677568, 37.275881], + [-76.677463, 37.276004], + [-76.67728, 37.276217], + [-76.677152, 37.276489], + [-76.677104, 37.27683], + [-76.677056, 37.277177], + [-76.6772, 37.277673], + [-76.677392, 37.278313], + [-76.677504, 37.278505], + [-76.677535, 37.278566], + [-76.677664, 37.278825], + [-76.67776, 37.279017], + [-76.67816, 37.280121], + [-76.678192, 37.280173], + [-76.678321, 37.280386], + [-76.67842, 37.280548], + [-76.678455, 37.280605], + [-76.679332, 37.281027], + [-76.679376, 37.281049], + [-76.679713, 37.281211], + [-76.680657, 37.281824], + [-76.680496, 37.283161], + [-76.680496, 37.284561], + [-76.680172, 37.285924], + [-76.680235, 37.286719], + [-76.680304, 37.287577], + [-76.680576, 37.289144], + [-76.680959, 37.290808], + [-76.681136, 37.292072], + [-76.681184, 37.292728], + [-76.681291, 37.293155], + [-76.681528, 37.293003], + [-76.68172, 37.292811], + [-76.68183, 37.292717], + [-76.681885, 37.292629], + [-76.681927, 37.292531], + [-76.68192, 37.292179], + [-76.681885, 37.292108], + [-76.681659, 37.29202], + [-76.6817, 37.291976], + [-76.681837, 37.291954], + [-76.68192, 37.29197], + [-76.681968, 37.291981], + [-76.68203, 37.292053], + [-76.682023, 37.292179], + [-76.681982, 37.292333], + [-76.682002, 37.292476], + [-76.682037, 37.292547], + [-76.682099, 37.292624], + [-76.682257, 37.292679], + [-76.682539, 37.292717], + [-76.682869, 37.292811], + [-76.683426, 37.293003], + [-76.683776, 37.293162], + [-76.684168, 37.293311], + [-76.68489, 37.293497], + [-76.685055, 37.293569], + [-76.685179, 37.293646], + [-76.685234, 37.293734], + [-76.68533, 37.293789], + [-76.68544, 37.293794], + [-76.685667, 37.293717], + [-76.685853, 37.293547], + [-76.685997, 37.293437], + [-76.686451, 37.293124], + [-76.686857, 37.292965], + [-76.686874, 37.292961], + [-76.68698, 37.292938], + [-76.686975, 37.292966], + [-76.6871, 37.292936], + [-76.687815, 37.292954], + [-76.68821, 37.292931], + [-76.688709, 37.292729], + [-76.688838, 37.2927], + [-76.688999, 37.292665], + [-76.689141, 37.292678], + [-76.689263, 37.29269], + [-76.689745, 37.292805], + [-76.690219, 37.292663], + [-76.690391, 37.292272], + [-76.690906, 37.29147], + [-76.691154, 37.291069], + [-76.691285, 37.290855], + [-76.691257, 37.290125], + [-76.690824, 37.289707], + [-76.690707, 37.28907], + [-76.690913, 37.288724], + [-76.691656, 37.288081], + [-76.691656, 37.288053], + [-76.691738, 37.287466], + [-76.692398, 37.286988], + [-76.692914, 37.286828], + [-76.693113, 37.286691], + [-76.693368, 37.286642], + [-76.693856, 37.286762], + [-76.693945, 37.286642], + [-76.694516, 37.286438], + [-76.694703, 37.286116], + [-76.69471, 37.286103], + [-76.694832, 37.285894], + [-76.6951, 37.285708], + [-76.696214, 37.285685], + [-76.696874, 37.285383], + [-76.697988, 37.285295], + [-76.698503, 37.285136], + [-76.699101, 37.284768], + [-76.699672, 37.28413], + [-76.699729, 37.284086], + [-76.699742, 37.284076], + [-76.699752, 37.284069], + [-76.699767, 37.284058], + [-76.699789, 37.284041], + [-76.700467, 37.283522], + [-76.700992, 37.28312], + [-76.701123, 37.28288], + [-76.701529, 37.282969], + [-76.701632, 37.282992], + [-76.701761, 37.28302], + [-76.701837, 37.283037], + [-76.70214, 37.283158], + [-76.702346, 37.283141], + [-76.702772, 37.283075], + [-76.702903, 37.283075], + [-76.70324, 37.283134], + [-76.703925, 37.282945], + [-76.705074, 37.282601], + [-76.70605, 37.282361], + [-76.706849, 37.282265], + [-76.708513, 37.282297], + [-76.709777, 37.282297], + [-76.709746, 37.281634], + [-76.709745, 37.281619], + [-76.709745, 37.281609], + [-76.709729, 37.281161], + [-76.70973, 37.281149], + [-76.709848, 37.280194], + [-76.709857, 37.280121], + [-76.71001, 37.279147], + [-76.710033, 37.279001], + [-76.710049, 37.277657], + [-76.710369, 37.277657], + [-76.711009, 37.277865], + [-76.711561, 37.278223], + [-76.71187, 37.278306], + [-76.711965, 37.278344], + [-76.712385, 37.278554], + [-76.712714, 37.278741], + [-76.712783, 37.278779], + [-76.713217, 37.279049], + [-76.713825, 37.279488], + [-76.713866, 37.279518], + [-76.714166, 37.279699], + [-76.714341, 37.279822], + [-76.714462, 37.279916], + [-76.714764, 37.280153], + [-76.714847, 37.280218], + [-76.715316, 37.280569], + [-76.71566, 37.280903], + [-76.716642, 37.281873], + [-76.717121, 37.282345], + [-76.717905, 37.283257], + [-76.718385, 37.284073], + [-76.718604, 37.284372], + [-76.718617, 37.28439], + [-76.719089, 37.285033], + [-76.719221, 37.285248], + [-76.719345, 37.285449], + [-76.719569, 37.285897], + [-76.719574, 37.285921], + [-76.719662, 37.286096], + [-76.719715, 37.2862], + [-76.719752, 37.286273], + [-76.720064, 37.286732], + [-76.720247, 37.287088], + [-76.720498, 37.287576], + [-76.720809, 37.288369], + [-76.720959, 37.288695], + [-76.721106, 37.289045], + [-76.721534, 37.290007], + [-76.721731, 37.290466], + [-76.722583, 37.292415], + [-76.723093, 37.293581], + [-76.723167, 37.293751], + [-76.723514, 37.293863], + [-76.72377, 37.294418], + [-76.723956, 37.294846], + [-76.724181, 37.295363], + [-76.724298, 37.295633], + [-76.725491, 37.295199], + [-76.725611, 37.295441], + [-76.725714, 37.29565], + [-76.725782, 37.295789], + [-76.725961, 37.296152], + [-76.72606, 37.296345], + [-76.726253, 37.296736], + [-76.726564, 37.297373], + [-76.726842, 37.297929], + [-76.727036, 37.29832], + [-76.727266, 37.29879], + [-76.727316, 37.298917], + [-76.727375, 37.299099], + [-76.727397, 37.299175], + [-76.727437, 37.29935], + [-76.727469, 37.299553], + [-76.727563, 37.300334], + [-76.727628, 37.300834], + [-76.727548, 37.300955], + [-76.72747, 37.301096], + [-76.727441, 37.3011], + [-76.726985, 37.301168], + [-76.727201, 37.301824], + [-76.72715, 37.302152], + [-76.727138, 37.302232], + [-76.727129, 37.302323], + [-76.727089, 37.302737], + [-76.727116, 37.302799], + [-76.727211, 37.303061], + [-76.727282, 37.303328], + [-76.727321, 37.303554], + [-76.727347, 37.303806], + [-76.727368, 37.304001], + [-76.727409, 37.304221], + [-76.72756, 37.304816], + [-76.72759, 37.304928], + [-76.727894, 37.306057], + [-76.728026, 37.306482], + [-76.728125, 37.306733], + [-76.728307, 37.30711], + [-76.728432, 37.307349], + [-76.728436, 37.307356], + [-76.728536, 37.307546], + [-76.728742, 37.307974], + [-76.728764, 37.308023], + [-76.728822, 37.308185], + [-76.728905, 37.308458], + [-76.728951, 37.308677], + [-76.728975, 37.308884], + [-76.728984, 37.309145], + [-76.728975, 37.309381], + [-76.728935, 37.309798], + [-76.728932, 37.310107], + [-76.728946, 37.310315], + [-76.72897, 37.31048], + [-76.729019, 37.310703], + [-76.729046, 37.310821], + [-76.729075, 37.310933], + [-76.729201, 37.311427], + [-76.729362, 37.312057], + [-76.729528, 37.312681], + [-76.729603, 37.312986], + [-76.729719, 37.313463], + [-76.729774, 37.313648], + [-76.72984, 37.313822], + [-76.729911, 37.313963], + [-76.729919, 37.313978], + [-76.729934, 37.314008], + [-76.730045, 37.314188], + [-76.730174, 37.314365], + [-76.730277, 37.314515], + [-76.730283, 37.314524], + [-76.730374, 37.314674], + [-76.73039, 37.314704], + [-76.730479, 37.314875], + [-76.730618, 37.315202], + [-76.730771, 37.315528], + [-76.730887, 37.315732], + [-76.730992, 37.315892], + [-76.731051, 37.315971], + [-76.731138, 37.316086], + [-76.731149, 37.3161], + [-76.731395, 37.316413], + [-76.731448, 37.31648], + [-76.731535, 37.316586], + [-76.73165, 37.316707], + [-76.731778, 37.316818], + [-76.731893, 37.316902], + [-76.731999, 37.316967], + [-76.732044, 37.316994], + [-76.732746, 37.317342], + [-76.733253, 37.317594], + [-76.733491, 37.317731], + [-76.733567, 37.317786], + [-76.733685, 37.317887], + [-76.733789, 37.317997], + [-76.733879, 37.318115], + [-76.733937, 37.318211], + [-76.733978, 37.318299], + [-76.734029, 37.318441], + [-76.734061, 37.318586], + [-76.734106, 37.319023], + [-76.734124, 37.319238], + [-76.734131, 37.319303], + [-76.734174, 37.319721], + [-76.734194, 37.319831], + [-76.734227, 37.31997], + [-76.734287, 37.320172], + [-76.734366, 37.320366], + [-76.73442, 37.320465], + [-76.734451, 37.320521], + [-76.734548, 37.320691], + [-76.734717, 37.32096], + [-76.734772, 37.321046], + [-76.734777, 37.321054], + [-76.73561, 37.322389], + [-76.735675, 37.322502], + [-76.735698, 37.322548], + [-76.735712, 37.322577], + [-76.73577, 37.322694], + [-76.735847, 37.322891], + [-76.735893, 37.323049], + [-76.73593, 37.323247], + [-76.73595, 37.323447], + [-76.735949, 37.323645], + [-76.735908, 37.324417], + [-76.735877, 37.3247], + [-76.735863, 37.324788], + [-76.735823, 37.32497], + [-76.735752, 37.325184], + [-76.735557, 37.325814], + [-76.735526, 37.325954], + [-76.735511, 37.326068], + [-76.735505, 37.326119], + [-76.735504, 37.326172], + [-76.735502, 37.326227], + [-76.7355, 37.326319], + [-76.735515, 37.326545], + [-76.735556, 37.326815], + [-76.735568, 37.326947], + [-76.735565, 37.327053], + [-76.735544, 37.327185], + [-76.73546, 37.327467], + [-76.735309, 37.327877], + [-76.735257, 37.328018], + [-76.735144, 37.328327], + [-76.735002, 37.328688], + [-76.734788, 37.329183], + [-76.734766, 37.329248], + [-76.73473, 37.329351], + [-76.734668, 37.329436], + [-76.734621, 37.329527], + [-76.734596, 37.329604], + [-76.734562, 37.329763], + [-76.734543, 37.329939], + [-76.734528, 37.330189], + [-76.734526, 37.330227], + [-76.734519, 37.330363], + [-76.734496, 37.330806], + [-76.734509, 37.331036], + [-76.73454, 37.331264], + [-76.734555, 37.331333], + [-76.734578, 37.331434], + [-76.734643, 37.331637], + [-76.734667, 37.331692], + [-76.734839, 37.33181], + [-76.734886, 37.331843], + [-76.734958, 37.331892], + [-76.73539, 37.332114], + [-76.735498, 37.33219], + [-76.73565, 37.332285], + [-76.736001, 37.332456], + [-76.736282, 37.332576], + [-76.736303, 37.332585], + [-76.736323, 37.332593], + [-76.736426, 37.332633], + [-76.736633, 37.332721], + [-76.736914, 37.332831], + [-76.73709, 37.332891], + [-76.737116, 37.3329], + [-76.737172, 37.332917], + [-76.737206, 37.332925], + [-76.737364, 37.332962], + [-76.737719, 37.333022], + [-76.737962, 37.333076], + [-76.738189, 37.33315], + [-76.73845, 37.333257], + [-76.738701, 37.333382], + [-76.738725, 37.333394], + [-76.738953, 37.333511], + [-76.739116, 37.333589], + [-76.739185, 37.333622], + [-76.739428, 37.333737], + [-76.73963, 37.333827], + [-76.739973, 37.333967], + [-76.740223, 37.334058], + [-76.740384, 37.334116], + [-76.740576, 37.334185], + [-76.741006, 37.334335], + [-76.741164, 37.33439], + [-76.741995, 37.33468], + [-76.742287, 37.33478], + [-76.74308, 37.335053], + [-76.743258, 37.335114], + [-76.743268, 37.335117], + [-76.743877, 37.335329], + [-76.744187, 37.335447], + [-76.744418, 37.33555], + [-76.744693, 37.33569], + [-76.745223, 37.336], + [-76.745495, 37.336153], + [-76.745825, 37.33633], + [-76.745861, 37.336349], + [-76.746091, 37.336459], + [-76.746421, 37.336603], + [-76.746644, 37.336687], + [-76.746778, 37.336731], + [-76.747184, 37.336855], + [-76.747366, 37.336907], + [-76.747721, 37.336999], + [-76.747978, 37.33708], + [-76.748336, 37.337213], + [-76.748674, 37.337354], + [-76.749038, 37.337523], + [-76.749205, 37.33761], + [-76.749393, 37.337607], + [-76.749528, 37.337604], + [-76.749578, 37.337603], + [-76.74965, 37.337603], + [-76.749711, 37.337602], + [-76.749732, 37.337601], + [-76.749855, 37.3376], + [-76.749918, 37.337599], + [-76.750071, 37.337597], + [-76.750132, 37.337643], + [-76.75028, 37.337754], + [-76.75065, 37.337985], + [-76.750756, 37.338035], + [-76.75087, 37.338072], + [-76.751116, 37.338113], + [-76.751442, 37.338146], + [-76.751717, 37.338182], + [-76.751754, 37.33818], + [-76.751767, 37.33818], + [-76.751779, 37.338179], + [-76.751785, 37.338179], + [-76.751796, 37.338176], + [-76.751806, 37.338173], + [-76.751814, 37.33817], + [-76.751821, 37.338168], + [-76.751831, 37.338165], + [-76.751848, 37.33816], + [-76.751967, 37.338092], + [-76.752038, 37.338052], + [-76.752237, 37.33793], + [-76.75233, 37.338014], + [-76.752782, 37.33842], + [-76.753074, 37.338682], + [-76.754544, 37.340161], + [-76.754848, 37.340521], + [-76.754728, 37.340744], + [-76.75472, 37.34076], + [-76.754252, 37.342537], + [-76.754236, 37.342596], + [-76.753699, 37.344642], + [-76.753394, 37.345443], + [-76.753013, 37.345778], + [-76.753008, 37.34592], + [-76.753136, 37.346365], + [-76.753487, 37.34678], + [-76.753553, 37.347054], + [-76.7535, 37.347402], + [-76.753489, 37.347468], + [-76.753433, 37.347808], + [-76.753426, 37.347931], + [-76.753274, 37.348403], + [-76.753274, 37.348585], + [-76.753322, 37.34876], + [-76.753515, 37.348925], + [-76.753686, 37.34903], + [-76.75401, 37.349162], + [-76.754478, 37.349299], + [-76.754636, 37.349371], + [-76.754766, 37.349464], + [-76.754821, 37.349596], + [-76.75478, 37.34975], + [-76.75478, 37.349794], + [-76.75476, 37.349836], + [-76.754725, 37.349909], + [-76.754656, 37.35014], + [-76.754621, 37.350365], + [-76.754656, 37.35059], + [-76.754937, 37.351189], + [-76.75496, 37.351317], + [-76.754972, 37.351387], + [-76.75493, 37.351799], + [-76.754833, 37.352255], + [-76.754826, 37.35242], + [-76.754854, 37.352612], + [-76.754922, 37.352843], + [-76.754946, 37.352889], + [-76.754991, 37.352975], + [-76.754991, 37.353018], + [-76.755211, 37.353485], + [-76.755266, 37.353508], + [-76.755403, 37.353793], + [-76.755513, 37.354227] + ] + ], + [ + [ + [-82.662938, 36.921225], + [-82.661772, 36.918901], + [-82.661686, 36.918731], + [-82.661606, 36.918571], + [-82.661268, 36.91863], + [-82.660588, 36.918749], + [-82.660295, 36.918811], + [-82.660191, 36.918833], + [-82.658902, 36.919109], + [-82.658132, 36.918783], + [-82.656159, 36.917985], + [-82.655907, 36.917883], + [-82.655406, 36.917678], + [-82.655377, 36.917666], + [-82.655367, 36.917662], + [-82.655343, 36.917652], + [-82.655203, 36.917595], + [-82.655161, 36.917578], + [-82.655142, 36.91757], + [-82.655142, 36.917245], + [-82.653515, 36.917222], + [-82.651847, 36.917136], + [-82.651684, 36.917128], + [-82.651263, 36.917106], + [-82.650266, 36.9165], + [-82.650412, 36.912724], + [-82.646916, 36.914524], + [-82.646508, 36.914734], + [-82.646976, 36.913551], + [-82.647046, 36.913375], + [-82.648757, 36.90952], + [-82.647921, 36.907715], + [-82.646794, 36.904551], + [-82.643685, 36.900484], + [-82.640351, 36.902461], + [-82.637077, 36.904428], + [-82.636921, 36.904523], + [-82.637298, 36.906573], + [-82.633994, 36.906548], + [-82.633992, 36.906534], + [-82.63398, 36.906451], + [-82.633965, 36.906404], + [-82.633904, 36.906407], + [-82.629622, 36.906585], + [-82.629491, 36.906584], + [-82.624881, 36.906522], + [-82.624803, 36.906521], + [-82.618509, 36.906848], + [-82.617587, 36.906418], + [-82.616748, 36.90602], + [-82.615141, 36.905258], + [-82.613417, 36.910209], + [-82.613347, 36.910409], + [-82.613162, 36.910941], + [-82.612771, 36.912066], + [-82.612609, 36.91255], + [-82.615813, 36.912644], + [-82.61781, 36.912656], + [-82.613955, 36.913772], + [-82.618033, 36.915512], + [-82.620035, 36.914889], + [-82.620284, 36.914817], + [-82.61954, 36.915789], + [-82.619361, 36.916209], + [-82.619355, 36.916901], + [-82.619382, 36.917396], + [-82.61941, 36.917649], + [-82.619413, 36.917679], + [-82.619458, 36.918099], + [-82.619605, 36.918733], + [-82.61963, 36.918841], + [-82.619781, 36.919187], + [-82.619945, 36.91939], + [-82.620185, 36.919774], + [-82.620288, 36.92012], + [-82.620726, 36.920944], + [-82.620932, 36.921235], + [-82.621261, 36.921631], + [-82.621562, 36.922098], + [-82.621651, 36.9224], + [-82.621822, 36.922707], + [-82.621973, 36.923158], + [-82.622076, 36.923372], + [-82.622207, 36.923905], + [-82.622385, 36.924394], + [-82.622412, 36.924635], + [-82.622358, 36.924916], + [-82.622406, 36.925113], + [-82.622502, 36.925267], + [-82.622516, 36.925454], + [-82.622496, 36.925734], + [-82.622304, 36.926256], + [-82.622291, 36.926393], + [-82.622359, 36.926525], + [-82.622366, 36.926641], + [-82.622202, 36.927003], + [-82.622134, 36.927239], + [-82.622186, 36.927766], + [-82.621908, 36.928061], + [-82.620588, 36.929461], + [-82.618253, 36.930025], + [-82.618906, 36.931299], + [-82.617597, 36.932579], + [-82.616951, 36.932794], + [-82.614597, 36.933492], + [-82.612093, 36.934236], + [-82.609782, 36.934404], + [-82.605369, 36.934922], + [-82.6051, 36.934906], + [-82.6049, 36.93501], + [-82.598377, 36.935618], + [-82.598399, 36.935796], + [-82.598434, 36.935972], + [-82.598451, 36.936059], + [-82.598391, 36.936052], + [-82.598187, 36.936064], + [-82.598153, 36.936098], + [-82.598001, 36.936084], + [-82.597997, 36.936084], + [-82.597023, 36.935994], + [-82.595853, 36.935889], + [-82.590927, 36.934886], + [-82.59027, 36.935627], + [-82.590898, 36.937162], + [-82.590955, 36.937296], + [-82.590991, 36.937381], + [-82.591241, 36.937969], + [-82.591385, 36.938373], + [-82.592055, 36.94025], + [-82.592129, 36.940458], + [-82.592176, 36.940592], + [-82.592194, 36.940647], + [-82.591791, 36.94091], + [-82.591525, 36.941088], + [-82.590943, 36.941478], + [-82.590792, 36.941579], + [-82.590714, 36.941631], + [-82.590647, 36.941676], + [-82.590593, 36.941713], + [-82.590547, 36.941744], + [-82.590539, 36.941749], + [-82.589991, 36.942119], + [-82.589961, 36.942139], + [-82.589954, 36.942144], + [-82.589931, 36.94216], + [-82.589841, 36.94222], + [-82.589794, 36.942252], + [-82.589725, 36.942299], + [-82.589626, 36.942366], + [-82.589579, 36.942398], + [-82.589378, 36.942534], + [-82.589484, 36.943357], + [-82.589865, 36.943292], + [-82.590844, 36.943127], + [-82.591737, 36.94295], + [-82.591801, 36.942939], + [-82.591846, 36.94293], + [-82.594386, 36.942515], + [-82.595479, 36.942507], + [-82.597399, 36.94259], + [-82.597663, 36.94248], + [-82.597839, 36.942337], + [-82.597863, 36.942318], + [-82.598041, 36.942172], + [-82.598317, 36.941919], + [-82.598362, 36.941962], + [-82.598657, 36.94219], + [-82.598674, 36.942203], + [-82.597466, 36.943335], + [-82.597232, 36.943506], + [-82.596779, 36.943837], + [-82.595616, 36.944451], + [-82.595377, 36.944577], + [-82.594355, 36.945265], + [-82.594009, 36.945419], + [-82.593266, 36.945751], + [-82.593018, 36.945862], + [-82.592966, 36.945885], + [-82.592937, 36.945898], + [-82.592931, 36.945901], + [-82.59292, 36.945906], + [-82.592889, 36.94592], + [-82.592808, 36.945956], + [-82.592734, 36.945989], + [-82.592391, 36.946142], + [-82.592377, 36.946148], + [-82.592312, 36.946177], + [-82.591864, 36.946378], + [-82.591848, 36.946385], + [-82.591813, 36.946401], + [-82.591764, 36.946423], + [-82.591748, 36.94643], + [-82.591586, 36.946502], + [-82.591547, 36.946542], + [-82.591477, 36.946612], + [-82.591398, 36.946693], + [-82.591342, 36.946748], + [-82.591276, 36.946816], + [-82.591254, 36.946838], + [-82.591044, 36.947051], + [-82.590645, 36.947669], + [-82.590511, 36.947938], + [-82.590424, 36.948114], + [-82.590303, 36.948356], + [-82.588894, 36.951189], + [-82.589505, 36.951373], + [-82.589592, 36.951482], + [-82.593212, 36.956017], + [-82.59333, 36.956077], + [-82.593432, 36.956131], + [-82.597533, 36.958321], + [-82.597724, 36.958058], + [-82.597789, 36.957968], + [-82.597913, 36.957797], + [-82.597465, 36.957467], + [-82.597109, 36.956933], + [-82.597083, 36.956895], + [-82.597016, 36.956775], + [-82.596812, 36.956407], + [-82.595542, 36.956388], + [-82.595603, 36.956212], + [-82.596446, 36.955393], + [-82.596812, 36.955129], + [-82.596824, 36.954973], + [-82.599003, 36.956048], + [-82.598915, 36.956165], + [-82.598826, 36.956376], + [-82.598509, 36.956499], + [-82.599056, 36.956631], + [-82.598979, 36.956829], + [-82.598947, 36.95691], + [-82.59892, 36.95698], + [-82.599072, 36.957102], + [-82.599302, 36.957286], + [-82.600177, 36.957417], + [-82.601216, 36.957439], + [-82.601322, 36.957567], + [-82.601954, 36.958334], + [-82.601845, 36.958574], + [-82.602152, 36.958686], + [-82.602123, 36.958737], + [-82.60223, 36.958787], + [-82.60208, 36.959052], + [-82.602043, 36.959118], + [-82.601985, 36.959222], + [-82.601944, 36.959294], + [-82.601872, 36.959422], + [-82.601845, 36.959469], + [-82.602337, 36.959731], + [-82.60235, 36.959763], + [-82.602419, 36.959928], + [-82.6033, 36.959644], + [-82.60337, 36.959621], + [-82.603531, 36.959569], + [-82.603619, 36.959599], + [-82.604946, 36.959157], + [-82.605073, 36.959115], + [-82.605275, 36.95852], + [-82.605365, 36.958253], + [-82.605325, 36.958088], + [-82.605403, 36.958017], + [-82.605416, 36.957909], + [-82.605554, 36.95716], + [-82.605775, 36.957052], + [-82.605903, 36.95699], + [-82.606226, 36.955872], + [-82.606091, 36.955866], + [-82.606283, 36.955566], + [-82.606283, 36.954966], + [-82.606447, 36.954584], + [-82.606477, 36.954379], + [-82.60654, 36.953937], + [-82.606657, 36.953431], + [-82.606775, 36.953082], + [-82.606801, 36.953014], + [-82.606963, 36.952599], + [-82.607805, 36.95103], + [-82.608405, 36.950469], + [-82.609593, 36.949709], + [-82.610282, 36.949192], + [-82.61085, 36.948719], + [-82.611053, 36.948466], + [-82.611159, 36.948536], + [-82.611323, 36.948646], + [-82.611452, 36.948717], + [-82.611497, 36.948741], + [-82.611635, 36.948817], + [-82.612069, 36.949056], + [-82.614604, 36.950527], + [-82.61476, 36.950617], + [-82.614764, 36.950635], + [-82.614808, 36.950823], + [-82.614932, 36.951114], + [-82.615062, 36.951328], + [-82.615028, 36.951454], + [-82.614935, 36.951522], + [-82.614795, 36.951625], + [-82.614487, 36.951669], + [-82.614328, 36.951635], + [-82.614282, 36.951625], + [-82.614206, 36.951609], + [-82.614148, 36.951569], + [-82.613885, 36.951389], + [-82.613684, 36.951196], + [-82.613667, 36.951179], + [-82.613405, 36.950928], + [-82.613076, 36.95078], + [-82.612809, 36.950785], + [-82.612679, 36.950879], + [-82.61252, 36.951115], + [-82.612461, 36.951203], + [-82.612201, 36.951615], + [-82.612165, 36.951837], + [-82.612139, 36.951994], + [-82.612111, 36.952046], + [-82.611982, 36.952285], + [-82.611789, 36.9526], + [-82.61149, 36.953088], + [-82.611196, 36.953632], + [-82.611135, 36.953983], + [-82.610964, 36.954555], + [-82.611073, 36.954818], + [-82.611265, 36.955137], + [-82.6113, 36.955163], + [-82.611532, 36.955335], + [-82.611882, 36.955532], + [-82.612115, 36.955598], + [-82.612317, 36.955638], + [-82.61297, 36.955768], + [-82.613525, 36.95583], + [-82.613533, 36.955831], + [-82.613662, 36.955845], + [-82.614144, 36.95588], + [-82.614279, 36.95589], + [-82.614467, 36.955904], + [-82.614623, 36.955969], + [-82.614737, 36.956017], + [-82.614854, 36.956066], + [-82.614926, 36.956096], + [-82.614942, 36.956103], + [-82.61495, 36.956106], + [-82.614999, 36.956127], + [-82.615036, 36.956142], + [-82.615068, 36.956155], + [-82.615209, 36.956322], + [-82.615193, 36.956746], + [-82.615768, 36.956723], + [-82.616379, 36.956701], + [-82.616937, 36.956378], + [-82.617405, 36.956014], + [-82.617851, 36.955778], + [-82.617998, 36.955594], + [-82.618366, 36.955134], + [-82.618608, 36.955149], + [-82.619667, 36.955156], + [-82.619791, 36.955459], + [-82.620242, 36.954922], + [-82.622981, 36.955189], + [-82.623053, 36.955196], + [-82.623811, 36.955267], + [-82.622706, 36.953859], + [-82.622638, 36.953791], + [-82.622478, 36.95363], + [-82.622421, 36.953403], + [-82.625356, 36.952693], + [-82.626024, 36.95236], + [-82.626091, 36.952326], + [-82.626435, 36.952149], + [-82.626469, 36.952131], + [-82.628073, 36.951295], + [-82.628781, 36.951295], + [-82.630761, 36.951649], + [-82.633385, 36.952475], + [-82.633866, 36.952626], + [-82.633893, 36.952634], + [-82.633897, 36.952636], + [-82.634, 36.952446], + [-82.634047, 36.952358], + [-82.634094, 36.952275], + [-82.634105, 36.952255], + [-82.634144, 36.952195], + [-82.634255, 36.952052], + [-82.634382, 36.951917], + [-82.634516, 36.951798], + [-82.634522, 36.951793], + [-82.634997, 36.951373], + [-82.635154, 36.951211], + [-82.635282, 36.951049], + [-82.635532, 36.95071], + [-82.635625, 36.950569], + [-82.635636, 36.950549], + [-82.635672, 36.950484], + [-82.635725, 36.950387], + [-82.636005, 36.949671], + [-82.636008, 36.949664], + [-82.636033, 36.949594], + [-82.63606, 36.949512], + [-82.636108, 36.949336], + [-82.636165, 36.949047], + [-82.636213, 36.948864], + [-82.636257, 36.94875], + [-82.636331, 36.948597], + [-82.636589, 36.948149], + [-82.636695, 36.947889], + [-82.636768, 36.947636], + [-82.636822, 36.947503], + [-82.636894, 36.947376], + [-82.637191, 36.946961], + [-82.637339, 36.946776], + [-82.637346, 36.946768], + [-82.637426, 36.946669], + [-82.637661, 36.946413], + [-82.637802, 36.946252], + [-82.638345, 36.945576], + [-82.638518, 36.945388], + [-82.638704, 36.945208], + [-82.638973, 36.944988], + [-82.639366, 36.944697], + [-82.640005, 36.944251], + [-82.640132, 36.944173], + [-82.640301, 36.944087], + [-82.640443, 36.944028], + [-82.640902, 36.943903], + [-82.641071, 36.943847], + [-82.641164, 36.94381], + [-82.641341, 36.943727], + [-82.641523, 36.943621], + [-82.64167, 36.943522], + [-82.641842, 36.943388], + [-82.642, 36.943244], + [-82.642157, 36.943078], + [-82.64266, 36.942534], + [-82.643044, 36.942152], + [-82.643062, 36.94213], + [-82.643097, 36.94207], + [-82.643116, 36.941993], + [-82.643112, 36.941932], + [-82.643112, 36.941927], + [-82.643054, 36.941738], + [-82.642995, 36.941546], + [-82.642983, 36.941488], + [-82.642983, 36.941414], + [-82.643002, 36.941341], + [-82.643037, 36.941273], + [-82.643284, 36.940982], + [-82.644281, 36.939926], + [-82.644509, 36.93969], + [-82.644874, 36.939311], + [-82.645034, 36.939132], + [-82.645178, 36.938944], + [-82.645235, 36.938847], + [-82.645352, 36.938613], + [-82.645467, 36.938451], + [-82.645579, 36.938319], + [-82.645597, 36.938297], + [-82.645735, 36.93817], + [-82.645842, 36.938072], + [-82.64585, 36.938065], + [-82.645869, 36.938046], + [-82.645877, 36.938037], + [-82.645914, 36.937993], + [-82.645936, 36.937963], + [-82.64596, 36.937921], + [-82.645966, 36.937907], + [-82.645986, 36.937865], + [-82.646003, 36.937796], + [-82.646009, 36.937772], + [-82.646011, 36.93776], + [-82.646024, 36.937652], + [-82.64603, 36.937543], + [-82.646029, 36.937536], + [-82.646023, 36.937445], + [-82.646008, 36.937308], + [-82.645969, 36.937086], + [-82.645891, 36.936792], + [-82.645845, 36.936676], + [-82.645773, 36.936536], + [-82.6457, 36.936425], + [-82.645581, 36.936278], + [-82.645447, 36.936141], + [-82.645182, 36.935908], + [-82.645128, 36.935861], + [-82.645117, 36.935851], + [-82.645029, 36.935754], + [-82.645006, 36.935715], + [-82.644989, 36.935655], + [-82.644983, 36.935574], + [-82.644996, 36.935495], + [-82.645026, 36.935418], + [-82.645187, 36.935158], + [-82.645338, 36.934934], + [-82.645382, 36.934878], + [-82.645455, 36.934801], + [-82.645588, 36.934682], + [-82.645883, 36.934463], + [-82.646325, 36.934113], + [-82.646345, 36.934097], + [-82.646671, 36.93384], + [-82.646725, 36.933805], + [-82.64704, 36.933601], + [-82.647172, 36.933509], + [-82.647292, 36.933406], + [-82.647432, 36.933261], + [-82.647444, 36.933248], + [-82.64746, 36.933231], + [-82.647505, 36.933182], + [-82.64769, 36.932968], + [-82.647725, 36.932938], + [-82.647786, 36.932886], + [-82.647937, 36.932785], + [-82.648074, 36.932713], + [-82.648217, 36.932658], + [-82.648366, 36.932617], + [-82.648519, 36.932589], + [-82.649095, 36.932534], + [-82.649248, 36.932514], + [-82.649302, 36.932504], + [-82.64931, 36.932502], + [-82.649437, 36.932476], + [-82.649589, 36.932433], + [-82.649599, 36.93243], + [-82.650108, 36.932285], + [-82.650241, 36.932244], + [-82.650287, 36.93223], + [-82.650419, 36.93219], + [-82.650604, 36.932133], + [-82.65067, 36.932113], + [-82.650757, 36.932081], + [-82.651156, 36.931935], + [-82.651301, 36.931873], + [-82.651627, 36.931735], + [-82.651742, 36.931721], + [-82.65175, 36.93172], + [-82.65234, 36.931644], + [-82.652739, 36.931644], + [-82.652683, 36.930728], + [-82.652684, 36.930712], + [-82.652691, 36.930524], + [-82.652692, 36.930507], + [-82.652695, 36.930449], + [-82.652701, 36.930266], + [-82.652726, 36.929661], + [-82.654557, 36.929929], + [-82.654621, 36.929652], + [-82.654887, 36.929175], + [-82.655086, 36.928822], + [-82.655126, 36.928751], + [-82.65523, 36.928566], + [-82.655333, 36.928385], + [-82.655392, 36.928279], + [-82.655535, 36.927928], + [-82.655522, 36.927559], + [-82.655473, 36.926086], + [-82.655469, 36.925957], + [-82.655464, 36.925758], + [-82.655419, 36.925365], + [-82.654928, 36.925399], + [-82.654892, 36.92502], + [-82.655678, 36.924684], + [-82.655459, 36.923603], + [-82.657558, 36.922901], + [-82.662938, 36.921225] + ] + ], + [ + [ + [-82.243386, 36.595658], + [-82.242908, 36.59566], + [-82.242067, 36.595666], + [-82.241922, 36.595665], + [-82.237078, 36.595673], + [-82.235868, 36.595676], + [-82.235568, 36.595676], + [-82.235494, 36.595677], + [-82.235153, 36.595677], + [-82.235069, 36.595678], + [-82.234943, 36.595678], + [-82.234566, 36.595679], + [-82.234441, 36.59568], + [-82.234174, 36.595679], + [-82.234123, 36.595679], + [-82.233169, 36.595681], + [-82.232852, 36.595682], + [-82.232235, 36.595683], + [-82.230387, 36.595686], + [-82.229771, 36.595688], + [-82.22943, 36.595688], + [-82.229346, 36.595689], + [-82.228935, 36.595681], + [-82.228928, 36.595681], + [-82.227702, 36.595718], + [-82.227292, 36.595731], + [-82.227227, 36.595732], + [-82.227036, 36.595738], + [-82.226972, 36.59574], + [-82.226951, 36.595753], + [-82.226889, 36.595795], + [-82.226869, 36.595809], + [-82.226751, 36.595862], + [-82.226671, 36.595874], + [-82.226566, 36.595891], + [-82.226259, 36.595903], + [-82.226104, 36.59589], + [-82.226049, 36.595868], + [-82.22599, 36.595846], + [-82.225879, 36.595751], + [-82.225514, 36.595747], + [-82.224419, 36.595737], + [-82.224054, 36.595734], + [-82.224036, 36.595751], + [-82.223935, 36.595833], + [-82.223841, 36.59591], + [-82.223736, 36.595959], + [-82.223523, 36.59599], + [-82.22351, 36.59599], + [-82.223356, 36.595999], + [-82.223034, 36.596015], + [-82.222619, 36.596037], + [-82.222293, 36.596019], + [-82.222071, 36.595977], + [-82.222031, 36.59597], + [-82.221942, 36.595932], + [-82.22185, 36.59587], + [-82.221801, 36.595816], + [-82.221717, 36.595821], + [-82.221571, 36.595821], + [-82.220883, 36.595823], + [-82.220654, 36.595825], + [-82.220195, 36.595826], + [-82.218821, 36.595832], + [-82.218363, 36.595835], + [-82.217541, 36.595835], + [-82.215718, 36.595845], + [-82.215074, 36.595848], + [-82.214619, 36.59585], + [-82.214501, 36.59585], + [-82.214335, 36.595852], + [-82.21428, 36.595853], + [-82.213683, 36.595853], + [-82.213055, 36.595855], + [-82.212846, 36.595857], + [-82.212678, 36.595857], + [-82.212173, 36.59586], + [-82.212006, 36.595861], + [-82.211389, 36.595865], + [-82.210796, 36.595868], + [-82.210711, 36.595785], + [-82.210445, 36.595769], + [-82.210349, 36.595766], + [-82.210226, 36.595764], + [-82.210063, 36.595755], + [-82.209968, 36.595751], + [-82.209855, 36.595745], + [-82.209516, 36.595729], + [-82.209404, 36.595724], + [-82.209342, 36.59572], + [-82.209158, 36.59571], + [-82.209097, 36.595707], + [-82.209077, 36.595706], + [-82.209019, 36.595703], + [-82.209, 36.595702], + [-82.208804, 36.595696], + [-82.208217, 36.59568], + [-82.208022, 36.595675], + [-82.207988, 36.595674], + [-82.207887, 36.595671], + [-82.207854, 36.59567], + [-82.20778, 36.595667], + [-82.207558, 36.595661], + [-82.207485, 36.595659], + [-82.207413, 36.595657], + [-82.207198, 36.595653], + [-82.207127, 36.595652], + [-82.207073, 36.59565], + [-82.206914, 36.595646], + [-82.206861, 36.595645], + [-82.206753, 36.595641], + [-82.206727, 36.595641], + [-82.20645, 36.595634], + [-82.205621, 36.595613], + [-82.205345, 36.595607], + [-82.205287, 36.595605], + [-82.205115, 36.595601], + [-82.205058, 36.5956], + [-82.204767, 36.595592], + [-82.203893, 36.595569], + [-82.203857, 36.595569], + [-82.203603, 36.595562], + [-82.203458, 36.595557], + [-82.203023, 36.595545], + [-82.202944, 36.595543], + [-82.202848, 36.595543], + [-82.202666, 36.595537], + [-82.20203, 36.59552], + [-82.201818, 36.595515], + [-82.201604, 36.595509], + [-82.200962, 36.595492], + [-82.200749, 36.595487], + [-82.200557, 36.595481], + [-82.199793, 36.595461], + [-82.199778, 36.59546], + [-82.199733, 36.595459], + [-82.199719, 36.595459], + [-82.1996, 36.595454], + [-82.199128, 36.595438], + [-82.198951, 36.595433], + [-82.198421, 36.595418], + [-82.198245, 36.595413], + [-82.198219, 36.595412], + [-82.198144, 36.595409], + [-82.198119, 36.595409], + [-82.197997, 36.595406], + [-82.197631, 36.5954], + [-82.19751, 36.595398], + [-82.197459, 36.595396], + [-82.197309, 36.595391], + [-82.197259, 36.59539], + [-82.197231, 36.595388], + [-82.197149, 36.595385], + [-82.197122, 36.595385], + [-82.197012, 36.595381], + [-82.19701, 36.59538], + [-82.196676, 36.595371], + [-82.196565, 36.595369], + [-82.196398, 36.595364], + [-82.195897, 36.59535], + [-82.195731, 36.595346], + [-82.195664, 36.595344], + [-82.195465, 36.595338], + [-82.195399, 36.595337], + [-82.194814, 36.595322], + [-82.194706, 36.595318], + [-82.19468, 36.595318], + [-82.1946, 36.595315], + [-82.19436, 36.595309], + [-82.194281, 36.595307], + [-82.194054, 36.5953], + [-82.193936, 36.595297], + [-82.193374, 36.595278], + [-82.193148, 36.595271], + [-82.193067, 36.595269], + [-82.192824, 36.595265], + [-82.192744, 36.595264], + [-82.192711, 36.595263], + [-82.192642, 36.595262], + [-82.192615, 36.595261], + [-82.192584, 36.59526], + [-82.192416, 36.595254], + [-82.191912, 36.595238], + [-82.191744, 36.595233], + [-82.191711, 36.595232], + [-82.191615, 36.595229], + [-82.191584, 36.595228], + [-82.191468, 36.595225], + [-82.191121, 36.595216], + [-82.191006, 36.595214], + [-82.190924, 36.595211], + [-82.190596, 36.595203], + [-82.190513, 36.595201], + [-82.190265, 36.595195], + [-82.190183, 36.595193], + [-82.190099, 36.595191], + [-82.190036, 36.595189], + [-82.190005, 36.595187], + [-82.18989, 36.595184], + [-82.189834, 36.595182], + [-82.189744, 36.59518], + [-82.189327, 36.595168], + [-82.189239, 36.595165], + [-82.188976, 36.595158], + [-82.188889, 36.595156], + [-82.188875, 36.595155], + [-82.188836, 36.595154], + [-82.188823, 36.595154], + [-82.188733, 36.595152], + [-82.188694, 36.59515], + [-82.188678, 36.59515], + [-82.188308, 36.595137], + [-82.18818, 36.595133], + [-82.188084, 36.595129], + [-82.187799, 36.595119], + [-82.187704, 36.595116], + [-82.187252, 36.595108], + [-82.18714, 36.595107], + [-82.186428, 36.595096], + [-82.185384, 36.595083], + [-82.185251, 36.595039], + [-82.185143, 36.595069], + [-82.183415, 36.595014], + [-82.183352, 36.595012], + [-82.183139, 36.595006], + [-82.1825, 36.59499], + [-82.182406, 36.594988], + [-82.182288, 36.594985], + [-82.18196, 36.594977], + [-82.181879, 36.594975], + [-82.181695, 36.594967], + [-82.181144, 36.594946], + [-82.180961, 36.594939], + [-82.180933, 36.594937], + [-82.180888, 36.594936], + [-82.180851, 36.594934], + [-82.180824, 36.594934], + [-82.180711, 36.59493], + [-82.180371, 36.59492], + [-82.180313, 36.594919], + [-82.180259, 36.594917], + [-82.180224, 36.594915], + [-82.180121, 36.594912], + [-82.180087, 36.594912], + [-82.180067, 36.594911], + [-82.18001, 36.594909], + [-82.179991, 36.594909], + [-82.179879, 36.594906], + [-82.179856, 36.594906], + [-82.179628, 36.594899], + [-82.179547, 36.594896], + [-82.179436, 36.594894], + [-82.179379, 36.594892], + [-82.17921, 36.594887], + [-82.179154, 36.594886], + [-82.179071, 36.594883], + [-82.178823, 36.594876], + [-82.178741, 36.594874], + [-82.178672, 36.594871], + [-82.178465, 36.594865], + [-82.178396, 36.594864], + [-82.178198, 36.594858], + [-82.177605, 36.59484], + [-82.177408, 36.594835], + [-82.177188, 36.594828], + [-82.17669, 36.594815], + [-82.176531, 36.594809], + [-82.176312, 36.594803], + [-82.176269, 36.594801], + [-82.176143, 36.594797], + [-82.176101, 36.594796], + [-82.175737, 36.594787], + [-82.175163, 36.594775], + [-82.174773, 36.594766], + [-82.174647, 36.594761], + [-82.174541, 36.594758], + [-82.174323, 36.59474], + [-82.174285, 36.594733], + [-82.174253, 36.594728], + [-82.174233, 36.594723], + [-82.17408, 36.594684], + [-82.174029, 36.594672], + [-82.173994, 36.594663], + [-82.173976, 36.594659], + [-82.173891, 36.59463], + [-82.173858, 36.594619], + [-82.173841, 36.594617], + [-82.173794, 36.594614], + [-82.173775, 36.594614], + [-82.173471, 36.594613], + [-82.172559, 36.594611], + [-82.172256, 36.594611], + [-82.172048, 36.59461], + [-82.171424, 36.594608], + [-82.171217, 36.594608], + [-82.170956, 36.594607], + [-82.169916, 36.594603], + [-82.169895, 36.594602], + [-82.169823, 36.594601], + [-82.169545, 36.5946], + [-82.169453, 36.5946], + [-82.167953, 36.594595], + [-82.167331, 36.594592], + [-82.167218, 36.594592], + [-82.16212, 36.594615], + [-82.161318, 36.594625], + [-82.161152, 36.594626], + [-82.160657, 36.594633], + [-82.160492, 36.594636], + [-82.160286, 36.594639], + [-82.160241, 36.59464], + [-82.159671, 36.59465], + [-82.159466, 36.594654], + [-82.159409, 36.594654], + [-82.159217, 36.594656], + [-82.158644, 36.594666], + [-82.158454, 36.594669], + [-82.158243, 36.594672], + [-82.15761, 36.594684], + [-82.157431, 36.594688], + [-82.1574, 36.594688], + [-82.157239, 36.59469], + [-82.156757, 36.594699], + [-82.156597, 36.594702], + [-82.156005, 36.594711], + [-82.154229, 36.594739], + [-82.153638, 36.594749], + [-82.153618, 36.594751], + [-82.153568, 36.594765], + [-82.15335, 36.594758], + [-82.152483, 36.594732], + [-82.152194, 36.594724], + [-82.15193, 36.594716], + [-82.151865, 36.594714], + [-82.151215, 36.594697], + [-82.151002, 36.594722], + [-82.150977, 36.594723], + [-82.150574, 36.594716], + [-82.15051, 36.594717], + [-82.150106, 36.594735], + [-82.149758, 36.594761], + [-82.149317, 36.594761], + [-82.14889, 36.594731], + [-82.148574, 36.594725], + [-82.147379, 36.594728], + [-82.146283, 36.594731], + [-82.146074, 36.594731], + [-82.145001, 36.595859], + [-82.14481, 36.596059], + [-82.143953, 36.596961], + [-82.141397, 36.599651], + [-82.133053, 36.608429], + [-82.132977, 36.608509], + [-82.129234, 36.612448], + [-82.128537, 36.612951], + [-82.127946, 36.613378], + [-82.127918, 36.6134], + [-82.126469, 36.614532], + [-82.125589, 36.615219], + [-82.125459, 36.615321], + [-82.125008, 36.615673], + [-82.123614, 36.616739], + [-82.123047, 36.617172], + [-82.122551, 36.61755], + [-82.121803, 36.618121], + [-82.121149, 36.61862], + [-82.121051, 36.618695], + [-82.120921, 36.618795], + [-82.115303, 36.623108], + [-82.115294, 36.623115], + [-82.11269, 36.625115], + [-82.111814, 36.625843], + [-82.110643, 36.626819], + [-82.10738, 36.628117], + [-82.105746, 36.628767], + [-82.108317, 36.631894], + [-82.108486, 36.632099], + [-82.109569, 36.633415], + [-82.110051, 36.634], + [-82.110654, 36.634715], + [-82.110732, 36.634809], + [-82.113189, 36.637724], + [-82.112756, 36.637859], + [-82.111201, 36.638343], + [-82.110999, 36.638406], + [-82.11098, 36.638412], + [-82.110921, 36.638431], + [-82.110736, 36.638853], + [-82.110246, 36.639579], + [-82.110232, 36.639649], + [-82.110126, 36.640092], + [-82.110095, 36.640251], + [-82.110031, 36.640574], + [-82.108758, 36.641652], + [-82.10777, 36.642223], + [-82.107739, 36.642522], + [-82.107728, 36.642578], + [-82.107678, 36.642825], + [-82.107675, 36.642957], + [-82.107376, 36.643173], + [-82.107134, 36.64337], + [-82.107193, 36.643467], + [-82.107318, 36.643675], + [-82.107361, 36.643759], + [-82.107156, 36.643856], + [-82.107084, 36.643866], + [-82.106928, 36.643888], + [-82.106096, 36.644004], + [-82.106223, 36.644185], + [-82.106652, 36.644783], + [-82.105993, 36.645134], + [-82.105417, 36.645575], + [-82.10514, 36.645787], + [-82.104849, 36.645912], + [-82.103076, 36.646674], + [-82.103095, 36.646704], + [-82.103156, 36.646783], + [-82.103344, 36.647036], + [-82.10364, 36.647443], + [-82.103943, 36.647847], + [-82.104052, 36.647973], + [-82.104098, 36.648115], + [-82.104117, 36.648964], + [-82.104125, 36.649393], + [-82.10417, 36.65102], + [-82.10657, 36.651057], + [-82.106977, 36.651114], + [-82.107435, 36.651178], + [-82.107771, 36.650975], + [-82.107943, 36.650871], + [-82.108115, 36.650768], + [-82.10824, 36.650691], + [-82.108366, 36.650615], + [-82.108766, 36.650371], + [-82.109166, 36.650128], + [-82.109448, 36.649956], + [-82.109736, 36.649776], + [-82.109792, 36.649747], + [-82.109852, 36.64971], + [-82.110147, 36.649509], + [-82.110271, 36.649602], + [-82.110408, 36.649757], + [-82.110546, 36.649912], + [-82.110802, 36.6502], + [-82.111007, 36.650422], + [-82.111077, 36.650498], + [-82.111274, 36.650697], + [-82.116673, 36.65613], + [-82.117513, 36.655693], + [-82.119436, 36.657769], + [-82.119413, 36.657929], + [-82.119295, 36.658119], + [-82.119076, 36.658312], + [-82.119101, 36.658437], + [-82.119401, 36.658861], + [-82.119415, 36.658875], + [-82.11944, 36.658902], + [-82.119578, 36.658784], + [-82.119853, 36.65851], + [-82.120662, 36.657763], + [-82.1208, 36.65799], + [-82.120866, 36.65807], + [-82.121002, 36.658285], + [-82.119813, 36.659089], + [-82.118245, 36.65981], + [-82.117446, 36.66011], + [-82.1172, 36.660154], + [-82.117069, 36.66013], + [-82.116485, 36.660816], + [-82.116448, 36.660855], + [-82.116089, 36.661203], + [-82.115529, 36.661473], + [-82.114542, 36.661962], + [-82.114525, 36.662107], + [-82.114198, 36.664699], + [-82.116699, 36.667793], + [-82.116872, 36.667917], + [-82.119578, 36.669757], + [-82.121324, 36.671077], + [-82.121793, 36.671431], + [-82.122062, 36.671304], + [-82.122347, 36.671081], + [-82.122618, 36.670821], + [-82.123566, 36.672031], + [-82.124059, 36.672672], + [-82.124203, 36.672812], + [-82.124347, 36.672946], + [-82.124655, 36.673086], + [-82.124837, 36.673064], + [-82.124984, 36.673046], + [-82.125214, 36.672886], + [-82.125482, 36.67249], + [-82.127389, 36.672759], + [-82.127929, 36.673332], + [-82.127602, 36.673709], + [-82.12774, 36.673907], + [-82.128071, 36.67397], + [-82.128317, 36.673838], + [-82.128452, 36.674321], + [-82.128899, 36.675013], + [-82.129141, 36.675254], + [-82.12867, 36.67574], + [-82.128493, 36.676055], + [-82.128401, 36.676245], + [-82.128559, 36.676277], + [-82.128755, 36.676158], + [-82.128799, 36.676062], + [-82.128857, 36.675922], + [-82.128998, 36.675785], + [-82.129201, 36.675643], + [-82.129588, 36.67563], + [-82.129807, 36.675559], + [-82.130027, 36.675451], + [-82.130117, 36.675438], + [-82.130184, 36.67543], + [-82.130241, 36.675453], + [-82.13035, 36.675497], + [-82.130419, 36.67568], + [-82.130428, 36.675704], + [-82.130431, 36.675724], + [-82.130461, 36.675961], + [-82.130494, 36.676051], + [-82.130521, 36.676082], + [-82.130555, 36.67612], + [-82.130592, 36.67614], + [-82.130617, 36.676155], + [-82.130621, 36.676156], + [-82.130677, 36.676175], + [-82.130784, 36.676212], + [-82.130824, 36.67623], + [-82.130863, 36.676247], + [-82.130925, 36.676318], + [-82.130946, 36.676368], + [-82.130981, 36.676452], + [-82.13102, 36.676518], + [-82.131047, 36.676539], + [-82.131079, 36.676565], + [-82.131233, 36.676613], + [-82.131341, 36.676623], + [-82.131489, 36.676681], + [-82.131589, 36.676707], + [-82.131672, 36.676729], + [-82.131727, 36.676791], + [-82.13178, 36.676923], + [-82.131937, 36.676936], + [-82.132184, 36.676911], + [-82.132323, 36.67678], + [-82.132319, 36.676727], + [-82.132295, 36.676431], + [-82.132143, 36.67617], + [-82.131866, 36.675918], + [-82.131797, 36.675856], + [-82.131751, 36.675783], + [-82.131748, 36.67575], + [-82.131747, 36.675738], + [-82.131738, 36.67564], + [-82.131807, 36.675603], + [-82.131938, 36.675588], + [-82.132626, 36.675493], + [-82.132016, 36.675337], + [-82.131619, 36.675292], + [-82.131469, 36.675276], + [-82.131276, 36.675205], + [-82.131247, 36.675122], + [-82.131242, 36.675099], + [-82.131203, 36.674923], + [-82.131138, 36.674871], + [-82.131083, 36.674845], + [-82.130767, 36.674807], + [-82.130279, 36.672975], + [-82.130274, 36.672955], + [-82.130072, 36.672191], + [-82.13004, 36.67207], + [-82.130027, 36.672021], + [-82.129965, 36.671785], + [-82.129552, 36.671365], + [-82.129548, 36.671361], + [-82.129411, 36.671037], + [-82.129718, 36.670858], + [-82.13002, 36.670704], + [-82.130102, 36.670485], + [-82.129968, 36.670042], + [-82.130604, 36.670135], + [-82.132077, 36.670351], + [-82.132122, 36.670447], + [-82.132168, 36.670545], + [-82.132327, 36.670571], + [-82.13256, 36.670488], + [-82.132631, 36.670463], + [-82.132818, 36.670289], + [-82.133068, 36.670132], + [-82.133072, 36.670131], + [-82.133486, 36.670022], + [-82.133592, 36.670148], + [-82.133592, 36.670165], + [-82.133593, 36.670214], + [-82.133593, 36.670254], + [-82.133594, 36.670309], + [-82.134033, 36.670351], + [-82.134201, 36.670243], + [-82.135287, 36.670309], + [-82.135492, 36.670374], + [-82.135495, 36.670375], + [-82.135777, 36.670598], + [-82.135852, 36.670657], + [-82.135929, 36.670757], + [-82.135948, 36.670846], + [-82.135959, 36.670898], + [-82.136209, 36.670441], + [-82.136856, 36.670439], + [-82.137682, 36.670364], + [-82.139182, 36.670217], + [-82.139522, 36.67044], + [-82.139937, 36.67062], + [-82.14029, 36.670683], + [-82.141243, 36.670657], + [-82.141605, 36.670641], + [-82.142781, 36.671042], + [-82.144593, 36.67166], + [-82.144579, 36.671225], + [-82.144578, 36.671039], + [-82.144578, 36.670859], + [-82.144576, 36.670713], + [-82.144574, 36.670632], + [-82.144574, 36.670614], + [-82.144573, 36.670515], + [-82.144572, 36.670465], + [-82.144549, 36.670033], + [-82.144548, 36.669987], + [-82.14385, 36.669886], + [-82.143692, 36.669931], + [-82.14363, 36.669949], + [-82.143493, 36.670059], + [-82.143328, 36.67019], + [-82.143138, 36.669917], + [-82.142807, 36.669844], + [-82.142512, 36.669915], + [-82.142306, 36.669997], + [-82.141099, 36.669757], + [-82.139067, 36.669556], + [-82.138844, 36.669469], + [-82.138769, 36.669316], + [-82.138441, 36.669488], + [-82.138244, 36.669533], + [-82.135959, 36.669537], + [-82.135767, 36.669466], + [-82.135635, 36.669358], + [-82.135493, 36.669311], + [-82.135356, 36.669422], + [-82.134859, 36.669446], + [-82.134165, 36.66938], + [-82.133639, 36.669358], + [-82.133084, 36.669248], + [-82.132502, 36.669137], + [-82.132003, 36.668916], + [-82.131918, 36.668696], + [-82.131855, 36.668681], + [-82.13178, 36.668475], + [-82.131615, 36.668254], + [-82.13134, 36.668254], + [-82.13101, 36.668232], + [-82.130542, 36.668254], + [-82.13046, 36.667746], + [-82.130377, 36.667282], + [-82.130295, 36.667061], + [-82.12914, 36.666046], + [-82.128948, 36.665869], + [-82.12881, 36.665648], + [-82.127958, 36.662844], + [-82.127793, 36.662689], + [-82.12738, 36.662645], + [-82.127215, 36.662601], + [-82.126968, 36.662446], + [-82.124396, 36.659063], + [-82.124108, 36.658737], + [-82.123806, 36.658516], + [-82.123393, 36.658383], + [-82.121274, 36.658105], + [-82.121129, 36.657884], + [-82.121052, 36.657762], + [-82.120989, 36.657663], + [-82.121102, 36.657575], + [-82.121185, 36.657523], + [-82.121221, 36.657505], + [-82.12171, 36.657161], + [-82.121992, 36.65695], + [-82.122166, 36.656811], + [-82.122406, 36.656575], + [-82.122474, 36.65652], + [-82.122644, 36.656395], + [-82.122817, 36.656256], + [-82.123016, 36.656082], + [-82.123126, 36.655999], + [-82.123198, 36.655937], + [-82.123274, 36.655886], + [-82.123282, 36.655881], + [-82.123294, 36.655873], + [-82.122877, 36.655742], + [-82.122874, 36.655741], + [-82.122844, 36.6557], + [-82.122591, 36.655363], + [-82.123862, 36.65458], + [-82.123973, 36.65451], + [-82.123655, 36.654179], + [-82.123887, 36.653985], + [-82.124086, 36.653818], + [-82.124642, 36.654418], + [-82.124704, 36.654485], + [-82.124722, 36.654504], + [-82.124828, 36.654617], + [-82.125025, 36.654611], + [-82.126554, 36.653297], + [-82.126571, 36.653197], + [-82.126538, 36.653076], + [-82.126365, 36.652844], + [-82.126343, 36.652814], + [-82.125365, 36.651604], + [-82.124448, 36.650471], + [-82.124071, 36.650482], + [-82.118896, 36.650597], + [-82.117196, 36.648942], + [-82.121917, 36.646112], + [-82.11547, 36.639535], + [-82.114501, 36.638549], + [-82.114887, 36.638357], + [-82.115073, 36.638265], + [-82.116564, 36.637526], + [-82.116582, 36.637517], + [-82.116591, 36.637513], + [-82.116615, 36.637501], + [-82.117994, 36.636817], + [-82.118163, 36.636735], + [-82.118764, 36.636435], + [-82.119719, 36.635962], + [-82.121681, 36.63499], + [-82.121944, 36.63479], + [-82.122311, 36.634516], + [-82.122343, 36.63449], + [-82.122847, 36.634494], + [-82.124985, 36.634513], + [-82.127123, 36.634542], + [-82.127209, 36.634543], + [-82.13199, 36.634601], + [-82.132894, 36.634615], + [-82.133669, 36.634627], + [-82.134812, 36.63464], + [-82.135091, 36.634643], + [-82.135188, 36.63457], + [-82.137162, 36.632939], + [-82.137549, 36.633558], + [-82.138393, 36.634893], + [-82.139904, 36.637296], + [-82.140215, 36.637789], + [-82.140415, 36.638107], + [-82.140502, 36.638071], + [-82.141941, 36.637473], + [-82.142062, 36.637424], + [-82.142068, 36.637421], + [-82.142203, 36.637367], + [-82.142227, 36.637357], + [-82.142879, 36.637089], + [-82.143985, 36.636644], + [-82.144553, 36.636415], + [-82.144979, 36.636242], + [-82.149027, 36.634603], + [-82.15191, 36.633436], + [-82.15203, 36.633385], + [-82.152167, 36.633333], + [-82.152404, 36.633216], + [-82.155157, 36.631899], + [-82.156246, 36.631502], + [-82.156404, 36.63144], + [-82.156474, 36.631412], + [-82.15787, 36.630898], + [-82.158567, 36.630641], + [-82.158107, 36.626752], + [-82.158164, 36.626752], + [-82.159523, 36.626755], + [-82.160191, 36.626757], + [-82.161172, 36.626758], + [-82.161607, 36.62676], + [-82.162078, 36.626771], + [-82.16268, 36.626794], + [-82.163453, 36.626837], + [-82.164125, 36.626895], + [-82.165025, 36.626987], + [-82.166299, 36.627128], + [-82.166525, 36.627153], + [-82.166559, 36.627156], + [-82.166777, 36.627179], + [-82.166795, 36.627181], + [-82.166947, 36.627196], + [-82.167348, 36.627239], + [-82.167682, 36.62727], + [-82.168103, 36.62731], + [-82.168466, 36.627335], + [-82.168592, 36.62734], + [-82.168966, 36.627354], + [-82.169639, 36.627372], + [-82.169772, 36.627372], + [-82.1702, 36.627374], + [-82.170861, 36.627363], + [-82.171423, 36.627345], + [-82.17227, 36.62732], + [-82.172628, 36.627305], + [-82.175581, 36.627221], + [-82.17572, 36.627214], + [-82.176104, 36.627205], + [-82.177239, 36.627173], + [-82.177331, 36.62717], + [-82.177367, 36.627169], + [-82.177451, 36.627165], + [-82.177888, 36.627142], + [-82.177895, 36.627142], + [-82.17829, 36.627104], + [-82.178506, 36.627073], + [-82.178697, 36.627037], + [-82.179007, 36.626972], + [-82.179641, 36.62684], + [-82.179846, 36.626744], + [-82.180584, 36.626398], + [-82.180712, 36.626338], + [-82.181457, 36.625875], + [-82.18246, 36.625262], + [-82.183098, 36.624873], + [-82.183279, 36.624764], + [-82.184292, 36.624151], + [-82.185427, 36.623642], + [-82.185786, 36.623481], + [-82.186326, 36.623238], + [-82.186382, 36.623213], + [-82.186862, 36.622998], + [-82.186884, 36.622988], + [-82.186904, 36.622979], + [-82.187112, 36.622886], + [-82.187278, 36.622767], + [-82.18754, 36.62258], + [-82.187753, 36.622428], + [-82.187919, 36.622309], + [-82.188089, 36.622188], + [-82.188311, 36.622103], + [-82.188931, 36.621868], + [-82.188951, 36.62186], + [-82.189115, 36.621805], + [-82.189186, 36.621782], + [-82.189299, 36.621744], + [-82.190361, 36.621391], + [-82.190837, 36.621231], + [-82.191612, 36.62095], + [-82.191969, 36.620823], + [-82.192417, 36.62066], + [-82.192431, 36.620654], + [-82.192457, 36.620642], + [-82.194112, 36.619828], + [-82.195022, 36.61938], + [-82.196673, 36.618518], + [-82.203207, 36.615106], + [-82.204706, 36.614323], + [-82.207338, 36.612904], + [-82.20885, 36.612305], + [-82.208991, 36.612248], + [-82.209488, 36.612167], + [-82.209585, 36.612152], + [-82.209692, 36.612136], + [-82.209763, 36.612078], + [-82.210537, 36.61146], + [-82.210805, 36.611245], + [-82.210977, 36.611171], + [-82.211316, 36.611026], + [-82.213937, 36.609888], + [-82.214647, 36.609582], + [-82.214783, 36.609512], + [-82.214896, 36.609459], + [-82.216841, 36.608485], + [-82.218854, 36.607484], + [-82.219017, 36.607441], + [-82.219631, 36.607276], + [-82.220666, 36.606747], + [-82.221602, 36.60633], + [-82.222971, 36.605646], + [-82.224, 36.605426], + [-82.224058, 36.605414], + [-82.224321, 36.605064], + [-82.224412, 36.60494], + [-82.224449, 36.60489], + [-82.225122, 36.6046], + [-82.227099, 36.603863], + [-82.228252, 36.603501], + [-82.229264, 36.603453], + [-82.23035, 36.603643], + [-82.231201, 36.603742], + [-82.23214, 36.604185], + [-82.232473, 36.604326], + [-82.232619, 36.604477], + [-82.232865, 36.604731], + [-82.232955, 36.604827], + [-82.233202, 36.604656], + [-82.233321, 36.6046], + [-82.23373, 36.604402], + [-82.232939, 36.602594], + [-82.232912, 36.60183], + [-82.233009, 36.601616], + [-82.233122, 36.601366], + [-82.233238, 36.601299], + [-82.233374, 36.601219], + [-82.233435, 36.601184], + [-82.233535, 36.600967], + [-82.23367, 36.600894], + [-82.233583, 36.600559], + [-82.233527, 36.600341], + [-82.233443, 36.600074], + [-82.233776, 36.599924], + [-82.234822, 36.599465], + [-82.235144, 36.599322], + [-82.235372, 36.59922], + [-82.236695, 36.59863], + [-82.23698, 36.598503], + [-82.237123, 36.59844], + [-82.237573, 36.59824], + [-82.237605, 36.598133], + [-82.237679, 36.598048], + [-82.23805, 36.597618], + [-82.238151, 36.597501], + [-82.239314, 36.596927], + [-82.239665, 36.596757], + [-82.240311, 36.596448], + [-82.241151, 36.59644], + [-82.241711, 36.596402], + [-82.242917, 36.595867], + [-82.243238, 36.595724], + [-82.243386, 36.595658] + ] + ], + [ + [ + [-82.128527, 36.649083], + [-82.12839, 36.64861], + [-82.128329, 36.648412], + [-82.12787, 36.646923], + [-82.125808, 36.646978], + [-82.1254, 36.646723], + [-82.12506, 36.646414], + [-82.124901, 36.645996], + [-82.124615, 36.645298], + [-82.124357, 36.644668], + [-82.12289, 36.645544], + [-82.121917, 36.646112], + [-82.122459, 36.646648], + [-82.125785, 36.650034], + [-82.125988, 36.649852], + [-82.126349, 36.649523], + [-82.12662, 36.64934], + [-82.126846, 36.649159], + [-82.127026, 36.648957], + [-82.127208, 36.649067], + [-82.127184, 36.649267], + [-82.127387, 36.649442], + [-82.127537, 36.64951], + [-82.128011, 36.649704], + [-82.128251, 36.649667], + [-82.128468, 36.649334], + [-82.128527, 36.649083] + ] + ], + [ + [ + [-77.532688, 38.308475], + [-77.532315, 38.308506], + [-77.53102, 38.308439], + [-77.530585, 38.308475], + [-77.52962, 38.308388], + [-77.529195, 38.308295], + [-77.528813, 38.308193], + [-77.528682, 38.308142], + [-77.528526, 38.308058], + [-77.527558, 38.30765], + [-77.527106, 38.307477], + [-77.526538, 38.30726], + [-77.526378, 38.307202], + [-77.52623, 38.307159], + [-77.526041, 38.30712], + [-77.525617, 38.307072], + [-77.525003, 38.307025], + [-77.524811, 38.30701], + [-77.52404, 38.306963], + [-77.523798, 38.306937], + [-77.523656, 38.306915], + [-77.523607, 38.306907], + [-77.523424, 38.306869], + [-77.523372, 38.306856], + [-77.523209, 38.306812], + [-77.523164, 38.306799], + [-77.522853, 38.306697], + [-77.522664, 38.30665], + [-77.522435, 38.306612], + [-77.522274, 38.306597], + [-77.522076, 38.306593], + [-77.521918, 38.3066], + [-77.520908, 38.30668], + [-77.520579, 38.306698], + [-77.520167, 38.306707], + [-77.520051, 38.306706], + [-77.519698, 38.306698], + [-77.51949, 38.306683], + [-77.519331, 38.306672], + [-77.518534, 38.306595], + [-77.518292, 38.30657], + [-77.518257, 38.306566], + [-77.517672, 38.306513], + [-77.517565, 38.306502], + [-77.517066, 38.306464], + [-77.516346, 38.30641], + [-77.516353, 38.306337], + [-77.516423, 38.305622], + [-77.514885, 38.305507], + [-77.515288, 38.302539], + [-77.51613, 38.300022], + [-77.517085, 38.298471], + [-77.517835, 38.297697], + [-77.51785, 38.297682], + [-77.517994, 38.297533], + [-77.517713, 38.297315], + [-77.517895, 38.296922], + [-77.517134, 38.295438], + [-77.51695, 38.295463], + [-77.516834, 38.295197], + [-77.516807, 38.295136], + [-77.516693, 38.295174], + [-77.51572, 38.295496], + [-77.515485, 38.295574], + [-77.514601, 38.295867], + [-77.514314, 38.29603], + [-77.514117, 38.296148], + [-77.514052, 38.296184], + [-77.514045, 38.296186], + [-77.513602, 38.296312], + [-77.513571, 38.296276], + [-77.513351, 38.29602], + [-77.513274, 38.295845], + [-77.513252, 38.295796], + [-77.51311, 38.295475], + [-77.513038, 38.295392], + [-77.513, 38.295347], + [-77.512886, 38.295048], + [-77.51279, 38.294797], + [-77.512798, 38.294737], + [-77.51277, 38.294705], + [-77.512756, 38.294688], + [-77.512679, 38.294699], + [-77.512596, 38.294693], + [-77.512517, 38.294666], + [-77.51245, 38.294644], + [-77.512352, 38.2946], + [-77.512269, 38.294528], + [-77.512195, 38.294452], + [-77.512178, 38.294435], + [-77.51213, 38.294379], + [-77.512067, 38.294303], + [-77.511948, 38.294221], + [-77.511816, 38.294111], + [-77.511649, 38.294012], + [-77.511537, 38.29394], + [-77.511294, 38.293814], + [-77.511184, 38.293772], + [-77.511036, 38.293715], + [-77.510876, 38.293638], + [-77.510722, 38.293611], + [-77.510297, 38.293517], + [-77.510143, 38.293467], + [-77.510012, 38.293424], + [-77.509803, 38.293363], + [-77.509724, 38.293325], + [-77.509678, 38.293303], + [-77.509603, 38.293272], + [-77.509517, 38.293237], + [-77.509253, 38.293198], + [-77.509197, 38.29316], + [-77.509141, 38.29311], + [-77.509072, 38.293072], + [-77.508898, 38.293017], + [-77.508807, 38.292962], + [-77.508584, 38.292753], + [-77.508438, 38.292654], + [-77.508236, 38.292528], + [-77.508104, 38.29244], + [-77.507936, 38.292347], + [-77.50779, 38.292259], + [-77.507623, 38.292182], + [-77.507565, 38.292151], + [-77.508165, 38.290399], + [-77.50935, 38.286936], + [-77.509406, 38.286778], + [-77.511828, 38.279961], + [-77.511751, 38.279976], + [-77.511661, 38.279993], + [-77.511366, 38.280049], + [-77.511101, 38.280093], + [-77.510875, 38.280144], + [-77.510787, 38.280164], + [-77.510516, 38.280213], + [-77.510244, 38.28029], + [-77.509875, 38.280356], + [-77.509547, 38.280427], + [-77.509324, 38.280487], + [-77.508969, 38.280531], + [-77.508321, 38.28058], + [-77.508043, 38.280569], + [-77.5079, 38.280541], + [-77.507736, 38.280508], + [-77.507464, 38.280481], + [-77.507158, 38.280459], + [-77.507012, 38.280426], + [-77.506893, 38.280404], + [-77.506629, 38.280365], + [-77.506576, 38.280357], + [-77.506371, 38.280327], + [-77.506232, 38.280321], + [-77.506009, 38.280304], + [-77.505855, 38.28026], + [-77.505591, 38.280178], + [-77.505382, 38.280139], + [-77.504978, 38.280112], + [-77.504769, 38.280112], + [-77.504532, 38.280101], + [-77.504323, 38.280117], + [-77.503982, 38.280155], + [-77.503856, 38.280155], + [-77.503731, 38.280111], + [-77.503571, 38.280067], + [-77.503341, 38.280067], + [-77.50325, 38.280034], + [-77.503188, 38.279963], + [-77.503146, 38.279869], + [-77.503084, 38.27977], + [-77.503014, 38.279748], + [-77.502916, 38.279726], + [-77.502763, 38.27971], + [-77.50268, 38.279677], + [-77.502589, 38.279633], + [-77.502429, 38.279501], + [-77.502331, 38.279484], + [-77.502255, 38.279457], + [-77.50215, 38.279336], + [-77.501976, 38.279188], + [-77.501775, 38.279089], + [-77.501607, 38.279045], + [-77.501412, 38.279072], + [-77.50121, 38.279116], + [-77.500952, 38.279204], + [-77.500785, 38.279231], + [-77.500597, 38.279308], + [-77.500472, 38.279374], + [-77.500325, 38.279478], + [-77.500186, 38.279588], + [-77.500081, 38.279665], + [-77.500005, 38.279677], + [-77.499747, 38.279606], + [-77.499608, 38.279606], + [-77.499468, 38.279612], + [-77.499451, 38.279624], + [-77.499349, 38.279669], + [-77.499218, 38.279727], + [-77.499023, 38.279854], + [-77.498647, 38.280084], + [-77.498563, 38.280408], + [-77.498522, 38.28048], + [-77.498515, 38.280655], + [-77.498515, 38.280842], + [-77.498522, 38.281001], + [-77.498453, 38.281205], + [-77.498231, 38.281412], + [-77.498195, 38.281446], + [-77.498, 38.281759], + [-77.498008, 38.282072], + [-77.498064, 38.28227], + [-77.497911, 38.282918], + [-77.497667, 38.283061], + [-77.497507, 38.283099], + [-77.497186, 38.283006], + [-77.496922, 38.282962], + [-77.496789, 38.282869], + [-77.49674, 38.28277], + [-77.496594, 38.282622], + [-77.496266, 38.28226], + [-77.496057, 38.282189], + [-77.495709, 38.282172], + [-77.495221, 38.282206], + [-77.494567, 38.282371], + [-77.494531, 38.281349], + [-77.494489, 38.281091], + [-77.494433, 38.28068], + [-77.494402, 38.280544], + [-77.494377, 38.280432], + [-77.494147, 38.279823], + [-77.493931, 38.279516], + [-77.492955, 38.278951], + [-77.492815, 38.278812], + [-77.49471, 38.273842], + [-77.492047, 38.273645], + [-77.491954, 38.273638], + [-77.491894, 38.273634], + [-77.489498, 38.273482], + [-77.488694, 38.273431], + [-77.487462, 38.273349], + [-77.48718, 38.27333], + [-77.485136, 38.273192], + [-77.484626, 38.273157], + [-77.483211, 38.273063], + [-77.482809, 38.273036], + [-77.482583, 38.272996], + [-77.482347, 38.272964], + [-77.482603, 38.272747], + [-77.482564, 38.272736], + [-77.479772, 38.27198], + [-77.479687, 38.271957], + [-77.478713, 38.271693], + [-77.477466, 38.271356], + [-77.47738, 38.271333], + [-77.475452, 38.270811], + [-77.47339, 38.270253], + [-77.472442, 38.271419], + [-77.471033, 38.27328], + [-77.471001, 38.273322], + [-77.470068, 38.274884], + [-77.46947, 38.275901], + [-77.46884, 38.276951], + [-77.468808, 38.277001], + [-77.468572, 38.277374], + [-77.467194, 38.27955], + [-77.46715, 38.279618], + [-77.467151, 38.27967], + [-77.467153, 38.279788], + [-77.465923, 38.2798], + [-77.465359, 38.279807], + [-77.465312, 38.279671], + [-77.465313, 38.279308], + [-77.465315, 38.279049], + [-77.465029, 38.278977], + [-77.463991, 38.278588], + [-77.463092, 38.278209], + [-77.462187, 38.277896], + [-77.461741, 38.277814], + [-77.461365, 38.277787], + [-77.461056, 38.277812], + [-77.461035, 38.277618], + [-77.460877, 38.276769], + [-77.460652, 38.275942], + [-77.460425, 38.275516], + [-77.460196, 38.275085], + [-77.459198, 38.273406], + [-77.458867, 38.272848], + [-77.457839, 38.271116], + [-77.45747, 38.2713], + [-77.457173, 38.271445], + [-77.456865, 38.271597], + [-77.454064, 38.272965], + [-77.454052, 38.272971], + [-77.452775, 38.273595], + [-77.45216, 38.273895], + [-77.450572, 38.274857], + [-77.450839, 38.275128], + [-77.451397, 38.275694], + [-77.451893, 38.276195], + [-77.452549, 38.277147], + [-77.452634, 38.277384], + [-77.45276, 38.277702], + [-77.453185, 38.278783], + [-77.453214, 38.279249], + [-77.453279, 38.279489], + [-77.453626, 38.280766], + [-77.453716, 38.281078], + [-77.453955, 38.281873], + [-77.454608, 38.283636], + [-77.45464, 38.283707], + [-77.454511, 38.283737], + [-77.453247, 38.284037], + [-77.451741, 38.28451], + [-77.45169, 38.284464], + [-77.45155, 38.284397], + [-77.451464, 38.284356], + [-77.450587, 38.283938], + [-77.450212, 38.283674], + [-77.450116, 38.283546], + [-77.449797, 38.283118], + [-77.448285, 38.283431], + [-77.448595, 38.284147], + [-77.447151, 38.284615], + [-77.447128, 38.284622], + [-77.447192, 38.284683], + [-77.447713, 38.285553], + [-77.448271, 38.286421], + [-77.448602, 38.286847], + [-77.44871, 38.286986], + [-77.449189, 38.287785], + [-77.449574, 38.288425], + [-77.449649, 38.288679], + [-77.449706, 38.288869], + [-77.449818, 38.289138], + [-77.450106, 38.289676], + [-77.450114, 38.289691], + [-77.450154, 38.289762], + [-77.450168, 38.289786], + [-77.450187, 38.289819], + [-77.45022, 38.289894], + [-77.450234, 38.289927], + [-77.450536, 38.290626], + [-77.451031, 38.291554], + [-77.451236, 38.291978], + [-77.451512, 38.292548], + [-77.452, 38.294365], + [-77.452174, 38.294744], + [-77.452702, 38.29583], + [-77.45278, 38.295991], + [-77.453317, 38.296984], + [-77.453464, 38.297127], + [-77.453631, 38.297264], + [-77.453777, 38.297391], + [-77.454203, 38.298467], + [-77.45461, 38.299217], + [-77.454656, 38.299301], + [-77.454947, 38.299826], + [-77.455276, 38.300416], + [-77.455598, 38.301135], + [-77.455694, 38.301349], + [-77.455833, 38.301547], + [-77.45584, 38.301556], + [-77.456036, 38.301832], + [-77.456161, 38.301986], + [-77.456559, 38.302475], + [-77.456973, 38.302874], + [-77.457315, 38.303173], + [-77.457672, 38.303633], + [-77.457699, 38.303668], + [-77.457866, 38.303884], + [-77.457979, 38.304077], + [-77.458108, 38.304298], + [-77.458154, 38.304384], + [-77.458159, 38.304393], + [-77.458163, 38.304399], + [-77.458172, 38.304416], + [-77.458189, 38.304447], + [-77.458365, 38.304768], + [-77.458678, 38.305394], + [-77.459136, 38.306465], + [-77.459164, 38.306513], + [-77.459714, 38.307449], + [-77.459961, 38.307811], + [-77.460128, 38.30802], + [-77.460358, 38.308289], + [-77.460533, 38.308459], + [-77.461069, 38.308871], + [-77.461627, 38.309343], + [-77.462018, 38.30982], + [-77.462492, 38.310205], + [-77.463098, 38.310913], + [-77.463293, 38.311083], + [-77.463691, 38.311226], + [-77.463886, 38.311319], + [-77.463948, 38.311396], + [-77.463969, 38.311418], + [-77.463907, 38.311467], + [-77.463795, 38.311522], + [-77.46351, 38.311478], + [-77.4633, 38.311407], + [-77.463203, 38.311428], + [-77.463175, 38.311434], + [-77.463147, 38.311533], + [-77.463283, 38.311966], + [-77.463289, 38.311984], + [-77.463419, 38.312401], + [-77.463468, 38.312966], + [-77.463698, 38.313419], + [-77.463703, 38.313429], + [-77.463838, 38.313696], + [-77.463998, 38.314212], + [-77.46395, 38.314278], + [-77.463873, 38.3143], + [-77.46381, 38.314355], + [-77.464075, 38.315014], + [-77.464096, 38.315223], + [-77.464152, 38.315437], + [-77.4642, 38.315545], + [-77.46445, 38.315808], + [-77.46488, 38.316262], + [-77.464904, 38.316288], + [-77.464922, 38.316307], + [-77.466381, 38.317848], + [-77.466943, 38.318533], + [-77.467048, 38.318662], + [-77.467055, 38.318668], + [-77.467652, 38.318939], + [-77.468468, 38.31912], + [-77.469869, 38.31912], + [-77.469978, 38.319129], + [-77.470294, 38.319158], + [-77.470322, 38.319163], + [-77.470503, 38.319229], + [-77.470921, 38.319493], + [-77.471305, 38.319536], + [-77.47136, 38.319536], + [-77.47203, 38.319542], + [-77.473033, 38.319783], + [-77.473319, 38.319915], + [-77.47334, 38.320085], + [-77.473438, 38.320596], + [-77.473682, 38.320936], + [-77.473891, 38.320974], + [-77.473915, 38.320978], + [-77.474254, 38.32104], + [-77.474728, 38.321029], + [-77.475139, 38.320968], + [-77.475557, 38.320759], + [-77.475815, 38.320518], + [-77.47594, 38.320133], + [-77.476052, 38.320106], + [-77.476484, 38.319958], + [-77.476567, 38.319897], + [-77.47695, 38.319589], + [-77.477403, 38.319046], + [-77.477821, 38.318343], + [-77.47789, 38.31803], + [-77.478026, 38.317611], + [-77.478029, 38.317601], + [-77.478036, 38.317596], + [-77.47821, 38.317299], + [-77.478754, 38.316882], + [-77.478998, 38.316701], + [-77.479792, 38.316508], + [-77.48012, 38.316491], + [-77.480531, 38.316469], + [-77.481388, 38.316485], + [-77.482461, 38.316677], + [-77.483103, 38.316913], + [-77.483527, 38.317157], + [-77.483832, 38.317333], + [-77.485083, 38.318356], + [-77.485766, 38.318916], + [-77.485973, 38.319078], + [-77.486087, 38.319168], + [-77.487084, 38.319959], + [-77.487747, 38.320403], + [-77.48873, 38.321116], + [-77.489567, 38.321984], + [-77.489992, 38.321654], + [-77.490007, 38.321642], + [-77.490038, 38.32162], + [-77.490073, 38.321594], + [-77.490117, 38.321561], + [-77.490201, 38.32167], + [-77.490375, 38.32178], + [-77.490598, 38.321813], + [-77.490743, 38.321873], + [-77.490822, 38.321906], + [-77.491372, 38.322241], + [-77.492279, 38.32257], + [-77.493053, 38.323053], + [-77.493806, 38.323332], + [-77.496407, 38.324458], + [-77.497125, 38.324769], + [-77.497466, 38.324906], + [-77.497532, 38.324933], + [-77.498756, 38.325438], + [-77.498959, 38.325443], + [-77.499037, 38.325446], + [-77.499115, 38.325448], + [-77.499544, 38.32546], + [-77.499879, 38.325635], + [-77.500004, 38.325602], + [-77.500107, 38.325622], + [-77.500204, 38.325655], + [-77.50035, 38.325716], + [-77.500504, 38.325738], + [-77.500664, 38.325732], + [-77.50088, 38.325738], + [-77.500999, 38.325749], + [-77.501208, 38.325804], + [-77.501396, 38.325815], + [-77.501449, 38.325828], + [-77.501556, 38.325854], + [-77.501574, 38.325858], + [-77.501648, 38.325876], + [-77.501863, 38.325881], + [-77.501926, 38.325832], + [-77.502079, 38.325793], + [-77.502225, 38.325837], + [-77.502256, 38.325863], + [-77.502406, 38.325997], + [-77.502713, 38.326068], + [-77.502908, 38.326118], + [-77.502992, 38.326162], + [-77.503131, 38.326211], + [-77.50318, 38.326206], + [-77.503333, 38.326145], + [-77.503494, 38.326151], + [-77.503605, 38.3262], + [-77.503654, 38.326343], + [-77.503737, 38.326448], + [-77.503877, 38.326453], + [-77.504114, 38.326426], + [-77.504351, 38.326376], + [-77.504595, 38.326316], + [-77.504874, 38.3263], + [-77.505452, 38.326234], + [-77.505682, 38.326262], + [-77.505738, 38.326289], + [-77.505884, 38.326273], + [-77.506045, 38.32618], + [-77.506212, 38.326152], + [-77.506393, 38.326147], + [-77.506554, 38.326092], + [-77.506784, 38.325933], + [-77.506937, 38.325801], + [-77.507104, 38.32568], + [-77.507195, 38.325631], + [-77.507279, 38.325593], + [-77.507418, 38.325461], + [-77.507607, 38.325395], + [-77.507844, 38.325379], + [-77.508589, 38.325313], + [-77.50944, 38.325292], + [-77.509969, 38.325325], + [-77.510513, 38.325391], + [-77.511022, 38.325473], + [-77.511273, 38.325495], + [-77.511677, 38.325479], + [-77.512165, 38.325441], + [-77.51252, 38.325364], + [-77.512737, 38.325194], + [-77.512904, 38.32509], + [-77.513239, 38.325002], + [-77.513434, 38.324925], + [-77.513713, 38.324766], + [-77.513936, 38.324492], + [-77.514048, 38.324371], + [-77.514208, 38.324272], + [-77.514459, 38.324151], + [-77.514891, 38.323987], + [-77.515574, 38.323696], + [-77.516341, 38.323356], + [-77.517017, 38.323126], + [-77.517471, 38.323011], + [-77.517958, 38.322917], + [-77.51837, 38.322868], + [-77.518725, 38.322846], + [-77.51975, 38.322863], + [-77.519754, 38.322863], + [-77.520489, 38.322869], + [-77.521339, 38.322885], + [-77.522043, 38.322875], + [-77.522865, 38.32282], + [-77.523304, 38.32271], + [-77.523562, 38.322617], + [-77.523904, 38.322431], + [-77.524141, 38.322293], + [-77.524357, 38.322233], + [-77.52451, 38.322173], + [-77.524727, 38.322057], + [-77.524894, 38.321931], + [-77.52511, 38.321843], + [-77.525493, 38.321607], + [-77.525779, 38.32141], + [-77.526023, 38.321267], + [-77.526393, 38.321119], + [-77.526832, 38.320872], + [-77.527187, 38.320663], + [-77.527404, 38.320455], + [-77.527641, 38.320241], + [-77.527954, 38.319802], + [-77.528094, 38.319571], + [-77.528178, 38.319379], + [-77.528303, 38.319132], + [-77.528352, 38.318918], + [-77.528387, 38.318709], + [-77.528387, 38.31855], + [-77.528338, 38.318358], + [-77.528269, 38.318149], + [-77.528157, 38.317913], + [-77.528025, 38.317688], + [-77.527865, 38.317479], + [-77.527712, 38.317303], + [-77.527565, 38.31715], + [-77.527419, 38.317018], + [-77.527238, 38.316864], + [-77.527085, 38.316771], + [-77.526945, 38.316721], + [-77.526785, 38.316611], + [-77.526687, 38.316534], + [-77.526354, 38.316213], + [-77.526314, 38.316175], + [-77.526151, 38.315958], + [-77.526081, 38.315809], + [-77.526082, 38.31565], + [-77.52595, 38.314673], + [-77.525839, 38.313196], + [-77.525804, 38.312674], + [-77.525902, 38.312136], + [-77.525819, 38.311664], + [-77.525826, 38.311406], + [-77.525854, 38.310928], + [-77.525923, 38.310632], + [-77.525958, 38.310385], + [-77.525973, 38.310187], + [-77.526099, 38.309798], + [-77.526107, 38.309773], + [-77.526126, 38.309715], + [-77.526245, 38.309539], + [-77.526433, 38.309429], + [-77.526726, 38.309325], + [-77.52706, 38.309106], + [-77.527276, 38.308979], + [-77.527506, 38.30887], + [-77.527807, 38.308782], + [-77.527959, 38.308738], + [-77.528217, 38.308689], + [-77.52837, 38.308656], + [-77.528684, 38.308634], + [-77.52906, 38.308639], + [-77.529283, 38.3087], + [-77.529464, 38.308804], + [-77.529597, 38.308903], + [-77.52982, 38.308996], + [-77.530022, 38.309057], + [-77.530233, 38.309144], + [-77.530291, 38.30918], + [-77.530297, 38.309176], + [-77.530298, 38.30917], + [-77.530366, 38.309057], + [-77.530394, 38.309011], + [-77.530547, 38.308923], + [-77.530687, 38.308852], + [-77.530861, 38.308797], + [-77.531077, 38.308786], + [-77.531537, 38.308814], + [-77.532053, 38.308836], + [-77.532234, 38.30883], + [-77.532387, 38.308814], + [-77.532547, 38.308765], + [-77.532617, 38.308666], + [-77.532673, 38.308539], + [-77.532681, 38.308511], + [-77.532688, 38.308475] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-77.782516, 38.067545], + [-77.782616, 38.067145], + [-77.783116, 38.066345], + [-77.783405, 38.06623], + [-77.784116, 38.065945], + [-77.784616, 38.065645], + [-77.784916, 38.065145], + [-77.784616, 38.064245], + [-77.784516, 38.063345], + [-77.784216, 38.063145], + [-77.783016, 38.063245], + [-77.782616, 38.063245], + [-77.781716, 38.062645], + [-77.781116, 38.061545], + [-77.780216, 38.060345], + [-77.779216, 38.059445], + [-77.778516, 38.058745], + [-77.777816, 38.058445], + [-77.776916, 38.058445], + [-77.775816, 38.058245], + [-77.774216, 38.057845], + [-77.773416, 38.057845], + [-77.77196, 38.057457], + [-77.771916, 38.057445], + [-77.771687, 38.057267], + [-77.771016, 38.056745], + [-77.770916, 38.056345], + [-77.771116, 38.055745], + [-77.771405, 38.055263], + [-77.771416, 38.055245], + [-77.771716, 38.054745], + [-77.771716, 38.054245], + [-77.771416, 38.053745], + [-77.770716, 38.053145], + [-77.769816, 38.052545], + [-77.769016, 38.052045], + [-77.768516, 38.051745], + [-77.768116, 38.051745], + [-77.767816, 38.051945], + [-77.767316, 38.052645], + [-77.766516, 38.053045], + [-77.766493, 38.053062], + [-77.766116, 38.053345], + [-77.765116, 38.053445], + [-77.764116, 38.053145], + [-77.764026, 38.053145], + [-77.763916, 38.053145], + [-77.763816, 38.053045], + [-77.763516, 38.052845], + [-77.763442, 38.052771], + [-77.763316, 38.052645], + [-77.763316, 38.052345], + [-77.763316, 38.051745], + [-77.763316, 38.051245], + [-77.7633, 38.051229], + [-77.762916, 38.050845], + [-77.762516, 38.050545], + [-77.759716, 38.049545], + [-77.759616, 38.049445], + [-77.759316, 38.049345], + [-77.759116, 38.049145], + [-77.759016, 38.049145], + [-77.758816, 38.049045], + [-77.758515, 38.048945], + [-77.758215, 38.048945], + [-77.757615, 38.048845], + [-77.757015, 38.048645], + [-77.756515, 38.048445], + [-77.756115, 38.048245], + [-77.755915, 38.048345], + [-77.755715, 38.048645], + [-77.755415, 38.048845], + [-77.754915, 38.049445], + [-77.754115, 38.049945], + [-77.753615, 38.050345], + [-77.752815, 38.050645], + [-77.752315, 38.050945], + [-77.751615, 38.051345], + [-77.751515, 38.051745], + [-77.751415, 38.051945], + [-77.751333, 38.052], + [-77.751115, 38.052145], + [-77.750715, 38.052345], + [-77.750615, 38.052445], + [-77.750515, 38.052445], + [-77.750415, 38.052445], + [-77.750215, 38.052545], + [-77.750115, 38.052545], + [-77.749815, 38.052545], + [-77.749715, 38.052695], + [-77.749515, 38.052845], + [-77.749315, 38.052845], + [-77.748615, 38.052845], + [-77.747815, 38.052545], + [-77.747315, 38.052245], + [-77.746615, 38.051845], + [-77.746415, 38.051645], + [-77.746215, 38.051445], + [-77.745515, 38.051345], + [-77.745215, 38.051145], + [-77.745215, 38.050845], + [-77.745915, 38.050045], + [-77.746615, 38.049545], + [-77.747215, 38.049145], + [-77.747415, 38.048945], + [-77.747615, 38.048645], + [-77.747715, 38.048345], + [-77.747815, 38.047945], + [-77.747715, 38.047645], + [-77.747615, 38.047045], + [-77.747515, 38.045845], + [-77.747515, 38.045545], + [-77.747815, 38.044945], + [-77.748115, 38.044445], + [-77.748415, 38.043445], + [-77.748415, 38.043386], + [-77.748415, 38.043145], + [-77.748215, 38.042145], + [-77.748015, 38.042045], + [-77.747415, 38.041645], + [-77.746715, 38.041445], + [-77.745715, 38.040945], + [-77.745215, 38.040845], + [-77.745074, 38.040845], + [-77.744515, 38.040845], + [-77.743815, 38.040945], + [-77.742915, 38.040745], + [-77.742215, 38.040245], + [-77.741615, 38.039645], + [-77.741315, 38.039045], + [-77.741115, 38.038545], + [-77.740915, 38.038245], + [-77.740915, 38.037745], + [-77.741315, 38.037245], + [-77.741816, 38.037078], + [-77.741915, 38.037045], + [-77.742315, 38.037145], + [-77.742715, 38.037445], + [-77.742915, 38.037945], + [-77.742915, 38.038545], + [-77.742915, 38.038845], + [-77.742975, 38.038965], + [-77.743115, 38.039245], + [-77.743329, 38.039245], + [-77.743415, 38.039245], + [-77.744015, 38.039045], + [-77.744815, 38.038745], + [-77.745515, 38.038445], + [-77.746615, 38.038245], + [-77.747915, 38.037645], + [-77.748315, 38.037345], + [-77.748615, 38.037145], + [-77.748715, 38.036945], + [-77.748815, 38.036745], + [-77.748815, 38.035346], + [-77.748815, 38.035246], + [-77.748815, 38.035146], + [-77.748715, 38.034946], + [-77.748615, 38.034746], + [-77.748515, 38.034546], + [-77.748315, 38.034246], + [-77.748015, 38.033846], + [-77.747715, 38.033346], + [-77.747615, 38.032946], + [-77.747815, 38.031746], + [-77.748115, 38.031046], + [-77.748415, 38.030146], + [-77.748515, 38.029546], + [-77.748515, 38.029346], + [-77.748515, 38.028746], + [-77.748315, 38.028446], + [-77.747815, 38.027246], + [-77.747715, 38.026746], + [-77.747615, 38.026346], + [-77.747715, 38.025746], + [-77.747715, 38.025346], + [-77.747715, 38.024546], + [-77.747715, 38.024346], + [-77.747672, 38.024303], + [-77.747315, 38.023946], + [-77.746915, 38.023646], + [-77.746215, 38.023546], + [-77.745415, 38.023646], + [-77.744915, 38.023746], + [-77.744615, 38.023946], + [-77.744415, 38.024346], + [-77.744515, 38.024646], + [-77.744515, 38.025146], + [-77.744215, 38.025546], + [-77.743915, 38.025846], + [-77.743515, 38.026346], + [-77.743015, 38.026746], + [-77.742315, 38.027446], + [-77.741515, 38.028446], + [-77.740915, 38.029246], + [-77.740715, 38.029646], + [-77.740715, 38.030361], + [-77.740715, 38.031246], + [-77.740515, 38.032046], + [-77.740215, 38.032646], + [-77.739815, 38.032946], + [-77.739515, 38.033046], + [-77.738915, 38.032945], + [-77.738215, 38.032645], + [-77.737615, 38.032445], + [-77.736315, 38.032045], + [-77.734815, 38.031845], + [-77.733815, 38.031845], + [-77.733415, 38.031745], + [-77.732315, 38.031645], + [-77.731815, 38.031445], + [-77.731015, 38.031045], + [-77.730615, 38.030445], + [-77.730515, 38.030145], + [-77.73032, 38.029564], + [-77.730214, 38.029246], + [-77.729814, 38.028746], + [-77.72953, 38.028557], + [-77.728314, 38.027746], + [-77.728214, 38.027546], + [-77.728114, 38.027146], + [-77.728114, 38.026746], + [-77.728114, 38.026446], + [-77.728314, 38.026046], + [-77.728514, 38.025946], + [-77.728914, 38.025846], + [-77.729514, 38.025746], + [-77.729814, 38.025646], + [-77.730114, 38.025346], + [-77.730314, 38.025246], + [-77.730514, 38.025246], + [-77.730814, 38.025046], + [-77.731014, 38.024846], + [-77.731095, 38.024034], + [-77.731114, 38.023846], + [-77.731314, 38.022546], + [-77.731515, 38.021846], + [-77.731515, 38.021546], + [-77.731314, 38.021246], + [-77.730614, 38.020846], + [-77.729714, 38.021046], + [-77.729214, 38.021346], + [-77.728541, 38.02175], + [-77.728214, 38.021946], + [-77.727514, 38.022346], + [-77.727114, 38.022646], + [-77.726314, 38.022946], + [-77.725614, 38.023146], + [-77.724314, 38.023346], + [-77.723414, 38.023446], + [-77.722214, 38.023246], + [-77.721714, 38.022946], + [-77.721514, 38.022746], + [-77.721214, 38.022446], + [-77.720914, 38.021946], + [-77.720414, 38.021246], + [-77.719814, 38.020846], + [-77.719314, 38.020646], + [-77.719114, 38.020246], + [-77.719214, 38.019746], + [-77.719714, 38.018746], + [-77.719814, 38.018646], + [-77.720014, 38.018146], + [-77.720014, 38.017346], + [-77.719814, 38.017046], + [-77.719314, 38.016646], + [-77.718614, 38.016446], + [-77.717914, 38.016546], + [-77.717014, 38.016446], + [-77.716575, 38.016277], + [-77.715714, 38.015946], + [-77.714714, 38.015446], + [-77.713954, 38.015245], + [-77.713259, 38.014849], + [-77.712866, 38.014602], + [-77.71286, 38.014588], + [-77.712854, 38.014574], + [-77.712849, 38.014564], + [-77.712732, 38.014306], + [-77.712575, 38.014015], + [-77.71247, 38.013835], + [-77.712028, 38.013019], + [-77.711882, 38.012977], + [-77.711892, 38.012729], + [-77.7117, 38.012755], + [-77.711527, 38.012779], + [-77.711023, 38.012606], + [-77.710578, 38.012585], + [-77.710521, 38.012583], + [-77.710294, 38.012609], + [-77.70987, 38.012744], + [-77.709066, 38.013213], + [-77.708606, 38.01337], + [-77.708152, 38.013415], + [-77.706686, 38.013424], + [-77.705608, 38.013582], + [-77.7053, 38.013519], + [-77.704229, 38.01297], + [-77.703882, 38.012826], + [-77.703873, 38.012822], + [-77.703664, 38.012735], + [-77.703303, 38.012701], + [-77.702636, 38.01275], + [-77.70217, 38.012765], + [-77.701583, 38.012783], + [-77.701359, 38.012754], + [-77.701341, 38.012752], + [-77.700861, 38.012691], + [-77.700405, 38.012703], + [-77.700244, 38.01264], + [-77.7, 38.012556], + [-77.699668, 38.012312], + [-77.699364, 38.012003], + [-77.699323, 38.011831], + [-77.698854, 38.011166], + [-77.698206, 38.009955], + [-77.697344, 38.008905], + [-77.696981, 38.008475], + [-77.696027, 38.007521], + [-77.695551, 38.007308], + [-77.694572, 38.007125], + [-77.694548, 38.007126], + [-77.694161, 38.007135], + [-77.693895, 38.007188], + [-77.69323, 38.007566], + [-77.692618, 38.00771], + [-77.692357, 38.007855], + [-77.692062, 38.007951], + [-77.688643, 38.008137], + [-77.687667, 38.008057], + [-77.68746, 38.00804], + [-77.687296, 38.008019], + [-77.687184, 38.008005], + [-77.687118, 38.007997], + [-77.687089, 38.007993], + [-77.686418, 38.007908], + [-77.685548, 38.007873], + [-77.685193, 38.007936], + [-77.684635, 38.008172], + [-77.684067, 38.008291], + [-77.682387, 38.007879], + [-77.680594, 38.007595], + [-77.677863, 38.00687], + [-77.676959, 38.006541], + [-77.676938, 38.006533], + [-77.67662, 38.006417], + [-77.674818, 38.005569], + [-77.672847, 38.004731], + [-77.671557, 38.004163], + [-77.6709, 38.003777], + [-77.668794, 38.001628], + [-77.668376, 38.001119], + [-77.668203, 38.000829], + [-77.667923, 38.000128], + [-77.66798, 37.998585], + [-77.667987, 37.998387], + [-77.667904, 37.997921], + [-77.667813, 37.997721], + [-77.667456, 37.997311], + [-77.667162, 37.997087], + [-77.666843, 37.996948], + [-77.666365, 37.996827], + [-77.665362, 37.996848], + [-77.664781, 37.99691], + [-77.66379, 37.99735], + [-77.66234, 37.997772], + [-77.661751, 37.997807], + [-77.661263, 37.997717], + [-77.660935, 37.997592], + [-77.66075, 37.997449], + [-77.660604, 37.997153], + [-77.660646, 37.996124], + [-77.660412, 37.994831], + [-77.660471, 37.993734], + [-77.660278, 37.993012], + [-77.6597, 37.99209], + [-77.659556, 37.992002], + [-77.6593, 37.991931], + [-77.658219, 37.9918], + [-77.657918, 37.991872], + [-77.656938, 37.992513], + [-77.655833, 37.993017], + [-77.65503, 37.993275], + [-77.653672, 37.993603], + [-77.652786, 37.993776], + [-77.652338, 37.993837], + [-77.651705, 37.993925], + [-77.649478, 37.994161], + [-77.649203, 37.994176], + [-77.648298, 37.994112], + [-77.648107, 37.994099], + [-77.647529, 37.994011], + [-77.647165, 37.993956], + [-77.645028, 37.993326], + [-77.64368, 37.992983], + [-77.643366, 37.992862], + [-77.6429, 37.992684], + [-77.642528, 37.992478], + [-77.64232, 37.992292], + [-77.642148, 37.991816], + [-77.642137, 37.991248], + [-77.642154, 37.991165], + [-77.642202, 37.990936], + [-77.642038, 37.991055], + [-77.639932, 37.992591], + [-77.635521, 37.996137], + [-77.629875, 38.000801], + [-77.626221, 38.003437], + [-77.62496, 38.004707], + [-77.622844, 38.006841], + [-77.620189, 38.009518], + [-77.617635, 38.011751], + [-77.612655, 38.016109], + [-77.61222, 38.016511], + [-77.610903, 38.017765], + [-77.606126, 38.022229], + [-77.603937, 38.024276], + [-77.600198, 38.027771], + [-77.597954, 38.02997], + [-77.596181, 38.031709], + [-77.596133, 38.031748], + [-77.595682, 38.032105], + [-77.595626, 38.032127], + [-77.595362, 38.032319], + [-77.59521, 38.032462], + [-77.595106, 38.032577], + [-77.59394, 38.03361], + [-77.593121, 38.034455], + [-77.59279, 38.034791], + [-77.591822, 38.035796], + [-77.591434, 38.036197], + [-77.590779, 38.036874], + [-77.588322, 38.039036], + [-77.586015, 38.041068], + [-77.579828, 38.046772], + [-77.574496, 38.051688], + [-77.572659, 38.053534], + [-77.570661, 38.055449], + [-77.567535, 38.058446], + [-77.567383, 38.058592], + [-77.563062, 38.062734], + [-77.56033, 38.065355], + [-77.554772, 38.070623], + [-77.551613, 38.073617], + [-77.550603, 38.074574], + [-77.548738, 38.076343], + [-77.547345, 38.077606], + [-77.546339, 38.07851], + [-77.541087, 38.083255], + [-77.540585, 38.083728], + [-77.539296, 38.084948], + [-77.537913, 38.086257], + [-77.536646, 38.087454], + [-77.531372, 38.092442], + [-77.530112, 38.093636], + [-77.527605, 38.096004], + [-77.523833, 38.09957], + [-77.52142, 38.101852], + [-77.518181, 38.104898], + [-77.517618, 38.105428], + [-77.512155, 38.110564], + [-77.51079, 38.111851], + [-77.510156, 38.112445], + [-77.510114, 38.112484], + [-77.510051, 38.112543], + [-77.506042, 38.116303], + [-77.504161, 38.118067], + [-77.496621, 38.125136], + [-77.494678, 38.126958], + [-77.492605, 38.129045], + [-77.492556, 38.129082], + [-77.485041, 38.136273], + [-77.480084, 38.141019], + [-77.480016, 38.141085], + [-77.479917, 38.14118], + [-77.473063, 38.147742], + [-77.471163, 38.149477], + [-77.469415, 38.151073], + [-77.468975, 38.151475], + [-77.468587, 38.151817], + [-77.468129, 38.152248], + [-77.467404, 38.152911], + [-77.467169, 38.153135], + [-77.467126, 38.153162], + [-77.467055, 38.153226], + [-77.466935, 38.153334], + [-77.466537, 38.153695], + [-77.466484, 38.153791], + [-77.466417, 38.153873], + [-77.465972, 38.154212], + [-77.465731, 38.154416], + [-77.465581, 38.154554], + [-77.46266, 38.157293], + [-77.459003, 38.160725], + [-77.457354, 38.162183], + [-77.457031, 38.162468], + [-77.456492, 38.162946], + [-77.455772, 38.163582], + [-77.455476, 38.163844], + [-77.45275, 38.166256], + [-77.445682, 38.172506], + [-77.444516, 38.173537], + [-77.442338, 38.175463], + [-77.441131, 38.176529], + [-77.440231, 38.177326], + [-77.437543, 38.180042], + [-77.437347, 38.18024], + [-77.433499, 38.18413], + [-77.433478, 38.18415], + [-77.428491, 38.189191], + [-77.424336, 38.19358], + [-77.419067, 38.199146], + [-77.418605, 38.199635], + [-77.416743, 38.20144], + [-77.408548, 38.209343], + [-77.40632, 38.211492], + [-77.403134, 38.214564], + [-77.402354, 38.215317], + [-77.40031, 38.21742], + [-77.384868, 38.233307], + [-77.384405, 38.233785], + [-77.379696, 38.238421], + [-77.379684, 38.238432], + [-77.379475, 38.238631], + [-77.379381, 38.238731], + [-77.379376, 38.238736], + [-77.379359, 38.238755], + [-77.37933, 38.238782], + [-77.377784, 38.240195], + [-77.37708, 38.240838], + [-77.375455, 38.242345], + [-77.375316, 38.242474], + [-77.374892, 38.242891], + [-77.37488, 38.242903], + [-77.374687, 38.243092], + [-77.374672, 38.243107], + [-77.371342, 38.245753], + [-77.371337, 38.245757], + [-77.370425, 38.246481], + [-77.370367, 38.24653], + [-77.37031, 38.246578], + [-77.370303, 38.246584], + [-77.370356, 38.246624], + [-77.37041, 38.246664], + [-77.370696, 38.246877], + [-77.370724, 38.246898], + [-77.370977, 38.247084], + [-77.370983, 38.247089], + [-77.371432, 38.247422], + [-77.371553, 38.247493], + [-77.373513, 38.248646], + [-77.374044, 38.24892], + [-77.374628, 38.249221], + [-77.375654, 38.249647], + [-77.375694, 38.249664], + [-77.376894, 38.249958], + [-77.377456, 38.249993], + [-77.377966, 38.24997], + [-77.379031, 38.249819], + [-77.379933, 38.249635], + [-77.380386, 38.249422], + [-77.380724, 38.249243], + [-77.380734, 38.249238], + [-77.38074, 38.249235], + [-77.380816, 38.249196], + [-77.380824, 38.249192], + [-77.380925, 38.24914], + [-77.380971, 38.249107], + [-77.38098, 38.249101], + [-77.38099, 38.249093], + [-77.381351, 38.248848], + [-77.381357, 38.248844], + [-77.381743, 38.248372], + [-77.382221, 38.24791], + [-77.38261, 38.247278], + [-77.382775, 38.247032], + [-77.382787, 38.247015], + [-77.383061, 38.246606], + [-77.383531, 38.24603], + [-77.383908, 38.245693], + [-77.384027, 38.245587], + [-77.384039, 38.245576], + [-77.384223, 38.245482], + [-77.384237, 38.245475], + [-77.38425, 38.245468], + [-77.384265, 38.24546], + [-77.384278, 38.245453], + [-77.384293, 38.245445], + [-77.384544, 38.245315], + [-77.384964, 38.245239], + [-77.385002, 38.245231], + [-77.385017, 38.245228], + [-77.385025, 38.245226], + [-77.38561, 38.2451], + [-77.386493, 38.244982], + [-77.386501, 38.244981], + [-77.387222, 38.244981], + [-77.387348, 38.244981], + [-77.387705, 38.245014], + [-77.387725, 38.245016], + [-77.387733, 38.245017], + [-77.387826, 38.245026], + [-77.38785, 38.245029], + [-77.387917, 38.245039], + [-77.387975, 38.245048], + [-77.388897, 38.245191], + [-77.390404, 38.245504], + [-77.390415, 38.245506], + [-77.390852, 38.245597], + [-77.391047, 38.24567], + [-77.391391, 38.245799], + [-77.391495, 38.245838], + [-77.39284, 38.246343], + [-77.393781, 38.246869], + [-77.393848, 38.246905], + [-77.395734, 38.247904], + [-77.397375, 38.249015], + [-77.3974, 38.249032], + [-77.397419, 38.249045], + [-77.397434, 38.249055], + [-77.397632, 38.249189], + [-77.397644, 38.249197], + [-77.398942, 38.250044], + [-77.399085, 38.250137], + [-77.400969, 38.251425], + [-77.400978, 38.251431], + [-77.401314, 38.251696], + [-77.40204, 38.252268], + [-77.404028, 38.253336], + [-77.405529, 38.25411], + [-77.407994, 38.254603], + [-77.408564, 38.254717], + [-77.412586, 38.255499], + [-77.413954, 38.255724], + [-77.414689, 38.255846], + [-77.414731, 38.255853], + [-77.41475, 38.255856], + [-77.414769, 38.255859], + [-77.41501, 38.255898], + [-77.415923, 38.256049], + [-77.416091, 38.256077], + [-77.41677, 38.256211], + [-77.41711, 38.256279], + [-77.417162, 38.25629], + [-77.417214, 38.2563], + [-77.417362, 38.256329], + [-77.417435, 38.256343], + [-77.41746, 38.256355], + [-77.417468, 38.256359], + [-77.417475, 38.256362], + [-77.417488, 38.256368], + [-77.41845, 38.256832], + [-77.41986, 38.257796], + [-77.419865, 38.2578], + [-77.419873, 38.257805], + [-77.419911, 38.257831], + [-77.42015, 38.257994], + [-77.420248, 38.258177], + [-77.420986, 38.259562], + [-77.421211, 38.259983], + [-77.421982, 38.261343], + [-77.421988, 38.261353], + [-77.422261, 38.261835], + [-77.422339, 38.262071], + [-77.422387, 38.262218], + [-77.42313, 38.264475], + [-77.423322, 38.265024], + [-77.423324, 38.265031], + [-77.423326, 38.265036], + [-77.423337, 38.265067], + [-77.423343, 38.265083], + [-77.423535, 38.26563], + [-77.423551, 38.265657], + [-77.423702, 38.265912], + [-77.423722, 38.265945], + [-77.423737, 38.26597], + [-77.423743, 38.26598], + [-77.423747, 38.265988], + [-77.424156, 38.266681], + [-77.42417, 38.26669], + [-77.425149, 38.267319], + [-77.425157, 38.267324], + [-77.42517, 38.267333], + [-77.425192, 38.267347], + [-77.425211, 38.267359], + [-77.426446, 38.268153], + [-77.427428, 38.268667], + [-77.427437, 38.268672], + [-77.427447, 38.268677], + [-77.427455, 38.268681], + [-77.427474, 38.268691], + [-77.427795, 38.268859], + [-77.428622, 38.269292], + [-77.428689, 38.269327], + [-77.430362, 38.269555], + [-77.432835, 38.270174], + [-77.433833, 38.270925], + [-77.433838, 38.270929], + [-77.433858, 38.270944], + [-77.434313, 38.271286], + [-77.43573, 38.27309], + [-77.435833, 38.273221], + [-77.436593, 38.274418], + [-77.436613, 38.27445], + [-77.436629, 38.274475], + [-77.436632, 38.27448], + [-77.436638, 38.274489], + [-77.436907, 38.274912], + [-77.437308, 38.277372], + [-77.437494, 38.278319], + [-77.437609, 38.278904], + [-77.437979, 38.280325], + [-77.438419, 38.280991], + [-77.438828, 38.281515], + [-77.438884, 38.281587], + [-77.439615, 38.282067], + [-77.440742, 38.282516], + [-77.442022, 38.282587], + [-77.442048, 38.282589], + [-77.443877, 38.282502], + [-77.443891, 38.282506], + [-77.445734, 38.283057], + [-77.445749, 38.283061], + [-77.445787, 38.283108], + [-77.446016, 38.283345], + [-77.446147, 38.283484], + [-77.446667, 38.284025], + [-77.44709, 38.284512], + [-77.447128, 38.284622], + [-77.447151, 38.284615], + [-77.448595, 38.284147], + [-77.448285, 38.283431], + [-77.449797, 38.283118], + [-77.450116, 38.283546], + [-77.450212, 38.283674], + [-77.450587, 38.283938], + [-77.451464, 38.284356], + [-77.45155, 38.284397], + [-77.45169, 38.284464], + [-77.451741, 38.28451], + [-77.453247, 38.284037], + [-77.454511, 38.283737], + [-77.45464, 38.283707], + [-77.454608, 38.283636], + [-77.453955, 38.281873], + [-77.453716, 38.281078], + [-77.453626, 38.280766], + [-77.453279, 38.279489], + [-77.453214, 38.279249], + [-77.453185, 38.278783], + [-77.45276, 38.277702], + [-77.452634, 38.277384], + [-77.452549, 38.277147], + [-77.451893, 38.276195], + [-77.451397, 38.275694], + [-77.450839, 38.275128], + [-77.450572, 38.274857], + [-77.45216, 38.273895], + [-77.452775, 38.273595], + [-77.454052, 38.272971], + [-77.454064, 38.272965], + [-77.456865, 38.271597], + [-77.457173, 38.271445], + [-77.45747, 38.2713], + [-77.457839, 38.271116], + [-77.458867, 38.272848], + [-77.459198, 38.273406], + [-77.460196, 38.275085], + [-77.460425, 38.275516], + [-77.460652, 38.275942], + [-77.460877, 38.276769], + [-77.461035, 38.277618], + [-77.461056, 38.277812], + [-77.461365, 38.277787], + [-77.461741, 38.277814], + [-77.462187, 38.277896], + [-77.463092, 38.278209], + [-77.463991, 38.278588], + [-77.465029, 38.278977], + [-77.465315, 38.279049], + [-77.465313, 38.279308], + [-77.465312, 38.279671], + [-77.465359, 38.279807], + [-77.465923, 38.2798], + [-77.467153, 38.279788], + [-77.467151, 38.27967], + [-77.46715, 38.279618], + [-77.467194, 38.27955], + [-77.468572, 38.277374], + [-77.468808, 38.277001], + [-77.46884, 38.276951], + [-77.46947, 38.275901], + [-77.470068, 38.274884], + [-77.471001, 38.273322], + [-77.471033, 38.27328], + [-77.472442, 38.271419], + [-77.47339, 38.270253], + [-77.475452, 38.270811], + [-77.47738, 38.271333], + [-77.477466, 38.271356], + [-77.478713, 38.271693], + [-77.479687, 38.271957], + [-77.479772, 38.27198], + [-77.482564, 38.272736], + [-77.482603, 38.272747], + [-77.482347, 38.272964], + [-77.482583, 38.272996], + [-77.482809, 38.273036], + [-77.483211, 38.273063], + [-77.484626, 38.273157], + [-77.485136, 38.273192], + [-77.48718, 38.27333], + [-77.487462, 38.273349], + [-77.488694, 38.273431], + [-77.489498, 38.273482], + [-77.491894, 38.273634], + [-77.491954, 38.273638], + [-77.492047, 38.273645], + [-77.49471, 38.273842], + [-77.492815, 38.278812], + [-77.492955, 38.278951], + [-77.493931, 38.279516], + [-77.494147, 38.279823], + [-77.494377, 38.280432], + [-77.494402, 38.280544], + [-77.494433, 38.28068], + [-77.494489, 38.281091], + [-77.494531, 38.281349], + [-77.494567, 38.282371], + [-77.495221, 38.282206], + [-77.495709, 38.282172], + [-77.496057, 38.282189], + [-77.496266, 38.28226], + [-77.496594, 38.282622], + [-77.49674, 38.28277], + [-77.496789, 38.282869], + [-77.496922, 38.282962], + [-77.497186, 38.283006], + [-77.497507, 38.283099], + [-77.497667, 38.283061], + [-77.497911, 38.282918], + [-77.498064, 38.28227], + [-77.498008, 38.282072], + [-77.498, 38.281759], + [-77.498195, 38.281446], + [-77.498231, 38.281412], + [-77.498453, 38.281205], + [-77.498522, 38.281001], + [-77.498515, 38.280842], + [-77.498515, 38.280655], + [-77.498522, 38.28048], + [-77.498563, 38.280408], + [-77.498647, 38.280084], + [-77.499023, 38.279854], + [-77.499218, 38.279727], + [-77.499349, 38.279669], + [-77.499451, 38.279624], + [-77.499468, 38.279612], + [-77.499608, 38.279606], + [-77.499747, 38.279606], + [-77.500005, 38.279677], + [-77.500081, 38.279665], + [-77.500186, 38.279588], + [-77.500325, 38.279478], + [-77.500472, 38.279374], + [-77.500597, 38.279308], + [-77.500785, 38.279231], + [-77.500952, 38.279204], + [-77.50121, 38.279116], + [-77.501412, 38.279072], + [-77.501607, 38.279045], + [-77.501775, 38.279089], + [-77.501976, 38.279188], + [-77.50215, 38.279336], + [-77.502255, 38.279457], + [-77.502331, 38.279484], + [-77.502429, 38.279501], + [-77.502589, 38.279633], + [-77.50268, 38.279677], + [-77.502763, 38.27971], + [-77.502916, 38.279726], + [-77.503014, 38.279748], + [-77.503084, 38.27977], + [-77.503146, 38.279869], + [-77.503188, 38.279963], + [-77.50325, 38.280034], + [-77.503341, 38.280067], + [-77.503571, 38.280067], + [-77.503731, 38.280111], + [-77.503856, 38.280155], + [-77.503982, 38.280155], + [-77.504323, 38.280117], + [-77.504532, 38.280101], + [-77.504769, 38.280112], + [-77.504978, 38.280112], + [-77.505382, 38.280139], + [-77.505591, 38.280178], + [-77.505855, 38.28026], + [-77.506009, 38.280304], + [-77.506232, 38.280321], + [-77.506371, 38.280327], + [-77.506576, 38.280357], + [-77.506629, 38.280365], + [-77.506893, 38.280404], + [-77.507012, 38.280426], + [-77.507158, 38.280459], + [-77.507464, 38.280481], + [-77.507736, 38.280508], + [-77.5079, 38.280541], + [-77.508043, 38.280569], + [-77.508321, 38.28058], + [-77.508969, 38.280531], + [-77.509324, 38.280487], + [-77.509547, 38.280427], + [-77.509875, 38.280356], + [-77.510244, 38.28029], + [-77.510516, 38.280213], + [-77.510787, 38.280164], + [-77.510875, 38.280144], + [-77.511101, 38.280093], + [-77.511366, 38.280049], + [-77.511661, 38.279993], + [-77.511751, 38.279976], + [-77.511828, 38.279961], + [-77.509406, 38.286778], + [-77.50935, 38.286936], + [-77.508165, 38.290399], + [-77.507565, 38.292151], + [-77.507623, 38.292182], + [-77.50779, 38.292259], + [-77.507936, 38.292347], + [-77.508104, 38.29244], + [-77.508236, 38.292528], + [-77.508438, 38.292654], + [-77.508584, 38.292753], + [-77.508807, 38.292962], + [-77.508898, 38.293017], + [-77.509072, 38.293072], + [-77.509141, 38.29311], + [-77.509197, 38.29316], + [-77.509253, 38.293198], + [-77.509517, 38.293237], + [-77.509603, 38.293272], + [-77.509678, 38.293303], + [-77.509724, 38.293325], + [-77.509803, 38.293363], + [-77.510012, 38.293424], + [-77.510143, 38.293467], + [-77.510297, 38.293517], + [-77.510722, 38.293611], + [-77.510876, 38.293638], + [-77.511036, 38.293715], + [-77.511184, 38.293772], + [-77.511294, 38.293814], + [-77.511537, 38.29394], + [-77.511649, 38.294012], + [-77.511816, 38.294111], + [-77.511948, 38.294221], + [-77.512067, 38.294303], + [-77.51213, 38.294379], + [-77.512178, 38.294435], + [-77.512195, 38.294452], + [-77.512269, 38.294528], + [-77.512352, 38.2946], + [-77.51245, 38.294644], + [-77.512517, 38.294666], + [-77.512596, 38.294693], + [-77.512679, 38.294699], + [-77.512756, 38.294688], + [-77.51277, 38.294705], + [-77.512798, 38.294737], + [-77.51279, 38.294797], + [-77.512886, 38.295048], + [-77.513, 38.295347], + [-77.513038, 38.295392], + [-77.51311, 38.295475], + [-77.513252, 38.295796], + [-77.513274, 38.295845], + [-77.513351, 38.29602], + [-77.513571, 38.296276], + [-77.513602, 38.296312], + [-77.514045, 38.296186], + [-77.514052, 38.296184], + [-77.514117, 38.296148], + [-77.514314, 38.29603], + [-77.514601, 38.295867], + [-77.515485, 38.295574], + [-77.51572, 38.295496], + [-77.516693, 38.295174], + [-77.516807, 38.295136], + [-77.516834, 38.295197], + [-77.51695, 38.295463], + [-77.517134, 38.295438], + [-77.517895, 38.296922], + [-77.517713, 38.297315], + [-77.517994, 38.297533], + [-77.51785, 38.297682], + [-77.517835, 38.297697], + [-77.517085, 38.298471], + [-77.51613, 38.300022], + [-77.515288, 38.302539], + [-77.514885, 38.305507], + [-77.516423, 38.305622], + [-77.516353, 38.306337], + [-77.516346, 38.30641], + [-77.517066, 38.306464], + [-77.517565, 38.306502], + [-77.517672, 38.306513], + [-77.518257, 38.306566], + [-77.518292, 38.30657], + [-77.518534, 38.306595], + [-77.519331, 38.306672], + [-77.51949, 38.306683], + [-77.519698, 38.306698], + [-77.520051, 38.306706], + [-77.520167, 38.306707], + [-77.520579, 38.306698], + [-77.520908, 38.30668], + [-77.521918, 38.3066], + [-77.522076, 38.306593], + [-77.522274, 38.306597], + [-77.522435, 38.306612], + [-77.522664, 38.30665], + [-77.522853, 38.306697], + [-77.523164, 38.306799], + [-77.523209, 38.306812], + [-77.523372, 38.306856], + [-77.523424, 38.306869], + [-77.523607, 38.306907], + [-77.523656, 38.306915], + [-77.523798, 38.306937], + [-77.52404, 38.306963], + [-77.524811, 38.30701], + [-77.525003, 38.307025], + [-77.525617, 38.307072], + [-77.526041, 38.30712], + [-77.52623, 38.307159], + [-77.526378, 38.307202], + [-77.526538, 38.30726], + [-77.527106, 38.307477], + [-77.527558, 38.30765], + [-77.528526, 38.308058], + [-77.528682, 38.308142], + [-77.528813, 38.308193], + [-77.529195, 38.308295], + [-77.52962, 38.308388], + [-77.530585, 38.308475], + [-77.53102, 38.308439], + [-77.532315, 38.308506], + [-77.532688, 38.308475], + [-77.532681, 38.308511], + [-77.532673, 38.308539], + [-77.532617, 38.308666], + [-77.532547, 38.308765], + [-77.532387, 38.308814], + [-77.532234, 38.30883], + [-77.532053, 38.308836], + [-77.531537, 38.308814], + [-77.531077, 38.308786], + [-77.530861, 38.308797], + [-77.530687, 38.308852], + [-77.530547, 38.308923], + [-77.530394, 38.309011], + [-77.530366, 38.309057], + [-77.530298, 38.30917], + [-77.530297, 38.309176], + [-77.530291, 38.30918], + [-77.530549, 38.309311], + [-77.530393, 38.309415], + [-77.530461, 38.30946], + [-77.530487, 38.309477], + [-77.530497, 38.309484], + [-77.530549, 38.309518], + [-77.530822, 38.309698], + [-77.531721, 38.309955], + [-77.531919, 38.310012], + [-77.531982, 38.31003], + [-77.53202, 38.310041], + [-77.532076, 38.310057], + [-77.532083, 38.310059], + [-77.532405, 38.310151], + [-77.532426, 38.310154], + [-77.532434, 38.310155], + [-77.532444, 38.310156], + [-77.532477, 38.31016], + [-77.532529, 38.310166], + [-77.532674, 38.310183], + [-77.5349, 38.310444], + [-77.535791, 38.310744], + [-77.535797, 38.310746], + [-77.535805, 38.310749], + [-77.536345, 38.310931], + [-77.53642, 38.310974], + [-77.53643, 38.31098], + [-77.537696, 38.311707], + [-77.537712, 38.311716], + [-77.537793, 38.311776], + [-77.537802, 38.311783], + [-77.537807, 38.311787], + [-77.539076, 38.312729], + [-77.540226, 38.313637], + [-77.540426, 38.313795], + [-77.540431, 38.313799], + [-77.540462, 38.313824], + [-77.540598, 38.313985], + [-77.540732, 38.314143], + [-77.541154, 38.314698], + [-77.542956, 38.317066], + [-77.543082, 38.317402], + [-77.54326, 38.317876], + [-77.543264, 38.317887], + [-77.54327, 38.317903], + [-77.543273, 38.31791], + [-77.543366, 38.318151], + [-77.543439, 38.318817], + [-77.54344, 38.318828], + [-77.543451, 38.318931], + [-77.543638, 38.320261], + [-77.543639, 38.32027], + [-77.54364, 38.320278], + [-77.543681, 38.320573], + [-77.543782, 38.320894], + [-77.543819, 38.321011], + [-77.544266, 38.322279], + [-77.54436, 38.322546], + [-77.544426, 38.32296], + [-77.544427, 38.322969], + [-77.544429, 38.32298], + [-77.544432, 38.322997], + [-77.544435, 38.323013], + [-77.544437, 38.323023], + [-77.544488, 38.323336], + [-77.544489, 38.323342], + [-77.54453, 38.323596], + [-77.544849, 38.324289], + [-77.544851, 38.324294], + [-77.544886, 38.32437], + [-77.544957, 38.324463], + [-77.544961, 38.324468], + [-77.544973, 38.324484], + [-77.545268, 38.324874], + [-77.54533, 38.324942], + [-77.545337, 38.324949], + [-77.545342, 38.324954], + [-77.545462, 38.325089], + [-77.545692, 38.325286], + [-77.545696, 38.32529], + [-77.545805, 38.325383], + [-77.546099, 38.325609], + [-77.546397, 38.325871], + [-77.546927, 38.326209], + [-77.547408, 38.326468], + [-77.54817, 38.326939], + [-77.548901, 38.327524], + [-77.549607, 38.328128], + [-77.549939, 38.328446], + [-77.550544, 38.329038], + [-77.550603, 38.329095], + [-77.550821, 38.329215], + [-77.550828, 38.329219], + [-77.551956, 38.329838], + [-77.55204, 38.329884], + [-77.55208, 38.3299], + [-77.553174, 38.330346], + [-77.553181, 38.330349], + [-77.553916, 38.330648], + [-77.554078, 38.330714], + [-77.554323, 38.330885], + [-77.555876, 38.332159], + [-77.555882, 38.332164], + [-77.556012, 38.332271], + [-77.557484, 38.333334], + [-77.558224, 38.333781], + [-77.558257, 38.333801], + [-77.558298, 38.333817], + [-77.558844, 38.334035], + [-77.559718, 38.334348], + [-77.55973, 38.334352], + [-77.560657, 38.334517], + [-77.560797, 38.334542], + [-77.56087, 38.334555], + [-77.560889, 38.334558], + [-77.560899, 38.33456], + [-77.561234, 38.334619], + [-77.561467, 38.334642], + [-77.56289, 38.334784], + [-77.563005, 38.334796], + [-77.563157, 38.334755], + [-77.563713, 38.334606], + [-77.564555, 38.334606], + [-77.564577, 38.334606], + [-77.564774, 38.334634], + [-77.564801, 38.334638], + [-77.564809, 38.334639], + [-77.564817, 38.33464], + [-77.565009, 38.334667], + [-77.565542, 38.335068], + [-77.565553, 38.33507], + [-77.56583, 38.335108], + [-77.566835, 38.335246], + [-77.566843, 38.335248], + [-77.567121, 38.335287], + [-77.567229, 38.335346], + [-77.567731, 38.335626], + [-77.567831, 38.335711], + [-77.568146, 38.335978], + [-77.568478, 38.336259], + [-77.569125, 38.33733], + [-77.569495, 38.338629], + [-77.569498, 38.338638], + [-77.569581, 38.338883], + [-77.569712, 38.339152], + [-77.569764, 38.339259], + [-77.569774, 38.339353], + [-77.569775, 38.339358], + [-77.569825, 38.33983], + [-77.569534, 38.340715], + [-77.569356, 38.341235], + [-77.569293, 38.341302], + [-77.568847, 38.341778], + [-77.568778, 38.341852], + [-77.568727, 38.341918], + [-77.568278, 38.342499], + [-77.568058, 38.342744], + [-77.568053, 38.342749], + [-77.567022, 38.343897], + [-77.566975, 38.343949], + [-77.566888, 38.344103], + [-77.566834, 38.344198], + [-77.566771, 38.34431], + [-77.566788, 38.344481], + [-77.566827, 38.344861], + [-77.566854, 38.345127], + [-77.566987, 38.345355], + [-77.567463, 38.346028], + [-77.567475, 38.346038], + [-77.567481, 38.346044], + [-77.567486, 38.346048], + [-77.567525, 38.346081], + [-77.567547, 38.346099], + [-77.567655, 38.34619], + [-77.567671, 38.346203], + [-77.568458, 38.346865], + [-77.569614, 38.347581], + [-77.570602, 38.347959], + [-77.571092, 38.348002], + [-77.571371, 38.348026], + [-77.571529, 38.34804], + [-77.57165, 38.348051], + [-77.571682, 38.348054], + [-77.57185, 38.348069], + [-77.572031, 38.34802], + [-77.572065, 38.348021], + [-77.572078, 38.348022], + [-77.572086, 38.348022], + [-77.572119, 38.348023], + [-77.572127, 38.348023], + [-77.57261, 38.348038], + [-77.573054, 38.348012], + [-77.573925, 38.347961], + [-77.575424, 38.347752], + [-77.575434, 38.347751], + [-77.575441, 38.34775], + [-77.575793, 38.347701], + [-77.576248, 38.347572], + [-77.576256, 38.34757], + [-77.576262, 38.347568], + [-77.576477, 38.347507], + [-77.576879, 38.347334], + [-77.576915, 38.347352], + [-77.576946, 38.34737], + [-77.577781, 38.347025], + [-77.578599, 38.346865], + [-77.57891, 38.346854], + [-77.578947, 38.346853], + [-77.578955, 38.346852], + [-77.578969, 38.346852], + [-77.579207, 38.346843], + [-77.579596, 38.346886], + [-77.579837, 38.346912], + [-77.579897, 38.346918], + [-77.581106, 38.347086], + [-77.581259, 38.347107], + [-77.581302, 38.347113], + [-77.581948, 38.34723], + [-77.582377, 38.347215], + [-77.582465, 38.347212], + [-77.582477, 38.347211], + [-77.582484, 38.347211], + [-77.582513, 38.34721], + [-77.583187, 38.347185], + [-77.583195, 38.347184], + [-77.583941, 38.347075], + [-77.58397, 38.347065], + [-77.584675, 38.346814], + [-77.584794, 38.346736], + [-77.584982, 38.346613], + [-77.584989, 38.346608], + [-77.585223, 38.346456], + [-77.585308, 38.346365], + [-77.585484, 38.346175], + [-77.5859, 38.345814], + [-77.586298, 38.345472], + [-77.586306, 38.345465], + [-77.586403, 38.345381], + [-77.586517, 38.345282], + [-77.586631, 38.345182], + [-77.587057, 38.344813], + [-77.587528, 38.343809], + [-77.588308, 38.342472], + [-77.588866, 38.341895], + [-77.589277, 38.341473], + [-77.589933, 38.340797], + [-77.59058, 38.340017], + [-77.591071, 38.339573], + [-77.591587, 38.338952], + [-77.592777, 38.337794], + [-77.593355, 38.337233], + [-77.594223, 38.336497], + [-77.594481, 38.336288], + [-77.594492, 38.336278], + [-77.594798, 38.33603], + [-77.595418, 38.335724], + [-77.595596, 38.335636], + [-77.595887, 38.335379], + [-77.596298, 38.335015], + [-77.59674, 38.334702], + [-77.597287, 38.334317], + [-77.59763, 38.334075], + [-77.598542, 38.333398], + [-77.599738, 38.332782], + [-77.600646, 38.332573], + [-77.601679, 38.332555], + [-77.60239, 38.332726], + [-77.603196, 38.333065], + [-77.603729, 38.333472], + [-77.603867, 38.333586], + [-77.604478, 38.334089], + [-77.605089, 38.334592], + [-77.605261, 38.334735], + [-77.60543, 38.334962], + [-77.605434, 38.334967], + [-77.605442, 38.334978], + [-77.605568, 38.335148], + [-77.605893, 38.335576], + [-77.606157, 38.335924], + [-77.60657, 38.336464], + [-77.606576, 38.336472], + [-77.606609, 38.336515], + [-77.606618, 38.336526], + [-77.606635, 38.336548], + [-77.606646, 38.336562], + [-77.60665, 38.336567], + [-77.606716, 38.336653], + [-77.606851, 38.336719], + [-77.606879, 38.336732], + [-77.606888, 38.336807], + [-77.606888, 38.336813], + [-77.606889, 38.336821], + [-77.606891, 38.336836], + [-77.606926, 38.337127], + [-77.60693, 38.337137], + [-77.607147, 38.337665], + [-77.607123, 38.337806], + [-77.607091, 38.337996], + [-77.607009, 38.338577], + [-77.606696, 38.339265], + [-77.60614, 38.340051], + [-77.605842, 38.340418], + [-77.60535, 38.341333], + [-77.604699, 38.342468], + [-77.604516, 38.342869], + [-77.604072, 38.343844], + [-77.603469, 38.345406], + [-77.603031, 38.346555], + [-77.60273, 38.347448], + [-77.602625, 38.34784], + [-77.602616, 38.347882], + [-77.602603, 38.347945], + [-77.60258, 38.34849], + [-77.602579, 38.348497], + [-77.602579, 38.348503], + [-77.602567, 38.348671], + [-77.60257, 38.348679], + [-77.602799, 38.349241], + [-77.603217, 38.35006], + [-77.6038, 38.351078], + [-77.603812, 38.351093], + [-77.604502, 38.351951], + [-77.60516, 38.352517], + [-77.605897, 38.35301], + [-77.606577, 38.353737], + [-77.607013, 38.354251], + [-77.607433, 38.354745], + [-77.608319, 38.355632], + [-77.608958, 38.356368], + [-77.609464, 38.356984], + [-77.609777, 38.357545], + [-77.60987, 38.357897], + [-77.609879, 38.357931], + [-77.609883, 38.357945], + [-77.609887, 38.357961], + [-77.609888, 38.357966], + [-77.60989, 38.357974], + [-77.609907, 38.358037], + [-77.609939, 38.358157], + [-77.609941, 38.358162], + [-77.610215, 38.35896], + [-77.610261, 38.359068], + [-77.610263, 38.359073], + [-77.610267, 38.359083], + [-77.610277, 38.359106], + [-77.610385, 38.359359], + [-77.610614, 38.359899], + [-77.610888, 38.360533], + [-77.611049, 38.360851], + [-77.611051, 38.360856], + [-77.611156, 38.361064], + [-77.611233, 38.361215], + [-77.611288, 38.361437], + [-77.611292, 38.361454], + [-77.611293, 38.361459], + [-77.611295, 38.361466], + [-77.611374, 38.361786], + [-77.611587, 38.362336], + [-77.611898, 38.362918], + [-77.612143, 38.363446], + [-77.612145, 38.363451], + [-77.61221, 38.36359], + [-77.612215, 38.363602], + [-77.612219, 38.363611], + [-77.61223, 38.363635], + [-77.612246, 38.363669], + [-77.612298, 38.36378], + [-77.612649, 38.364306], + [-77.613101, 38.364689], + [-77.613938, 38.3651], + [-77.614562, 38.365264], + [-77.614571, 38.365267], + [-77.614763, 38.365318], + [-77.615243, 38.365548], + [-77.616, 38.365872], + [-77.616012, 38.365877], + [-77.616034, 38.365886], + [-77.61614, 38.365931], + [-77.61715, 38.366312], + [-77.617238, 38.366339], + [-77.617326, 38.366366], + [-77.618076, 38.366618], + [-77.618362, 38.366704], + [-77.618379, 38.366762], + [-77.61849, 38.367138], + [-77.618681, 38.36766], + [-77.618729, 38.367843], + [-77.618811, 38.367861], + [-77.618918, 38.367885], + [-77.619197, 38.367948], + [-77.619477, 38.36801], + [-77.619973, 38.368031], + [-77.620165, 38.368038], + [-77.620704, 38.368061], + [-77.621634, 38.368158], + [-77.621884, 38.368213], + [-77.621907, 38.368218], + [-77.62192, 38.368221], + [-77.622107, 38.368269], + [-77.622779, 38.36844], + [-77.622859, 38.36846], + [-77.623079, 38.368473], + [-77.623197, 38.368436], + [-77.624233, 38.368433], + [-77.624406, 38.368396], + [-77.624518, 38.368372], + [-77.624605, 38.368385], + [-77.624695, 38.368399], + [-77.624723, 38.368403], + [-77.624731, 38.368404], + [-77.624881, 38.368427], + [-77.624989, 38.368371], + [-77.625002, 38.368373], + [-77.625236, 38.368409], + [-77.625397, 38.368433], + [-77.625634, 38.368558], + [-77.625795, 38.368642], + [-77.625979, 38.368739], + [-77.62656, 38.368863], + [-77.626795, 38.368862], + [-77.627248, 38.368749], + [-77.628359, 38.36808], + [-77.628575, 38.367786], + [-77.628655, 38.367471], + [-77.628814, 38.36727], + [-77.62887, 38.367199], + [-77.62892, 38.367135], + [-77.628947, 38.367101], + [-77.628974, 38.367066], + [-77.629142, 38.366853], + [-77.62943, 38.366642], + [-77.629646, 38.366348], + [-77.629825, 38.365829], + [-77.630023, 38.365605], + [-77.63024, 38.365492], + [-77.630349, 38.36535], + [-77.630383, 38.365305], + [-77.630663, 38.364938], + [-77.630887, 38.364426], + [-77.630995, 38.36437], + [-77.631137, 38.363627], + [-77.631424, 38.363053], + [-77.632152, 38.362035], + [-77.632448, 38.361426], + [-77.632817, 38.3609], + [-77.632925, 38.360843], + [-77.633096, 38.360542], + [-77.63342, 38.360191], + [-77.634089, 38.359783], + [-77.634966, 38.359479], + [-77.635193, 38.359513], + [-77.635573, 38.359316], + [-77.63608, 38.359356], + [-77.636297, 38.359244], + [-77.636696, 38.359158], + [-77.637104, 38.35922], + [-77.637321, 38.359107], + [-77.637719, 38.359022], + [-77.637991, 38.359063], + [-77.6381, 38.359007], + [-77.638262, 38.358922], + [-77.638552, 38.358893], + [-77.639504, 38.359037], + [-77.63985, 38.359162], + [-77.640086, 38.359343], + [-77.640358, 38.359385], + [-77.640541, 38.359594], + [-77.641177, 38.359872], + [-77.641532, 38.360144], + [-77.641849, 38.360192], + [-77.641995, 38.360359], + [-77.642849, 38.360706], + [-77.643158, 38.360971], + [-77.643476, 38.361019], + [-77.643731, 38.361312], + [-77.643858, 38.361368], + [-77.644169, 38.361815], + [-77.644413, 38.362453], + [-77.644509, 38.362702], + [-77.644503, 38.363283], + [-77.644586, 38.363514], + [-77.644524, 38.363759], + [-77.644588, 38.363878], + [-77.644482, 38.364298], + [-77.644522, 38.365068], + [-77.644505, 38.365138], + [-77.644214, 38.366658], + [-77.644, 38.367316], + [-77.643614, 38.368094], + [-77.643571, 38.368144], + [-77.642741, 38.369126], + [-77.642443, 38.369372], + [-77.641196, 38.37002], + [-77.640119, 38.370366], + [-77.639794, 38.370535], + [-77.63906, 38.370643], + [-77.638697, 38.370588], + [-77.638253, 38.370666], + [-77.637494, 38.371061], + [-77.637196, 38.371307], + [-77.637107, 38.371657], + [-77.637145, 38.371881], + [-77.638112, 38.373081], + [-77.638086, 38.373187], + [-77.638516, 38.373906], + [-77.638517, 38.374088], + [-77.639083, 38.374828], + [-77.639092, 38.375009], + [-77.639075, 38.375072], + [-77.639185, 38.375197], + [-77.639312, 38.375253], + [-77.64005, 38.376055], + [-77.64015, 38.376034], + [-77.641084, 38.377065], + [-77.641181, 38.377171], + [-77.641364, 38.377199], + [-77.641407, 38.377206], + [-77.641667, 38.377378], + [-77.641689, 38.377394], + [-77.641998, 38.377477], + [-77.642097, 38.377481], + [-77.642325, 38.37749], + [-77.642487, 38.377405], + [-77.64285, 38.37746], + [-77.642969, 38.377551], + [-77.644275, 38.377784], + [-77.644514, 38.377875], + [-77.644748, 38.377965], + [-77.645097, 38.378017], + [-77.645746, 38.378115], + [-77.646071, 38.377946], + [-77.646687, 38.37793], + [-77.646959, 38.377789], + [-77.647257, 38.377725], + [-77.647666, 38.377787], + [-77.647948, 38.377641], + [-77.6481, 38.377562], + [-77.648236, 38.377582], + [-77.649194, 38.377145], + [-77.64933, 38.377166], + [-77.650234, 38.376757], + [-77.65159, 38.376004], + [-77.651933, 38.375813], + [-77.652013, 38.375781], + [-77.652774, 38.375467], + [-77.653028, 38.375397], + [-77.653391, 38.375451], + [-77.653608, 38.375339], + [-77.654569, 38.375447], + [-77.65485, 38.375453], + [-77.654959, 38.375397], + [-77.655229, 38.375434], + [-77.655572, 38.37548], + [-77.655587, 38.375482], + [-77.655594, 38.375483], + [-77.655601, 38.375484], + [-77.65561, 38.375485], + [-77.655655, 38.375491], + [-77.65612, 38.375554], + [-77.656572, 38.37535], + [-77.656935, 38.375404], + [-77.657622, 38.375108], + [-77.657633, 38.375008], + [-77.657657, 38.374942], + [-77.658633, 38.374434], + [-77.658778, 38.37442], + [-77.659113, 38.374228], + [-77.65933, 38.374103], + [-77.659482, 38.373871], + [-77.659862, 38.373674], + [-77.660006, 38.373478], + [-77.660331, 38.373309], + [-77.660513, 38.373336], + [-77.661055, 38.373054], + [-77.661245, 38.373047], + [-77.66167, 38.372856], + [-77.661906, 38.372855], + [-77.663271, 38.372207], + [-77.664716, 38.371243], + [-77.665583, 38.370792], + [-77.665719, 38.370813], + [-77.66619, 38.370629], + [-77.666507, 38.370677], + [-77.667077, 38.370472], + [-77.667713, 38.370659], + [-77.667794, 38.370616], + [-77.668066, 38.370658], + [-77.668346, 38.370482], + [-77.66988, 38.370749], + [-77.670169, 38.37072], + [-77.670332, 38.370636], + [-77.670514, 38.370663], + [-77.67093, 38.370508], + [-77.671364, 38.370464], + [-77.671446, 38.370513], + [-77.671609, 38.370428], + [-77.671799, 38.37033], + [-77.67244, 38.369935], + [-77.673088, 38.369233], + [-77.673466, 38.368672], + [-77.673688, 38.367978], + [-77.673769, 38.367845], + [-77.673796, 38.367827], + [-77.673995, 38.367697], + [-77.674192, 38.367291], + [-77.67449, 38.367045], + [-77.675863, 38.36627], + [-77.676657, 38.365735], + [-77.677144, 38.3653], + [-77.677467, 38.364767], + [-77.677647, 38.364612], + [-77.67762, 38.364535], + [-77.677764, 38.364339], + [-77.678075, 38.363295], + [-77.678037, 38.363071], + [-77.678213, 38.362188], + [-77.678288, 38.361145], + [-77.678629, 38.360542], + [-77.679107, 38.360141], + [-77.679338, 38.360021], + [-77.679541, 38.359916], + [-77.679885, 38.359859], + [-77.680293, 38.35992], + [-77.680555, 38.359814], + [-77.681018, 38.359848], + [-77.681362, 38.359791], + [-77.68177, 38.359852], + [-77.681987, 38.359739], + [-77.682282, 38.359744], + [-77.683065, 38.359756], + [-77.68341, 38.359699], + [-77.684643, 38.359849], + [-77.685168, 38.359819], + [-77.685548, 38.359621], + [-77.685681, 38.359651], + [-77.685793, 38.359677], + [-77.685899, 38.359622], + [-77.685983, 38.359578], + [-77.686444, 38.359429], + [-77.687224, 38.35951], + [-77.687495, 38.359369], + [-77.688111, 38.359353], + [-77.688274, 38.359269], + [-77.688953, 38.359189], + [-77.690672, 38.358721], + [-77.690704, 38.35873], + [-77.691846, 38.35816], + [-77.692963, 38.357351], + [-77.693231, 38.357125], + [-77.694116, 38.356629], + [-77.694619, 38.356501], + [-77.695473, 38.356429], + [-77.695785, 38.356473], + [-77.696786, 38.356655], + [-77.697111, 38.356731], + [-77.697592, 38.357077], + [-77.700328, 38.359586], + [-77.701038, 38.36007], + [-77.701244, 38.360137], + [-77.701301, 38.360155], + [-77.701894, 38.360347], + [-77.702, 38.360368], + [-77.703191, 38.360606], + [-77.703197, 38.36058], + [-77.703209, 38.360536], + [-77.703451, 38.360367], + [-77.703458, 38.360362], + [-77.703466, 38.360357], + [-77.704066, 38.359938], + [-77.704154, 38.359588], + [-77.703542, 38.358841], + [-77.703578, 38.358701], + [-77.70374, 38.358617], + [-77.704529, 38.358663], + [-77.704737, 38.358585], + [-77.705271, 38.35852], + [-77.705533, 38.358414], + [-77.705987, 38.358482], + [-77.706669, 38.358766], + [-77.707077, 38.358828], + [-77.707548, 38.358826], + [-77.707765, 38.358713], + [-77.7078, 38.358573], + [-77.707016, 38.357764], + [-77.706941, 38.357499], + [-77.706686, 38.357206], + [-77.70615, 38.357089], + [-77.705661, 38.357161], + [-77.705299, 38.357106], + [-77.705324, 38.356819], + [-77.705522, 38.356594], + [-77.705584, 38.356349], + [-77.705146, 38.355847], + [-77.705064, 38.355624], + [-77.704955, 38.355548], + [-77.705082, 38.355531], + [-77.705109, 38.355466], + [-77.705134, 38.355366], + [-77.705151, 38.355258], + [-77.705213, 38.355021], + [-77.705493, 38.354845], + [-77.706536, 38.355002], + [-77.70758, 38.355341], + [-77.709086, 38.355531], + [-77.709465, 38.355333], + [-77.709591, 38.355116], + [-77.709162, 38.35467], + [-77.708689, 38.35449], + [-77.708478, 38.354364], + [-77.70828, 38.354246], + [-77.70796, 38.353834], + [-77.70783, 38.353233], + [-77.707637, 38.352877], + [-77.707708, 38.352597], + [-77.70796, 38.352344], + [-77.708267, 38.352245], + [-77.708997, 38.352395], + [-77.709325, 38.35245], + [-77.710071, 38.352499], + [-77.710949, 38.352642], + [-77.711005, 38.352603], + [-77.710999, 38.352449], + [-77.710998, 38.352428], + [-77.710726, 38.351895], + [-77.710705, 38.351786], + [-77.710768, 38.351549], + [-77.710782, 38.351077], + [-77.710851, 38.350951], + [-77.711018, 38.350836], + [-77.711199, 38.350873], + [-77.7115, 38.350934], + [-77.711723, 38.351028], + [-77.711981, 38.351165], + [-77.712357, 38.351242], + [-77.712657, 38.351379], + [-77.713034, 38.351439], + [-77.713089, 38.351395], + [-77.71311, 38.351335], + [-77.713043, 38.351172], + [-77.713006, 38.351082], + [-77.713033, 38.350907], + [-77.713189, 38.350725], + [-77.713249, 38.350654], + [-77.713256, 38.350588], + [-77.713192, 38.350455], + [-77.71311, 38.350286], + [-77.713096, 38.350204], + [-77.713264, 38.350084], + [-77.713312, 38.35005], + [-77.713786, 38.349836], + [-77.714037, 38.349742], + [-77.714253, 38.349567], + [-77.714601, 38.349166], + [-77.714664, 38.348985], + [-77.714667, 38.348959], + [-77.714706, 38.348611], + [-77.714671, 38.348441], + [-77.714531, 38.348249], + [-77.714492, 38.348189], + [-77.714399, 38.348046], + [-77.714329, 38.347974], + [-77.714085, 38.347898], + [-77.713562, 38.347673], + [-77.713422, 38.347596], + [-77.713262, 38.347475], + [-77.713171, 38.347371], + [-77.713039, 38.347173], + [-77.712948, 38.347085], + [-77.71269, 38.346525], + [-77.712453, 38.346152], + [-77.712397, 38.346026], + [-77.712383, 38.345801], + [-77.712418, 38.345697], + [-77.712452, 38.345455], + [-77.712641, 38.345241], + [-77.712884, 38.344906], + [-77.713087, 38.34473], + [-77.713219, 38.344686], + [-77.713379, 38.344587], + [-77.713546, 38.344274], + [-77.713797, 38.344055], + [-77.714097, 38.344038], + [-77.714116, 38.344027], + [-77.714123, 38.344027], + [-77.714257, 38.343972], + [-77.714376, 38.343972], + [-77.714564, 38.344029], + [-77.71492, 38.344137], + [-77.715059, 38.344164], + [-77.715303, 38.344175], + [-77.715512, 38.344147], + [-77.715756, 38.344016], + [-77.715833, 38.343933], + [-77.715903, 38.343645], + [-77.715923, 38.343565], + [-77.715979, 38.343494], + [-77.71646, 38.343411], + [-77.716691, 38.343337], + [-77.716697, 38.343335], + [-77.716767, 38.343269], + [-77.71685, 38.343071], + [-77.716982, 38.342884], + [-77.717247, 38.342308], + [-77.717428, 38.342198], + [-77.717958, 38.342071], + [-77.718091, 38.342022], + [-77.718411, 38.341846], + [-77.718648, 38.34161], + [-77.718745, 38.341292], + [-77.718815, 38.340572], + [-77.718752, 38.340441], + [-77.718675, 38.340122], + [-77.718591, 38.339947], + [-77.718208, 38.339656], + [-77.718068, 38.339464], + [-77.717803, 38.339217], + [-77.717476, 38.33903], + [-77.717057, 38.338728], + [-77.71653, 38.338397], + [-77.716367, 38.338295], + [-77.716151, 38.338119], + [-77.716111, 38.338072], + [-77.716043, 38.33799], + [-77.715921, 38.337845], + [-77.715544, 38.337466], + [-77.715425, 38.337378], + [-77.71523, 38.337296], + [-77.715121, 38.33721], + [-77.715035, 38.337142], + [-77.714861, 38.337005], + [-77.7147, 38.336698], + [-77.714679, 38.336582], + [-77.714714, 38.33639], + [-77.714818, 38.336077], + [-77.715139, 38.335825], + [-77.715278, 38.335748], + [-77.715383, 38.33572], + [-77.715655, 38.335605], + [-77.71594, 38.335517], + [-77.71608, 38.335495], + [-77.716303, 38.335506], + [-77.716561, 38.335594], + [-77.716735, 38.335632], + [-77.716993, 38.335615], + [-77.717113, 38.335587], + [-77.717279, 38.335549], + [-77.717836, 38.335489], + [-77.717949, 38.335487], + [-77.717972, 38.335487], + [-77.717991, 38.335487], + [-77.717999, 38.335487], + [-77.718007, 38.335486], + [-77.71802, 38.335486], + [-77.718248, 38.335483], + [-77.718259, 38.335484], + [-77.719286, 38.335582], + [-77.7196, 38.335565], + [-77.719739, 38.335516], + [-77.719837, 38.335411], + [-77.71984, 38.335404], + [-77.719885, 38.335302], + [-77.719892, 38.335148], + [-77.71939, 38.334659], + [-77.719439, 38.334522], + [-77.719808, 38.334248], + [-77.720108, 38.33428], + [-77.720213, 38.334264], + [-77.720533, 38.334126], + [-77.720728, 38.33411], + [-77.720944, 38.334137], + [-77.721105, 38.334055], + [-77.721195, 38.333934], + [-77.721265, 38.333566], + [-77.721341, 38.333434], + [-77.721377, 38.33338], + [-77.721488, 38.333215], + [-77.721585, 38.333023], + [-77.721648, 38.33283], + [-77.721696, 38.332529], + [-77.721877, 38.332089], + [-77.721989, 38.331963], + [-77.722128, 38.331743], + [-77.722532, 38.331298], + [-77.722678, 38.331062], + [-77.722915, 38.330848], + [-77.722977, 38.330756], + [-77.723082, 38.330601], + [-77.723284, 38.330233], + [-77.723792, 38.329481], + [-77.723883, 38.329305], + [-77.724315, 38.328761], + [-77.724475, 38.328531], + [-77.724684, 38.328174], + [-77.724865, 38.327971], + [-77.725025, 38.327751], + [-77.725227, 38.327257], + [-77.72529, 38.327048], + [-77.725401, 38.326905], + [-77.72554, 38.326658], + [-77.725693, 38.326434], + [-77.725909, 38.32612], + [-77.725932, 38.325962], + [-77.725937, 38.325928], + [-77.725993, 38.325736], + [-77.726133, 38.325567], + [-77.726188, 38.3255], + [-77.726225, 38.325309], + [-77.726243, 38.325215], + [-77.726264, 38.32511], + [-77.726344, 38.324804], + [-77.726424, 38.3245], + [-77.726689, 38.323973], + [-77.72669, 38.323942], + [-77.726691, 38.323913], + [-77.727475, 38.323214], + [-77.727481, 38.323209], + [-77.727486, 38.323205], + [-77.72749, 38.323201], + [-77.729086, 38.321779], + [-77.729172, 38.321703], + [-77.729199, 38.321625], + [-77.729265, 38.32157], + [-77.730211, 38.320743], + [-77.731793, 38.319358], + [-77.736611, 38.315151], + [-77.738362, 38.313621], + [-77.739019, 38.313051], + [-77.740035, 38.312164], + [-77.740558, 38.311707], + [-77.742, 38.310445], + [-77.742004, 38.310441], + [-77.744454, 38.308302], + [-77.744524, 38.308241], + [-77.744534, 38.308232], + [-77.744695, 38.308092], + [-77.746672, 38.306366], + [-77.748167, 38.305044], + [-77.748307, 38.304918], + [-77.748419, 38.304817], + [-77.749583, 38.303731], + [-77.74972, 38.30361], + [-77.751229, 38.302191], + [-77.751336, 38.302092], + [-77.757204, 38.296574], + [-77.758601, 38.295265], + [-77.761298, 38.292741], + [-77.766253, 38.288078], + [-77.769463, 38.285061], + [-77.772244, 38.282446], + [-77.773299, 38.281455], + [-77.777867, 38.27717], + [-77.780507, 38.274689], + [-77.783264, 38.272098], + [-77.7835, 38.271896], + [-77.783527, 38.271873], + [-77.785812, 38.269936], + [-77.786394, 38.269445], + [-77.789503, 38.266911], + [-77.793984, 38.263186], + [-77.7983, 38.259448], + [-77.798321, 38.25943], + [-77.798533, 38.259245], + [-77.798571, 38.259213], + [-77.801566, 38.256698], + [-77.80602, 38.252954], + [-77.807464, 38.25174], + [-77.809368, 38.250137], + [-77.812299, 38.247637], + [-77.814042, 38.246244], + [-77.815901, 38.244694], + [-77.817417, 38.243429], + [-77.817855, 38.243063], + [-77.818526, 38.242504], + [-77.819149, 38.241985], + [-77.820078, 38.24121], + [-77.826772, 38.235628], + [-77.826809, 38.235597], + [-77.827629, 38.234913], + [-77.82987, 38.233045], + [-77.834097, 38.229498], + [-77.835743, 38.227854], + [-77.836435, 38.227166], + [-77.837005, 38.226593], + [-77.840033, 38.223571], + [-77.84173, 38.221874], + [-77.845562, 38.218045], + [-77.845973, 38.217633], + [-77.846902, 38.216706], + [-77.852286, 38.211323], + [-77.853574, 38.210035], + [-77.856035, 38.207575], + [-77.858041, 38.205571], + [-77.865098, 38.198517], + [-77.866582, 38.19706], + [-77.869763, 38.193937], + [-77.872123, 38.19162], + [-77.872181, 38.191563], + [-77.874778, 38.189039], + [-77.875736, 38.188181], + [-77.876205, 38.187761], + [-77.881313, 38.183198], + [-77.884938, 38.179961], + [-77.889071, 38.176269], + [-77.889422, 38.175957], + [-77.889731, 38.175683], + [-77.89319, 38.17259], + [-77.896021, 38.170045], + [-77.899196, 38.167186], + [-77.902363, 38.164333], + [-77.902894, 38.163858], + [-77.904562, 38.162356], + [-77.904953, 38.162006], + [-77.90698, 38.160181], + [-77.908399, 38.158908], + [-77.915042, 38.152928], + [-77.916843, 38.151308], + [-77.917833, 38.150414], + [-77.921958, 38.146772], + [-77.924242, 38.144759], + [-77.924472, 38.144556], + [-77.924702, 38.144353], + [-77.925407, 38.143718], + [-77.925967, 38.143216], + [-77.926587, 38.142662], + [-77.926596, 38.142654], + [-77.9266, 38.14265], + [-77.926609, 38.142642], + [-77.92689, 38.142391], + [-77.928886, 38.140626], + [-77.929208, 38.140341], + [-77.929416, 38.140157], + [-77.929436, 38.140139], + [-77.929469, 38.14011], + [-77.929483, 38.140098], + [-77.929489, 38.140093], + [-77.929499, 38.140084], + [-77.930881, 38.138862], + [-77.932596, 38.137347], + [-77.93439, 38.135753], + [-77.935031, 38.135185], + [-77.938702, 38.131933], + [-77.938751, 38.13189], + [-77.944577, 38.126731], + [-77.946398, 38.125119], + [-77.946627, 38.124908], + [-77.947546, 38.124067], + [-77.952372, 38.119648], + [-77.953573, 38.118567], + [-77.954821, 38.117445], + [-77.954378, 38.117753], + [-77.953524, 38.118137], + [-77.953426, 38.11822], + [-77.953426, 38.118412], + [-77.953362, 38.118477], + [-77.953327, 38.118513], + [-77.953028, 38.118614], + [-77.95273, 38.118716], + [-77.95263, 38.118616], + [-77.952232, 38.118618], + [-77.952232, 38.118519], + [-77.952232, 38.118419], + [-77.952232, 38.118319], + [-77.951899, 38.118153], + [-77.951834, 38.118121], + [-77.951735, 38.118021], + [-77.951436, 38.118023], + [-77.951337, 38.118023], + [-77.951138, 38.118025], + [-77.951038, 38.118025], + [-77.95074, 38.117827], + [-77.95064, 38.117827], + [-77.950342, 38.117729], + [-77.950143, 38.11763], + [-77.949679, 38.117709], + [-77.949546, 38.117733], + [-77.949148, 38.117835], + [-77.94875, 38.117837], + [-77.948451, 38.118038], + [-77.948252, 38.118239], + [-77.948152, 38.118439], + [-77.948251, 38.118739], + [-77.948251, 38.119018], + [-77.948251, 38.119038], + [-77.948251, 38.119438], + [-77.948093, 38.119597], + [-77.947952, 38.119739], + [-77.947554, 38.119941], + [-77.94715, 38.120024], + [-77.947056, 38.120043], + [-77.946757, 38.119845], + [-77.946657, 38.119746], + [-77.946458, 38.119547], + [-77.946271, 38.119357], + [-77.946263, 38.119352], + [-77.946245, 38.119341], + [-77.94606, 38.119249], + [-77.945861, 38.11915], + [-77.945463, 38.119252], + [-77.945165, 38.119354], + [-77.944866, 38.119355], + [-77.944767, 38.119356], + [-77.944567, 38.119457], + [-77.944368, 38.119558], + [-77.944169, 38.119459], + [-77.943771, 38.119161], + [-77.943672, 38.119062], + [-77.943473, 38.118963], + [-77.943453, 38.118963], + [-77.943175, 38.118964], + [-77.943075, 38.118965], + [-77.942777, 38.118866], + [-77.942578, 38.118767], + [-77.942279, 38.118669], + [-77.94218, 38.11867], + [-77.941981, 38.118671], + [-77.941682, 38.118672], + [-77.941401, 38.118767], + [-77.941383, 38.118773], + [-77.941365, 38.118779], + [-77.940985, 38.118875], + [-77.940886, 38.118876], + [-77.940587, 38.118877], + [-77.940488, 38.118778], + [-77.940189, 38.11858], + [-77.93999, 38.118381], + [-77.939891, 38.118182], + [-77.939891, 38.117982], + [-77.939792, 38.117683], + [-77.939593, 38.117584], + [-77.939494, 38.117485], + [-77.93912, 38.117487], + [-77.939055, 38.117488], + [-77.938996, 38.117488], + [-77.938897, 38.117488], + [-77.938499, 38.117291], + [-77.938001, 38.116894], + [-77.937902, 38.116794], + [-77.937603, 38.116796], + [-77.937305, 38.116697], + [-77.937206, 38.116598], + [-77.936939, 38.116511], + [-77.936907, 38.1165], + [-77.936708, 38.116201], + [-77.936656, 38.116149], + [-77.936509, 38.116002], + [-77.936509, 38.115902], + [-77.93631, 38.115903], + [-77.936111, 38.115904], + [-77.936012, 38.115905], + [-77.936012, 38.115205], + [-77.935913, 38.115105], + [-77.935614, 38.114907], + [-77.935216, 38.114609], + [-77.934868, 38.114331], + [-77.934719, 38.114212], + [-77.93452, 38.114113], + [-77.93432, 38.114014], + [-77.934221, 38.114114], + [-77.934022, 38.114115], + [-77.933524, 38.114118], + [-77.933126, 38.11402], + [-77.932728, 38.113922], + [-77.93243, 38.113923], + [-77.932131, 38.114025], + [-77.931932, 38.114026], + [-77.931733, 38.113927], + [-77.931634, 38.113927], + [-77.930937, 38.114031], + [-77.930439, 38.113934], + [-77.930141, 38.113835], + [-77.929743, 38.113737], + [-77.929345, 38.113739], + [-77.929146, 38.11384], + [-77.928947, 38.113941], + [-77.928847, 38.114142], + [-77.928748, 38.114242], + [-77.928648, 38.114343], + [-77.928449, 38.114444], + [-77.928051, 38.114446], + [-77.927554, 38.114549], + [-77.927355, 38.11465], + [-77.927079, 38.11479], + [-77.926963, 38.114849], + [-77.926942, 38.114861], + [-77.926459, 38.114954], + [-77.926441, 38.114958], + [-77.926395, 38.114971], + [-77.926061, 38.115056], + [-77.925364, 38.11496], + [-77.925165, 38.114961], + [-77.924866, 38.115062], + [-77.924668, 38.114863], + [-77.924668, 38.114763], + [-77.924568, 38.114664], + [-77.924469, 38.114465], + [-77.92427, 38.114466], + [-77.923971, 38.114566], + [-77.923903, 38.11456], + [-77.923812, 38.114552], + [-77.92372, 38.114544], + [-77.92342, 38.114744], + [-77.92332, 38.114744], + [-77.92312, 38.114744], + [-77.92272, 38.114844], + [-77.92272, 38.114944], + [-77.92262, 38.115144], + [-77.92242, 38.115144], + [-77.92232, 38.115144], + [-77.92202, 38.115244], + [-77.92192, 38.115244], + [-77.92182, 38.115444], + [-77.92172, 38.115544], + [-77.92152, 38.115844], + [-77.92122, 38.115944], + [-77.92092, 38.116144], + [-77.92042, 38.116344], + [-77.92032, 38.116544], + [-77.92032, 38.116696], + [-77.92032, 38.116744], + [-77.92032, 38.116944], + [-77.92022, 38.117044], + [-77.920146, 38.117069], + [-77.91992, 38.117144], + [-77.91962, 38.117244], + [-77.91942, 38.117344], + [-77.91922, 38.117444], + [-77.91902, 38.117344], + [-77.91862, 38.117344], + [-77.91822, 38.117444], + [-77.91802, 38.117644], + [-77.91792, 38.117844], + [-77.91762, 38.118044], + [-77.91742, 38.118144], + [-77.91712, 38.118244], + [-77.91692, 38.118344], + [-77.91672, 38.118344], + [-77.91592, 38.118144], + [-77.91562, 38.117944], + [-77.91532, 38.117744], + [-77.91502, 38.117544], + [-77.91492, 38.117544], + [-77.914868, 38.117518], + [-77.91452, 38.117344], + [-77.914333, 38.11725], + [-77.91412, 38.117144], + [-77.91402, 38.117044], + [-77.91402, 38.116944], + [-77.91392, 38.116644], + [-77.91372, 38.116444], + [-77.91372, 38.116244], + [-77.91362, 38.116044], + [-77.913702, 38.115881], + [-77.91372, 38.115844], + [-77.91372, 38.115805], + [-77.91372, 38.115799], + [-77.91372, 38.115644], + [-77.91362, 38.115344], + [-77.91342, 38.115044], + [-77.913346, 38.114933], + [-77.91322, 38.114744], + [-77.91312, 38.114544], + [-77.91322, 38.114344], + [-77.913267, 38.114204], + [-77.91332, 38.114044], + [-77.91332, 38.113944], + [-77.91322, 38.113544], + [-77.91312, 38.113044], + [-77.91302, 38.112644], + [-77.91302, 38.112144], + [-77.91272, 38.111744], + [-77.91252, 38.111544], + [-77.91202, 38.111644], + [-77.91182, 38.111644], + [-77.911659, 38.11174], + [-77.91132, 38.111944], + [-77.911094, 38.112095], + [-77.91102, 38.112144], + [-77.91072, 38.112244], + [-77.91032, 38.112244], + [-77.910062, 38.112179], + [-77.90992, 38.112144], + [-77.90942, 38.112044], + [-77.90922, 38.111944], + [-77.90872, 38.112044], + [-77.90862, 38.111944], + [-77.90802, 38.111944], + [-77.907719, 38.111844], + [-77.907519, 38.111644], + [-77.907419, 38.111444], + [-77.907146, 38.111171], + [-77.907119, 38.111144], + [-77.906619, 38.111044], + [-77.906119, 38.110944], + [-77.905919, 38.110844], + [-77.905859, 38.110829], + [-77.905519, 38.110744], + [-77.905019, 38.110644], + [-77.904619, 38.110444], + [-77.904119, 38.110144], + [-77.903819, 38.109944], + [-77.903519, 38.109744], + [-77.903316, 38.109436], + [-77.903219, 38.109144], + [-77.903219, 38.108844], + [-77.903119, 38.108644], + [-77.903019, 38.108444], + [-77.902719, 38.108344], + [-77.902419, 38.108144], + [-77.902219, 38.108144], + [-77.901819, 38.108144], + [-77.901519, 38.108244], + [-77.901119, 38.108344], + [-77.900819, 38.108544], + [-77.900619, 38.108844], + [-77.900594, 38.108918], + [-77.900519, 38.109144], + [-77.900219, 38.109444], + [-77.899919, 38.109444], + [-77.899618, 38.109344], + [-77.899518, 38.109344], + [-77.899148, 38.109344], + [-77.898918, 38.109344], + [-77.898718, 38.109444], + [-77.898488, 38.109674], + [-77.898418, 38.109744], + [-77.898318, 38.110044], + [-77.898318, 38.110244], + [-77.898418, 38.110544], + [-77.898318, 38.110744], + [-77.898318, 38.111244], + [-77.898018, 38.111444], + [-77.897418, 38.111644], + [-77.897218, 38.111644], + [-77.896918, 38.111544], + [-77.896818, 38.111444], + [-77.896818, 38.111244], + [-77.896918, 38.111044], + [-77.896918, 38.110644], + [-77.896818, 38.110444], + [-77.89673, 38.110356], + [-77.896518, 38.110144], + [-77.896118, 38.110044], + [-77.895618, 38.110044], + [-77.895318, 38.110144], + [-77.895218, 38.110244], + [-77.895018, 38.110544], + [-77.894818, 38.110744], + [-77.894218, 38.110944], + [-77.893818, 38.111044], + [-77.893418, 38.111044], + [-77.893218, 38.111244], + [-77.893018, 38.111344], + [-77.89277, 38.111406], + [-77.892618, 38.111444], + [-77.891918, 38.111544], + [-77.891418, 38.111444], + [-77.890815, 38.111444], + [-77.890777, 38.111444], + [-77.890718, 38.111444], + [-77.890518, 38.111444], + [-77.890518, 38.111544], + [-77.890518, 38.111585], + [-77.890518, 38.111744], + [-77.890518, 38.112044], + [-77.890418, 38.112244], + [-77.890118, 38.112444], + [-77.889718, 38.112744], + [-77.889318, 38.113044], + [-77.889018, 38.113144], + [-77.888418, 38.113144], + [-77.888118, 38.112944], + [-77.88787, 38.112696], + [-77.887818, 38.112644], + [-77.887718, 38.112544], + [-77.887418, 38.112444], + [-77.886918, 38.112344], + [-77.886895, 38.112338], + [-77.886531, 38.112243], + [-77.886496, 38.112244], + [-77.886318, 38.112244], + [-77.886118, 38.111944], + [-77.886118, 38.11172], + [-77.886118, 38.111544], + [-77.88609, 38.111501], + [-77.885918, 38.111244], + [-77.885818, 38.111044], + [-77.885618, 38.110844], + [-77.885518, 38.110744], + [-77.885452, 38.110711], + [-77.885441, 38.110705], + [-77.885434, 38.110702], + [-77.885319, 38.110644], + [-77.885019, 38.110444], + [-77.884819, 38.110444], + [-77.884619, 38.110444], + [-77.884319, 38.110544], + [-77.884119, 38.110544], + [-77.883919, 38.110444], + [-77.883767, 38.110383], + [-77.883419, 38.110244], + [-77.883119, 38.110144], + [-77.882919, 38.109944], + [-77.882719, 38.109644], + [-77.882719, 38.109444], + [-77.882719, 38.109404], + [-77.882719, 38.109244], + [-77.882619, 38.109144], + [-77.882457, 38.109036], + [-77.882319, 38.108944], + [-77.882119, 38.108844], + [-77.881719, 38.108744], + [-77.881319, 38.108744], + [-77.880819, 38.108644], + [-77.880419, 38.108544], + [-77.879719, 38.108444], + [-77.879319, 38.108444], + [-77.879019, 38.108444], + [-77.878619, 38.108344], + [-77.878119, 38.108244], + [-77.877619, 38.108044], + [-77.877319, 38.107944], + [-77.877019, 38.107844], + [-77.876619, 38.107644], + [-77.876319, 38.107444], + [-77.876119, 38.107444], + [-77.876008, 38.107481], + [-77.876003, 38.107483], + [-77.875819, 38.107544], + [-77.875619, 38.107544], + [-77.875319, 38.107444], + [-77.875119, 38.107444], + [-77.874783, 38.107234], + [-77.874719, 38.107194], + [-77.874319, 38.106744], + [-77.874219, 38.106444], + [-77.873919, 38.106344], + [-77.873836, 38.106344], + [-77.873119, 38.106344], + [-77.872419, 38.106445], + [-77.871913, 38.106517], + [-77.871719, 38.106545], + [-77.871538, 38.106467], + [-77.871019, 38.106245], + [-77.870119, 38.105945], + [-77.869419, 38.105745], + [-77.869119, 38.105645], + [-77.867918, 38.105945], + [-77.866618, 38.106245], + [-77.866265, 38.106245], + [-77.865718, 38.106245], + [-77.865111, 38.106194], + [-77.864518, 38.106145], + [-77.864408, 38.106104], + [-77.863718, 38.105845], + [-77.862318, 38.105545], + [-77.861218, 38.105545], + [-77.860718, 38.105545], + [-77.860618, 38.105545], + [-77.860035, 38.105326], + [-77.859818, 38.105245], + [-77.859418, 38.104745], + [-77.859318, 38.104445], + [-77.859118, 38.103945], + [-77.858912, 38.103739], + [-77.858419, 38.103245], + [-77.858219, 38.103045], + [-77.858519, 38.102545], + [-77.858719, 38.101745], + [-77.858819, 38.101345], + [-77.858776, 38.101136], + [-77.858718, 38.100844], + [-77.858119, 38.100345], + [-77.857219, 38.100045], + [-77.857115, 38.100032], + [-77.856419, 38.099945], + [-77.856119, 38.099845], + [-77.855919, 38.099945], + [-77.855119, 38.100745], + [-77.854719, 38.100945], + [-77.854419, 38.100945], + [-77.854219, 38.101745], + [-77.854419, 38.102445], + [-77.854694, 38.102582], + [-77.854819, 38.102645], + [-77.854819, 38.103245], + [-77.854756, 38.103392], + [-77.854519, 38.103945], + [-77.854119, 38.104245], + [-77.853135, 38.104442], + [-77.852619, 38.104546], + [-77.851519, 38.104446], + [-77.85122, 38.104345], + [-77.851419, 38.104046], + [-77.851518, 38.103445], + [-77.851019, 38.102946], + [-77.850619, 38.102746], + [-77.849719, 38.102146], + [-77.849219, 38.102046], + [-77.849009, 38.101993], + [-77.848418, 38.101844], + [-77.848119, 38.101345], + [-77.8479, 38.100689], + [-77.847819, 38.100446], + [-77.847819, 38.099946], + [-77.847819, 38.099793], + [-77.847818, 38.099444], + [-77.847419, 38.098746], + [-77.847019, 38.098446], + [-77.846219, 38.098346], + [-77.845419, 38.098546], + [-77.844819, 38.099046], + [-77.844019, 38.099746], + [-77.843919, 38.099846], + [-77.843819, 38.099946], + [-77.843719, 38.099946], + [-77.843619, 38.100046], + [-77.843519, 38.100146], + [-77.843419, 38.100246], + [-77.843319, 38.100346], + [-77.843219, 38.100546], + [-77.843019, 38.101046], + [-77.842919, 38.101446], + [-77.843219, 38.101946], + [-77.843915, 38.102642], + [-77.844119, 38.102846], + [-77.844919, 38.103346], + [-77.845319, 38.103846], + [-77.845519, 38.104346], + [-77.844919, 38.104746], + [-77.844419, 38.104846], + [-77.843419, 38.105046], + [-77.842719, 38.105046], + [-77.842119, 38.105146], + [-77.840919, 38.105746], + [-77.839719, 38.106046], + [-77.839218, 38.105844], + [-77.838568, 38.105925], + [-77.838538, 38.105927], + [-77.838219, 38.106247], + [-77.837719, 38.106047], + [-77.837418, 38.105744], + [-77.837319, 38.105347], + [-77.837418, 38.105045], + [-77.837219, 38.104746], + [-77.837218, 38.104647], + [-77.837019, 38.104647], + [-77.836319, 38.104447], + [-77.836318, 38.104345], + [-77.836119, 38.103847], + [-77.836419, 38.103647], + [-77.836238, 38.103194], + [-77.836219, 38.103146], + [-77.836214, 38.103114], + [-77.836119, 38.102447], + [-77.836282, 38.102162], + [-77.836518, 38.101744], + [-77.836219, 38.101147], + [-77.835319, 38.100847], + [-77.834986, 38.100799], + [-77.833919, 38.100647], + [-77.833219, 38.100447], + [-77.832019, 38.099847], + [-77.831033, 38.099309], + [-77.830919, 38.099247], + [-77.830618, 38.098944], + [-77.830419, 38.098047], + [-77.830318, 38.097746], + [-77.830045, 38.097564], + [-77.830019, 38.097547], + [-77.828919, 38.097247], + [-77.827919, 38.097247], + [-77.827119, 38.097247], + [-77.826519, 38.097147], + [-77.825019, 38.096547], + [-77.824388, 38.096006], + [-77.824384, 38.096002], + [-77.824318, 38.095945], + [-77.824248, 38.095815], + [-77.824241, 38.095802], + [-77.824238, 38.095797], + [-77.824235, 38.095791], + [-77.824198, 38.095722], + [-77.823988, 38.095333], + [-77.823742, 38.094875], + [-77.823619, 38.094647], + [-77.823462, 38.093791], + [-77.823418, 38.093547], + [-77.823219, 38.093547], + [-77.823019, 38.093547], + [-77.822054, 38.093354], + [-77.822019, 38.093347], + [-77.821219, 38.093047], + [-77.820619, 38.092847], + [-77.819718, 38.092444], + [-77.819519, 38.091848], + [-77.819919, 38.091348], + [-77.820119, 38.090748], + [-77.820219, 38.090248], + [-77.820219, 38.090068], + [-77.820219, 38.089748], + [-77.820225, 38.089716], + [-77.820319, 38.089248], + [-77.820315, 38.08924], + [-77.820299, 38.089201], + [-77.820019, 38.088548], + [-77.819719, 38.087848], + [-77.819119, 38.087248], + [-77.818219, 38.086348], + [-77.817819, 38.085848], + [-77.817619, 38.085648], + [-77.816919, 38.085448], + [-77.816519, 38.085548], + [-77.816119, 38.085948], + [-77.815919, 38.086248], + [-77.815819, 38.086548], + [-77.815319, 38.086848], + [-77.815219, 38.086848], + [-77.815019, 38.086748], + [-77.814437, 38.086385], + [-77.814219, 38.086248], + [-77.813519, 38.085848], + [-77.812919, 38.085326], + [-77.812895, 38.085304], + [-77.812718, 38.085145], + [-77.812419, 38.084347], + [-77.812618, 38.083647], + [-77.812684, 38.083117], + [-77.812718, 38.082846], + [-77.812718, 38.081947], + [-77.812618, 38.081246], + [-77.812418, 38.080946], + [-77.812351, 38.080846], + [-77.812284, 38.080746], + [-77.812017, 38.080346], + [-77.81144, 38.079933], + [-77.811317, 38.079845], + [-77.811123, 38.0797], + [-77.810917, 38.079545], + [-77.810617, 38.079445], + [-77.809317, 38.079245], + [-77.808609, 38.079156], + [-77.808517, 38.079145], + [-77.807617, 38.078945], + [-77.806517, 38.078545], + [-77.806017, 38.078445], + [-77.805517, 38.078445], + [-77.804817, 38.078545], + [-77.803817, 38.078545], + [-77.802717, 38.078345], + [-77.801317, 38.078245], + [-77.800117, 38.078245], + [-77.799517, 38.078545], + [-77.798817, 38.078745], + [-77.798711, 38.078745], + [-77.798252, 38.078745], + [-77.798192, 38.078745], + [-77.797617, 38.078695], + [-77.797059, 38.078602], + [-77.796717, 38.078545], + [-77.796417, 38.078545], + [-77.795417, 38.078745], + [-77.794362, 38.078621], + [-77.79404, 38.078583], + [-77.793717, 38.078545], + [-77.791616, 38.077445], + [-77.790716, 38.076945], + [-77.790016, 38.076145], + [-77.789316, 38.075945], + [-77.78925, 38.075952], + [-77.788416, 38.076045], + [-77.787916, 38.076145], + [-77.787416, 38.076345], + [-77.786616, 38.076345], + [-77.786616, 38.076245], + [-77.786616, 38.076045], + [-77.786316, 38.075445], + [-77.785816, 38.074845], + [-77.785816, 38.074545], + [-77.785616, 38.073845], + [-77.785116, 38.073245], + [-77.784716, 38.072445], + [-77.784516, 38.071845], + [-77.784616, 38.071545], + [-77.784516, 38.070945], + [-77.784175, 38.070661], + [-77.783916, 38.070445], + [-77.782916, 38.069445], + [-77.782616, 38.068545], + [-77.782516, 38.067545] + ] + ] + ] + } + } + ] +} diff --git a/packages/turf-union/test/in/unable-to-complete-output-ring-1983-1.geojson b/packages/turf-union/test/in/unable-to-complete-output-ring-1983-1.geojson new file mode 100644 index 000000000..318b901e8 --- /dev/null +++ b/packages/turf-union/test/in/unable-to-complete-output-ring-1983-1.geojson @@ -0,0 +1,223 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-138.73721748279914, 2.0783782250758946], + [-141.54971748279917, 6.2849421612509815], + [-134.07528251720086, 11.208361735012105], + [-131.26278251720083, 7.043979226170151], + [-138.73721748279914, 2.0783782250758946] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-160.6896965377851, 40.88860081193033], + [-160.6583451950261, 40.510672000926164], + [-160.66190372037752, 40.51037133348589], + [-160.55753360319002, 39.79663191716156], + [-160.55397491337683, 39.796935800275115], + [-160.5499089989524, 39.74740308604976], + [-160.44421528791327, 39.320082232246875], + [-160.2699121404418, 38.90384497183405], + [-160.10443662874945, 38.629423306699906], + [-160.11113808103656, 38.62686332599969], + [-158.70488808103653, 36.396208817797614], + [-158.69818219705635, 36.398850979301976], + [-158.62349842129717, 36.2712317120243], + [-158.32126165579726, 35.88632497556583], + [-157.9617182982814, 35.53342756235644], + [-157.85881540923663, 35.454636702811], + [-157.86352414522221, 35.45092643468119], + [-156.4572741452222, 34.29726262080686], + [-156.4572741452222, 34.29726262080683], + [-153.6447741452222, 31.94201233811576], + [-153.64006527501178, 31.945887812934107], + [-153.64006527501172, 31.94588781293406], + [-153.64477414522213, 31.942012338115703], + [-152.7580924416708, 31.184737367454044], + [-151.6736380810366, 29.316714166213814], + [-151.66691734698864, 29.319592686835602], + [-151.5922484212972, 29.18135443047673], + [-151.2900116557973, 28.764710578780907], + [-150.93046829828143, 28.383033827238847], + [-150.82756518327554, 28.297881796676013], + [-150.83227414522221, 28.293848637631797], + [-148.54231573224416, 26.254481087538338], + [-146.04863808103656, 21.710149065891883], + [-146.04190027704684, 21.71323661891839], + [-145.9672484212972, 21.565942101783975], + [-145.66501165579726, 21.12236003249639], + [-145.3054682982814, 20.716395937851374], + [-145.20256517950813, 20.62590423782137], + [-145.20727414522216, 20.62158943658075], + [-141.64443015181178, 17.246138281182418], + [-139.77228869117522, 12.721283006524027], + [-140.21920699785207, 12.48151816830945], + [-140.6755385622785, 12.157608896072702], + [-141.08671829828143, 11.779880155476036], + [-141.44626165579726, 11.354094542168014], + [-141.74849842129723, 10.886789091976254], + [-141.9886621404418, 10.385185343533806], + [-142.16296528791327, 9.85708541123391], + [-142.2686589989524, 9.310754969389762], + [-142.30407642059762, 8.754794702435646], + [-142.2686589989524, 8.198002417459364], + [-142.16296528791327, 7.649228576493812], + [-141.9886621404418, 7.117228426861487], + [-141.74849842129723, 6.610514144945441], + [-141.44626165579726, 6.137210441272217], + [-141.08671829828143, 5.704916907523355], + [-140.6755385622785, 5.320580048136904], + [-140.21920699785207, 4.990377478814594], + [-139.72492022637246, 4.719616250957969], + [-139.4877534841437, 4.626019936874601], + [-139.4915764205976, 4.565473550710294], + [-139.45615899895233, 4.004105450791968], + [-139.35046528791327, 3.451213987601406], + [-139.17616214044176, 2.9155938231043734], + [-138.93599842129717, 2.4057718307890354], + [-138.7307903740528, 2.0826480404896484], + [-138.73721748279917, 2.078378225075909], + [-135.92471748279917, -2.139418494751368], + [-135.91828230639197, -2.1351298091717252], + [-135.82126165579726, -2.287911612394268], + [-135.46171829828143, -2.722108514777048], + [-135.35881716745445, -2.818613899829967], + [-135.36352414522216, -2.8233183805339905], + [-131.66025962391583, -6.512074033718909], + [-130.57988808103653, -8.655273541009365], + [-130.57307698563218, -8.65189168023775], + [-130.49849842129717, -8.808614737044621], + [-130.19626165579723, -9.278941809131354], + [-129.8367182982814, -9.707601974613453], + [-129.42553856227846, -10.087977628647835], + [-128.96920699785207, -10.414229095773521], + [-128.4749202263724, -10.681373630031246], + [-127.95047344549843, -10.885350042822523], + [-127.4041374942538, -11.023069333499564], + [-126.84452841695492, -11.09245189439632], + [-126.56249999999999, -11.09245189439632], + [-126.56249999999999, -11.10114928472835], + [-125.15624999999999, -11.10114928472835], + [-125.15624999999999, -11.09245189439632], + [-124.87422158304506, -11.09245189439632], + [-124.31461250574617, -11.023069333499564], + [-123.76827655450154, -10.885350042822523], + [-123.24382977362757, -10.681373630031246], + [-122.74954300214795, -10.414229095773521], + [-122.29321143772151, -10.087977628647835], + [-121.88203170171857, -9.707601974613468], + [-121.52248834420274, -9.278941809131354], + [-121.22025157870283, -8.808614737044621], + [-120.98008785955822, -8.303922905899086], + [-120.80578471208672, -7.772745720890754], + [-120.70009100104764, -7.223419751437234], + [-120.66467357940238, -6.6646075621725345], + [-120.66467357940238, -5.266007882805482], + [-120.70009100104764, -4.705196218483266], + [-120.80578471208672, -4.152787095858088], + [-120.98008785955822, -3.6175719807714444], + [-121.2202515787028, -3.108078602871174], + [-121.52248834420274, -2.63242849864686], + [-121.88203170171857, -2.198202391381244], + [-121.9849335215584, -2.1016305086610645], + [-121.98022585477779, -2.096945069926207], + [-123.3864758547778, -0.691146592624932], + [-123.39118333960779, -0.6958409934070753], + [-123.39118333960789, -0.6958409934069764], + [-123.38647585477788, -0.6911465926248184], + [-123.50766945008958, -0.5699560417625025], + [-123.51259100104767, -0.49173766653407824], + [-123.61828471208676, 0.06232212094137424], + [-123.71595348826418, 0.36290960538168665], + [-123.70766646786156, 0.3656711949315081], + [-125.11391646786154, 4.579539815662798], + [-125.12221533513642, 4.576778020412499], + [-125.19883785955825, 4.81185565150021], + [-125.36441457809373, 5.162348372750518], + [-125.35761191896344, 5.165743831278121], + [-126.76386191896341, 7.959530796303497], + [-126.7706713392258, 7.95614520389963], + [-126.84525157870281, 8.113146620363906], + [-127.05047956609502, 8.433106178826797], + [-127.04403251720086, 8.437379616632285], + [-129.70078671927314, 12.354727326722355], + [-130.90361628448954, 14.693864989481934], + [-133.6359250839431, 21.19092402842235], + [-133.63633785955824, 21.19211050070126], + [-133.63685064122322, 21.193124877862967], + [-133.6421759881453, 21.205787829196495], + [-133.64307983026706, 21.205447368180977], + [-133.8765015787028, 21.667198844155763], + [-134.17873834420274, 22.109115131915928], + [-134.5382817017186, 22.51119320766078], + [-134.64117871395456, 22.600341802546218], + [-134.63647585477784, 22.604769237348435], + [-138.3458118725443, 25.97860069463627], + [-140.8263619189634, 30.36183966418845], + [-140.83322212303318, 30.35882881270289], + [-140.9077515787028, 30.495610093036802], + [-141.20998834420274, 30.905110807080362], + [-141.56953170171857, 31.277289181267648], + [-141.67242637169784, 31.35972599692654], + [-141.6677258547778, 31.36385129809915], + [-143.96601717531868, 33.30090148459311], + [-145.0451119189634, 35.091469225371696], + [-145.05198163997304, 35.08860290822834], + [-145.12650157870283, 35.218310913523766], + [-145.42873834420274, 35.60645353663534], + [-145.78828170171857, 35.959028058764005], + [-145.89117505429087, 36.03708360338239], + [-145.88647585477787, 36.041004510381356], + [-147.29272585477787, 37.169848760576585], + [-147.29272585477787, 37.16984876057657], + [-150.1052258547778, 39.37752590372085], + [-150.1052258547778, 39.37752590372084], + [-151.00153308598706, 40.06494873317625], + [-151.71763492940048, 41.15175148455148], + [-151.73433651399748, 41.264680637113344], + [-151.7379176861147, 41.26437805619925], + [-151.74196111823514, 41.312807656725454], + [-151.84765482927423, 41.7276464729546], + [-152.02195797674574, 42.12676009771624], + [-152.26212169589033, 42.504153999354656], + [-152.56435846139027, 42.854271974661685], + [-152.9239018189061, 43.172058758712296], + [-153.33508155490907, 43.45301018304946], + [-153.79141311933543, 43.69321200722706], + [-154.28569989081507, 43.889368886946215], + [-154.81014667168907, 44.0388251177572], + [-155.3564826229337, 44.139578807949164], + [-155.91609170023258, 44.19029100023394], + [-156.48014853414242, 44.19029100023394], + [-157.0397576114413, 44.139578807949164], + [-157.58609356268596, 44.0388251177572], + [-158.11054034355993, 43.889368886946215], + [-158.60482711503957, 43.69321200722706], + [-159.06115867946593, 43.45301018304946], + [-159.47233841546893, 43.172058758712296], + [-159.83188177298476, 42.854271974661685], + [-160.13411853848467, 42.504153999354656], + [-160.37428225762926, 42.12676009771624], + [-160.54858540510077, 41.7276464729546], + [-160.65427911613986, 41.312807656725454], + [-160.6896965377851, 40.88860081193033] + ] + ] + } + } + ] +} diff --git a/packages/turf-union/test/in/unable-to-complete-output-ring-1983-2.geojson b/packages/turf-union/test/in/unable-to-complete-output-ring-1983-2.geojson new file mode 100644 index 000000000..694f9dc7c --- /dev/null +++ b/packages/turf-union/test/in/unable-to-complete-output-ring-1983-2.geojson @@ -0,0 +1,504 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [119.26792227000003, 26.09133855399999], + [119.26827343900003, 26.091289528000004], + [119.268373409, 26.091262625999995], + [119.268373463, 26.091262593999986], + [119.26851724000005, 26.091171713999987], + [119.26918610999996, 26.090842504], + [119.26919957700002, 26.090865310999995], + [119.26943968, 26.091271921999976], + [119.26962150899998, 26.091529384000022], + [119.26966249500005, 26.091587418000014], + [119.27003378300003, 26.09192920999999], + [119.27041757200007, 26.092110158000033], + [119.27091753499998, 26.09231781900001], + [119.270981785, 26.09234426599999], + [119.27113544199995, 26.092407525999985], + [119.27139502100002, 26.092449202], + [119.271933239, 26.092572995000015], + [119.27294777500005, 26.092688886], + [119.27359170800003, 26.092905836], + [119.27366611599997, 26.092919462999983], + [119.27370475199997, 26.092896025000012], + [119.27370482000008, 26.092895977999987], + [119.27388310000008, 26.092771592000016], + [119.27398498100004, 26.09271955899999], + [119.27410025500002, 26.09270411799997], + [119.27443945799996, 26.092623322000012], + [119.27446330299995, 26.09248727800002], + [119.27457582199996, 26.09250312], + [119.27467098600005, 26.092153184999976], + [119.27470517500001, 26.092093467999966], + [119.27473463099999, 26.09204201699998], + [119.27485925799999, 26.091922878999984], + [119.27489255600005, 26.091891044999993], + [119.27528952800004, 26.09167620099998], + [119.27565197900006, 26.09208567399996], + [119.27590847199998, 26.09214010999999], + [119.27646200599996, 26.092176559999988], + [119.27667630999998, 26.09216992299997], + [119.27702867400001, 26.092095195999985], + [119.27734837000004, 26.09204297000003], + [119.27733686700003, 26.091840850999972], + [119.27740100999996, 26.090045427999996], + [119.27740185600003, 26.09002172800001], + [119.27740308300001, 26.089987430000008], + [119.27740528000004, 26.089925934000004], + [119.27743051499999, 26.08921948400001], + [119.27749059500002, 26.088078816999996], + [119.27753907600004, 26.08750046199999], + [119.27756799600004, 26.08715545299998], + [119.277579687, 26.087015983999997], + [119.27774168200007, 26.085083374999986], + [119.279599867, 26.085852784999986], + [119.27964342400003, 26.08587082000002], + [119.27966465500003, 26.085879610999992], + [119.27985183500009, 26.085957113000003], + [119.28082740200003, 26.086361044999983], + [119.28120701700007, 26.086518220999988], + [119.28280495700005, 26.087179541999998], + [119.283082874, 26.087294557], + [119.28359686099998, 26.087507265], + [119.28390780700002, 26.087590218], + [119.283996207, 26.087613800999964], + [119.28400513400004, 26.087616181999977], + [119.28447277299996, 26.087740930999985], + [119.285337701, 26.087874160000005], + [119.28569185100004, 26.087928712000014], + [119.28636738499996, 26.088032763999976], + [119.28686264700004, 26.08810904500001], + [119.28688445399996, 26.088112405000007], + [119.28740812299998, 26.088193061000027], + [119.28744890300008, 26.088200452999995], + [119.28747632199997, 26.088205424000016], + [119.288289687, 26.088352864999987], + [119.28857068200003, 26.088403801000027], + [119.28939130000003, 26.08855254899998], + [119.28940446399997, 26.08855493499999], + [119.28953208300005, 26.088578068999993], + [119.29001057200006, 26.088664795999996], + [119.29004381799999, 26.088671143999992], + [119.29010271699998, 26.08868238799999], + [119.29028644799995, 26.08871746199997], + [119.29029319700001, 26.088718749000012], + [119.29032127800001, 26.088724108999997], + [119.29106401700005, 26.088865881000004], + [119.29144868799996, 26.088890004000007], + [119.29145798699996, 26.08889058800003], + [119.29147025600001, 26.088891262999994], + [119.29448168600004, 26.089056912999975], + [119.29475537500002, 26.087851934000014], + [119.29476505900004, 26.087809299000014], + [119.29477158500005, 26.087780598], + [119.29480424400005, 26.087636948000018], + [119.29480721000007, 26.087623896000018], + [119.29480912400007, 26.087615481999975], + [119.29481181300002, 26.087603648000023], + [119.29498015099999, 26.086862591], + [119.29498124700001, 26.08685776499998], + [119.29501659100004, 26.086702160999987], + [119.29503741600001, 26.08661048699997], + [119.295190372, 26.086087195999994], + [119.29519121400008, 26.086084304999975], + [119.29520515599995, 26.08603660500001], + [119.295400463, 26.085368404999983], + [119.29540177700007, 26.085363916], + [119.29540819700004, 26.085341946000025], + [119.29552614299996, 26.08493841500001], + [119.29576637400001, 26.084116497000025], + [119.29576696599999, 26.084114479999965], + [119.29584204900004, 26.083873901999993], + [119.298732505, 26.084446225000008], + [119.29886870400004, 26.084473193000004], + [119.29899598099999, 26.08449839500003], + [119.30148191, 26.084990560999987], + [119.30167684900003, 26.08408462599998], + [119.30193896900005, 26.084062775999996], + [119.302088432, 26.084015709000028], + [119.30211186099996, 26.084008331000007], + [119.30245265600003, 26.083700234999988], + [119.30259336600002, 26.083699799999973], + [119.30360708600006, 26.083679443999984], + [119.30428010499998, 26.083462051000026], + [119.304297636, 26.083456387000002], + [119.30451040100002, 26.083418869000013], + [119.30516094200004, 26.08352380399998], + [119.30527010900006, 26.083087960999986], + [119.30609187799995, 26.08324918400001], + [119.30614589200005, 26.08325978099997], + [119.30617918600005, 26.08326631199997], + [119.30747144700003, 26.083519831999972], + [119.30814750900002, 26.083559037999976], + [119.30817862900005, 26.083560843999958], + [119.30894618500001, 26.083605346999995], + [119.30897813000001, 26.083607201999996], + [119.30899601800002, 26.083608237999997], + [119.31036787799997, 26.08370109600003], + [119.31049752900002, 26.08370987699999], + [119.31186102799998, 26.083802155000004], + [119.31284842800007, 26.083861716999998], + [119.31293800399999, 26.08386712200001], + [119.31416202800006, 26.083940944000005], + [119.31417288700005, 26.083941600000006], + [119.31517620000001, 26.084002102999982], + [119.31514259899996, 26.08407781199997], + [119.31484726999997, 26.08474323799997], + [119.31353783300007, 26.086738449], + [119.31313363499999, 26.087354318999978], + [119.31305608599999, 26.087472479999974], + [119.31273692800005, 26.087958765999986], + [119.31256064800006, 26.088556896], + [119.31256063100001, 26.088556949999987], + [119.31253415100002, 26.088702188000013], + [119.31212274699999, 26.090958447000002], + [119.31212269599997, 26.090958619999977], + [119.312085575, 26.091084587000008], + [119.31201279300001, 26.091495786999975], + [119.311894876, 26.09216196699998], + [119.31177712900002, 26.092827178999983], + [119.31164283299995, 26.093585881000024], + [119.31153050800003, 26.094220441000008], + [119.31151263100004, 26.094317014999994], + [119.31151012199997, 26.09433057299998], + [119.31129391399998, 26.095498737000014], + [119.311246248, 26.095756271000035], + [119.31111729500003, 26.09645296500002], + [119.31108367300001, 26.096634611999995], + [119.31092776000004, 26.097476958000016], + [119.31074179500001, 26.098481644000003], + [119.31070430499997, 26.098684192999983], + [119.310701948, 26.098696933999967], + [119.31063682000006, 26.099048783], + [119.31063240100002, 26.099074847999987], + [119.31055972099999, 26.099503630999997], + [119.31052681300005, 26.09969775399998], + [119.31035327400006, 26.100327902999986], + [119.310237271, 26.100589915999986], + [119.31001505999996, 26.101091823999976], + [119.30963210899998, 26.10195676699998], + [119.30962586099997, 26.101970891999983], + [119.309610776, 26.10200495800001], + [119.30940705600008, 26.102465086], + [119.30924338, 26.102834764000026], + [119.30923976300008, 26.102842939000027], + [119.30857120899998, 26.104352902000016], + [119.30847835899999, 26.104562610000016], + [119.30841339999996, 26.104709318999987], + [119.308368417, 26.104810914999963], + [119.30833914300001, 26.10487702699999], + [119.30750594999995, 26.10675876200003], + [119.30749660100004, 26.106779883999987], + [119.30597177300001, 26.106411965999996], + [119.305952973, 26.106407429], + [119.305903341, 26.106395453], + [119.30510922900002, 26.106204389000016], + [119.30434964899997, 26.106021624999997], + [119.304202092, 26.10598612400002], + [119.304163951, 26.105976946999984], + [119.304147589, 26.105973011], + [119.30396597699998, 26.10592931100001], + [119.30311475500002, 26.105724494000018], + [119.30305377900007, 26.10570982100001], + [119.30269559299997, 26.105623632000004], + [119.30134310999996, 26.105348354000004], + [119.30140594600006, 26.10424925], + [119.30141243100002, 26.10413581599999], + [119.30144344200005, 26.103593376], + [119.301477438, 26.10299870799997], + [119.30147935599997, 26.102965155999975], + [119.301498788, 26.102625284000005], + [119.30149879400007, 26.10262514999998], + [119.30155428700007, 26.101654460000024], + [119.30158182499999, 26.101172729999973], + [119.30164042300001, 26.100062831999978], + [119.30164396600001, 26.09999582400002], + [119.30164591300003, 26.09995891599999], + [119.30167080599998, 26.099487694], + [119.30168516249151, 26.09921588003469], + [119.30157350999384, 26.10116897056351], + [119.30148804155813, 26.102651681148387], + [119.30133489504965, 26.105344191491753], + [119.2995770252021, 26.10498130378754], + [119.29917638368264, 26.104898690308694], + [119.29766313833464, 26.1045860742631], + [119.2957679372748, 26.10419363718654], + [119.29569109087862, 26.103727349157232], + [119.29574826294841, 26.102924937871634], + [119.29571437469058, 26.102133471638474], + [119.29571168336672, 26.102073236312435], + [119.29665560939513, 26.100835883817965], + [119.29479793505608, 26.100042483347874], + [119.29436350685195, 26.099857009381875], + [119.29370790546564, 26.099658147687336], + [119.29222800371282, 26.099405729816166], + [119.29224878147363, 26.099299730556208], + [119.29296858645722, 26.09563821197875], + [119.29172982499996, 26.09542004299999], + [119.291548166, 26.09538804699997], + [119.29147919100002, 26.09537589799999], + [119.29092879400005, 26.09527896299999], + [119.290861736, 26.095267149999984], + [119.29083662400001, 26.09526272800002], + [119.289772184, 26.09507523899998], + [119.28976558500005, 26.095074079000018], + [119.28976121500001, 26.095073307999996], + [119.28883611400002, 26.094874480999977], + [119.28879492500006, 26.094865389999992], + [119.28865346900001, 26.094801206000003], + [119.28821295099999, 26.095722943999988], + [119.288176617, 26.09579861399998], + [119.28795602599996, 26.096258008999996], + [119.28762952600006, 26.09708954600001], + [119.28719542900002, 26.097248298999986], + [119.286943029, 26.09746719399998], + [119.286784678, 26.09774015900002], + [119.28666949000001, 26.097938716999963], + [119.28627131300006, 26.098625089999974], + [119.285836732, 26.09920938699998], + [119.28542934799998, 26.099757109999977], + [119.28526723699997, 26.099975060000013], + [119.28517774600006, 26.100134378000007], + [119.28513023300002, 26.100344265999972], + [119.28510031300004, 26.100605428999984], + [119.28509363700003, 26.100841851999974], + [119.28509584799998, 26.101470849999984], + [119.28518487300005, 26.101774998999982], + [119.28541082200003, 26.102118226000023], + [119.28497389899997, 26.10275779300002], + [119.28460118500006, 26.102778033000007], + [119.28457926900002, 26.103068271999966], + [119.28429292199999, 26.103701686999997], + [119.28420452399999, 26.103923237999993], + [119.28418653200004, 26.10394198199998], + [119.28417865100005, 26.104082022], + [119.28413037600001, 26.104080791999994], + [119.28412894300006, 26.104136270000023], + [119.28409585300005, 26.10413805799999], + [119.28403167199998, 26.104137579999986], + [119.28396366100003, 26.104137460999993], + [119.28394906200003, 26.103910285999962], + [119.28437865599996, 26.10338549300002], + [119.28449004000004, 26.103015801000026], + [119.28383831400002, 26.102447643999987], + [119.28334218600003, 26.102179993999982], + [119.28330546999996, 26.102062236999977], + [119.28343273500002, 26.101705144], + [119.28329874799999, 26.10102850099996], + [119.28335355599995, 26.10027773600001], + [119.28396047900003, 26.09910991699999], + [119.28400039300007, 26.098942828000016], + [119.28400837599996, 26.098856662999996], + [119.28401123000002, 26.098631735000026], + [119.28400563100001, 26.098559797999993], + [119.28252444800002, 26.09799482499999], + [119.28103801000002, 26.09726104999997], + [119.280739339, 26.09652067899998], + [119.27997057699999, 26.096583657999975], + [119.27985074200001, 26.096896754], + [119.27910538599996, 26.09783521399997], + [119.27793710799995, 26.09854491200002], + [119.27693595100007, 26.098456449999986], + [119.27693682600001, 26.098453353000025], + [119.27717338699998, 26.097615093999995], + [119.27746324500004, 26.096757853999964], + [119.27758203400005, 26.096399650000023], + [119.27761161800005, 26.096098638], + [119.27725976800002, 26.096006373000026], + [119.27724631000002, 26.096040566999985], + [119.27713601400002, 26.096013003999982], + [119.27714704100005, 26.095976813999982], + [119.27651605799998, 26.095811351999988], + [119.275653337, 26.095736605000003], + [119.27495428400006, 26.095676043000008], + [119.273803544, 26.095374116000013], + [119.273463622, 26.095328902000002], + [119.272790181, 26.095132858], + [119.27186121900002, 26.09489626499998], + [119.27154874800003, 26.094802835], + [119.27133072599997, 26.09467379900002], + [119.27066023900004, 26.094224418000017], + [119.27035268700001, 26.09403649699999], + [119.27035264500003, 26.094036472000006], + [119.26863135300003, 26.092673284999993], + [119.26839284799996, 26.09253755999999], + [119.26810974900006, 26.092259415999976], + [119.26810976700007, 26.09225939800001], + [119.26825405200002, 26.09210043399997], + [119.26825405000002, 26.09210040300002], + [119.268231282, 26.091870476999983], + [119.26792227000003, 26.09133855399999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [119.28447277299996, 26.087740930999985], + [119.285337701, 26.08787416000001], + [119.28569185100004, 26.087928712000007], + [119.28636738499996, 26.088032763999983], + [119.28686264700004, 26.08810904500001], + [119.28688445399996, 26.088112405000007], + [119.28740812299998, 26.088193061000027], + [119.28744890300005, 26.088200453000006], + [119.28747632199997, 26.088205424000016], + [119.288289687, 26.088352864999994], + [119.28857068200001, 26.088403801000023], + [119.28939130000003, 26.08855254899998], + [119.28940446399997, 26.08855493499999], + [119.28953208300005, 26.088578068999993], + [119.29001057200006, 26.088664795999993], + [119.29004381799999, 26.088671143999992], + [119.29010271699998, 26.08868238799999], + [119.29028644799995, 26.088717461999973], + [119.29029319700001, 26.088718749000012], + [119.29032127800001, 26.088724108999997], + [119.29106401700005, 26.088865881000004], + [119.29144868799996, 26.088890004000007], + [119.29145798699996, 26.08889058800003], + [119.29147025600001, 26.088891262999994], + [119.29448168600004, 26.089056912999975], + [119.29475537500002, 26.087851934000014], + [119.29476505900004, 26.087809299000014], + [119.29477158500005, 26.087780598], + [119.29480424400005, 26.087636948000018], + [119.29480721000004, 26.087623896000018], + [119.29480912400007, 26.08761548199998], + [119.29481181300002, 26.087603648000023], + [119.29498015099999, 26.086862591], + [119.29498124700001, 26.086857764999987], + [119.29501659100004, 26.086702160999998], + [119.29503741600001, 26.08661048699997], + [119.295190372, 26.086087195999994], + [119.29519121400008, 26.08608430499998], + [119.29520515599995, 26.086036605000007], + [119.295400463, 26.085368404999986], + [119.29540177700007, 26.085363916000002], + [119.29540819700004, 26.085341946000025], + [119.29552614299996, 26.08493841500001], + [119.29576637400001, 26.08411649700002], + [119.29576696599999, 26.084114479999975], + [119.29584204900004, 26.083873901999993], + [119.295167775, 26.08366118399999], + [119.29455955699996, 26.083469300999983], + [119.29388822199998, 26.083264799999988], + [119.29356201300007, 26.083165427999976], + [119.29352399300004, 26.08315390600001], + [119.29266532800001, 26.08289364900003], + [119.29314036800001, 26.081207388], + [119.29302534900002, 26.08115973100001], + [119.29249488000004, 26.08106307499996], + [119.29199401000008, 26.080972540000005], + [119.29136559200003, 26.080871537000007], + [119.29113559600002, 26.080841222000004], + [119.29113210000003, 26.080840760999983], + [119.29097417000003, 26.080726428], + [119.290930272, 26.08069553799998], + [119.29085149199999, 26.080540573000007], + [119.290518517, 26.08003612300001], + [119.29047453299995, 26.07996948499999], + [119.29034672200001, 26.079949881999998], + [119.29029318100005, 26.07994166999998], + [119.28949736100006, 26.079819612999977], + [119.28943621400003, 26.079810232000007], + [119.28903911400003, 26.079768845999975], + [119.28900435900003, 26.079765220000013], + [119.28885292999996, 26.079749439000004], + [119.28885289100003, 26.07974940100001], + [119.28809546699996, 26.07952285499999], + [119.28713699000004, 26.079334507999988], + [119.287066762, 26.07930869900002], + [119.28701893100003, 26.079291119], + [119.28610159899996, 26.079238470000014], + [119.28611796200006, 26.079101594000004], + [119.28615825199996, 26.078927819000004], + [119.28616068400005, 26.078917363000016], + [119.28616069099998, 26.07891733000002], + [119.28547518799999, 26.078877547999983], + [119.28508176200002, 26.078836285000026], + [119.28482341200004, 26.078777521000003], + [119.28439674000003, 26.078680471999974], + [119.28445328600004, 26.07811491400002], + [119.28446478599994, 26.078032192000023], + [119.28335089400002, 26.077821433999986], + [119.28341639799999, 26.077392630000023], + [119.28324177499996, 26.077382264999983], + [119.28297829999997, 26.077326976000002], + [119.283034348, 26.076808007000004], + [119.282957982, 26.076717181999978], + [119.28282427000002, 26.076753122000014], + [119.282704135, 26.07664956500003], + [119.28275328300003, 26.076519449999978], + [119.282530598, 26.07630241700001], + [119.28230909499997, 26.076278419999998], + [119.28187985800002, 26.076394515000004], + [119.28187259900005, 26.07648242300002], + [119.28186935400005, 26.076538104000008], + [119.28187371700007, 26.076620633999998], + [119.28191131400001, 26.076718883000012], + [119.28190801599999, 26.076784131000004], + [119.28189076700005, 26.07678172599998], + [119.28186454900002, 26.076924373], + [119.28184189499996, 26.076971404000002], + [119.281795494, 26.076998112000012], + [119.28124538400004, 26.07695633100002], + [119.28073570900008, 26.07688780799998], + [119.28072823699996, 26.076951188000006], + [119.28070882300008, 26.077097228000014], + [119.28019503300006, 26.07701174200001], + [119.279794294, 26.076934321999996], + [119.27969403500005, 26.076929843000013], + [119.279597611, 26.077295248999974], + [119.27951207399997, 26.077657567000017], + [119.279245135, 26.078788229000008], + [119.27922207999994, 26.07889336800003], + [119.27921921599999, 26.07890642199998], + [119.279218714, 26.078908712999972], + [119.27896359200001, 26.08007220399998], + [119.27895592499998, 26.080107171000005], + [119.27880070500002, 26.080815044000012], + [119.27878032000001, 26.080897214000004], + [119.27873174800003, 26.081092991999977], + [119.278598356, 26.081630636000007], + [119.27859539200008, 26.081642573999996], + [119.278473641, 26.08213329], + [119.278421053, 26.082345246999967], + [119.27840012399997, 26.082429605000012], + [119.278111814, 26.083591618999996], + [119.27810495300002, 26.083619285999987], + [119.27809264899997, 26.083668857000017], + [119.27805475900004, 26.08382156900001], + [119.27774168200007, 26.085083375000007], + [119.279599867, 26.085852784999986], + [119.27964342400003, 26.08587082000002], + [119.27966465500003, 26.085879610999992], + [119.27985183500009, 26.085957113000006], + [119.280827402, 26.086361044999993], + [119.28120701700007, 26.086518221], + [119.28280495700005, 26.087179541999998], + [119.283082874, 26.087294557], + [119.28359686099998, 26.087507265], + [119.28390780700002, 26.087590218], + [119.283996207, 26.087613800999968], + [119.28400513400004, 26.087616181999977], + [119.28447277299996, 26.087740930999985] + ] + ] + } + } + ] +} diff --git a/packages/turf-union/test/in/unable-to-find-segment-2258-1.geojson b/packages/turf-union/test/in/unable-to-find-segment-2258-1.geojson new file mode 100644 index 000000000..42c2841e0 --- /dev/null +++ b/packages/turf-union/test/in/unable-to-find-segment-2258-1.geojson @@ -0,0 +1,129 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-73.06244448903232, 18.596801939748655], + [-73.05407828100999, 18.559574884443432], + [-73.02449897675693, 18.427747962201135], + [-73.00856378482453, 18.50884874486772], + [-72.99260735779502, 18.590014564484544], + [-73.06244448903232, 18.596801939748655] + ] + ], + [ + [ + [-73.04849828566886, 19.74713670181383], + [-73.01761830156346, 19.69103613572505], + [-73.03138982758604, 19.750747500261227], + [-73.04849828566886, 19.74713670181383] + ] + ], + [ + [ + [-72.65364940830283, 20.124248055459326], + [-72.65319619909113, 20.122267081451863], + [-72.6476195782836, 20.123415333285244], + [-72.65364940830283, 20.124248055459326] + ] + ], + [ + [ + [-72.55108447575863, 17.974866348840024], + [-72.45710334056436, 17.97227551144358], + [-72.46320521992928, 17.999399006529142], + [-72.50754265521213, 18.195904425399238], + [-72.51657860925029, 18.150057440187584], + [-72.54370663234872, 18.012340247890656], + [-72.55108447575863, 17.974866348840024] + ] + ], + [ + [ + [-71.8267836792031, 20.010057535093836], + [-71.80745153630141, 19.91312439376248], + [-71.78921192211703, 20.004868858937943], + [-71.8267836792031, 20.010057535093836] + ] + ], + [ + [ + [-71.66191017921575, 19.182076213197288], + [-71.6562049006765, 19.153360535270046], + [-71.65740874033601, 19.20458800272359], + [-71.66191017921575, 19.182076213197288] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-73.06244448903232, 18.596801939748655], + [-73.05407828100999, 18.559574884443432], + [-73.02449897675693, 18.427747962201135], + [-73.00856378482453, 18.50884874486772], + [-72.99260735779502, 18.590014564484544], + [-73.06244448903232, 18.596801939748655] + ] + ], + [ + [ + [-73.04849828566886, 19.74713670181383], + [-73.01761830156346, 19.691036135725053], + [-73.03138982758604, 19.750747500261227], + [-73.04849828566886, 19.74713670181383] + ] + ], + [ + [ + [-72.65364940830283, 20.12424805545933], + [-72.65319619909113, 20.122267081451863], + [-72.6476195782836, 20.123415333285244], + [-72.65364940830283, 20.12424805545933] + ] + ], + [ + [ + [-72.55108447575863, 17.974866348840024], + [-72.45710334056436, 17.97227551144358], + [-72.46320521992928, 17.999399006529142], + [-72.50754265521213, 18.195904425399238], + [-72.51657860925029, 18.150057440187584], + [-72.54370663234872, 18.012340247890656], + [-72.55108447575863, 17.974866348840024] + ] + ], + [ + [ + [-71.8267836792031, 20.010057535093836], + [-71.80745153630141, 19.913124393762487], + [-71.78921192211703, 20.004868858937943], + [-71.8267836792031, 20.010057535093836] + ] + ], + [ + [ + [-71.66191017921577, 19.182076213197277], + [-71.6562049006765, 19.15336053527002], + [-71.65740874033601, 19.204588002723632], + [-71.66191017921577, 19.182076213197277] + ] + ] + ] + } + } + ] +} diff --git a/packages/turf-union/test/in/unable-to-find-segment-2258-2.geojson b/packages/turf-union/test/in/unable-to-find-segment-2258-2.geojson new file mode 100644 index 000000000..ca26a1be9 --- /dev/null +++ b/packages/turf-union/test/in/unable-to-find-segment-2258-2.geojson @@ -0,0 +1,3461 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "id": "4343a1bb-c298-49be-a44f-3bc81a0e79da", + "properties": { + "id": "4343a1bb-c298-49be-a44f-3bc81a0e79da" + }, + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [17.650443, 59.85602], + [17.650443, 59.85602], + [17.650443, 59.85602], + [17.650441, 59.856021], + [17.650439, 59.856023], + [17.650438, 59.856023], + [17.650438, 59.856023], + [17.650436, 59.856024], + [17.650433, 59.856025], + [17.650431, 59.856027], + [17.650429, 59.856028], + [17.650426, 59.856029], + [17.650424, 59.856031], + [17.650421, 59.856032], + [17.650419, 59.856033], + [17.650417, 59.856035], + [17.650416, 59.856035], + [17.650414, 59.856036], + [17.650414, 59.856036], + [17.650412, 59.856037], + [17.65041, 59.856038], + [17.650409, 59.856039], + [17.650409, 59.856039], + [17.650406, 59.85604], + [17.650404, 59.856042], + [17.650402, 59.856043], + [17.650399, 59.856044], + [17.650397, 59.856046], + [17.650397, 59.856046], + [17.650396, 59.856046], + [17.650394, 59.856047], + [17.650392, 59.856048], + [17.65039, 59.85605], + [17.650387, 59.856051], + [17.650385, 59.856052], + [17.650411, 59.856064], + [17.650377, 59.856083], + [17.650379, 59.856083], + [17.650379, 59.856083], + [17.650518, 59.856146], + [17.650519, 59.856146], + [17.650519, 59.856146], + [17.650583, 59.856175], + [17.650658, 59.856133], + [17.650659, 59.856133], + [17.651039, 59.855921], + [17.65104, 59.855921], + [17.65104, 59.855921], + [17.65105, 59.855915], + [17.65105, 59.855915], + [17.651044, 59.855912], + [17.651044, 59.855912], + [17.651043, 59.855913], + [17.651015, 59.8559], + [17.651015, 59.8559], + [17.651014, 59.8559], + [17.651014, 59.8559], + [17.650968, 59.855879], + [17.650968, 59.855879], + [17.650968, 59.855878], + [17.650967, 59.855879], + [17.650935, 59.855864], + [17.650935, 59.855864], + [17.650934, 59.855863], + [17.650918, 59.855872], + [17.650901, 59.855882], + [17.650885, 59.855891], + [17.650885, 59.855891], + [17.650884, 59.855891], + [17.650844, 59.855873], + [17.650844, 59.855874], + [17.650827, 59.855866], + [17.650794, 59.855884], + [17.650763, 59.85587], + [17.650665, 59.855924], + [17.650665, 59.855924], + [17.650682, 59.855914], + [17.65068, 59.855914], + [17.650663, 59.855923], + [17.650637, 59.855912], + [17.65061, 59.855927], + [17.650609, 59.855927], + [17.650606, 59.855929], + [17.650606, 59.855929], + [17.65059, 59.855938], + [17.650573, 59.855947], + [17.650557, 59.855956], + [17.65054, 59.855965], + [17.650525, 59.855974], + [17.650508, 59.855983], + [17.650492, 59.855992], + [17.650476, 59.856001], + [17.650475, 59.856002], + [17.65046, 59.85601], + [17.650459, 59.856011], + [17.650443, 59.85602], + [17.650443, 59.85602] + ] + ], + [ + [ + [17.650637, 59.855906], + [17.650664, 59.855918], + [17.650727, 59.855883], + [17.6507, 59.855871], + [17.650637, 59.855906] + ] + ], + [ + [ + [17.650796, 59.855849], + [17.650797, 59.855849], + [17.650795, 59.855849], + [17.650795, 59.855849], + [17.650795, 59.855849], + [17.650795, 59.855849], + [17.650794, 59.855848], + [17.650794, 59.855848], + [17.650795, 59.855849], + [17.650796, 59.855849], + [17.650798, 59.85585], + [17.650798, 59.85585], + [17.650798, 59.85585], + [17.650797, 59.855849], + [17.650796, 59.855849], + [17.650796, 59.855849] + ] + ], + [ + [ + [17.6508, 59.855851], + [17.6508, 59.855851], + [17.650798, 59.85585], + [17.650798, 59.85585], + [17.650798, 59.85585], + [17.6508, 59.855851], + [17.6508, 59.855851] + ] + ], + [ + [ + [17.650826, 59.855863], + [17.650827, 59.855863], + [17.650827, 59.855863], + [17.650827, 59.855863], + [17.650827, 59.855863], + [17.650827, 59.855863], + [17.650826, 59.855863], + [17.650826, 59.855863], + [17.650826, 59.855863], + [17.650826, 59.855863] + ] + ], + [ + [ + [17.650829, 59.855864], + [17.650827, 59.855863], + [17.650827, 59.855863], + [17.650828, 59.855864], + [17.650828, 59.855864], + [17.650829, 59.855864] + ] + ] + ] + } + }, + { + "id": "4ea314e7-c8d4-4325-b4ba-91b1ac4a4b67", + "properties": { + "id": "4ea314e7-c8d4-4325-b4ba-91b1ac4a4b67" + }, + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [17.65042, 59.856055], + [17.650421, 59.856056], + [17.650421, 59.856056], + [17.650421, 59.856056], + [17.65042, 59.856055], + [17.65042, 59.856055], + [17.65042, 59.856055], + [17.650406, 59.856063], + [17.650407, 59.856063], + [17.650408, 59.856063], + [17.650408, 59.856064], + [17.650406, 59.856063], + [17.650406, 59.856063], + [17.650406, 59.856063], + [17.65039, 59.856072], + [17.65039, 59.856072], + [17.650391, 59.856072], + [17.650391, 59.856073], + [17.650391, 59.856073], + [17.650391, 59.856072], + [17.650391, 59.856072], + [17.650391, 59.856072], + [17.65039, 59.856072], + [17.65039, 59.856072], + [17.650369, 59.856083], + [17.650369, 59.856083], + [17.650372, 59.856083], + [17.650372, 59.856083], + [17.650372, 59.856083], + [17.650369, 59.856083], + [17.650369, 59.856083], + [17.650386, 59.856091], + [17.650386, 59.856091], + [17.650387, 59.85609], + [17.650387, 59.85609], + [17.650387, 59.85609], + [17.650386, 59.856091], + [17.650386, 59.856091], + [17.650404, 59.856099], + [17.650405, 59.856099], + [17.650405, 59.856098], + [17.650405, 59.856098], + [17.650404, 59.856099], + [17.650404, 59.856099], + [17.650422, 59.856107], + [17.650423, 59.856107], + [17.650423, 59.856106], + [17.650423, 59.856106], + [17.650422, 59.856107], + [17.650422, 59.856107], + [17.65044, 59.856115], + [17.650441, 59.856115], + [17.650441, 59.856115], + [17.650441, 59.856115], + [17.65044, 59.856115], + [17.65044, 59.856115], + [17.650453, 59.856121], + [17.650453, 59.856121], + [17.650453, 59.856121], + [17.650453, 59.856121], + [17.650452, 59.856121], + [17.650452, 59.856121], + [17.650452, 59.856122], + [17.650452, 59.856122], + [17.650452, 59.856122], + [17.650452, 59.856122], + [17.650452, 59.856122], + [17.650452, 59.856122], + [17.650452, 59.856122], + [17.650452, 59.856122], + [17.650452, 59.856122], + [17.650452, 59.856122], + [17.650452, 59.856122], + [17.650452, 59.856122], + [17.650452, 59.856122], + [17.650452, 59.856122], + [17.650452, 59.856122], + [17.650452, 59.856122], + [17.650454, 59.856122], + [17.650458, 59.856123], + [17.650459, 59.856123], + [17.65046, 59.856123], + [17.65046, 59.856123], + [17.650458, 59.856123], + [17.650458, 59.856123], + [17.650467, 59.856128], + [17.650467, 59.856129], + [17.650467, 59.856129], + [17.650467, 59.856129], + [17.650467, 59.856129], + [17.650467, 59.856129], + [17.650467, 59.856129], + [17.650467, 59.856129], + [17.650467, 59.856129], + [17.650467, 59.856129], + [17.650467, 59.856129], + [17.650468, 59.856129], + [17.650468, 59.856129], + [17.650468, 59.856129], + [17.650468, 59.856129], + [17.650468, 59.856129], + [17.650468, 59.856129], + [17.650468, 59.856129], + [17.650468, 59.856128], + [17.650468, 59.856128], + [17.650468, 59.856128], + [17.650468, 59.856128], + [17.650468, 59.856128], + [17.650468, 59.856128], + [17.650468, 59.856128], + [17.650468, 59.856128], + [17.650468, 59.856128], + [17.650476, 59.856132], + [17.650477, 59.856131], + [17.650477, 59.856131], + [17.650477, 59.856131], + [17.650477, 59.856131], + [17.650477, 59.856131], + [17.650477, 59.856131], + [17.650477, 59.856131], + [17.650476, 59.856131], + [17.650476, 59.856132], + [17.650494, 59.85614], + [17.650494, 59.85614], + [17.650495, 59.856139], + [17.650494, 59.856139], + [17.650494, 59.856138], + [17.650494, 59.856138], + [17.650494, 59.856138], + [17.650494, 59.856138], + [17.650494, 59.856138], + [17.650494, 59.856139], + [17.650496, 59.85614], + [17.650496, 59.85614], + [17.650495, 59.856139], + [17.650495, 59.856139], + [17.650494, 59.85614], + [17.65051, 59.856147], + [17.650511, 59.856147], + [17.650511, 59.856147], + [17.650511, 59.856147], + [17.65051, 59.856147], + [17.65051, 59.856147], + [17.650526, 59.856154], + [17.650527, 59.856154], + [17.650527, 59.856154], + [17.650527, 59.856154], + [17.650526, 59.856154], + [17.650526, 59.856154], + [17.650542, 59.856161], + [17.650543, 59.856161], + [17.650543, 59.856161], + [17.650542, 59.85616], + [17.650542, 59.85616], + [17.650542, 59.85616], + [17.650542, 59.85616], + [17.650544, 59.856162], + [17.650544, 59.856162], + [17.650545, 59.856162], + [17.650545, 59.856162], + [17.650545, 59.856162], + [17.650545, 59.856162], + [17.650544, 59.856162], + [17.650543, 59.856161], + [17.650542, 59.856161], + [17.650542, 59.856162], + [17.65056, 59.85617], + [17.650561, 59.856169], + [17.650561, 59.856169], + [17.650561, 59.856169], + [17.650561, 59.856169], + [17.65056, 59.85617], + [17.65056, 59.85617], + [17.65056, 59.85617], + [17.650583, 59.85618], + [17.650583, 59.85618], + [17.650583, 59.856179], + [17.650578, 59.856177], + [17.650578, 59.856177], + [17.650579, 59.856177], + [17.650579, 59.856177], + [17.650579, 59.856177], + [17.650579, 59.856177], + [17.650583, 59.856179], + [17.650587, 59.856177], + [17.650586, 59.856177], + [17.650586, 59.856177], + [17.650587, 59.856177], + [17.650587, 59.856177], + [17.650587, 59.856177], + [17.650588, 59.856177], + [17.650588, 59.856177], + [17.650583, 59.856179], + [17.650583, 59.85618], + [17.650583, 59.85618], + [17.650604, 59.856169], + [17.650603, 59.856168], + [17.650603, 59.856168], + [17.650603, 59.856168], + [17.650604, 59.856169], + [17.65062, 59.856159], + [17.650619, 59.856159], + [17.650618, 59.85616], + [17.650618, 59.85616], + [17.650619, 59.856159], + [17.650619, 59.856159], + [17.650619, 59.856159], + [17.650619, 59.856159], + [17.65062, 59.856158], + [17.65062, 59.856158], + [17.650619, 59.856159], + [17.650619, 59.856159], + [17.65062, 59.856159], + [17.650633, 59.856152], + [17.650633, 59.856152], + [17.650633, 59.856152], + [17.650633, 59.856152], + [17.650633, 59.856152], + [17.650633, 59.856152], + [17.650647, 59.856144], + [17.650646, 59.856144], + [17.650645, 59.856145], + [17.650645, 59.856145], + [17.650646, 59.856144], + [17.650646, 59.856144], + [17.650646, 59.856144], + [17.650646, 59.856144], + [17.650647, 59.856143], + [17.650647, 59.856143], + [17.650646, 59.856144], + [17.650646, 59.856144], + [17.650647, 59.856144], + [17.650647, 59.856144], + [17.650663, 59.856135], + [17.650663, 59.856135], + [17.650662, 59.856135], + [17.650662, 59.856135], + [17.650663, 59.856135], + [17.650663, 59.856135], + [17.650679, 59.856126], + [17.650679, 59.856126], + [17.650677, 59.856127], + [17.650677, 59.856127], + [17.650678, 59.856126], + [17.650678, 59.856126], + [17.650679, 59.856126], + [17.650679, 59.856126], + [17.65068, 59.856125], + [17.65068, 59.856125], + [17.650679, 59.856126], + [17.650679, 59.856126], + [17.650679, 59.856126], + [17.650679, 59.856126], + [17.650695, 59.856117], + [17.650695, 59.856117], + [17.650695, 59.856117], + [17.650695, 59.856117], + [17.650695, 59.856117], + [17.650696, 59.856117], + [17.650696, 59.856117], + [17.650712, 59.856108], + [17.650711, 59.856108], + [17.65071, 59.856109], + [17.65071, 59.856109], + [17.650711, 59.856108], + [17.650711, 59.856108], + [17.650711, 59.856108], + [17.650711, 59.856108], + [17.650712, 59.856107], + [17.650712, 59.856107], + [17.650711, 59.856108], + [17.650711, 59.856108], + [17.650712, 59.856108], + [17.650712, 59.856108], + [17.650728, 59.856099], + [17.650728, 59.856099], + [17.650727, 59.856099], + [17.650727, 59.856099], + [17.650728, 59.856099], + [17.650728, 59.856099], + [17.650744, 59.85609], + [17.650743, 59.85609], + [17.650742, 59.85609], + [17.650742, 59.85609], + [17.650743, 59.85609], + [17.650743, 59.85609], + [17.650743, 59.85609], + [17.650743, 59.85609], + [17.650745, 59.856089], + [17.650745, 59.856089], + [17.650743, 59.85609], + [17.650743, 59.85609], + [17.650744, 59.85609], + [17.650744, 59.85609], + [17.65076, 59.856081], + [17.65076, 59.856081], + [17.65076, 59.856081], + [17.65076, 59.856081], + [17.65076, 59.856081], + [17.65076, 59.856081], + [17.65076, 59.856081], + [17.650777, 59.856072], + [17.650776, 59.856072], + [17.650775, 59.856072], + [17.650775, 59.856072], + [17.650776, 59.856072], + [17.650776, 59.856072], + [17.650776, 59.856072], + [17.650776, 59.856072], + [17.650777, 59.856071], + [17.650777, 59.856071], + [17.650776, 59.856072], + [17.650776, 59.856072], + [17.650777, 59.856072], + [17.650777, 59.856072], + [17.650793, 59.856063], + [17.650793, 59.856063], + [17.650793, 59.856063], + [17.650792, 59.856063], + [17.650792, 59.856063], + [17.650792, 59.856063], + [17.650793, 59.856063], + [17.650793, 59.856063], + [17.650809, 59.856054], + [17.650808, 59.856054], + [17.650807, 59.856054], + [17.650807, 59.856054], + [17.650808, 59.856054], + [17.650808, 59.856054], + [17.650808, 59.856053], + [17.650808, 59.856053], + [17.65081, 59.856053], + [17.65081, 59.856053], + [17.650808, 59.856054], + [17.650808, 59.856054], + [17.650809, 59.856054], + [17.650809, 59.856054], + [17.650825, 59.856045], + [17.650825, 59.856045], + [17.650825, 59.856044], + [17.650825, 59.856044], + [17.650825, 59.856044], + [17.650825, 59.856045], + [17.650825, 59.856045], + [17.650842, 59.856036], + [17.650841, 59.856035], + [17.65084, 59.856036], + [17.65084, 59.856036], + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650841, 59.856035], + [17.650841, 59.856035], + [17.650842, 59.856036], + [17.650842, 59.856036], + [17.650858, 59.856027], + [17.650858, 59.856027], + [17.650857, 59.856026], + [17.650857, 59.856026], + [17.650857, 59.856026], + [17.650858, 59.856027], + [17.650858, 59.856027], + [17.650874, 59.856018], + [17.650873, 59.856017], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650874, 59.856017], + [17.650874, 59.856017], + [17.650873, 59.856017], + [17.650873, 59.856017], + [17.650874, 59.856018], + [17.650874, 59.856018], + [17.650874, 59.856018], + [17.65089, 59.856009], + [17.650889, 59.856008], + [17.650889, 59.856008], + [17.65089, 59.856009], + [17.65089, 59.856009], + [17.65089, 59.856009], + [17.650906, 59.856], + [17.650906, 59.855999], + [17.650905, 59.856], + [17.650905, 59.856], + [17.650906, 59.855999], + [17.650906, 59.855999], + [17.650906, 59.855999], + [17.650906, 59.855999], + [17.650907, 59.855999], + [17.650907, 59.855999], + [17.650906, 59.855999], + [17.650906, 59.855999], + [17.650906, 59.856], + [17.650906, 59.856], + [17.650906, 59.856], + [17.650923, 59.855991], + [17.650922, 59.85599], + [17.650922, 59.85599], + [17.650923, 59.85599], + [17.650923, 59.85599], + [17.650923, 59.85599], + [17.650939, 59.855981], + [17.650938, 59.855981], + [17.650937, 59.855982], + [17.650937, 59.855982], + [17.650938, 59.855981], + [17.650938, 59.855981], + [17.650938, 59.855981], + [17.650938, 59.855981], + [17.650939, 59.85598], + [17.650939, 59.85598], + [17.650938, 59.855981], + [17.650938, 59.855981], + [17.650939, 59.855981], + [17.650939, 59.855981], + [17.650939, 59.855981], + [17.650955, 59.855972], + [17.650954, 59.855972], + [17.650954, 59.855972], + [17.650955, 59.855972], + [17.650955, 59.855972], + [17.650955, 59.855972], + [17.650971, 59.855963], + [17.650971, 59.855963], + [17.650969, 59.855964], + [17.650969, 59.855964], + [17.650971, 59.855963], + [17.650971, 59.855963], + [17.650971, 59.855963], + [17.650971, 59.855963], + [17.650972, 59.855962], + [17.650972, 59.855962], + [17.650971, 59.855963], + [17.650971, 59.855963], + [17.650971, 59.855963], + [17.650971, 59.855963], + [17.650971, 59.855963], + [17.650988, 59.855954], + [17.650987, 59.855954], + [17.650987, 59.855954], + [17.650987, 59.855954], + [17.650988, 59.855954], + [17.650988, 59.855954], + [17.650988, 59.855954], + [17.651008, 59.855943], + [17.651008, 59.855943], + [17.651007, 59.855943], + [17.651002, 59.855946], + [17.651002, 59.855946], + [17.651003, 59.855945], + [17.651003, 59.855945], + [17.651003, 59.855945], + [17.651003, 59.855945], + [17.651007, 59.855943], + [17.651003, 59.855941], + [17.651003, 59.855941], + [17.651003, 59.855941], + [17.651003, 59.855941], + [17.651001, 59.855941], + [17.651001, 59.855941], + [17.651003, 59.855942], + [17.651003, 59.855942], + [17.651007, 59.855943], + [17.651008, 59.855943], + [17.651008, 59.855943], + [17.651004, 59.855941], + [17.651051, 59.855915], + [17.650934, 59.855862], + [17.650888, 59.855888], + [17.650888, 59.855888], + [17.650887, 59.855888], + [17.650887, 59.855888], + [17.650887, 59.855888], + [17.650883, 59.855886], + [17.650883, 59.855887], + [17.650883, 59.855887], + [17.650884, 59.855887], + [17.650884, 59.855888], + [17.650884, 59.855887], + [17.650884, 59.855887], + [17.650881, 59.855886], + [17.650881, 59.855886], + [17.650881, 59.855886], + [17.650881, 59.855886], + [17.650882, 59.855887], + [17.650883, 59.855886], + [17.650883, 59.855886], + [17.650865, 59.855878], + [17.650864, 59.855879], + [17.650864, 59.855879], + [17.650865, 59.855878], + [17.650865, 59.855878], + [17.650847, 59.85587], + [17.650846, 59.855871], + [17.650848, 59.855871], + [17.650848, 59.855871], + [17.650848, 59.855871], + [17.650848, 59.855871], + [17.650842, 59.855869], + [17.650841, 59.85587], + [17.650841, 59.85587], + [17.650841, 59.855869], + [17.650842, 59.855869], + [17.650846, 59.855871], + [17.650846, 59.855871], + [17.650847, 59.85587], + [17.650847, 59.85587], + [17.650829, 59.855862], + [17.650829, 59.855862], + [17.650829, 59.855862], + [17.650829, 59.855862], + [17.650829, 59.855862], + [17.650829, 59.855862], + [17.650829, 59.855862], + [17.650829, 59.855862], + [17.650829, 59.855862], + [17.650829, 59.855862], + [17.650829, 59.855862], + [17.650829, 59.855862], + [17.650829, 59.855862], + [17.650829, 59.855862], + [17.650829, 59.855862], + [17.650829, 59.855862], + [17.650829, 59.855862], + [17.650829, 59.855862], + [17.650829, 59.855862], + [17.650829, 59.855862], + [17.650829, 59.855862], + [17.650829, 59.855861], + [17.650829, 59.855861], + [17.650829, 59.855861], + [17.650829, 59.855861], + [17.650829, 59.855861], + [17.650829, 59.855861], + [17.650829, 59.855861], + [17.650828, 59.855862], + [17.650811, 59.855854], + [17.65081, 59.855854], + [17.650809, 59.855855], + [17.650809, 59.855855], + [17.650811, 59.855854], + [17.650811, 59.855854], + [17.650794, 59.855846], + [17.650794, 59.855846], + [17.650794, 59.855848], + [17.650794, 59.855848], + [17.650794, 59.855846], + [17.650794, 59.855846], + [17.650774, 59.855858], + [17.650774, 59.855858], + [17.650774, 59.855858], + [17.650775, 59.855858], + [17.650775, 59.855858], + [17.650774, 59.855858], + [17.650774, 59.855858], + [17.650774, 59.855858], + [17.650758, 59.855867], + [17.650758, 59.855867], + [17.650759, 59.855867], + [17.650759, 59.855867], + [17.650758, 59.855867], + [17.650758, 59.855867], + [17.650741, 59.855876], + [17.650742, 59.855876], + [17.650743, 59.855876], + [17.650743, 59.855876], + [17.650741, 59.855876], + [17.650741, 59.855876], + [17.650725, 59.855885], + [17.650725, 59.855885], + [17.650727, 59.855885], + [17.650727, 59.855886], + [17.650725, 59.855885], + [17.650725, 59.855885], + [17.650709, 59.855894], + [17.650709, 59.855894], + [17.650711, 59.855895], + [17.650711, 59.855895], + [17.650709, 59.855894], + [17.650709, 59.855894], + [17.650709, 59.855894], + [17.650693, 59.855903], + [17.650693, 59.855903], + [17.650694, 59.855904], + [17.650694, 59.855904], + [17.650693, 59.855903], + [17.650693, 59.855903], + [17.650681, 59.855909], + [17.650681, 59.855909], + [17.650682, 59.855909], + [17.650682, 59.855909], + [17.650682, 59.855909], + [17.650681, 59.855909], + [17.650681, 59.855909], + [17.650681, 59.855909], + [17.650681, 59.855909], + [17.650681, 59.855909], + [17.650681, 59.855909], + [17.650681, 59.855909], + [17.650681, 59.855909], + [17.650681, 59.855909], + [17.650681, 59.855909], + [17.650681, 59.855909], + [17.65068, 59.855909], + [17.65068, 59.855909], + [17.65068, 59.855909], + [17.65068, 59.855909], + [17.65068, 59.855909], + [17.65068, 59.855909], + [17.65068, 59.855909], + [17.65068, 59.855909], + [17.65068, 59.855909], + [17.650681, 59.855909], + [17.650681, 59.855909], + [17.650681, 59.85591], + [17.650677, 59.855912], + [17.650677, 59.855912], + [17.650678, 59.855913], + [17.650678, 59.855913], + [17.650677, 59.855912], + [17.650677, 59.855912], + [17.650673, 59.855914], + [17.650671, 59.855914], + [17.650671, 59.855914], + [17.650671, 59.855914], + [17.650671, 59.855914], + [17.650671, 59.855914], + [17.650671, 59.855914], + [17.650671, 59.855914], + [17.650671, 59.855914], + [17.650671, 59.855914], + [17.650671, 59.855914], + [17.650671, 59.855914], + [17.650671, 59.855914], + [17.650671, 59.855914], + [17.650671, 59.855914], + [17.650671, 59.855914], + [17.650671, 59.855914], + [17.650671, 59.855914], + [17.650671, 59.855914], + [17.650671, 59.855915], + [17.650671, 59.855915], + [17.650671, 59.855915], + [17.650671, 59.855915], + [17.650672, 59.855915], + [17.650672, 59.855915], + [17.650672, 59.855915], + [17.650672, 59.855914], + [17.650672, 59.855915], + [17.65066, 59.855921], + [17.65066, 59.855921], + [17.650662, 59.855922], + [17.650662, 59.855922], + [17.65066, 59.855921], + [17.65066, 59.855921], + [17.650644, 59.85593], + [17.650644, 59.85593], + [17.650646, 59.855931], + [17.650646, 59.855931], + [17.650645, 59.85593], + [17.650644, 59.85593], + [17.650644, 59.85593], + [17.650628, 59.855939], + [17.650628, 59.855939], + [17.65063, 59.85594], + [17.650629, 59.85594], + [17.650628, 59.855939], + [17.650628, 59.855939], + [17.650612, 59.855948], + [17.650613, 59.855949], + [17.650613, 59.855949], + [17.650613, 59.855949], + [17.650612, 59.855948], + [17.650612, 59.855948], + [17.650612, 59.855948], + [17.650595, 59.855957], + [17.650595, 59.855957], + [17.650597, 59.855958], + [17.650597, 59.855958], + [17.650595, 59.855957], + [17.650595, 59.855957], + [17.650595, 59.855957], + [17.650579, 59.855966], + [17.650581, 59.855967], + [17.650581, 59.855967], + [17.650579, 59.855966], + [17.650579, 59.855966], + [17.650579, 59.855966], + [17.650563, 59.855975], + [17.650565, 59.855976], + [17.650565, 59.855976], + [17.650563, 59.855975], + [17.650563, 59.855975], + [17.650563, 59.855975], + [17.650547, 59.855984], + [17.650548, 59.855985], + [17.650548, 59.855985], + [17.650547, 59.855984], + [17.650547, 59.855984], + [17.650547, 59.855984], + [17.650546, 59.855985], + [17.650546, 59.855985], + [17.650546, 59.855984], + [17.650546, 59.855984], + [17.650546, 59.855984], + [17.650546, 59.855984], + [17.650546, 59.855984], + [17.650546, 59.855984], + [17.650546, 59.855984], + [17.650546, 59.855984], + [17.650545, 59.855984], + [17.650545, 59.855984], + [17.650545, 59.855984], + [17.650545, 59.855984], + [17.650545, 59.855984], + [17.650545, 59.855984], + [17.650545, 59.855984], + [17.650545, 59.855984], + [17.650545, 59.855984], + [17.650545, 59.855984], + [17.650545, 59.855984], + [17.650545, 59.855984], + [17.650545, 59.855984], + [17.650545, 59.855984], + [17.650545, 59.855984], + [17.650545, 59.855984], + [17.650545, 59.855984], + [17.650545, 59.855984], + [17.650545, 59.855984], + [17.650545, 59.855984], + [17.650545, 59.855984], + [17.650545, 59.855985], + [17.650531, 59.855993], + [17.650532, 59.855994], + [17.650532, 59.855994], + [17.650531, 59.855994], + [17.650531, 59.855993], + [17.65053, 59.855993], + [17.65053, 59.855993], + [17.650514, 59.856002], + [17.650514, 59.856002], + [17.650516, 59.856003], + [17.650516, 59.856003], + [17.650514, 59.856003], + [17.650514, 59.856003], + [17.650514, 59.856002], + [17.650498, 59.856012], + [17.650499, 59.856012], + [17.6505, 59.856012], + [17.6505, 59.856012], + [17.650498, 59.856012], + [17.650498, 59.856012], + [17.650498, 59.856012], + [17.650482, 59.856021], + [17.650482, 59.856021], + [17.650483, 59.856021], + [17.650483, 59.856021], + [17.650482, 59.856021], + [17.650482, 59.856021], + [17.650482, 59.856021], + [17.650466, 59.85603], + [17.650466, 59.85603], + [17.650467, 59.85603], + [17.650467, 59.85603], + [17.650466, 59.85603], + [17.650466, 59.85603], + [17.650466, 59.85603], + [17.650449, 59.856039], + [17.650449, 59.856039], + [17.650451, 59.856039], + [17.650451, 59.856039], + [17.650449, 59.856039], + [17.650449, 59.856039], + [17.650449, 59.856039], + [17.650433, 59.856048], + [17.650433, 59.856048], + [17.650435, 59.856049], + [17.650435, 59.856049], + [17.650433, 59.856048], + [17.650433, 59.856048], + [17.650433, 59.856048], + [17.65042, 59.856055] + ], + [ + [17.650642, 59.856143], + [17.650642, 59.856143], + [17.650645, 59.856142], + [17.650645, 59.856142], + [17.650645, 59.856142], + [17.650645, 59.856142], + [17.650642, 59.856143] + ], + [ + [17.650677, 59.856124], + [17.650677, 59.856124], + [17.650675, 59.856125], + [17.650675, 59.856125], + [17.650677, 59.856124] + ], + [ + [17.650707, 59.856107], + [17.650707, 59.856107], + [17.650707, 59.856107], + [17.650707, 59.856107], + [17.650707, 59.856107], + [17.650707, 59.856107], + [17.650707, 59.856107] + ], + [ + [17.650708, 59.856107], + [17.650709, 59.856106], + [17.650709, 59.856106], + [17.650708, 59.856107], + [17.650708, 59.856107] + ], + [ + [17.650683, 59.856095], + [17.650682, 59.856095], + [17.650705, 59.856106], + [17.650706, 59.856105], + [17.650708, 59.856106], + [17.650708, 59.856107], + [17.650683, 59.856095] + ], + [ + [17.650681, 59.856095], + [17.650675, 59.856099], + [17.650675, 59.856099], + [17.650675, 59.856099], + [17.650673, 59.8561], + [17.650673, 59.8561], + [17.650654, 59.856111], + [17.650649, 59.856113], + [17.650649, 59.856113], + [17.650641, 59.85611], + [17.650641, 59.856109], + [17.650639, 59.856109], + [17.650639, 59.856109], + [17.650649, 59.856113], + [17.650683, 59.856095], + [17.650683, 59.856095], + [17.650682, 59.856095], + [17.650681, 59.856095] + ], + [ + [17.650602, 59.856093], + [17.650588, 59.856101], + [17.650603, 59.856092], + [17.650602, 59.856093] + ], + [ + [17.650576, 59.856095], + [17.650578, 59.856094], + [17.65058, 59.856093], + [17.65058, 59.856093], + [17.650576, 59.856095], + [17.650576, 59.856095] + ], + [ + [17.650588, 59.856088], + [17.65059, 59.856087], + [17.65059, 59.856087], + [17.650588, 59.856088], + [17.650587, 59.856088], + [17.650592, 59.856085], + [17.650577, 59.856078], + [17.650588, 59.856072], + [17.650578, 59.856068], + [17.650597, 59.856057], + [17.650597, 59.856057], + [17.650588, 59.856053], + [17.65059, 59.856051], + [17.650588, 59.856051], + [17.650603, 59.856042], + [17.650617, 59.856034], + [17.650618, 59.856035], + [17.650604, 59.856042], + [17.650605, 59.856043], + [17.650604, 59.856043], + [17.650604, 59.856042], + [17.650604, 59.856043], + [17.650604, 59.856043], + [17.650593, 59.856049], + [17.650593, 59.856049], + [17.650593, 59.856049], + [17.650592, 59.856049], + [17.650609, 59.856057], + [17.650605, 59.856059], + [17.650606, 59.85606], + [17.65061, 59.856057], + [17.650612, 59.856058], + [17.650618, 59.856061], + [17.650614, 59.856063], + [17.650615, 59.856064], + [17.650619, 59.856061], + [17.650628, 59.856065], + [17.650628, 59.856065], + [17.650623, 59.856068], + [17.650624, 59.856068], + [17.650629, 59.856066], + [17.650636, 59.856062], + [17.65064, 59.856059], + [17.650655, 59.856051], + [17.650655, 59.856051], + [17.650588, 59.856088], + [17.650588, 59.856088] + ], + [ + [17.650657, 59.85605], + [17.650657, 59.85605], + [17.650673, 59.856041], + [17.650673, 59.856041], + [17.650673, 59.856041], + [17.650657, 59.85605], + [17.650657, 59.85605] + ], + [ + [17.650665, 59.856038], + [17.650664, 59.856038], + [17.650667, 59.856039], + [17.650665, 59.856038] + ], + [ + [17.650656, 59.856034], + [17.650653, 59.856032], + [17.650652, 59.856032], + [17.650657, 59.856034], + [17.650656, 59.856034] + ], + [ + [17.650636, 59.856025], + [17.650636, 59.856025], + [17.65064, 59.856026], + [17.650636, 59.856025] + ], + [ + [17.650641, 59.856021], + [17.650639, 59.856022], + [17.65065, 59.856016], + [17.650643, 59.85602], + [17.650641, 59.856021] + ], + [ + [17.650628, 59.856022], + [17.65062, 59.856019], + [17.650619, 59.856018], + [17.650634, 59.856025], + [17.650628, 59.856022] + ], + [ + [17.650618, 59.856018], + [17.650595, 59.856007], + [17.650591, 59.856006], + [17.650619, 59.856018], + [17.650618, 59.856018] + ], + [ + [17.650548, 59.856057], + [17.650617, 59.856018], + [17.650618, 59.856018], + [17.650548, 59.856057] + ], + [ + [17.650566, 59.855996], + [17.650594, 59.856008], + [17.650617, 59.856018], + [17.650566, 59.855996] + ], + [ + [17.65056, 59.855981], + [17.65057, 59.855985], + [17.650576, 59.855988], + [17.65058, 59.85599], + [17.650592, 59.855995], + [17.650614, 59.856005], + [17.650621, 59.856008], + [17.650624, 59.85601], + [17.65056, 59.855981], + [17.65056, 59.855981] + ], + [ + [17.65063, 59.856006], + [17.650632, 59.856007], + [17.65063, 59.856006], + [17.65063, 59.856006] + ], + [ + [17.650675, 59.855983], + [17.650659, 59.855993], + [17.650659, 59.855993], + [17.650658, 59.855993], + [17.650654, 59.855992], + [17.650653, 59.855991], + [17.650639, 59.855985], + [17.650656, 59.855976], + [17.650696, 59.855953], + [17.650713, 59.855944], + [17.650732, 59.855953], + [17.650726, 59.855956], + [17.650719, 59.855959], + [17.650714, 59.855961], + [17.650709, 59.855965], + [17.650707, 59.855964], + [17.650707, 59.855964], + [17.650697, 59.85596], + [17.650689, 59.855964], + [17.650699, 59.855969], + [17.650699, 59.855969], + [17.650699, 59.855969], + [17.650699, 59.855969], + [17.6507, 59.855969], + [17.6507, 59.855969], + [17.6507, 59.855969], + [17.650689, 59.855975], + [17.650688, 59.855975], + [17.650688, 59.855975], + [17.650678, 59.85597], + [17.650678, 59.85597], + [17.650678, 59.85597], + [17.650674, 59.855973], + [17.65067, 59.855975], + [17.65067, 59.855975], + [17.65067, 59.855975], + [17.650681, 59.85598], + [17.650681, 59.85598], + [17.650675, 59.855983], + [17.650675, 59.855983], + [17.650675, 59.855983] + ], + [ + [17.650714, 59.855926], + [17.650714, 59.855926], + [17.650744, 59.855939], + [17.650744, 59.855939], + [17.650751, 59.855942], + [17.650751, 59.855942], + [17.650714, 59.855926] + ], + [ + [17.650714, 59.855926], + [17.650683, 59.855912], + [17.650684, 59.855912], + [17.650683, 59.855912], + [17.650714, 59.855926], + [17.650714, 59.855926] + ], + [ + [17.650545, 59.856161], + [17.650545, 59.856161], + [17.650545, 59.856161], + [17.650545, 59.856161], + [17.650545, 59.856161] + ], + [ + [17.65058, 59.856175], + [17.650583, 59.856177], + [17.650585, 59.856175], + [17.650585, 59.856175], + [17.650583, 59.856177], + [17.65058, 59.856175], + [17.65058, 59.856176], + [17.65058, 59.856176], + [17.65058, 59.856175] + ], + [ + [17.650499, 59.856139], + [17.650498, 59.856139], + [17.650498, 59.856139], + [17.650499, 59.856139], + [17.650496, 59.856137], + [17.650496, 59.856137], + [17.650481, 59.85613], + [17.650481, 59.85613], + [17.650496, 59.856137], + [17.650496, 59.856137], + [17.650481, 59.85613], + [17.650481, 59.85613], + [17.650497, 59.856138], + [17.650518, 59.856126], + [17.650499, 59.856137], + [17.6505, 59.856137], + [17.650531, 59.85612], + [17.65053, 59.85612], + [17.65053, 59.856119], + [17.650529, 59.856119], + [17.65053, 59.856118], + [17.650521, 59.856114], + [17.650521, 59.856114], + [17.650531, 59.856109], + [17.650541, 59.856113], + [17.650542, 59.856113], + [17.650532, 59.856119], + [17.650533, 59.856119], + [17.650498, 59.856138], + [17.650499, 59.856139], + [17.650499, 59.856139], + [17.650499, 59.856139] + ], + [ + [17.650531, 59.856108], + [17.65053, 59.856109], + [17.65052, 59.856114], + [17.65052, 59.856114], + [17.650531, 59.856108], + [17.650542, 59.856113], + [17.650531, 59.856108] + ], + [ + [17.650557, 59.856105], + [17.650557, 59.856105], + [17.650547, 59.85611], + [17.650542, 59.856113], + [17.650543, 59.856114], + [17.650542, 59.856113], + [17.650557, 59.856105] + ], + [ + [17.650544, 59.856113], + [17.650544, 59.856113], + [17.650541, 59.856114], + [17.650541, 59.856114], + [17.650543, 59.856114], + [17.650544, 59.856113] + ], + [ + [17.650575, 59.856094], + [17.650559, 59.856103], + [17.650559, 59.856103], + [17.650575, 59.856094], + [17.650575, 59.856094] + ], + [ + [17.650577, 59.856093], + [17.650576, 59.856094], + [17.650576, 59.856094], + [17.650577, 59.856093], + [17.650577, 59.856093] + ], + [ + [17.65058, 59.856093], + [17.650578, 59.856094], + [17.650577, 59.856093], + [17.650577, 59.856093], + [17.650579, 59.856092], + [17.65058, 59.856093] + ], + [ + [17.650597, 59.856057], + [17.650578, 59.856068], + [17.650578, 59.856068], + [17.650597, 59.856057] + ], + [ + [17.650627, 59.856023], + [17.650633, 59.856025], + [17.650627, 59.856023], + [17.650627, 59.856023] + ], + [ + [17.650598, 59.85599], + [17.650598, 59.85599], + [17.650597, 59.855989], + [17.650597, 59.855989], + [17.650595, 59.855988], + [17.650595, 59.855988], + [17.650594, 59.855988], + [17.650594, 59.855988], + [17.650594, 59.855988], + [17.65059, 59.855986], + [17.65059, 59.855986], + [17.650589, 59.855985], + [17.65059, 59.855985], + [17.650589, 59.855985], + [17.650598, 59.85599], + [17.650598, 59.85599], + [17.650598, 59.85599], + [17.650598, 59.85599], + [17.650598, 59.85599] + ], + [ + [17.65059, 59.855985], + [17.65059, 59.855985], + [17.6506, 59.855989], + [17.65059, 59.855985], + [17.65059, 59.855985] + ], + [ + [17.650598, 59.855959], + [17.650598, 59.855959], + [17.650598, 59.855959], + [17.650598, 59.855959] + ], + [ + [17.650461, 59.856122], + [17.65046, 59.856121], + [17.650463, 59.856122], + [17.650461, 59.856122] + ], + [ + [17.65046, 59.856121], + [17.650457, 59.856119], + [17.650455, 59.856119], + [17.650455, 59.856119], + [17.650449, 59.856116], + [17.650449, 59.856116], + [17.650447, 59.856115], + [17.650435, 59.85611], + [17.650429, 59.856107], + [17.650427, 59.856106], + [17.650427, 59.856106], + [17.65046, 59.856121], + [17.65046, 59.856121], + [17.65046, 59.856121] + ], + [ + [17.650454, 59.856089], + [17.650446, 59.856093], + [17.650447, 59.856093], + [17.650454, 59.856089], + [17.650454, 59.856089] + ], + [ + [17.65046, 59.856088], + [17.65046, 59.856087], + [17.65046, 59.856088], + [17.65046, 59.856088] + ], + [ + [17.650456, 59.856087], + [17.650457, 59.856086], + [17.650412, 59.856066], + [17.650413, 59.856065], + [17.650458, 59.856086], + [17.650458, 59.856086], + [17.650456, 59.856087], + [17.650456, 59.856087] + ], + [ + [17.650534, 59.855995], + [17.650535, 59.855994], + [17.650534, 59.855995], + [17.650533, 59.855995], + [17.650533, 59.855995], + [17.650534, 59.855995] + ], + [ + [17.650535, 59.855994], + [17.650535, 59.855994], + [17.650535, 59.855994], + [17.650535, 59.855994] + ], + [ + [17.650532, 59.855994], + [17.650532, 59.855994], + [17.650532, 59.855994], + [17.650532, 59.855994], + [17.650532, 59.855994] + ], + [ + [17.6505, 59.856012], + [17.6505, 59.856012], + [17.6505, 59.856012], + [17.6505, 59.856012], + [17.6505, 59.856012] + ], + [ + [17.650424, 59.856106], + [17.650424, 59.856106], + [17.650424, 59.856106], + [17.650424, 59.856106], + [17.650424, 59.856106] + ], + [ + [17.650408, 59.856065], + [17.65041, 59.856064], + [17.65041, 59.856064], + [17.650408, 59.856065] + ], + [ + [17.650409, 59.856065], + [17.650409, 59.856065], + [17.650408, 59.856065], + [17.650409, 59.856065] + ], + [ + [17.650435, 59.856049], + [17.650435, 59.856049], + [17.650435, 59.856049], + [17.650435, 59.856049], + [17.650435, 59.856049] + ], + [ + [17.650376, 59.856083], + [17.650378, 59.856082], + [17.650376, 59.856083], + [17.650376, 59.856083] + ], + [ + [17.650378, 59.856082], + [17.650378, 59.856082], + [17.650378, 59.856082], + [17.650378, 59.856082] + ], + [ + [17.650433, 59.856092], + [17.650417, 59.856101], + [17.650417, 59.856101], + [17.650434, 59.856092], + [17.650433, 59.856092] + ], + [ + [17.650379, 59.856084], + [17.650379, 59.856084], + [17.650379, 59.856084], + [17.650379, 59.856084] + ], + [ + [17.65044, 59.856095], + [17.650441, 59.856095], + [17.650424, 59.856105], + [17.650418, 59.856102], + [17.650434, 59.856093], + [17.65044, 59.856095] + ], + [ + [17.650424, 59.856105], + [17.650424, 59.856105], + [17.650426, 59.856104], + [17.650424, 59.856105] + ], + [ + [17.650453, 59.856121], + [17.650453, 59.856121], + [17.650454, 59.856121], + [17.650453, 59.856121] + ], + [ + [17.650467, 59.856031], + [17.650468, 59.856031], + [17.650468, 59.856031], + [17.650467, 59.856031], + [17.650467, 59.856031] + ], + [ + [17.650472, 59.856126], + [17.650463, 59.856122], + [17.650463, 59.856122], + [17.650472, 59.856126], + [17.650472, 59.856126], + [17.650463, 59.856122], + [17.650463, 59.856122], + [17.650472, 59.856126], + [17.650472, 59.856126] + ], + [ + [17.650525, 59.856117], + [17.650519, 59.856115], + [17.650519, 59.856115], + [17.65052, 59.856115], + [17.650525, 59.856117] + ], + [ + [17.650468, 59.856128], + [17.650468, 59.856128], + [17.650468, 59.856128], + [17.650468, 59.856128] + ], + [ + [17.650546, 59.855985], + [17.650546, 59.855985], + [17.650546, 59.855985], + [17.650546, 59.855985] + ], + [ + [17.650548, 59.856058], + [17.650609, 59.856024], + [17.650479, 59.856096], + [17.65054, 59.856062], + [17.65054, 59.856062], + [17.650548, 59.856058] + ], + [ + [17.650547, 59.85616], + [17.650547, 59.85616], + [17.650544, 59.856159], + [17.650544, 59.856159], + [17.650544, 59.856159], + [17.650544, 59.856159], + [17.650547, 59.85616] + ], + [ + [17.650567, 59.855976], + [17.650568, 59.855976], + [17.650568, 59.855976], + [17.650567, 59.855976] + ], + [ + [17.650566, 59.855978], + [17.650566, 59.855978], + [17.650565, 59.855977], + [17.650566, 59.855978] + ], + [ + [17.650588, 59.855987], + [17.650585, 59.855988], + [17.650588, 59.855987], + [17.650588, 59.855987] + ], + [ + [17.650541, 59.856115], + [17.650534, 59.856118], + [17.650541, 59.856115], + [17.650541, 59.856115] + ], + [ + [17.650547, 59.856111], + [17.650546, 59.856112], + [17.650546, 59.856112], + [17.650548, 59.856111], + [17.650558, 59.856105], + [17.650558, 59.856105], + [17.650548, 59.85611], + [17.650548, 59.85611], + [17.650547, 59.856111] + ], + [ + [17.65063, 59.855991], + [17.650633, 59.855992], + [17.650643, 59.855997], + [17.65063, 59.855991] + ], + [ + [17.65061, 59.855953], + [17.650611, 59.855952], + [17.65062, 59.855947], + [17.65062, 59.855947], + [17.65063, 59.855941], + [17.65063, 59.855941], + [17.6506, 59.855958], + [17.6506, 59.855958], + [17.650601, 59.855958], + [17.65061, 59.855953] + ], + [ + [17.650653, 59.855929], + [17.650653, 59.855929], + [17.650663, 59.855923], + [17.650663, 59.855923], + [17.650633, 59.85594], + [17.650633, 59.85594], + [17.650636, 59.855939], + [17.650638, 59.855937], + [17.650653, 59.855929] + ], + [ + [17.650644, 59.855998], + [17.650648, 59.855995], + [17.650652, 59.855997], + [17.65065, 59.855998], + [17.650649, 59.855999], + [17.650642, 59.856003], + [17.650637, 59.856007], + [17.650635, 59.856008], + [17.650631, 59.856006], + [17.650638, 59.856002], + [17.650644, 59.855998] + ], + [ + [17.650665, 59.855922], + [17.650663, 59.855923], + [17.650663, 59.855923], + [17.650665, 59.855922], + [17.650665, 59.855922] + ], + [ + [17.650672, 59.855914], + [17.650672, 59.855914], + [17.650672, 59.855914], + [17.650672, 59.855914] + ], + [ + [17.650648, 59.856046], + [17.650655, 59.856049], + [17.650654, 59.85605], + [17.65062, 59.856034], + [17.650621, 59.856034], + [17.650637, 59.856041], + [17.650648, 59.856046] + ], + [ + [17.650618, 59.856157], + [17.650618, 59.856157], + [17.650615, 59.856159], + [17.650615, 59.856159], + [17.650618, 59.856157] + ], + [ + [17.650841, 59.856034], + [17.650841, 59.856034], + [17.650841, 59.856034], + [17.650841, 59.856034], + [17.650841, 59.856034] + ], + [ + [17.650841, 59.856034], + [17.650841, 59.856034], + [17.650841, 59.856034], + [17.650841, 59.856034] + ], + [ + [17.650841, 59.856034], + [17.650841, 59.856034], + [17.650841, 59.856034], + [17.650841, 59.856034] + ], + [ + [17.650841, 59.856034], + [17.650841, 59.856034], + [17.650841, 59.856034], + [17.650841, 59.856034], + [17.650841, 59.856034] + ], + [ + [17.650841, 59.856034], + [17.650841, 59.856034], + [17.650841, 59.856034], + [17.650841, 59.856034] + ], + [ + [17.650841, 59.856034], + [17.650841, 59.856034], + [17.650841, 59.856034], + [17.650841, 59.856034] + ], + [ + [17.650841, 59.856034], + [17.650841, 59.856034], + [17.650841, 59.856034], + [17.650841, 59.856034] + ], + [ + [17.650806, 59.856053], + [17.650806, 59.856053], + [17.650805, 59.856053], + [17.650805, 59.856053], + [17.650807, 59.856052], + [17.650807, 59.856052], + [17.650805, 59.856053], + [17.650806, 59.856053] + ], + [ + [17.650807, 59.856052], + [17.650807, 59.856052], + [17.650807, 59.856052], + [17.650807, 59.856052] + ], + [ + [17.650827, 59.85603], + [17.650835, 59.856033], + [17.650836, 59.856033], + [17.650839, 59.856034], + [17.650837, 59.856035], + [17.650837, 59.856035], + [17.650838, 59.856034], + [17.650827, 59.85603] + ], + [ + [17.650801, 59.856017], + [17.650733, 59.855987], + [17.650733, 59.855987], + [17.650801, 59.856017], + [17.650801, 59.856017], + [17.650803, 59.856018], + [17.650802, 59.856018], + [17.6508, 59.856018], + [17.650801, 59.856017] + ], + [ + [17.650867, 59.856015], + [17.650867, 59.856015], + [17.650867, 59.856015], + [17.65087, 59.856017], + [17.650872, 59.856015], + [17.650872, 59.856015], + [17.650872, 59.856015], + [17.650872, 59.856015], + [17.65087, 59.856017], + [17.65087, 59.856017], + [17.650869, 59.856017], + [17.650869, 59.856017], + [17.650869, 59.856017], + [17.650869, 59.856017], + [17.650869, 59.856017], + [17.650847, 59.856007], + [17.650847, 59.856007], + [17.650867, 59.856015] + ], + [ + [17.650809, 59.855965], + [17.650815, 59.855968], + [17.650809, 59.855965], + [17.650809, 59.855965], + [17.650809, 59.855965] + ], + [ + [17.650896, 59.855915], + [17.650916, 59.855904], + [17.650918, 59.855905], + [17.650918, 59.855905], + [17.650918, 59.855905], + [17.650918, 59.855905], + [17.650918, 59.855905], + [17.650918, 59.855905], + [17.650918, 59.855905], + [17.650916, 59.855904], + [17.650896, 59.855916], + [17.650896, 59.855916], + [17.650896, 59.855915] + ], + [ + [17.65086, 59.8559], + [17.650861, 59.8559], + [17.650879, 59.85589], + [17.650877, 59.855889], + [17.650876, 59.855889], + [17.650877, 59.855889], + [17.650877, 59.855889], + [17.650878, 59.855888], + [17.650879, 59.855888], + [17.650879, 59.855888], + [17.650879, 59.855888], + [17.650879, 59.855888], + [17.650879, 59.855888], + [17.650879, 59.855888], + [17.650879, 59.855888], + [17.650879, 59.855888], + [17.650879, 59.855888], + [17.650881, 59.855889], + [17.650861, 59.8559], + [17.650861, 59.8559], + [17.650861, 59.8559], + [17.650861, 59.8559], + [17.650861, 59.8559], + [17.650861, 59.8559], + [17.65086, 59.8559], + [17.65086, 59.8559] + ], + [ + [17.650848, 59.855906], + [17.650848, 59.855907], + [17.650857, 59.855902], + [17.650857, 59.855902], + [17.650848, 59.855907], + [17.650848, 59.855906] + ], + [ + [17.650844, 59.855909], + [17.650844, 59.855909], + [17.650845, 59.855908], + [17.650846, 59.855908], + [17.650846, 59.855908], + [17.650845, 59.855908], + [17.65083, 59.855916], + [17.650831, 59.855915], + [17.650822, 59.855911], + [17.650837, 59.855903], + [17.650845, 59.855907], + [17.650844, 59.855907], + [17.650846, 59.855908], + [17.650842, 59.85591], + [17.650844, 59.855909] + ], + [ + [17.650817, 59.85591], + [17.650819, 59.855911], + [17.65082, 59.855911], + [17.65083, 59.855916], + [17.650817, 59.85591] + ], + [ + [17.650811, 59.855891], + [17.650811, 59.855891], + [17.65081, 59.855892], + [17.650813, 59.855891], + [17.65081, 59.85589], + [17.650812, 59.85589], + [17.650812, 59.85589], + [17.650813, 59.855891], + [17.650812, 59.855891], + [17.650846, 59.855906], + [17.650845, 59.855907], + [17.650811, 59.855891], + [17.650811, 59.855891] + ], + [ + [17.650846, 59.855906], + [17.650847, 59.855906], + [17.650846, 59.855906], + [17.650846, 59.855906], + [17.650846, 59.855906] + ], + [ + [17.650813, 59.855891], + [17.650813, 59.855891], + [17.650813, 59.855891], + [17.650847, 59.855906], + [17.650846, 59.855906], + [17.650813, 59.855891] + ], + [ + [17.650845, 59.855873], + [17.650845, 59.855873], + [17.650843, 59.855874], + [17.65084, 59.855873], + [17.650842, 59.855871], + [17.650842, 59.855871], + [17.650844, 59.855871], + [17.650843, 59.855871], + [17.650845, 59.855872], + [17.650845, 59.855872], + [17.650845, 59.855873], + [17.650845, 59.855873] + ], + [ + [17.65074, 59.856089], + [17.65074, 59.856089], + [17.65074, 59.856089], + [17.65074, 59.856089], + [17.65074, 59.856089] + ], + [ + [17.650741, 59.856088], + [17.650741, 59.856088], + [17.650741, 59.856088], + [17.65074, 59.856089], + [17.65074, 59.856089], + [17.650741, 59.856088], + [17.650741, 59.856088] + ], + [ + [17.650739, 59.856087], + [17.650741, 59.856088], + [17.65074, 59.856088], + [17.65074, 59.856088], + [17.65074, 59.856089], + [17.650738, 59.856088], + [17.650739, 59.856087] + ], + [ + [17.650715, 59.856077], + [17.650714, 59.856077], + [17.650731, 59.856085], + [17.650715, 59.856077], + [17.650714, 59.856077], + [17.650715, 59.856077], + [17.650715, 59.856077] + ], + [ + [17.650756, 59.856054], + [17.650747, 59.856059], + [17.650745, 59.85606], + [17.650739, 59.856063], + [17.650739, 59.856063], + [17.650756, 59.856054], + [17.650756, 59.856054], + [17.650756, 59.856054] + ], + [ + [17.650774, 59.856044], + [17.650774, 59.856044], + [17.650779, 59.856041], + [17.650779, 59.856041], + [17.650774, 59.856044] + ], + [ + [17.65077, 59.856036], + [17.650769, 59.856036], + [17.65077, 59.856037], + [17.65077, 59.856037], + [17.650771, 59.856037], + [17.650773, 59.856038], + [17.650768, 59.856036], + [17.650769, 59.856035], + [17.65077, 59.856036] + ], + [ + [17.650841, 59.855911], + [17.650827, 59.855919], + [17.650841, 59.855911], + [17.650841, 59.855911] + ], + [ + [17.650814, 59.855909], + [17.650806, 59.855905], + [17.650814, 59.855909], + [17.650814, 59.855909] + ], + [ + [17.650784, 59.855906], + [17.650784, 59.855906], + [17.650784, 59.855906], + [17.650794, 59.85591], + [17.650784, 59.855906], + [17.650784, 59.855906] + ], + [ + [17.6508, 59.855913], + [17.6508, 59.855913], + [17.65081, 59.855917], + [17.65081, 59.855917], + [17.6508, 59.855913] + ], + [ + [17.650783, 59.855943], + [17.650784, 59.855943], + [17.650808, 59.855929], + [17.650773, 59.855949], + [17.650779, 59.855946], + [17.650781, 59.855944], + [17.650781, 59.855944], + [17.65078, 59.855945], + [17.650784, 59.855942], + [17.650768, 59.855935], + [17.650791, 59.855923], + [17.650791, 59.855923], + [17.650799, 59.855919], + [17.65079, 59.855915], + [17.650759, 59.855932], + [17.650757, 59.855931], + [17.650756, 59.855932], + [17.650746, 59.855928], + [17.650748, 59.855927], + [17.650748, 59.855927], + [17.650762, 59.855919], + [17.650772, 59.855923], + [17.650773, 59.855923], + [17.650789, 59.855914], + [17.650777, 59.855909], + [17.650784, 59.855905], + [17.650786, 59.855905], + [17.650793, 59.855901], + [17.650792, 59.8559], + [17.650785, 59.855904], + [17.650794, 59.855899], + [17.650794, 59.855899], + [17.650794, 59.855899], + [17.650794, 59.855899], + [17.650808, 59.855891], + [17.650807, 59.855891], + [17.650792, 59.855884], + [17.650809, 59.855892], + [17.65081, 59.855892], + [17.650809, 59.855892], + [17.650796, 59.855899], + [17.650795, 59.8559], + [17.650795, 59.8559], + [17.650784, 59.855906], + [17.650784, 59.855906], + [17.650784, 59.855906], + [17.650784, 59.855906], + [17.650784, 59.855906], + [17.650784, 59.855906], + [17.65078, 59.855908], + [17.65078, 59.855908], + [17.650784, 59.855906], + [17.650798, 59.855913], + [17.6508, 59.855913], + [17.650809, 59.855918], + [17.65081, 59.855918], + [17.650819, 59.855922], + [17.650814, 59.855924], + [17.650815, 59.855925], + [17.650816, 59.855925], + [17.650813, 59.855926], + [17.650813, 59.855926], + [17.650783, 59.855943] + ], + [ + [17.650763, 59.855918], + [17.650762, 59.855918], + [17.650773, 59.855923], + [17.650763, 59.855918] + ], + [ + [17.650747, 59.855926], + [17.650747, 59.855926], + [17.650762, 59.855918], + [17.650747, 59.855926] + ], + [ + [17.650796, 59.8559], + [17.650796, 59.8559], + [17.650796, 59.855899], + [17.650796, 59.8559] + ], + [ + [17.650821, 59.855922], + [17.650821, 59.855922], + [17.650815, 59.855925], + [17.650821, 59.855922] + ], + [ + [17.650771, 59.85595], + [17.650769, 59.855951], + [17.650771, 59.85595], + [17.650771, 59.85595] + ], + [ + [17.650771, 59.85595], + [17.650771, 59.85595], + [17.650771, 59.85595], + [17.650769, 59.855951], + [17.650769, 59.855951], + [17.650771, 59.85595] + ], + [ + [17.650752, 59.855943], + [17.650741, 59.855949], + [17.650741, 59.855949], + [17.650743, 59.855948], + [17.650752, 59.855943] + ], + [ + [17.650709, 59.855965], + [17.650709, 59.855965], + [17.650708, 59.855965], + [17.650709, 59.855965] + ], + [ + [17.650724, 59.855982], + [17.650733, 59.855986], + [17.650733, 59.855986], + [17.650724, 59.855982] + ], + [ + [17.650733, 59.855952], + [17.650737, 59.85595], + [17.650737, 59.85595], + [17.650724, 59.855957], + [17.650726, 59.855956], + [17.650732, 59.855953], + [17.650733, 59.855952] + ], + [ + [17.650762, 59.855901], + [17.650761, 59.855902], + [17.650761, 59.855902], + [17.650729, 59.85592], + [17.650729, 59.85592], + [17.650778, 59.855892], + [17.650782, 59.855894], + [17.650788, 59.855897], + [17.650789, 59.855897], + [17.650778, 59.855892], + [17.650762, 59.855901], + [17.650762, 59.855901] + ], + [ + [17.650795, 59.855852], + [17.650824, 59.855865], + [17.650821, 59.855866], + [17.650819, 59.855868], + [17.650819, 59.855868], + [17.650814, 59.85587], + [17.650793, 59.855882], + [17.650777, 59.855891], + [17.650729, 59.855918], + [17.6507, 59.855905], + [17.650795, 59.855852] + ], + [ + [17.650795, 59.855852], + [17.650795, 59.855852], + [17.650795, 59.855852], + [17.650795, 59.855852] + ], + [ + [17.650795, 59.855852], + [17.6507, 59.855905], + [17.650698, 59.855904], + [17.650708, 59.855898], + [17.650716, 59.855894], + [17.650716, 59.855894], + [17.650728, 59.855887], + [17.65073, 59.855888], + [17.65073, 59.855888], + [17.650732, 59.855887], + [17.650732, 59.855887], + [17.65073, 59.855886], + [17.650732, 59.855885], + [17.650736, 59.855882], + [17.650752, 59.855874], + [17.650754, 59.855873], + [17.650755, 59.855872], + [17.650756, 59.855871], + [17.650756, 59.855871], + [17.650761, 59.855869], + [17.650762, 59.85587], + [17.650762, 59.85587], + [17.650761, 59.855869], + [17.650762, 59.855868], + [17.650764, 59.855869], + [17.650764, 59.855869], + [17.650762, 59.855868], + [17.650763, 59.855867], + [17.650763, 59.855867], + [17.650763, 59.855868], + [17.65077, 59.855864], + [17.650776, 59.85586], + [17.650777, 59.85586], + [17.650777, 59.85586], + [17.65078, 59.855858], + [17.650788, 59.855854], + [17.650793, 59.855851], + [17.650795, 59.855852], + [17.650795, 59.855852], + [17.650796, 59.855851], + [17.650825, 59.855864], + [17.650824, 59.855865], + [17.650795, 59.855852], + [17.650795, 59.855852] + ], + [ + [17.65073, 59.855888], + [17.650728, 59.855887], + [17.65073, 59.855886], + [17.650732, 59.855887], + [17.65073, 59.855888], + [17.65073, 59.855888] + ], + [ + [17.650795, 59.855852], + [17.650793, 59.855851], + [17.650794, 59.85585], + [17.650794, 59.85585], + [17.650796, 59.855851], + [17.650796, 59.855851], + [17.650795, 59.855852], + [17.650795, 59.855852] + ], + [ + [17.650681, 59.855909], + [17.650681, 59.855909], + [17.650681, 59.855909], + [17.650681, 59.855909] + ], + [ + [17.650726, 59.855919], + [17.650727, 59.85592], + [17.650704, 59.855909], + [17.650726, 59.855919] + ], + [ + [17.650697, 59.855904], + [17.650697, 59.855904], + [17.650699, 59.855905], + [17.650698, 59.855906], + [17.650696, 59.855905], + [17.650697, 59.855904], + [17.650697, 59.855904] + ], + [ + [17.650745, 59.85594], + [17.650744, 59.855939], + [17.650745, 59.855939], + [17.650745, 59.855938], + [17.650747, 59.855939], + [17.650745, 59.85594] + ], + [ + [17.650714, 59.855925], + [17.650744, 59.855939], + [17.650745, 59.855939], + [17.650714, 59.855925] + ], + [ + [17.650745, 59.855938], + [17.650745, 59.855938], + [17.650744, 59.855939], + [17.650745, 59.855938] + ], + [ + [17.650728, 59.85592], + [17.650728, 59.85592], + [17.650728, 59.85592], + [17.650728, 59.85592], + [17.650728, 59.85592] + ], + [ + [17.650755, 59.855933], + [17.650756, 59.855932], + [17.650757, 59.855933], + [17.650755, 59.855934], + [17.650754, 59.855934], + [17.650753, 59.855934], + [17.650755, 59.855933] + ], + [ + [17.650745, 59.855928], + [17.650746, 59.855928], + [17.650745, 59.855928], + [17.650745, 59.855928] + ], + [ + [17.650755, 59.856055], + [17.650756, 59.856054], + [17.650756, 59.856054], + [17.650756, 59.856054], + [17.650755, 59.856055] + ], + [ + [17.65078, 59.856041], + [17.65078, 59.856041], + [17.65078, 59.856041], + [17.65078, 59.856041] + ], + [ + [17.65078, 59.856041], + [17.65078, 59.856041], + [17.650781, 59.856041], + [17.65078, 59.856041] + ], + [ + [17.650771, 59.856036], + [17.650781, 59.856041], + [17.650781, 59.856041], + [17.650781, 59.856041], + [17.650771, 59.856036] + ], + [ + [17.65074, 59.856064], + [17.650743, 59.856062], + [17.65074, 59.856064], + [17.65074, 59.856064] + ], + [ + [17.650826, 59.855865], + [17.650826, 59.855865], + [17.650826, 59.855865], + [17.650826, 59.855865] + ], + [ + [17.650796, 59.855883], + [17.650796, 59.855883], + [17.650795, 59.855883], + [17.650818, 59.85587], + [17.650796, 59.855883] + ], + [ + [17.650795, 59.855883], + [17.650794, 59.855883], + [17.650795, 59.855883], + [17.650795, 59.855883] + ], + [ + [17.650793, 59.855899], + [17.650794, 59.855899], + [17.650793, 59.855899], + [17.650793, 59.855899], + [17.650793, 59.855899] + ], + [ + [17.650827, 59.855863], + [17.650829, 59.855862], + [17.650829, 59.855862], + [17.650827, 59.855863], + [17.650827, 59.855863] + ], + [ + [17.650812, 59.855907], + [17.650825, 59.855899], + [17.650824, 59.855899], + [17.650813, 59.855894], + [17.650825, 59.855899], + [17.650812, 59.855907] + ], + [ + [17.650835, 59.855903], + [17.650835, 59.855903], + [17.650836, 59.855903], + [17.650836, 59.855903], + [17.650829, 59.855907], + [17.650835, 59.855903] + ], + [ + [17.650827, 59.855919], + [17.65083, 59.855917], + [17.650827, 59.855919], + [17.650827, 59.855919] + ], + [ + [17.650897, 59.855963], + [17.650897, 59.855963], + [17.650896, 59.855963], + [17.650896, 59.855963], + [17.650897, 59.855963], + [17.650897, 59.855963] + ], + [ + [17.650899, 59.855962], + [17.650899, 59.855962], + [17.650899, 59.855962], + [17.650899, 59.855962], + [17.650899, 59.855962] + ], + [ + [17.650899, 59.855962], + [17.650899, 59.855962], + [17.650899, 59.855962], + [17.650899, 59.855962] + ], + [ + [17.650899, 59.855962], + [17.650899, 59.855962], + [17.650899, 59.855962], + [17.650899, 59.855962] + ], + [ + [17.650864, 59.855982], + [17.650864, 59.855982], + [17.650864, 59.855982], + [17.650864, 59.855981], + [17.650864, 59.855981], + [17.650864, 59.855982] + ], + [ + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018] + ], + [ + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018] + ], + [ + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018] + ], + [ + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018] + ], + [ + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018] + ], + [ + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018], + [17.650872, 59.856018] + ], + [ + [17.650871, 59.856017], + [17.650871, 59.856017], + [17.650871, 59.856017], + [17.650871, 59.856017] + ], + [ + [17.650871, 59.856017], + [17.650871, 59.856017], + [17.650871, 59.856017], + [17.650871, 59.856017] + ], + [ + [17.650871, 59.856017], + [17.650871, 59.856017], + [17.650871, 59.856017], + [17.650871, 59.856017] + ], + [ + [17.650871, 59.856017], + [17.650871, 59.856017], + [17.650871, 59.856017], + [17.650871, 59.856017] + ], + [ + [17.650871, 59.856017], + [17.650871, 59.856017], + [17.650871, 59.856017], + [17.650871, 59.856017], + [17.650871, 59.856017] + ], + [ + [17.65087, 59.856017], + [17.65087, 59.856017], + [17.65087, 59.856017], + [17.65087, 59.856017] + ], + [ + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035] + ], + [ + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035] + ], + [ + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035] + ], + [ + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035] + ], + [ + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035] + ], + [ + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035] + ], + [ + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035] + ], + [ + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035] + ], + [ + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035] + ], + [ + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650842, 59.856035] + ], + [ + [17.650842, 59.856035], + [17.650842, 59.856035], + [17.650841, 59.856035], + [17.650841, 59.856035], + [17.650841, 59.856035], + [17.650842, 59.856035] + ], + [ + [17.6509, 59.855895], + [17.6509, 59.855895], + [17.6509, 59.855895], + [17.6509, 59.855895], + [17.6509, 59.855895] + ], + [ + [17.650917, 59.855903], + [17.650917, 59.855902], + [17.650917, 59.855902], + [17.650917, 59.855903], + [17.650917, 59.855903] + ], + [ + [17.650903, 59.855999], + [17.650903, 59.855999], + [17.650903, 59.855999], + [17.650903, 59.855999], + [17.650903, 59.855999], + [17.650903, 59.855999], + [17.650903, 59.855999] + ], + [ + [17.650904, 59.855997], + [17.650902, 59.855999], + [17.650902, 59.855999], + [17.650904, 59.855997], + [17.650904, 59.855997], + [17.650904, 59.855997] + ], + [ + [17.650873, 59.856016], + [17.650873, 59.856016], + [17.650873, 59.856016], + [17.650873, 59.856016], + [17.650873, 59.856016] + ], + [ + [17.650999, 59.855942], + [17.651002, 59.855943], + [17.651003, 59.855943], + [17.651003, 59.855943], + [17.650999, 59.855944], + [17.650999, 59.855944], + [17.650999, 59.855944], + [17.650999, 59.855944], + [17.651002, 59.855943], + [17.650999, 59.855942], + [17.650999, 59.855942], + [17.650999, 59.855942], + [17.651, 59.855941], + [17.651, 59.855941], + [17.650999, 59.855942] + ], + [ + [17.650966, 59.855927], + [17.650963, 59.855926], + [17.650963, 59.855926], + [17.650963, 59.855926], + [17.650963, 59.855926], + [17.650966, 59.855927], + [17.650966, 59.855927] + ], + [ + [17.650967, 59.855926], + [17.650967, 59.855926], + [17.650967, 59.855926], + [17.650967, 59.855926], + [17.650967, 59.855926], + [17.650967, 59.855926], + [17.650967, 59.855926], + [17.650967, 59.855926], + [17.650967, 59.855926] + ], + [ + [17.650968, 59.855926], + [17.650968, 59.855926], + [17.650968, 59.855926], + [17.650968, 59.855926], + [17.650968, 59.855926], + [17.650968, 59.855926], + [17.650968, 59.855926], + [17.650968, 59.855926] + ], + [ + [17.650907, 59.855958], + [17.650929, 59.855945], + [17.650906, 59.855958], + [17.650907, 59.855958] + ], + [ + [17.650906, 59.855958], + [17.650906, 59.855958], + [17.650906, 59.855958], + [17.650906, 59.855958], + [17.650906, 59.855958] + ], + [ + [17.650967, 59.855962], + [17.650967, 59.855962], + [17.650969, 59.855961], + [17.650969, 59.855961], + [17.650967, 59.855962] + ], + [ + [17.65097, 59.855962], + [17.65097, 59.855962], + [17.65097, 59.855962], + [17.65097, 59.855962], + [17.650971, 59.855962], + [17.650971, 59.855962], + [17.65097, 59.855962] + ], + [ + [17.651, 59.855945], + [17.651, 59.855945], + [17.651001, 59.855945], + [17.651001, 59.855945], + [17.651, 59.855945] + ], + [ + [17.650934, 59.855981], + [17.650934, 59.855981], + [17.650937, 59.855979], + [17.650937, 59.855979], + [17.650934, 59.855981] + ], + [ + [17.650938, 59.85598], + [17.650938, 59.85598], + [17.650938, 59.85598], + [17.650938, 59.85598], + [17.650938, 59.85598], + [17.650938, 59.85598] + ], + [ + [17.650968, 59.855963], + [17.650968, 59.855963], + [17.650968, 59.855963], + [17.650968, 59.855963], + [17.650968, 59.855963] + ], + [ + [17.650937, 59.855979], + [17.650937, 59.855979], + [17.650937, 59.855979], + [17.650937, 59.855979] + ], + [ + [17.650936, 59.855981], + [17.650936, 59.855981], + [17.650936, 59.855981], + [17.650935, 59.855981], + [17.650936, 59.855981] + ], + [ + [17.650906, 59.855998], + [17.650905, 59.855998], + [17.650905, 59.855998], + [17.650905, 59.855998], + [17.650906, 59.855998], + [17.650906, 59.855998] + ] + ], + [ + [ + [17.650458, 59.856086], + [17.650413, 59.856065], + [17.650412, 59.856066], + [17.650457, 59.856086], + [17.650458, 59.856086] + ] + ], + [ + [ + [17.650622, 59.856069], + [17.650592, 59.856086], + [17.650592, 59.856086], + [17.650622, 59.856069], + [17.650622, 59.856069] + ] + ], + [ + [ + [17.650713, 59.855945], + [17.650698, 59.855954], + [17.650713, 59.855961], + [17.650729, 59.855953], + [17.650713, 59.855945] + ] + ], + [ + [ + [17.650764, 59.855869], + [17.650764, 59.855869], + [17.650762, 59.85587], + [17.650763, 59.85587], + [17.650764, 59.855869] + ] + ], + [ + [ + [17.650799, 59.855913], + [17.650795, 59.855916], + [17.650795, 59.855916], + [17.6508, 59.855914], + [17.650799, 59.855913] + ] + ], + [ + [ + [17.650809, 59.855918], + [17.650804, 59.85592], + [17.650805, 59.85592], + [17.65081, 59.855918], + [17.650809, 59.855918] + ] + ], + [ + [ + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022], + [17.650867, 59.856022] + ], + [ + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022], + [17.650868, 59.856022] + ] + ], + [ + [ + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650863, 59.856025], + [17.650863, 59.856025], + [17.650863, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650863, 59.856025], + [17.650863, 59.856025], + [17.650863, 59.856025], + [17.650863, 59.856025], + [17.650863, 59.856025], + [17.650863, 59.856025], + [17.650863, 59.856025], + [17.650863, 59.856025], + [17.650863, 59.856025], + [17.650863, 59.856025], + [17.650863, 59.856025], + [17.650863, 59.856025], + [17.650863, 59.856025], + [17.650863, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025], + [17.650862, 59.856025] + ], + [ + [17.650863, 59.856025], + [17.650863, 59.856025], + [17.650863, 59.856025], + [17.650863, 59.856025], + [17.650863, 59.856025], + [17.650863, 59.856025], + [17.650863, 59.856025], + [17.650863, 59.856025], + [17.650863, 59.856025], + [17.650863, 59.856025] + ] + ], + [ + [ + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028] + ], + [ + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028], + [17.650857, 59.856028] + ] + ], + [ + [ + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019] + ], + [ + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019], + [17.650873, 59.856019] + ] + ] + ] + } + } + ] +} diff --git a/packages/turf-union/test/out/union2.geojson b/packages/turf-union/test/out/union2.geojson index aa9b85893..f064ff9c8 100644 --- a/packages/turf-union/test/out/union2.geojson +++ b/packages/turf-union/test/out/union2.geojson @@ -7,17 +7,17 @@ [ [-80.14389038085938, 32.8149783969858], [-80.07453918457031, 32.85536439443039], - [-80.00867471875296, 32.846454942587876], - [-79.99171138057724, 32.77876713098757], + [-80.00867471875296, 32.84645494258788], + [-79.99171138057724, 32.77876713098755], [-80.00175476074217, 32.732418508353746], - [-79.93763756501369, 32.741047214297545], + [-79.9376375650137, 32.741047214297545], [-79.80537414550781, 32.7231762754146], [-79.81773376464844, 32.923402043498875], - [-79.91098503795921, 32.95087128128811], + [-79.91098503795921, 32.950871281288116], [-79.95025634765625, 32.97007559940924], - [-79.95741485597671, 32.93704020740794], + [-79.95741485597672, 32.93704020740794], [-80.03128051757812, 32.936657533381286], - [-80.02726389659408, 32.92063024667495], + [-80.02726389659406, 32.92063024667495], [-80.10543823242188, 32.94760622243483], [-80.14389038085938, 32.8149783969858] ] diff --git a/packages/turf-unkink-polygon/index.ts b/packages/turf-unkink-polygon/index.ts index 44401c608..5ec560e85 100644 --- a/packages/turf-unkink-polygon/index.ts +++ b/packages/turf-unkink-polygon/index.ts @@ -9,7 +9,7 @@ import { simplepolygon } from "./lib/simplepolygon.js"; * * Uses [simplepolygon](https://github.com/mclaeysb/simplepolygon) internally. * - * @name unkinkPolygon + * @function * @param {FeatureCollection|Feature|Polygon|MultiPolygon} geojson polygons to unkink * @returns {FeatureCollection} Unkinked polygons * @example diff --git a/packages/turf-unkink-polygon/package.json b/packages/turf-unkink-polygon/package.json index 46ccbb1fc..ee7d71c2e 100644 --- a/packages/turf-unkink-polygon/package.json +++ b/packages/turf-unkink-polygon/package.json @@ -1,7 +1,7 @@ { "name": "@turf/unkink-polygon", - "version": "7.0.0", - "description": "turf unkink-polygon module", + "version": "7.2.0", + "description": "Takes a kinked polygon and returns a feature collection of polygons that have no kinks.", "author": "Turf Authors", "license": "MIT", "bugs": { @@ -53,25 +53,25 @@ "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { - "@turf/kinks": "workspace:^", + "@turf/kinks": "workspace:*", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/area": "workspace:^", - "@turf/boolean-point-in-polygon": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/meta": "workspace:^", + "@turf/area": "workspace:*", + "@turf/boolean-point-in-polygon": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "rbush": "^3.0.1", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-voronoi/index.ts b/packages/turf-voronoi/index.ts index bdbcd61b5..083e79412 100644 --- a/packages/turf-voronoi/index.ts +++ b/packages/turf-voronoi/index.ts @@ -30,7 +30,7 @@ function coordsToPolygon(coords: Position[]) { * * The Voronoi algorithim used comes from the d3-voronoi package. * - * @name voronoi + * @function * @param {FeatureCollection} points points around which to calculate the Voronoi polygons * @param {Object} [options={}] Optional parameters * @param {BBox} [options.bbox=[-180, -85, 180, -85]] clipping rectangle, in [minX, minY, maxX, MaxY] order diff --git a/packages/turf-voronoi/package.json b/packages/turf-voronoi/package.json index 82f080b62..c9cbe6ec0 100644 --- a/packages/turf-voronoi/package.json +++ b/packages/turf-voronoi/package.json @@ -1,7 +1,7 @@ { "name": "@turf/voronoi", - "version": "7.0.0", - "description": "turf voronoi module", + "version": "7.2.0", + "description": "Takes a collection of points and a bounding box, and returns a collection of Voronoi polygons.", "author": "Turf Authors", "contributors": [ "Philippe Riviere <@Fil>", @@ -59,24 +59,24 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "benchmark": "^2.1.4", - "glob": "^10.3.10", + "glob": "^11.0.2", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2", - "write-json-file": "^5.0.0" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3", + "write-json-file": "^6.0.0" }, "dependencies": { - "@turf/clone": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/invariant": "workspace:^", + "@turf/clone": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/invariant": "workspace:*", "@types/d3-voronoi": "^1.1.12", "@types/geojson": "^7946.0.10", "d3-voronoi": "1.1.2", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf/index.ts b/packages/turf/index.ts index 2b604e218..651b6601d 100644 --- a/packages/turf/index.ts +++ b/packages/turf/index.ts @@ -91,6 +91,7 @@ export { pointGrid } from "@turf/point-grid"; export { pointOnFeature } from "@turf/point-on-feature"; export { pointsWithinPolygon } from "@turf/points-within-polygon"; export { pointToLineDistance } from "@turf/point-to-line-distance"; +export { pointToPolygonDistance } from "@turf/point-to-polygon-distance"; export { polygonize } from "@turf/polygonize"; export { polygonSmooth } from "@turf/polygon-smooth"; export { polygonTangents } from "@turf/polygon-tangents"; diff --git a/packages/turf/package.json b/packages/turf/package.json index 4855aa15c..b928638a8 100644 --- a/packages/turf/package.json +++ b/packages/turf/package.json @@ -1,6 +1,6 @@ { "name": "@turf/turf", - "version": "7.0.0", + "version": "7.2.0", "description": "a JavaScript library for performing geospatial operations with GeoJSON", "author": "Turf Authors", "license": "MIT", @@ -74,137 +74,138 @@ "test": "echo '@turf/turf tests run in the last-checks step'" }, "devDependencies": { - "@babel/core": "^7.23.2", - "@babel/preset-env": "^7.23.2", + "@babel/core": "^7.26.10", + "@babel/preset-env": "^7.26.9", "@rollup/plugin-babel": "^6.0.4", - "@rollup/plugin-commonjs": "^25.0.7", - "@rollup/plugin-node-resolve": "^15.2.3", + "@rollup/plugin-commonjs": "^28.0.3", + "@rollup/plugin-node-resolve": "^16.0.1", "@rollup/plugin-terser": "^0.4.4", - "@types/tape": "^4.2.32", + "@types/tape": "^5.8.1", "camelcase": "^8.0.0", "documentation": "^14.0.3", - "glob": "^10.3.10", - "rollup": "^2.79.1", + "glob": "^11.0.2", + "rollup": "^4.40.1", "rollup-plugin-polyfill-node": "^0.13.0", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", - "typescript": "^5.2.2" + "tape": "^5.9.0", + "tsup": "^8.4.0", + "tsx": "^4.19.4", + "typescript": "^5.8.3" }, "dependencies": { - "@turf/along": "workspace:^", - "@turf/angle": "workspace:^", - "@turf/area": "workspace:^", - "@turf/bbox": "workspace:^", - "@turf/bbox-clip": "workspace:^", - "@turf/bbox-polygon": "workspace:^", - "@turf/bearing": "workspace:^", - "@turf/bezier-spline": "workspace:^", - "@turf/boolean-clockwise": "workspace:^", - "@turf/boolean-concave": "workspace:^", - "@turf/boolean-contains": "workspace:^", - "@turf/boolean-crosses": "workspace:^", - "@turf/boolean-disjoint": "workspace:^", - "@turf/boolean-equal": "workspace:^", - "@turf/boolean-intersects": "workspace:^", - "@turf/boolean-overlap": "workspace:^", - "@turf/boolean-parallel": "workspace:^", - "@turf/boolean-point-in-polygon": "workspace:^", - "@turf/boolean-point-on-line": "workspace:^", - "@turf/boolean-touches": "workspace:^", - "@turf/boolean-valid": "workspace:^", - "@turf/boolean-within": "workspace:^", - "@turf/buffer": "workspace:^", - "@turf/center": "workspace:^", - "@turf/center-mean": "workspace:^", - "@turf/center-median": "workspace:^", - "@turf/center-of-mass": "workspace:^", - "@turf/centroid": "workspace:^", - "@turf/circle": "workspace:^", - "@turf/clean-coords": "workspace:^", - "@turf/clone": "workspace:^", - "@turf/clusters": "workspace:^", - "@turf/clusters-dbscan": "workspace:^", - "@turf/clusters-kmeans": "workspace:^", - "@turf/collect": "workspace:^", - "@turf/combine": "workspace:^", - "@turf/concave": "workspace:^", - "@turf/convex": "workspace:^", - "@turf/destination": "workspace:^", - "@turf/difference": "workspace:^", - "@turf/dissolve": "workspace:^", - "@turf/distance": "workspace:^", - "@turf/distance-weight": "workspace:^", - "@turf/ellipse": "workspace:^", - "@turf/envelope": "workspace:^", - "@turf/explode": "workspace:^", - "@turf/flatten": "workspace:^", - "@turf/flip": "workspace:^", - "@turf/geojson-rbush": "workspace:^", - "@turf/great-circle": "workspace:^", - "@turf/helpers": "workspace:^", - "@turf/hex-grid": "workspace:^", - "@turf/interpolate": "workspace:^", - "@turf/intersect": "workspace:^", - "@turf/invariant": "workspace:^", - "@turf/isobands": "workspace:^", - "@turf/isolines": "workspace:^", - "@turf/kinks": "workspace:^", - "@turf/length": "workspace:^", - "@turf/line-arc": "workspace:^", - "@turf/line-chunk": "workspace:^", - "@turf/line-intersect": "workspace:^", - "@turf/line-offset": "workspace:^", - "@turf/line-overlap": "workspace:^", - "@turf/line-segment": "workspace:^", - "@turf/line-slice": "workspace:^", - "@turf/line-slice-along": "workspace:^", - "@turf/line-split": "workspace:^", - "@turf/line-to-polygon": "workspace:^", - "@turf/mask": "workspace:^", - "@turf/meta": "workspace:^", - "@turf/midpoint": "workspace:^", - "@turf/moran-index": "workspace:^", - "@turf/nearest-neighbor-analysis": "workspace:^", - "@turf/nearest-point": "workspace:^", - "@turf/nearest-point-on-line": "workspace:^", - "@turf/nearest-point-to-line": "workspace:^", - "@turf/planepoint": "workspace:^", - "@turf/point-grid": "workspace:^", - "@turf/point-on-feature": "workspace:^", - "@turf/point-to-line-distance": "workspace:^", - "@turf/points-within-polygon": "workspace:^", - "@turf/polygon-smooth": "workspace:^", - "@turf/polygon-tangents": "workspace:^", - "@turf/polygon-to-line": "workspace:^", - "@turf/polygonize": "workspace:^", - "@turf/projection": "workspace:^", - "@turf/quadrat-analysis": "workspace:^", - "@turf/random": "workspace:^", - "@turf/rectangle-grid": "workspace:^", - "@turf/rewind": "workspace:^", - "@turf/rhumb-bearing": "workspace:^", - "@turf/rhumb-destination": "workspace:^", - "@turf/rhumb-distance": "workspace:^", - "@turf/sample": "workspace:^", - "@turf/sector": "workspace:^", - "@turf/shortest-path": "workspace:^", - "@turf/simplify": "workspace:^", - "@turf/square": "workspace:^", - "@turf/square-grid": "workspace:^", - "@turf/standard-deviational-ellipse": "workspace:^", - "@turf/tag": "workspace:^", - "@turf/tesselate": "workspace:^", - "@turf/tin": "workspace:^", - "@turf/transform-rotate": "workspace:^", - "@turf/transform-scale": "workspace:^", - "@turf/transform-translate": "workspace:^", - "@turf/triangle-grid": "workspace:^", - "@turf/truncate": "workspace:^", - "@turf/union": "workspace:^", - "@turf/unkink-polygon": "workspace:^", - "@turf/voronoi": "workspace:^", + "@turf/along": "workspace:*", + "@turf/angle": "workspace:*", + "@turf/area": "workspace:*", + "@turf/bbox": "workspace:*", + "@turf/bbox-clip": "workspace:*", + "@turf/bbox-polygon": "workspace:*", + "@turf/bearing": "workspace:*", + "@turf/bezier-spline": "workspace:*", + "@turf/boolean-clockwise": "workspace:*", + "@turf/boolean-concave": "workspace:*", + "@turf/boolean-contains": "workspace:*", + "@turf/boolean-crosses": "workspace:*", + "@turf/boolean-disjoint": "workspace:*", + "@turf/boolean-equal": "workspace:*", + "@turf/boolean-intersects": "workspace:*", + "@turf/boolean-overlap": "workspace:*", + "@turf/boolean-parallel": "workspace:*", + "@turf/boolean-point-in-polygon": "workspace:*", + "@turf/boolean-point-on-line": "workspace:*", + "@turf/boolean-touches": "workspace:*", + "@turf/boolean-valid": "workspace:*", + "@turf/boolean-within": "workspace:*", + "@turf/buffer": "workspace:*", + "@turf/center": "workspace:*", + "@turf/center-mean": "workspace:*", + "@turf/center-median": "workspace:*", + "@turf/center-of-mass": "workspace:*", + "@turf/centroid": "workspace:*", + "@turf/circle": "workspace:*", + "@turf/clean-coords": "workspace:*", + "@turf/clone": "workspace:*", + "@turf/clusters": "workspace:*", + "@turf/clusters-dbscan": "workspace:*", + "@turf/clusters-kmeans": "workspace:*", + "@turf/collect": "workspace:*", + "@turf/combine": "workspace:*", + "@turf/concave": "workspace:*", + "@turf/convex": "workspace:*", + "@turf/destination": "workspace:*", + "@turf/difference": "workspace:*", + "@turf/dissolve": "workspace:*", + "@turf/distance": "workspace:*", + "@turf/distance-weight": "workspace:*", + "@turf/ellipse": "workspace:*", + "@turf/envelope": "workspace:*", + "@turf/explode": "workspace:*", + "@turf/flatten": "workspace:*", + "@turf/flip": "workspace:*", + "@turf/geojson-rbush": "workspace:*", + "@turf/great-circle": "workspace:*", + "@turf/helpers": "workspace:*", + "@turf/hex-grid": "workspace:*", + "@turf/interpolate": "workspace:*", + "@turf/intersect": "workspace:*", + "@turf/invariant": "workspace:*", + "@turf/isobands": "workspace:*", + "@turf/isolines": "workspace:*", + "@turf/kinks": "workspace:*", + "@turf/length": "workspace:*", + "@turf/line-arc": "workspace:*", + "@turf/line-chunk": "workspace:*", + "@turf/line-intersect": "workspace:*", + "@turf/line-offset": "workspace:*", + "@turf/line-overlap": "workspace:*", + "@turf/line-segment": "workspace:*", + "@turf/line-slice": "workspace:*", + "@turf/line-slice-along": "workspace:*", + "@turf/line-split": "workspace:*", + "@turf/line-to-polygon": "workspace:*", + "@turf/mask": "workspace:*", + "@turf/meta": "workspace:*", + "@turf/midpoint": "workspace:*", + "@turf/moran-index": "workspace:*", + "@turf/nearest-neighbor-analysis": "workspace:*", + "@turf/nearest-point": "workspace:*", + "@turf/nearest-point-on-line": "workspace:*", + "@turf/nearest-point-to-line": "workspace:*", + "@turf/planepoint": "workspace:*", + "@turf/point-grid": "workspace:*", + "@turf/point-on-feature": "workspace:*", + "@turf/point-to-line-distance": "workspace:*", + "@turf/point-to-polygon-distance": "workspace:*", + "@turf/points-within-polygon": "workspace:*", + "@turf/polygon-smooth": "workspace:*", + "@turf/polygon-tangents": "workspace:*", + "@turf/polygon-to-line": "workspace:*", + "@turf/polygonize": "workspace:*", + "@turf/projection": "workspace:*", + "@turf/quadrat-analysis": "workspace:*", + "@turf/random": "workspace:*", + "@turf/rectangle-grid": "workspace:*", + "@turf/rewind": "workspace:*", + "@turf/rhumb-bearing": "workspace:*", + "@turf/rhumb-destination": "workspace:*", + "@turf/rhumb-distance": "workspace:*", + "@turf/sample": "workspace:*", + "@turf/sector": "workspace:*", + "@turf/shortest-path": "workspace:*", + "@turf/simplify": "workspace:*", + "@turf/square": "workspace:*", + "@turf/square-grid": "workspace:*", + "@turf/standard-deviational-ellipse": "workspace:*", + "@turf/tag": "workspace:*", + "@turf/tesselate": "workspace:*", + "@turf/tin": "workspace:*", + "@turf/transform-rotate": "workspace:*", + "@turf/transform-scale": "workspace:*", + "@turf/transform-translate": "workspace:*", + "@turf/triangle-grid": "workspace:*", + "@turf/truncate": "workspace:*", + "@turf/union": "workspace:*", + "@turf/unkink-polygon": "workspace:*", + "@turf/voronoi": "workspace:*", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf/rollup.config.js b/packages/turf/rollup.config.js index fc94e72a9..7932c14b6 100644 --- a/packages/turf/rollup.config.js +++ b/packages/turf/rollup.config.js @@ -1,10 +1,11 @@ -import nodeResolve from "@rollup/plugin-node-resolve"; -import commonjs from "@rollup/plugin-commonjs"; -import terser from "@rollup/plugin-terser"; import { babel } from "@rollup/plugin-babel"; +import { readFileSync } from "fs"; +import commonjs from "@rollup/plugin-commonjs"; import nodePolyfills from "rollup-plugin-polyfill-node"; +import nodeResolve from "@rollup/plugin-node-resolve"; +import terser from "@rollup/plugin-terser"; -const pckg = require("./package.json"); +const pckg = JSON.parse(readFileSync("./package.json", "utf-8")); const input = "index.ts"; export default [ diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 79e22f59c..203ee6848 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: '6.0' +lockfileVersion: '9.0' settings: autoInstallPeers: true @@ -8,30 +8,30 @@ importers: .: devDependencies: + '@eslint/eslintrc': + specifier: ^3.3.1 + version: 3.3.1 + '@eslint/js': + specifier: ^9.25.1 + version: 9.25.1 '@monorepolint/cli': - specifier: 0.5.0-alpha.132 - version: 0.5.0-alpha.132 + specifier: 0.5.0 + version: 0.5.0 '@monorepolint/config': - specifier: 0.5.0-alpha.132 - version: 0.5.0-alpha.132 + specifier: 0.5.0 + version: 0.5.0 '@monorepolint/core': - specifier: 0.5.0-alpha.132 - version: 0.5.0-alpha.132 + specifier: 0.5.0 + version: 0.5.0 '@monorepolint/rules': - specifier: 0.5.0-alpha.132 - version: 0.5.0-alpha.132 + specifier: 0.5.0 + version: 0.5.0 '@types/node': - specifier: 18.11.9 - version: 18.11.9 - '@typescript-eslint/eslint-plugin': - specifier: ^6.10.0 - version: 6.13.2(@typescript-eslint/parser@6.13.2)(eslint@8.55.0)(typescript@5.3.3) - '@typescript-eslint/parser': - specifier: ^6.10.0 - version: 6.13.2(eslint@8.55.0)(typescript@5.3.3) + specifier: 22.15.3 + version: 22.15.3 acorn: - specifier: ^7.4.1 - version: 7.4.1 + specifier: ^8.14.1 + version: 8.14.1 camelcase: specifier: ^8.0.0 version: 8.0.0 @@ -42,68 +42,71 @@ importers: specifier: ^6.0.0 version: 6.0.0 dependency-tree: - specifier: ^11.0.0 - version: 11.0.1 + specifier: ^11.1.1 + version: 11.1.1 documentation: specifier: ^14.0.3 version: 14.0.3 es-check: - specifier: ^7.1.1 - version: 7.1.1 - eslint: - specifier: ^8.53.0 - version: 8.55.0 - eslint-config-prettier: specifier: ^9.0.0 - version: 9.1.0(eslint@8.55.0) + version: 9.0.0 + eslint: + specifier: ^9.25.1 + version: 9.25.1 + eslint-config-prettier: + specifier: ^10.1.2 + version: 10.1.2(eslint@9.25.1) eslint-plugin-prettier: - specifier: ^5.0.1 - version: 5.0.1(eslint-config-prettier@9.1.0)(eslint@8.55.0)(prettier@3.3.3) + specifier: ^5.2.6 + version: 5.2.6(eslint-config-prettier@10.1.2)(eslint@9.25.1)(prettier@3.5.3) esm: specifier: ^3.2.25 version: 3.2.25 fs-extra: - specifier: ^11.1.1 - version: 11.2.0 + specifier: ^11.3.0 + version: 11.3.0 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 + globals: + specifier: ^16.0.0 + version: 16.0.0 husky: - specifier: ^9.0.0 - version: 9.1.4 + specifier: ^9.1.7 + version: 9.1.7 lerna: - specifier: ^8.1.7 - version: 8.1.7 + specifier: ^8.2.2 + version: 8.2.2 lint-staged: - specifier: ^15.2.8 - version: 15.2.8 + specifier: ^15.5.1 + version: 15.5.1 load-json-file: specifier: ^7.0.1 version: 7.0.1 meow: - specifier: ^12.1.1 - version: 12.1.1 + specifier: ^13.2.0 + version: 13.2.0 npm-run-all: specifier: ^4.1.5 version: 4.1.5 prettier: - specifier: ^3.3.3 - version: 3.3.3 + specifier: ^3.5.3 + version: 3.5.3 progress: specifier: ^2.0.3 version: 2.0.3 - ts-node: - specifier: ^9.0.0 - version: 9.1.1(typescript@5.3.3) tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 + typescript-eslint: + specifier: ^8.31.1 + version: 8.31.1(eslint@9.25.1)(typescript@5.8.3) yamljs: specifier: ^0.3.0 version: 0.3.0 @@ -111,369 +114,372 @@ importers: packages/turf: dependencies: '@turf/along': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-along '@turf/angle': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-angle '@turf/area': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-area '@turf/bbox': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox '@turf/bbox-clip': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox-clip '@turf/bbox-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox-polygon '@turf/bearing': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bearing '@turf/bezier-spline': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bezier-spline '@turf/boolean-clockwise': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-clockwise '@turf/boolean-concave': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-concave '@turf/boolean-contains': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-contains '@turf/boolean-crosses': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-crosses '@turf/boolean-disjoint': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-disjoint '@turf/boolean-equal': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-equal '@turf/boolean-intersects': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-intersects '@turf/boolean-overlap': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-overlap '@turf/boolean-parallel': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-parallel '@turf/boolean-point-in-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-point-in-polygon '@turf/boolean-point-on-line': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-point-on-line '@turf/boolean-touches': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-touches '@turf/boolean-valid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-valid '@turf/boolean-within': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-within '@turf/buffer': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-buffer '@turf/center': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-center '@turf/center-mean': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-center-mean '@turf/center-median': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-center-median '@turf/center-of-mass': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-center-of-mass '@turf/centroid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-centroid '@turf/circle': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-circle '@turf/clean-coords': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clean-coords '@turf/clone': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clone '@turf/clusters': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clusters '@turf/clusters-dbscan': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clusters-dbscan '@turf/clusters-kmeans': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clusters-kmeans '@turf/collect': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-collect '@turf/combine': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-combine '@turf/concave': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-concave '@turf/convex': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-convex '@turf/destination': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-destination '@turf/difference': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-difference '@turf/dissolve': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-dissolve '@turf/distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-distance '@turf/distance-weight': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-distance-weight '@turf/ellipse': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-ellipse '@turf/envelope': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-envelope '@turf/explode': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-explode '@turf/flatten': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-flatten '@turf/flip': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-flip '@turf/geojson-rbush': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-geojson-rbush '@turf/great-circle': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-great-circle '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/hex-grid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-hex-grid '@turf/interpolate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-interpolate '@turf/intersect': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-intersect '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/isobands': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-isobands '@turf/isolines': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-isolines '@turf/kinks': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-kinks '@turf/length': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-length '@turf/line-arc': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-line-arc '@turf/line-chunk': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-line-chunk '@turf/line-intersect': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-line-intersect '@turf/line-offset': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-line-offset '@turf/line-overlap': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-line-overlap '@turf/line-segment': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-line-segment '@turf/line-slice': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-line-slice '@turf/line-slice-along': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-line-slice-along '@turf/line-split': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-line-split '@turf/line-to-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-line-to-polygon '@turf/mask': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-mask '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@turf/midpoint': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-midpoint '@turf/moran-index': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-moran-index '@turf/nearest-neighbor-analysis': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-nearest-neighbor-analysis '@turf/nearest-point': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-nearest-point '@turf/nearest-point-on-line': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-nearest-point-on-line '@turf/nearest-point-to-line': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-nearest-point-to-line '@turf/planepoint': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-planepoint '@turf/point-grid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-point-grid '@turf/point-on-feature': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-point-on-feature '@turf/point-to-line-distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-point-to-line-distance + '@turf/point-to-polygon-distance': + specifier: workspace:* + version: link:../turf-point-to-polygon-distance '@turf/points-within-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-points-within-polygon '@turf/polygon-smooth': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-polygon-smooth '@turf/polygon-tangents': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-polygon-tangents '@turf/polygon-to-line': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-polygon-to-line '@turf/polygonize': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-polygonize '@turf/projection': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-projection '@turf/quadrat-analysis': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-quadrat-analysis '@turf/random': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-random '@turf/rectangle-grid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-rectangle-grid '@turf/rewind': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-rewind '@turf/rhumb-bearing': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-rhumb-bearing '@turf/rhumb-destination': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-rhumb-destination '@turf/rhumb-distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-rhumb-distance '@turf/sample': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-sample '@turf/sector': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-sector '@turf/shortest-path': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-shortest-path '@turf/simplify': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-simplify '@turf/square': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-square '@turf/square-grid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-square-grid '@turf/standard-deviational-ellipse': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-standard-deviational-ellipse '@turf/tag': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-tag '@turf/tesselate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-tesselate '@turf/tin': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-tin '@turf/transform-rotate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-transform-rotate '@turf/transform-scale': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-transform-scale '@turf/transform-translate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-transform-translate '@turf/triangle-grid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-triangle-grid '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@turf/union': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-union '@turf/unkink-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-unkink-polygon '@turf/voronoi': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-voronoi '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@babel/core': - specifier: ^7.23.2 - version: 7.23.5 + specifier: ^7.26.10 + version: 7.26.10 '@babel/preset-env': - specifier: ^7.23.2 - version: 7.23.5(@babel/core@7.23.5) + specifier: ^7.26.9 + version: 7.26.9(@babel/core@7.26.10) '@rollup/plugin-babel': specifier: ^6.0.4 - version: 6.0.4(@babel/core@7.23.5)(rollup@2.79.1) + version: 6.0.4(@babel/core@7.26.10)(rollup@4.40.1) '@rollup/plugin-commonjs': - specifier: ^25.0.7 - version: 25.0.7(rollup@2.79.1) + specifier: ^28.0.3 + version: 28.0.3(rollup@4.40.1) '@rollup/plugin-node-resolve': - specifier: ^15.2.3 - version: 15.2.3(rollup@2.79.1) + specifier: ^16.0.1 + version: 16.0.1(rollup@4.40.1) '@rollup/plugin-terser': specifier: ^0.4.4 - version: 0.4.4(rollup@2.79.1) + version: 0.4.4(rollup@4.40.1) '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 camelcase: specifier: ^8.0.0 version: 8.0.0 @@ -481,57 +487,57 @@ importers: specifier: ^14.0.3 version: 14.0.3 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 rollup: - specifier: ^2.79.1 - version: 2.79.1 + specifier: ^4.40.1 + version: 4.40.1 rollup-plugin-polyfill-node: specifier: ^0.13.0 - version: 0.13.0(rollup@2.79.1) + version: 0.13.0(rollup@4.40.1) tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-along: dependencies: '@turf/bearing': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bearing '@turf/destination': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-destination '@turf/distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-distance '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -542,60 +548,60 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-angle: dependencies: '@turf/bearing': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bearing '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/rhumb-bearing': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-rhumb-bearing '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-distance '@turf/sector': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-sector '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -603,42 +609,42 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-area: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -649,42 +655,42 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-bbox: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -692,42 +698,42 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-bbox-clip: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/bbox': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -738,39 +744,39 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-bbox-polygon: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -778,42 +784,42 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-bearing: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/destination': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-destination '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -821,42 +827,42 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-bezier-spline: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -867,48 +873,48 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-boolean-clockwise: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -916,45 +922,45 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-boolean-concave: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -962,48 +968,48 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-boolean-contains: dependencies: '@turf/bbox': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox '@turf/boolean-point-in-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-point-in-polygon '@turf/boolean-point-on-line': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-point-on-line '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -1014,8 +1020,8 @@ importers: specifier: '*' version: 0.1.2 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -1023,48 +1029,48 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-boolean-crosses: dependencies: '@turf/boolean-point-in-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-point-in-polygon '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/line-intersect': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-line-intersect '@turf/polygon-to-line': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-polygon-to-line '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -1072,8 +1078,8 @@ importers: specifier: '*' version: 0.1.2 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -1081,48 +1087,48 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-boolean-disjoint: dependencies: '@turf/boolean-point-in-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-point-in-polygon '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/line-intersect': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-line-intersect '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@turf/polygon-to-line': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-polygon-to-line '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -1136,28 +1142,28 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-boolean-equal: dependencies: '@turf/clean-coords': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clean-coords '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/geojson': specifier: ^7946.0.10 @@ -1166,15 +1172,15 @@ importers: specifier: ^1.0.2 version: 1.0.2 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -1182,8 +1188,8 @@ importers: specifier: '*' version: 0.1.2 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -1191,42 +1197,42 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-boolean-intersects: dependencies: '@turf/boolean-disjoint': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-disjoint '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -1240,34 +1246,34 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-boolean-overlap: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/line-intersect': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-line-intersect '@turf/line-overlap': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-line-overlap '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 @@ -1276,15 +1282,15 @@ importers: specifier: ^1.0.2 version: 1.0.2 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -1292,8 +1298,8 @@ importers: specifier: '*' version: 0.1.2 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -1301,45 +1307,45 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-boolean-parallel: dependencies: '@turf/clean-coords': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clean-coords '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/line-segment': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-line-segment '@turf/rhumb-bearing': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-rhumb-bearing '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -1350,28 +1356,28 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-boolean-point-in-polygon: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/geojson': specifier: ^7946.0.10 @@ -1380,15 +1386,15 @@ importers: specifier: ^1.1.0 version: 1.1.0 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -1396,45 +1402,45 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-boolean-point-on-line: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -1442,48 +1448,48 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-boolean-touches: dependencies: '@turf/boolean-point-in-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-point-in-polygon '@turf/boolean-point-on-line': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-point-on-line '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -1494,8 +1500,8 @@ importers: specifier: '*' version: 0.1.2 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -1503,46 +1509,46 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-boolean-valid: dependencies: '@turf/bbox': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox '@turf/boolean-crosses': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-crosses '@turf/boolean-disjoint': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-disjoint '@turf/boolean-overlap': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-overlap '@turf/boolean-point-in-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-point-in-polygon '@turf/boolean-point-on-line': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-point-on-line '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/line-intersect': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-line-intersect '@types/geojson': specifier: ^7946.0.10 @@ -1551,15 +1557,15 @@ importers: specifier: ^1.2.1 version: 1.2.1 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -1570,8 +1576,8 @@ importers: specifier: '*' version: 0.1.2 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -1579,48 +1585,48 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-boolean-within: dependencies: '@turf/bbox': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox '@turf/boolean-point-in-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-point-in-polygon '@turf/boolean-point-on-line': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-point-on-line '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -1631,8 +1637,8 @@ importers: specifier: '*' version: 0.1.2 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -1640,37 +1646,37 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-buffer: dependencies: '@turf/bbox': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox '@turf/center': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-center '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/jsts': specifier: ^2.7.1 version: 2.7.1 '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@turf/projection': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-projection '@types/geojson': specifier: ^7946.0.10 @@ -1680,14 +1686,14 @@ importers: version: 1.7.1 devDependencies: '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -1698,51 +1704,51 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-center: dependencies: '@turf/bbox': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/bbox-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox-polygon '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -1750,57 +1756,57 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-center-mean: dependencies: '@turf/bbox': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/center': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-center '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -1808,63 +1814,63 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-center-median: dependencies: '@turf/center-mean': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-center-mean '@turf/centroid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-centroid '@turf/distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-distance '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/center': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-center '@turf/center-of-mass': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-center-of-mass '@turf/random': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-random '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -1875,57 +1881,57 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-center-of-mass: dependencies: '@turf/centroid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-centroid '@turf/convex': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-convex '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -1933,48 +1939,48 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-centroid: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -1982,48 +1988,48 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-circle: dependencies: '@turf/destination': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-destination '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@placemarkio/check-geojson': specifier: ^0.1.12 version: 0.1.12 '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -2034,48 +2040,54 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-clean-coords: dependencies: + '@turf/boolean-point-on-line': + specifier: workspace:* + version: link:../turf-boolean-point-on-line '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 + geojson-equality-ts: + specifier: ^1.0.2 + version: 1.0.2 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -2083,42 +2095,42 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-clone: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -2126,39 +2138,39 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-clusters: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -2166,31 +2178,31 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-clusters-dbscan: dependencies: '@turf/clone': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clone '@turf/distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-distance '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 @@ -2199,14 +2211,14 @@ importers: specifier: ^3.0.1 version: 3.0.1 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/centroid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-centroid '@turf/clusters': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clusters '@types/benchmark': specifier: ^2.1.5 @@ -2215,8 +2227,8 @@ importers: specifier: ^3.0.2 version: 3.0.3 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -2233,34 +2245,34 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-clusters-kmeans: dependencies: '@turf/clone': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clone '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 @@ -2269,17 +2281,17 @@ importers: specifier: 0.9.7 version: 0.9.7 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/centroid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-centroid '@turf/clusters': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clusters '@turf/random': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-random '@types/benchmark': specifier: ^2.1.5 @@ -2288,8 +2300,8 @@ importers: specifier: ^0.11.7 version: 0.11.7 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -2306,31 +2318,31 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-collect: dependencies: '@turf/bbox': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox '@turf/boolean-point-in-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-point-in-polygon '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@types/geojson': specifier: ^7946.0.10 @@ -2339,8 +2351,8 @@ importers: specifier: ^3.0.1 version: 3.0.1 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 @@ -2349,8 +2361,8 @@ importers: specifier: ^3.0.2 version: 3.0.3 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -2358,39 +2370,39 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-combine: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -2398,37 +2410,37 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-concave: dependencies: '@turf/clone': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clone '@turf/distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-distance '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@turf/tin': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-tin '@types/geojson': specifier: ^7946.0.10 @@ -2440,15 +2452,15 @@ importers: specifier: 3.x version: 3.0.1 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 '@types/topojson-client': specifier: 3.1.3 version: 3.1.3 @@ -2465,28 +2477,28 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-convex: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 @@ -2495,8 +2507,8 @@ importers: specifier: ^1.2.1 version: 1.2.1 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 @@ -2505,14 +2517,14 @@ importers: specifier: ^1.1.6 version: 1.1.6 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -2520,51 +2532,51 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-destination: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -2572,51 +2584,51 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-difference: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 - polygon-clipping: - specifier: ^0.15.3 - version: 0.15.3 + polyclip-ts: + specifier: ^0.16.8 + version: 0.16.8 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -2624,57 +2636,57 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-directional-mean: dependencies: '@turf/bearing': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bearing '@turf/centroid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-centroid '@turf/destination': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-destination '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/length': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-length '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -2685,51 +2697,51 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-dissolve: dependencies: '@turf/flatten': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-flatten '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 - polygon-clipping: - specifier: ^0.15.3 - version: 0.15.3 + polyclip-ts: + specifier: ^0.16.8 + version: 0.16.8 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -2740,42 +2752,42 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-distance: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -2786,48 +2798,48 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-distance-weight: dependencies: '@turf/centroid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-centroid '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -2838,69 +2850,75 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-ellipse: dependencies: + '@turf/destination': + specifier: workspace:* + version: link:../turf-destination + '@turf/distance': + specifier: workspace:* + version: link:../turf-distance '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant - '@turf/rhumb-destination': - specifier: workspace:^ - version: link:../turf-rhumb-destination '@turf/transform-rotate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-transform-rotate '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@placemarkio/check-geojson': specifier: ^0.1.12 version: 0.1.12 + '@turf/area': + specifier: workspace:* + version: link:../turf-area '@turf/bbox-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox-polygon '@turf/circle': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-circle - '@turf/destination': - specifier: workspace:^ - version: link:../turf-destination + '@turf/intersect': + specifier: workspace:* + version: link:../turf-intersect '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -2908,45 +2926,45 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-envelope: dependencies: '@turf/bbox': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox '@turf/bbox-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox-polygon '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -2957,39 +2975,39 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-explode: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -3000,42 +3018,42 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-flatten: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -3046,45 +3064,45 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-flip: dependencies: '@turf/clone': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clone '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -3095,31 +3113,31 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-geojson-rbush: dependencies: '@turf/bbox': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 @@ -3129,17 +3147,17 @@ importers: version: 3.0.1 devDependencies: '@turf/bbox-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox-polygon '@turf/random': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-random '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -3150,42 +3168,42 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-great-circle: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 devDependencies: '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -3196,17 +3214,17 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-helpers: dependencies: @@ -3214,15 +3232,15 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -3230,51 +3248,51 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-hex-grid: dependencies: '@turf/distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-distance '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/intersect': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-intersect '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/bbox-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox-polygon '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -3285,69 +3303,69 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-interpolate: dependencies: '@turf/bbox': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox '@turf/centroid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-centroid '@turf/clone': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clone '@turf/distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-distance '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/hex-grid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-hex-grid '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@turf/point-grid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-point-grid '@turf/square-grid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-square-grid '@turf/triangle-grid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-triangle-grid '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 devDependencies: '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -3361,48 +3379,48 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-intersect: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 - polygon-clipping: - specifier: ^0.15.3 - version: 0.15.3 + polyclip-ts: + specifier: ^0.16.8 + version: 0.16.8 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -3410,39 +3428,39 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-invariant: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -3450,40 +3468,40 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-isobands: dependencies: '@turf/area': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-area '@turf/bbox': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox '@turf/boolean-point-in-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-point-in-polygon '@turf/explode': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-explode '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 @@ -3492,30 +3510,30 @@ importers: specifier: ^1.3.3 version: 1.3.3 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/envelope': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-envelope '@turf/point-grid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-point-grid '@turf/random': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-random '@turf/rhumb-destination': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-rhumb-destination '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -3526,34 +3544,34 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-isolines: dependencies: '@turf/bbox': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 @@ -3562,30 +3580,30 @@ importers: specifier: ^1.3.3 version: 1.3.3 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/envelope': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-envelope '@turf/point-grid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-point-grid '@turf/random': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-random '@turf/rhumb-destination': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-rhumb-destination '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -3596,42 +3614,42 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-kinks: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -3642,45 +3660,45 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-length: dependencies: '@turf/distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-distance '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -3691,48 +3709,48 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-line-arc: dependencies: '@turf/circle': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-circle '@turf/destination': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-destination '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -3743,48 +3761,48 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-line-chunk: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/length': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-length '@turf/line-slice-along': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-line-slice-along '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 devDependencies: '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -3795,22 +3813,22 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-line-intersect: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@types/geojson': specifier: ^7946.0.10 @@ -3819,18 +3837,18 @@ importers: specifier: ^1.5.0 version: 1.5.0 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -3841,45 +3859,45 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-line-offset: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 devDependencies: '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -3890,40 +3908,40 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-line-overlap: dependencies: '@turf/boolean-point-on-line': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-point-on-line '@turf/geojson-rbush': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-geojson-rbush '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/line-segment': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-line-segment '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@turf/nearest-point-on-line': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-nearest-point-on-line '@types/geojson': specifier: ^7946.0.10 @@ -3932,15 +3950,15 @@ importers: specifier: ^3.1.3 version: 3.1.3 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -3951,45 +3969,45 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-line-segment: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -4000,45 +4018,45 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-line-slice: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/nearest-point-on-line': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-nearest-point-on-line '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 devDependencies: '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -4049,48 +4067,48 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-line-slice-along: dependencies: '@turf/bearing': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bearing '@turf/destination': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-destination '@turf/distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-distance '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 devDependencies: '@turf/along': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-along '@turf/length': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-length '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -4101,46 +4119,46 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 packages/turf-line-split: dependencies: '@turf/bbox': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox '@turf/geojson-rbush': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-geojson-rbush '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/line-intersect': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-line-intersect '@turf/line-segment': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-line-segment '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@turf/nearest-point-on-line': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-nearest-point-on-line '@turf/square': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-square '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/geojson': specifier: ^7946.0.10 @@ -4150,8 +4168,8 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -4162,45 +4180,45 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-line-to-polygon: dependencies: '@turf/bbox': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox '@turf/clone': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clone '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -4211,45 +4229,45 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-mask: dependencies: '@turf/clone': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clone '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 - polygon-clipping: - specifier: ^0.15.3 - version: 0.15.3 + polyclip-ts: + specifier: ^0.16.8 + version: 0.16.8 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -4263,32 +4281,32 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-meta: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 devDependencies: '@turf/random': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-random '@types/benchmark': specifier: ^2.1.5 @@ -4300,42 +4318,42 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 packages/turf-midpoint: dependencies: '@turf/bearing': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bearing '@turf/destination': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-destination '@turf/distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-distance '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -4343,42 +4361,42 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-moran-index: dependencies: '@turf/distance-weight': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-distance-weight '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -4389,63 +4407,63 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-nearest-neighbor-analysis: dependencies: '@turf/area': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-area '@turf/bbox': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox '@turf/bbox-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox-polygon '@turf/centroid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-centroid '@turf/distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-distance '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@turf/nearest-point': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-nearest-point '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -4456,48 +4474,48 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-nearest-point: dependencies: '@turf/clone': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clone '@turf/distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-distance '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -4508,66 +4526,57 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-nearest-point-on-line: dependencies: - '@turf/bearing': - specifier: workspace:^ - version: link:../turf-bearing - '@turf/destination': - specifier: workspace:^ - version: link:../turf-destination '@turf/distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-distance '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant - '@turf/line-intersect': - specifier: workspace:^ - version: link:../turf-line-intersect '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/along': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-along '@turf/length': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-length '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -4578,47 +4587,47 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-nearest-point-to-line: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@turf/point-to-line-distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-point-to-line-distance '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/circle': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-circle '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 @@ -4627,8 +4636,8 @@ importers: specifier: ^4.0.33 version: 4.0.33 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -4639,42 +4648,42 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-planepoint: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -4682,51 +4691,51 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-point-grid: dependencies: '@turf/boolean-within': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-within '@turf/distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-distance '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/bbox-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox-polygon '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -4737,57 +4746,57 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-point-on-feature: dependencies: '@turf/boolean-point-in-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-point-in-polygon '@turf/center': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-center '@turf/explode': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-explode '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/nearest-point': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-nearest-point '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -4795,63 +4804,66 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-point-to-line-distance: dependencies: '@turf/bearing': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bearing '@turf/distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-distance '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta + '@turf/nearest-point-on-line': + specifier: workspace:* + version: link:../turf-nearest-point-on-line '@turf/projection': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-projection '@turf/rhumb-bearing': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-rhumb-bearing '@turf/rhumb-distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-rhumb-distance '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/circle': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-circle '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -4862,45 +4874,103 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 + + packages/turf-point-to-polygon-distance: + dependencies: + '@turf/boolean-point-in-polygon': + specifier: workspace:* + version: link:../turf-boolean-point-in-polygon + '@turf/helpers': + specifier: workspace:* + version: link:../turf-helpers + '@turf/invariant': + specifier: workspace:* + version: link:../turf-invariant + '@turf/meta': + specifier: workspace:* + version: link:../turf-meta + '@turf/point-to-line-distance': + specifier: workspace:* + version: link:../turf-point-to-line-distance + '@turf/polygon-to-line': + specifier: workspace:* + version: link:../turf-polygon-to-line + '@types/geojson': + specifier: ^7946.0.10 + version: 7946.0.14 + tslib: + specifier: ^2.8.1 + version: 2.8.1 + devDependencies: + '@types/benchmark': + specifier: ^2.1.5 + version: 2.1.5 + '@types/tape': + specifier: ^5.8.1 + version: 5.8.1 + benchmark: + specifier: ^2.1.4 + version: 2.1.4 + load-json-file: + specifier: ^7.0.1 + version: 7.0.1 + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + tape: + specifier: ^5.9.0 + version: 5.9.0 + tsup: + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) + tsx: + specifier: ^4.19.4 + version: 4.19.4 + typescript: + specifier: ^5.8.3 + version: 5.8.3 + write-json-file: + specifier: ^6.0.0 + version: 6.0.0 packages/turf-points-within-polygon: dependencies: '@turf/boolean-point-in-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-point-in-polygon '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -4908,45 +4978,45 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-polygon-smooth: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -4954,54 +5024,54 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-polygon-tangents: dependencies: '@turf/bbox': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox '@turf/boolean-within': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-within '@turf/explode': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-explode '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/nearest-point': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-nearest-point '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -5012,42 +5082,42 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-polygon-to-line: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -5058,51 +5128,51 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-polygonize: dependencies: '@turf/boolean-point-in-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-point-in-polygon '@turf/envelope': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-envelope '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -5113,48 +5183,48 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-projection: dependencies: '@turf/clone': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clone '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -5168,66 +5238,66 @@ importers: specifier: ^2.9.2 version: 2.9.2 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-quadrat-analysis: dependencies: '@turf/area': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-area '@turf/bbox': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox '@turf/bbox-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox-polygon '@turf/centroid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-centroid '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/point-grid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-point-grid '@turf/random': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-random '@turf/square-grid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-square-grid '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/nearest-neighbor-analysis': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-nearest-neighbor-analysis '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -5238,91 +5308,91 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-random: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 npm-run-all: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-rectangle-grid: dependencies: '@turf/boolean-intersects': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-intersects '@turf/distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-distance '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/bbox-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox-polygon '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -5333,51 +5403,51 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-rewind: dependencies: '@turf/boolean-clockwise': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-clockwise '@turf/clone': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clone '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -5388,45 +5458,45 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-rhumb-bearing: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/destination': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-destination '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -5434,45 +5504,45 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-rhumb-destination: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -5483,45 +5553,45 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-rhumb-distance: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-distance '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -5532,39 +5602,39 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-sample: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -5572,51 +5642,51 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-sector: dependencies: '@turf/circle': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-circle '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/line-arc': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-line-arc '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -5627,66 +5697,66 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-shortest-path: dependencies: '@turf/bbox': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox '@turf/bbox-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox-polygon '@turf/boolean-point-in-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-point-in-polygon '@turf/clean-coords': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clean-coords '@turf/distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-distance '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@turf/transform-scale': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-transform-scale '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -5697,51 +5767,51 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-simplify: dependencies: '@turf/clean-coords': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clean-coords '@turf/clone': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clone '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -5752,42 +5822,42 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-square: dependencies: '@turf/distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-distance '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -5795,45 +5865,45 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-square-grid: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/rectangle-grid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-rectangle-grid '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/bbox-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox-polygon '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -5841,60 +5911,60 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-standard-deviational-ellipse: dependencies: '@turf/center-mean': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-center-mean '@turf/ellipse': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-ellipse '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@turf/points-within-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-points-within-polygon '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/random': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-random '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -5905,48 +5975,48 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-tag: dependencies: '@turf/boolean-point-in-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-point-in-polygon '@turf/clone': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clone '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -5957,22 +6027,22 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-tesselate: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@types/geojson': specifier: ^7946.0.10 @@ -5981,15 +6051,15 @@ importers: specifier: ^2.2.4 version: 2.2.4 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -5997,36 +6067,36 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-tin: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -6034,60 +6104,60 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 packages/turf-transform-rotate: dependencies: '@turf/centroid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-centroid '@turf/clone': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clone '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@turf/rhumb-bearing': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-rhumb-bearing '@turf/rhumb-destination': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-rhumb-destination '@turf/rhumb-distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-rhumb-distance '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -6098,75 +6168,75 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-transform-scale: dependencies: '@turf/bbox': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox '@turf/center': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-center '@turf/centroid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-centroid '@turf/clone': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clone '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@turf/rhumb-bearing': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-rhumb-bearing '@turf/rhumb-destination': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-rhumb-destination '@turf/rhumb-distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-rhumb-distance '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/bbox-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox-polygon '@turf/hex-grid': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-hex-grid '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -6177,54 +6247,54 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-transform-translate: dependencies: '@turf/clone': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clone '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@turf/rhumb-destination': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-rhumb-destination '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -6235,51 +6305,51 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-triangle-grid: dependencies: '@turf/distance': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-distance '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/intersect': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-intersect '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/bbox-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-bbox-polygon '@turf/truncate': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-truncate '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -6290,42 +6360,42 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-truncate: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -6336,51 +6406,51 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-union: dependencies: '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 version: 7946.0.14 - polygon-clipping: - specifier: ^0.15.3 - version: 0.15.3 + polyclip-ts: + specifier: ^0.16.8 + version: 0.16.8 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -6388,34 +6458,34 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-unkink-polygon: dependencies: '@turf/area': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-area '@turf/boolean-point-in-polygon': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-boolean-point-in-polygon '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/meta': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-meta '@types/geojson': specifier: ^7946.0.10 @@ -6424,18 +6494,18 @@ importers: specifier: ^3.0.1 version: 3.0.1 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/kinks': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-kinks '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 @@ -6446,31 +6516,31 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages/turf-voronoi: dependencies: '@turf/clone': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-clone '@turf/helpers': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-helpers '@turf/invariant': - specifier: workspace:^ + specifier: workspace:* version: link:../turf-invariant '@types/d3-voronoi': specifier: ^1.1.12 @@ -6482,21 +6552,21 @@ importers: specifier: 1.1.2 version: 1.1.2 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 - version: 4.13.4 + specifier: ^5.8.1 + version: 5.8.1 benchmark: specifier: ^2.1.4 version: 2.1.4 glob: - specifier: ^10.3.10 - version: 10.3.10 + specifier: ^11.0.2 + version: 11.0.2 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -6504,1798 +6574,6248 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.4.0 + version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.4 + version: 4.19.4 typescript: - specifier: ^5.2.2 - version: 5.3.3 + specifier: ^5.8.3 + version: 5.8.3 write-json-file: - specifier: ^5.0.0 - version: 5.0.0 + specifier: ^6.0.0 + version: 6.0.0 packages: - /@aashutoshrathi/word-wrap@1.2.6: - resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} - engines: {node: '>=0.10.0'} - dev: true - - /@ampproject/remapping@2.2.1: - resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} + '@ampproject/remapping@2.3.0': + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.20 - dev: true - /@babel/code-frame@7.23.5: - resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==} + '@babel/code-frame@7.26.2': + resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/highlight': 7.23.4 - chalk: 2.4.2 - dev: true - /@babel/compat-data@7.23.5: - resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==} + '@babel/compat-data@7.26.8': + resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==} engines: {node: '>=6.9.0'} - dev: true - /@babel/core@7.23.5: - resolution: {integrity: sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==} + '@babel/core@7.26.0': + resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==} engines: {node: '>=6.9.0'} + + '@babel/core@7.26.10': + resolution: {integrity: sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==} + engines: {node: '>=6.9.0'} + + '@babel/generator@7.26.2': + resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==} + engines: {node: '>=6.9.0'} + + '@babel/generator@7.27.0': + resolution: {integrity: sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-annotate-as-pure@7.25.9': + resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==} + engines: {node: '>=6.9.0'} + + '@babel/helper-compilation-targets@7.27.0': + resolution: {integrity: sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-create-class-features-plugin@7.27.0': + resolution: {integrity: sha512-vSGCvMecvFCd/BdpGlhpXYNhhC4ccxyvQWpbGL4CWbvfEoLFWUZuSuf7s9Aw70flgQF+6vptvgK2IfOnKlRmBg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-create-regexp-features-plugin@7.27.0': + resolution: {integrity: sha512-fO8l08T76v48BhpNRW/nQ0MxfnSdoSKUJBMjubOAYffsVuGG5qOfMq7N6Es7UJvi7Y8goXXo07EfcHZXDPuELQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-define-polyfill-provider@0.6.4': + resolution: {integrity: sha512-jljfR1rGnXXNWnmQg2K3+bvhkxB51Rl32QRaOTuwwjviGrHzIbSc8+x9CpraDtbT7mfyjXObULP4w/adunNwAw==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + '@babel/helper-member-expression-to-functions@7.25.9': + resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-imports@7.25.9': + resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-transforms@7.26.0': + resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-optimise-call-expression@7.25.9': + resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-plugin-utils@7.26.5': + resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-remap-async-to-generator@7.25.9': + resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-replace-supers@7.26.5': + resolution: {integrity: sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-skip-transparent-expression-wrappers@7.25.9': + resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-string-parser@7.25.9': + resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@7.25.9': + resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-option@7.25.9': + resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-wrap-function@7.25.9': + resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==} + engines: {node: '>=6.9.0'} + + '@babel/helpers@7.27.0': + resolution: {integrity: sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==} + engines: {node: '>=6.9.0'} + + '@babel/parser@7.26.2': + resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/parser@7.27.0': + resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9': + resolution: {integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9': + resolution: {integrity: sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9': + resolution: {integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9': + resolution: {integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.13.0 + + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9': + resolution: {integrity: sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2': + resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-assertions@7.26.0': + resolution: {integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-attributes@7.26.0': + resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-unicode-sets-regex@7.18.6': + resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-transform-arrow-functions@7.25.9': + resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-async-generator-functions@7.26.8': + resolution: {integrity: sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-async-to-generator@7.25.9': + resolution: {integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-block-scoped-functions@7.26.5': + resolution: {integrity: sha512-chuTSY+hq09+/f5lMj8ZSYgCFpppV2CbYrhNFJ1BFoXpiWPnnAb7R0MqrafCpN8E1+YRrtM1MXZHJdIx8B6rMQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-block-scoping@7.27.0': + resolution: {integrity: sha512-u1jGphZ8uDI2Pj/HJj6YQ6XQLZCNjOlprjxB5SVz6rq2T6SwAR+CdrWK0CP7F+9rDVMXdB0+r6Am5G5aobOjAQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-class-properties@7.25.9': + resolution: {integrity: sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-class-static-block@7.26.0': + resolution: {integrity: sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.12.0 + + '@babel/plugin-transform-classes@7.25.9': + resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-computed-properties@7.25.9': + resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-destructuring@7.25.9': + resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-dotall-regex@7.25.9': + resolution: {integrity: sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-duplicate-keys@7.25.9': + resolution: {integrity: sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9': + resolution: {integrity: sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-transform-dynamic-import@7.25.9': + resolution: {integrity: sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-exponentiation-operator@7.26.3': + resolution: {integrity: sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-export-namespace-from@7.25.9': + resolution: {integrity: sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-for-of@7.26.9': + resolution: {integrity: sha512-Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-function-name@7.25.9': + resolution: {integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-json-strings@7.25.9': + resolution: {integrity: sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-literals@7.25.9': + resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-logical-assignment-operators@7.25.9': + resolution: {integrity: sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-member-expression-literals@7.25.9': + resolution: {integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-amd@7.25.9': + resolution: {integrity: sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-commonjs@7.26.3': + resolution: {integrity: sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-systemjs@7.25.9': + resolution: {integrity: sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-umd@7.25.9': + resolution: {integrity: sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-named-capturing-groups-regex@7.25.9': + resolution: {integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-transform-new-target@7.25.9': + resolution: {integrity: sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-nullish-coalescing-operator@7.26.6': + resolution: {integrity: sha512-CKW8Vu+uUZneQCPtXmSBUC6NCAUdya26hWCElAWh5mVSlSRsmiCPUUDKb3Z0szng1hiAJa098Hkhg9o4SE35Qw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-numeric-separator@7.25.9': + resolution: {integrity: sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-object-rest-spread@7.25.9': + resolution: {integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-object-super@7.25.9': + resolution: {integrity: sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-optional-catch-binding@7.25.9': + resolution: {integrity: sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-optional-chaining@7.25.9': + resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-parameters@7.25.9': + resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-private-methods@7.25.9': + resolution: {integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-private-property-in-object@7.25.9': + resolution: {integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-property-literals@7.25.9': + resolution: {integrity: sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-regenerator@7.27.0': + resolution: {integrity: sha512-LX/vCajUJQDqE7Aum/ELUMZAY19+cDpghxrnyt5I1tV6X5PyC86AOoWXWFYFeIvauyeSA6/ktn4tQVn/3ZifsA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-regexp-modifiers@7.26.0': + resolution: {integrity: sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-transform-reserved-words@7.25.9': + resolution: {integrity: sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-shorthand-properties@7.25.9': + resolution: {integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-spread@7.25.9': + resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-sticky-regex@7.25.9': + resolution: {integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-template-literals@7.26.8': + resolution: {integrity: sha512-OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-typeof-symbol@7.27.0': + resolution: {integrity: sha512-+LLkxA9rKJpNoGsbLnAgOCdESl73vwYn+V6b+5wHbrE7OGKVDPHIQvbFSzqE6rwqaCw2RE+zdJrlLkcf8YOA0w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-escapes@7.25.9': + resolution: {integrity: sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-property-regex@7.25.9': + resolution: {integrity: sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-regex@7.25.9': + resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-sets-regex@7.25.9': + resolution: {integrity: sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/preset-env@7.26.9': + resolution: {integrity: sha512-vX3qPGE8sEKEAZCWk05k3cpTAE3/nOYca++JA+Rd0z2NCNzabmYvEiSShKzm10zdquOIAVXsy2Ei/DTW34KlKQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/preset-modules@0.1.6-no-external-plugins': + resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} + peerDependencies: + '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 + + '@babel/runtime@7.27.0': + resolution: {integrity: sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==} + engines: {node: '>=6.9.0'} + + '@babel/template@7.27.0': + resolution: {integrity: sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==} + engines: {node: '>=6.9.0'} + + '@babel/traverse@7.25.9': + resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==} + engines: {node: '>=6.9.0'} + + '@babel/traverse@7.27.0': + resolution: {integrity: sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.26.0': + resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.27.0': + resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==} + engines: {node: '>=6.9.0'} + + '@colors/colors@1.6.0': + resolution: {integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==} + engines: {node: '>=0.1.90'} + + '@dabh/diagnostics@2.0.3': + resolution: {integrity: sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==} + + '@dependents/detective-less@5.0.1': + resolution: {integrity: sha512-Y6+WUMsTFWE5jb20IFP4YGa5IrGY/+a/FbOSjDF/wz9gepU2hwCYSXRHP/vPwBvwcY3SVMASt4yXxbXNXigmZQ==} + engines: {node: '>=18'} + + '@esbuild/aix-ppc64@0.25.3': + resolution: {integrity: sha512-W8bFfPA8DowP8l//sxjJLSLkD8iEjMc7cBVyP+u4cEv9sM7mdUCkgsj+t0n/BWPFtv7WWCN5Yzj0N6FJNUUqBQ==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.25.3': + resolution: {integrity: sha512-XelR6MzjlZuBM4f5z2IQHK6LkK34Cvv6Rj2EntER3lwCBFdg6h2lKbtRjpTTsdEjD/WSe1q8UyPBXP1x3i/wYQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.25.3': + resolution: {integrity: sha512-PuwVXbnP87Tcff5I9ngV0lmiSu40xw1At6i3GsU77U7cjDDB4s0X2cyFuBiDa1SBk9DnvWwnGvVaGBqoFWPb7A==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.25.3': + resolution: {integrity: sha512-ogtTpYHT/g1GWS/zKM0cc/tIebFjm1F9Aw1boQ2Y0eUQ+J89d0jFY//s9ei9jVIlkYi8AfOjiixcLJSGNSOAdQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.25.3': + resolution: {integrity: sha512-eESK5yfPNTqpAmDfFWNsOhmIOaQA59tAcF/EfYvo5/QWQCzXn5iUSOnqt3ra3UdzBv073ykTtmeLJZGt3HhA+w==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.25.3': + resolution: {integrity: sha512-Kd8glo7sIZtwOLcPbW0yLpKmBNWMANZhrC1r6K++uDR2zyzb6AeOYtI6udbtabmQpFaxJ8uduXMAo1gs5ozz8A==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.25.3': + resolution: {integrity: sha512-EJiyS70BYybOBpJth3M0KLOus0n+RRMKTYzhYhFeMwp7e/RaajXvP+BWlmEXNk6uk+KAu46j/kaQzr6au+JcIw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.25.3': + resolution: {integrity: sha512-Q+wSjaLpGxYf7zC0kL0nDlhsfuFkoN+EXrx2KSB33RhinWzejOd6AvgmP5JbkgXKmjhmpfgKZq24pneodYqE8Q==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.25.3': + resolution: {integrity: sha512-xCUgnNYhRD5bb1C1nqrDV1PfkwgbswTTBRbAd8aH5PhYzikdf/ddtsYyMXFfGSsb/6t6QaPSzxtbfAZr9uox4A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.25.3': + resolution: {integrity: sha512-dUOVmAUzuHy2ZOKIHIKHCm58HKzFqd+puLaS424h6I85GlSDRZIA5ycBixb3mFgM0Jdh+ZOSB6KptX30DD8YOQ==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.25.3': + resolution: {integrity: sha512-yplPOpczHOO4jTYKmuYuANI3WhvIPSVANGcNUeMlxH4twz/TeXuzEP41tGKNGWJjuMhotpGabeFYGAOU2ummBw==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.25.3': + resolution: {integrity: sha512-P4BLP5/fjyihmXCELRGrLd793q/lBtKMQl8ARGpDxgzgIKJDRJ/u4r1A/HgpBpKpKZelGct2PGI4T+axcedf6g==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.25.3': + resolution: {integrity: sha512-eRAOV2ODpu6P5divMEMa26RRqb2yUoYsuQQOuFUexUoQndm4MdpXXDBbUoKIc0iPa4aCO7gIhtnYomkn2x+bag==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.25.3': + resolution: {integrity: sha512-ZC4jV2p7VbzTlnl8nZKLcBkfzIf4Yad1SJM4ZMKYnJqZFD4rTI+pBG65u8ev4jk3/MPwY9DvGn50wi3uhdaghg==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.25.3': + resolution: {integrity: sha512-LDDODcFzNtECTrUUbVCs6j9/bDVqy7DDRsuIXJg6so+mFksgwG7ZVnTruYi5V+z3eE5y+BJZw7VvUadkbfg7QA==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.25.3': + resolution: {integrity: sha512-s+w/NOY2k0yC2p9SLen+ymflgcpRkvwwa02fqmAwhBRI3SC12uiS10edHHXlVWwfAagYSY5UpmT/zISXPMW3tQ==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.25.3': + resolution: {integrity: sha512-nQHDz4pXjSDC6UfOE1Fw9Q8d6GCAd9KdvMZpfVGWSJztYCarRgSDfOVBY5xwhQXseiyxapkiSJi/5/ja8mRFFA==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-arm64@0.25.3': + resolution: {integrity: sha512-1QaLtOWq0mzK6tzzp0jRN3eccmN3hezey7mhLnzC6oNlJoUJz4nym5ZD7mDnS/LZQgkrhEbEiTn515lPeLpgWA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.25.3': + resolution: {integrity: sha512-i5Hm68HXHdgv8wkrt+10Bc50zM0/eonPb/a/OFVfB6Qvpiirco5gBA5bz7S2SHuU+Y4LWn/zehzNX14Sp4r27g==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-arm64@0.25.3': + resolution: {integrity: sha512-zGAVApJEYTbOC6H/3QBr2mq3upG/LBEXr85/pTtKiv2IXcgKV0RT0QA/hSXZqSvLEpXeIxah7LczB4lkiYhTAQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.25.3': + resolution: {integrity: sha512-fpqctI45NnCIDKBH5AXQBsD0NDPbEFczK98hk/aa6HJxbl+UtLkJV2+Bvy5hLSLk3LHmqt0NTkKNso1A9y1a4w==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + + '@esbuild/sunos-x64@0.25.3': + resolution: {integrity: sha512-ROJhm7d8bk9dMCUZjkS8fgzsPAZEjtRJqCAmVgB0gMrvG7hfmPmz9k1rwO4jSiblFjYmNvbECL9uhaPzONMfgA==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.25.3': + resolution: {integrity: sha512-YWcow8peiHpNBiIXHwaswPnAXLsLVygFwCB3A7Bh5jRkIBFWHGmNQ48AlX4xDvQNoMZlPYzjVOQDYEzWCqufMQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.25.3': + resolution: {integrity: sha512-qspTZOIGoXVS4DpNqUYUs9UxVb04khS1Degaw/MnfMe7goQ3lTfQ13Vw4qY/Nj0979BGvMRpAYbs/BAxEvU8ew==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.25.3': + resolution: {integrity: sha512-ICgUR+kPimx0vvRzf+N/7L7tVSQeE3BYY+NhHRHXS1kBuPO7z2+7ea2HbhDyZdTephgvNvKrlDDKUexuCVBVvg==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + + '@eslint-community/eslint-utils@4.4.1': + resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + + '@eslint-community/eslint-utils@4.6.1': + resolution: {integrity: sha512-KTsJMmobmbrFLe3LDh0PC2FXpcSYJt/MLjlkh/9LEnmKYLSYmT/0EW9JWANjeoemiuZrmogti0tW5Ch+qNUYDw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + + '@eslint-community/regexpp@4.12.1': + resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + '@eslint/config-array@0.20.0': + resolution: {integrity: sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/config-helpers@0.2.1': + resolution: {integrity: sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/core@0.13.0': + resolution: {integrity: sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/eslintrc@3.3.1': + resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/js@9.25.1': + resolution: {integrity: sha512-dEIwmjntEx8u3Uvv+kr3PDeeArL8Hw07H9kyYxCjnM9pBjfEhk6uLXSchxxzgiwtRhhzVzqmUSDFBOi1TuZ7qg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/object-schema@2.1.6': + resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/plugin-kit@0.2.8': + resolution: {integrity: sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@gwhitney/detect-indent@7.0.1': + resolution: {integrity: sha512-7bQW+gkKa2kKZPeJf6+c6gFK9ARxQfn+FKy9ScTBppyKRWH2KzsmweXUoklqeEiHiNVWaeP5csIdsNq6w7QhzA==} + engines: {node: '>=12.20'} + + '@humanfs/core@0.19.1': + resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} + engines: {node: '>=18.18.0'} + + '@humanfs/node@0.16.6': + resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} + engines: {node: '>=18.18.0'} + + '@humanwhocodes/module-importer@1.0.1': + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + + '@humanwhocodes/retry@0.3.1': + resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} + engines: {node: '>=18.18'} + + '@humanwhocodes/retry@0.4.2': + resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==} + engines: {node: '>=18.18'} + + '@hutson/parse-repository-url@3.0.2': + resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==} + engines: {node: '>=6.9.0'} + + '@isaacs/cliui@8.0.2': + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} + + '@isaacs/string-locale-compare@1.1.0': + resolution: {integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==} + + '@jest/schemas@29.6.3': + resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jridgewell/gen-mapping@0.3.5': + resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} + engines: {node: '>=6.0.0'} + + '@jridgewell/gen-mapping@0.3.8': + resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} + engines: {node: '>=6.0.0'} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/set-array@1.2.1': + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} + + '@jridgewell/source-map@0.3.5': + resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==} + + '@jridgewell/sourcemap-codec@1.5.0': + resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + + '@jridgewell/trace-mapping@0.3.25': + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + + '@lerna/create@8.2.2': + resolution: {integrity: sha512-1yn1MvWn2Yz0SFgTTQnef2m1YedF7KwqLLVIOrGkgQrkVHzsveAIk1A1RcRa2yyUh+siKI1YcJ7lUZIEt+qQ3Q==} + engines: {node: '>=18.0.0'} + + '@ljharb/resumer@0.1.3': + resolution: {integrity: sha512-d+tsDgfkj9X5QTriqM4lKesCkMMJC3IrbPKHvayP00ELx2axdXvDfWkqjxrLXIzGcQzmj7VAUT1wopqARTvafw==} + engines: {node: '>= 0.4'} + + '@ljharb/through@2.3.13': + resolution: {integrity: sha512-/gKJun8NNiWGZJkGzI/Ragc53cOdcLNdzjLaIa+GEjguQs0ulsurx8WN0jijdK9yPqDvziX995sMRLyLt1uZMQ==} + engines: {node: '>= 0.4'} + + '@ljharb/through@2.3.14': + resolution: {integrity: sha512-ajBvlKpWucBB17FuQYUShqpqy8GRgYEpJW0vWJbUu1CV9lWyrDCapy0lScU8T8Z6qn49sSwJB3+M+evYIdGg+A==} + engines: {node: '>= 0.4'} + + '@monorepolint/cli@0.5.0': + resolution: {integrity: sha512-8yLqmxe2tLDOF5+36gYf6/1EhNe3Wfk64dGnak/3xuR9OhCFg+JzRA3YmL0ZtyZNxUOv1D5TGJlTeRmoRlo8ug==} + engines: {node: '>=18'} + hasBin: true + + '@monorepolint/config@0.5.0': + resolution: {integrity: sha512-y3dMd1iGWPERZTVHUt4Ahmup/Z+qbGqXr+lLe2mGRnGlxZZudvjpEEKpRkgy6/DAKRSdIB8sg/ilL/pvAOjbEQ==} + engines: {node: '>=18'} + + '@monorepolint/core@0.5.0': + resolution: {integrity: sha512-rKkfIIUEVofoS5AVHOM6VlYR8O5nUJC7OgbO2uQK0gTrUp9gg/046YLgC5M5TufWWGoFU2idnBjyqcXbobbk0w==} + engines: {node: '>=18'} + + '@monorepolint/rules@0.5.0': + resolution: {integrity: sha512-/Jrm46TUG2VGV+xcE9VjSssvFRoCV8Dtzn5Okay+fDzj7C6rQ7Xzz92LO/XSxW7GYgEi3p5j3+fhvkqGA4zitg==} + engines: {node: '>=18'} + + '@monorepolint/utils@0.5.0': + resolution: {integrity: sha512-KOLkGNLJ4oQSBUOIRvlCGi+lZfkEXS5kRt+8meR9jqxIgo0knTbBKAA9bCRPUSpx5UFZ7Z3JXKBArE05zSQpwA==} + engines: {node: '>=18'} + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@npmcli/agent@2.2.2': + resolution: {integrity: sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og==} + engines: {node: ^16.14.0 || >=18.0.0} + + '@npmcli/arborist@7.5.4': + resolution: {integrity: sha512-nWtIc6QwwoUORCRNzKx4ypHqCk3drI+5aeYdMTQQiRCcn4lOOgfQh7WyZobGYTxXPSq1VwV53lkpN/BRlRk08g==} + engines: {node: ^16.14.0 || >=18.0.0} + hasBin: true + + '@npmcli/fs@3.1.1': + resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@npmcli/git@5.0.7': + resolution: {integrity: sha512-WaOVvto604d5IpdCRV2KjQu8PzkfE96d50CQGKgywXh2GxXmDeUO5EWcBC4V57uFyrNqx83+MewuJh3WTR3xPA==} + engines: {node: ^16.14.0 || >=18.0.0} + + '@npmcli/installed-package-contents@2.1.0': + resolution: {integrity: sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + hasBin: true + + '@npmcli/map-workspaces@3.0.6': + resolution: {integrity: sha512-tkYs0OYnzQm6iIRdfy+LcLBjcKuQCeE5YLb8KnrIlutJfheNaPvPpgoFEyEFgbjzl5PLZ3IA/BWAwRU0eHuQDA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@npmcli/metavuln-calculator@7.1.1': + resolution: {integrity: sha512-Nkxf96V0lAx3HCpVda7Vw4P23RILgdi/5K1fmj2tZkWIYLpXAN8k2UVVOsW16TsS5F8Ws2I7Cm+PU1/rsVF47g==} + engines: {node: ^16.14.0 || >=18.0.0} + + '@npmcli/name-from-folder@2.0.0': + resolution: {integrity: sha512-pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@npmcli/node-gyp@3.0.0': + resolution: {integrity: sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@npmcli/package-json@5.2.0': + resolution: {integrity: sha512-qe/kiqqkW0AGtvBjL8TJKZk/eBBSpnJkUWvHdQ9jM2lKHXRYYJuyNpJPlJw3c8QjC2ow6NZYiLExhUaeJelbxQ==} + engines: {node: ^16.14.0 || >=18.0.0} + + '@npmcli/promise-spawn@7.0.2': + resolution: {integrity: sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==} + engines: {node: ^16.14.0 || >=18.0.0} + + '@npmcli/query@3.1.0': + resolution: {integrity: sha512-C/iR0tk7KSKGldibYIB9x8GtO/0Bd0I2mhOaDb8ucQL/bQVTmGoeREaFj64Z5+iCBRf3dQfed0CjJL7I8iTkiQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@npmcli/redact@2.0.1': + resolution: {integrity: sha512-YgsR5jCQZhVmTJvjduTOIHph0L73pK8xwMVaDY0PatySqVM9AZj93jpoXYSJqfHFxFkN9dmqTw6OiqExsS3LPw==} + engines: {node: ^16.14.0 || >=18.0.0} + + '@npmcli/run-script@8.1.0': + resolution: {integrity: sha512-y7efHHwghQfk28G2z3tlZ67pLG0XdfYbcVG26r7YIXALRsrVQcTq4/tdenSmdOrEsNahIYA/eh8aEVROWGFUDg==} + engines: {node: ^16.14.0 || >=18.0.0} + + '@nrwl/devkit@19.1.1': + resolution: {integrity: sha512-CrbEy4zBRPPV8gGtwpSgfxJUElXRxEGvvxQlrhoCKmzH7v9407jFjXpzYOipwa9u65a7raCCtsSKYuRdecRglQ==} + + '@nrwl/tao@19.1.1': + resolution: {integrity: sha512-03iaf+rnOEf5HHLsiSA7QIk63mBtcU4vkqkggoYLxJpMthx5nD4Z12nk+G/Z5RKWYUG4k3j6G7CFiIQRYOy7TA==} + hasBin: true + + '@nx/devkit@19.1.1': + resolution: {integrity: sha512-YMt5vFaNMeIKgBwQ3RIFQG7AoYOksd8vNxwunirN95q/70HMIoJQsnRCMT45jVd9D/GIWASgY8QsGTMJfcO0qQ==} + peerDependencies: + nx: '>= 17 <= 20' + + '@nx/nx-darwin-arm64@19.1.1': + resolution: {integrity: sha512-5CcgmNhUg5N62zCuzNZfRRPvaLRZNhLk0OkpMa085atEshM8RUAMbN80ffINaBssYtKu6znJ9LhUK+q7C3KiFQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + + '@nx/nx-darwin-x64@19.1.1': + resolution: {integrity: sha512-vDM9vZow3YLA3+7GKTqhtguNcbQPifMTbqm8Aevd/suqCChQsLyD1Hh1Z+o03RNolNTRacNb6GPvoKFY4BJ2tA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + + '@nx/nx-freebsd-x64@19.1.1': + resolution: {integrity: sha512-FfOBrc1vndWYXSZVgbB9nWRp8/jo7f9b3g3ZfqaVwsGpcYcwz7dxiPV7HQKysTR0WNVv1aTi2Dg1CF+F94qlPw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [freebsd] + + '@nx/nx-linux-arm-gnueabihf@19.1.1': + resolution: {integrity: sha512-Bb94MmoOsPnTI4n1mrILSwGmx9I50LEkEOgksoiOEYdykWKjbz6z4ZnFCJHTeF0bca1OmF5iCjFWU42KlLUsRQ==} + engines: {node: '>= 10'} + cpu: [arm] + os: [linux] + + '@nx/nx-linux-arm64-gnu@19.1.1': + resolution: {integrity: sha512-mqiRi95LOUTWldtif3f2aJOFLxg/2jnM1UYj85vUlaLZJmQK64OhQslCAAZCmEWkHAYqEooHaYqj30YmDb92jw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@nx/nx-linux-arm64-musl@19.1.1': + resolution: {integrity: sha512-lhyVsuT19Ez4ynhen6dT+Zdq2cABXcphYSkVSASvZGvka/65AS+0D1hX0TFDPJvbTdsHwVszJQZzIqGmYUkhLA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@nx/nx-linux-x64-gnu@19.1.1': + resolution: {integrity: sha512-zUQhMwz/gQ0up1iymwTqXbyLJca87HXOP+uAD5wfgarh0yhPDwcGaVsV8O8t2z8W/dH/yYmuppe3gAwsvd5SSg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@nx/nx-linux-x64-musl@19.1.1': + resolution: {integrity: sha512-3Gc2iwMbFAp50OlIqfgryTtZno/FqPW+AOP1Pijo/jJOZ8DHP3A7Zy8QoJYUgTQxCffzVbhshXW6yy403pV3OQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@nx/nx-win32-arm64-msvc@19.1.1': + resolution: {integrity: sha512-91LJG0triTdZDHnT9l1N1YuIwhmR7iCbKsEv345OdPhHJeQ6GAuJCD0SqDk6aZ13xr7LoRlS8c6bnfctXeslQQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@nx/nx-win32-x64-msvc@19.1.1': + resolution: {integrity: sha512-rEWRqcW1osCeaZ9KPfZWARIdOHGd0WXRW6iqqRvZZEAIbGlZP/89Sj2o9Fvs5oHpng7kfrqsDbpbikmmlX7HTQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + + '@octokit/auth-token@4.0.0': + resolution: {integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==} + engines: {node: '>= 18'} + + '@octokit/core@5.2.1': + resolution: {integrity: sha512-dKYCMuPO1bmrpuogcjQ8z7ICCH3FP6WmxpwC03yjzGfZhj9fTJg6+bS1+UAplekbN2C+M61UNllGOOoAfGCrdQ==} + engines: {node: '>= 18'} + + '@octokit/endpoint@9.0.6': + resolution: {integrity: sha512-H1fNTMA57HbkFESSt3Y9+FBICv+0jFceJFPWDePYlR/iMGrwM5ph+Dd4XRQs+8X+PUFURLQgX9ChPfhJ/1uNQw==} + engines: {node: '>= 18'} + + '@octokit/graphql@7.1.1': + resolution: {integrity: sha512-3mkDltSfcDUoa176nlGoA32RGjeWjl3K7F/BwHwRMJUW/IteSa4bnSV8p2ThNkcIcZU2umkZWxwETSSCJf2Q7g==} + engines: {node: '>= 18'} + + '@octokit/openapi-types@24.2.0': + resolution: {integrity: sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg==} + + '@octokit/plugin-enterprise-rest@6.0.1': + resolution: {integrity: sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==} + + '@octokit/plugin-paginate-rest@11.4.4-cjs.2': + resolution: {integrity: sha512-2dK6z8fhs8lla5PaOTgqfCGBxgAv/le+EhPs27KklPhm1bKObpu6lXzwfUEQ16ajXzqNrKMujsFyo9K2eaoISw==} + engines: {node: '>= 18'} + peerDependencies: + '@octokit/core': '5' + + '@octokit/plugin-request-log@4.0.1': + resolution: {integrity: sha512-GihNqNpGHorUrO7Qa9JbAl0dbLnqJVrV8OXe2Zm5/Y4wFkZQDfTreBzVmiRfJVfE4mClXdihHnbpyyO9FSX4HA==} + engines: {node: '>= 18'} + peerDependencies: + '@octokit/core': '5' + + '@octokit/plugin-rest-endpoint-methods@13.3.2-cjs.1': + resolution: {integrity: sha512-VUjIjOOvF2oELQmiFpWA1aOPdawpyaCUqcEBc/UOUnj3Xp6DJGrJ1+bjUIIDzdHjnFNO6q57ODMfdEZnoBkCwQ==} + engines: {node: '>= 18'} + peerDependencies: + '@octokit/core': ^5 + + '@octokit/request-error@5.1.1': + resolution: {integrity: sha512-v9iyEQJH6ZntoENr9/yXxjuezh4My67CBSu9r6Ve/05Iu5gNgnisNWOsoJHTP6k0Rr0+HQIpnH+kyammu90q/g==} + engines: {node: '>= 18'} + + '@octokit/request@8.4.1': + resolution: {integrity: sha512-qnB2+SY3hkCmBxZsR/MPCybNmbJe4KAlfWErXq+rBKkQJlbjdJeS85VI9r8UqeLYLvnAenU8Q1okM/0MBsAGXw==} + engines: {node: '>= 18'} + + '@octokit/rest@20.1.2': + resolution: {integrity: sha512-GmYiltypkHHtihFwPRxlaorG5R9VAHuk/vbszVoRTGXnAsY60wYLkh/E2XiFmdZmqrisw+9FaazS1i5SbdWYgA==} + engines: {node: '>= 18'} + + '@octokit/types@13.10.0': + resolution: {integrity: sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==} + + '@pkgjs/parseargs@0.11.0': + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + + '@pkgr/core@0.2.4': + resolution: {integrity: sha512-ROFF39F6ZrnzSUEmQQZUar0Jt4xVoP9WnDRdWwF4NNcXs3xBTLgBUDoOwW141y1jP+S8nahIbdxbFC7IShw9Iw==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + + '@placemarkio/check-geojson@0.1.12': + resolution: {integrity: sha512-sSNPtPDVB0oKwImi4NYg1LVE2QSCIqs/jIRmu8U4fQVWdRjlGy+C/n7AbNO2FycE9rVWtz256f33aMGzvKC7gg==} + engines: {node: '>=10'} + + '@pnpm/constants@6.1.0': + resolution: {integrity: sha512-L6AiU3OXv9kjKGTJN9j8n1TeJGDcLX9atQlZvAkthlvbXjvKc5SKNWESc/eXhr5nEfuMWhQhiKHDJCpYejmeCQ==} + engines: {node: '>=14.19'} + + '@pnpm/error@4.0.0': + resolution: {integrity: sha512-NI4DFCMF6xb1SA0bZiiV5KrMCaJM2QmPJFC6p78FXujn7FpiRSWhT9r032wpuQumsl7DEmN4s3wl/P8TA+bL8w==} + engines: {node: '>=14.6'} + + '@pnpm/graceful-fs@2.0.0': + resolution: {integrity: sha512-ogUZCGf0/UILZt6d8PsO4gA4pXh7f0BumXeFkcCe4AQ65PXPKfAkHC0C30Lheh2EgFOpLZm3twDP1Eiww18gew==} + engines: {node: '>=14.19'} + + '@pnpm/read-project-manifest@4.1.1': + resolution: {integrity: sha512-jGNoofG8kkUlgAMX8fqbUwRRXYf4WcWdvi/y1Sv1abUfcoVgXW6GdGVm0MIJ+enaong3hXHjaLl/AwmSj6O1Uw==} + engines: {node: '>=14.6'} + + '@pnpm/text.comments-parser@1.0.0': + resolution: {integrity: sha512-iG0qrFcObze3uK+HligvzaTocZKukqqIj1dC3NOH58NeMACUW1NUitSKBgeWuNIE4LJT3SPxnyLEBARMMcqVKA==} + engines: {node: '>=14.6'} + + '@pnpm/types@8.9.0': + resolution: {integrity: sha512-3MYHYm8epnciApn6w5Fzx6sepawmsNU7l6lvIq+ER22/DPSrr83YMhU/EQWnf4lORn2YyiXFj0FJSyJzEtIGmw==} + engines: {node: '>=14.6'} + + '@pnpm/util.lex-comparator@1.0.0': + resolution: {integrity: sha512-3aBQPHntVgk5AweBWZn+1I/fqZ9krK/w01197aYVkAJQGftb+BVWgEepxY5GChjSW12j52XX+CmfynYZ/p0DFQ==} + engines: {node: '>=12.22.0'} + + '@pnpm/write-project-manifest@4.1.1': + resolution: {integrity: sha512-nRqvPYO8xUVdgy/KhJuaCrWlVT/4uZr97Mpbuizsa6CmvtCQf3NuYnVvOOrpYiKUJcZYtEvm84OooJ8+lJytMQ==} + engines: {node: '>=14.6'} + + '@rollup/plugin-babel@6.0.4': + resolution: {integrity: sha512-YF7Y52kFdFT/xVSuVdjkV5ZdX/3YtmX0QulG+x0taQOtJdHYzVU61aSSkAgVJ7NOv6qPkIYiJSgSWWN/DM5sGw==} + engines: {node: '>=14.0.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@types/babel__core': ^7.1.9 + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + '@types/babel__core': + optional: true + rollup: + optional: true + + '@rollup/plugin-commonjs@28.0.3': + resolution: {integrity: sha512-pyltgilam1QPdn+Zd9gaCfOLcnjMEJ9gV+bTw6/r73INdvzf1ah9zLIJBm+kW7R6IUFIQ1YO+VqZtYxZNWFPEQ==} + engines: {node: '>=16.0.0 || 14 >= 14.17'} + peerDependencies: + rollup: ^2.68.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-inject@5.0.5': + resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-node-resolve@16.0.1': + resolution: {integrity: sha512-tk5YCxJWIG81umIvNkSod2qK5KyQW19qcBF/B78n1bjtOON6gzKoVeSzAE8yHCZEDmqkHKkxplExA8KzdJLJpA==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.78.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-terser@0.4.4': + resolution: {integrity: sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/pluginutils@5.1.3': + resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/pluginutils@5.1.4': + resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/rollup-android-arm-eabi@4.40.1': + resolution: {integrity: sha512-kxz0YeeCrRUHz3zyqvd7n+TVRlNyTifBsmnmNPtk3hQURUyG9eAB+usz6DAwagMusjx/zb3AjvDUvhFGDAexGw==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.40.1': + resolution: {integrity: sha512-PPkxTOisoNC6TpnDKatjKkjRMsdaWIhyuMkA4UsBXT9WEZY4uHezBTjs6Vl4PbqQQeu6oION1w2voYZv9yquCw==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.40.1': + resolution: {integrity: sha512-VWXGISWFY18v/0JyNUy4A46KCFCb9NVsH+1100XP31lud+TzlezBbz24CYzbnA4x6w4hx+NYCXDfnvDVO6lcAA==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.40.1': + resolution: {integrity: sha512-nIwkXafAI1/QCS7pxSpv/ZtFW6TXcNUEHAIA9EIyw5OzxJZQ1YDrX+CL6JAIQgZ33CInl1R6mHet9Y/UZTg2Bw==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-freebsd-arm64@4.40.1': + resolution: {integrity: sha512-BdrLJ2mHTrIYdaS2I99mriyJfGGenSaP+UwGi1kB9BLOCu9SR8ZpbkmmalKIALnRw24kM7qCN0IOm6L0S44iWw==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.40.1': + resolution: {integrity: sha512-VXeo/puqvCG8JBPNZXZf5Dqq7BzElNJzHRRw3vjBE27WujdzuOPecDPc/+1DcdcTptNBep3861jNq0mYkT8Z6Q==} + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-linux-arm-gnueabihf@4.40.1': + resolution: {integrity: sha512-ehSKrewwsESPt1TgSE/na9nIhWCosfGSFqv7vwEtjyAqZcvbGIg4JAcV7ZEh2tfj/IlfBeZjgOXm35iOOjadcg==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-musleabihf@4.40.1': + resolution: {integrity: sha512-m39iO/aaurh5FVIu/F4/Zsl8xppd76S4qoID8E+dSRQvTyZTOI2gVk3T4oqzfq1PtcvOfAVlwLMK3KRQMaR8lg==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.40.1': + resolution: {integrity: sha512-Y+GHnGaku4aVLSgrT0uWe2o2Rq8te9hi+MwqGF9r9ORgXhmHK5Q71N757u0F8yU1OIwUIFy6YiJtKjtyktk5hg==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.40.1': + resolution: {integrity: sha512-jEwjn3jCA+tQGswK3aEWcD09/7M5wGwc6+flhva7dsQNRZZTe30vkalgIzV4tjkopsTS9Jd7Y1Bsj6a4lzz8gQ==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-loongarch64-gnu@4.40.1': + resolution: {integrity: sha512-ySyWikVhNzv+BV/IDCsrraOAZ3UaC8SZB67FZlqVwXwnFhPihOso9rPOxzZbjp81suB1O2Topw+6Ug3JNegejQ==} + cpu: [loong64] + os: [linux] + + '@rollup/rollup-linux-powerpc64le-gnu@4.40.1': + resolution: {integrity: sha512-BvvA64QxZlh7WZWqDPPdt0GH4bznuL6uOO1pmgPnnv86rpUpc8ZxgZwcEgXvo02GRIZX1hQ0j0pAnhwkhwPqWg==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.40.1': + resolution: {integrity: sha512-EQSP+8+1VuSulm9RKSMKitTav89fKbHymTf25n5+Yr6gAPZxYWpj3DzAsQqoaHAk9YX2lwEyAf9S4W8F4l3VBQ==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-riscv64-musl@4.40.1': + resolution: {integrity: sha512-n/vQ4xRZXKuIpqukkMXZt9RWdl+2zgGNx7Uda8NtmLJ06NL8jiHxUawbwC+hdSq1rrw/9CghCpEONor+l1e2gA==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.40.1': + resolution: {integrity: sha512-h8d28xzYb98fMQKUz0w2fMc1XuGzLLjdyxVIbhbil4ELfk5/orZlSTpF/xdI9C8K0I8lCkq+1En2RJsawZekkg==} + cpu: [s390x] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.40.1': + resolution: {integrity: sha512-XiK5z70PEFEFqcNj3/zRSz/qX4bp4QIraTy9QjwJAb/Z8GM7kVUsD0Uk8maIPeTyPCP03ChdI+VVmJriKYbRHQ==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.40.1': + resolution: {integrity: sha512-2BRORitq5rQ4Da9blVovzNCMaUlyKrzMSvkVR0D4qPuOy/+pMCrh1d7o01RATwVy+6Fa1WBw+da7QPeLWU/1mQ==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-win32-arm64-msvc@4.40.1': + resolution: {integrity: sha512-b2bcNm9Kbde03H+q+Jjw9tSfhYkzrDUf2d5MAd1bOJuVplXvFhWz7tRtWvD8/ORZi7qSCy0idW6tf2HgxSXQSg==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.40.1': + resolution: {integrity: sha512-DfcogW8N7Zg7llVEfpqWMZcaErKfsj9VvmfSyRjCyo4BI3wPEfrzTtJkZG6gKP/Z92wFm6rz2aDO7/JfiR/whA==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.40.1': + resolution: {integrity: sha512-ECyOuDeH3C1I8jH2MK1RtBJW+YPMvSfT0a5NN0nHfQYnDSJ6tUiZH3gzwVP5/Kfh/+Tt7tpWVF9LXNTnhTJ3kA==} + cpu: [x64] + os: [win32] + + '@sigstore/bundle@2.3.2': + resolution: {integrity: sha512-wueKWDk70QixNLB363yHc2D2ItTgYiMTdPwK8D9dKQMR3ZQ0c35IxP5xnwQ8cNLoCgCRcHf14kE+CLIvNX1zmA==} + engines: {node: ^16.14.0 || >=18.0.0} + + '@sigstore/core@1.1.0': + resolution: {integrity: sha512-JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg==} + engines: {node: ^16.14.0 || >=18.0.0} + + '@sigstore/protobuf-specs@0.3.2': + resolution: {integrity: sha512-c6B0ehIWxMI8wiS/bj6rHMPqeFvngFV7cDU/MY+B16P9Z3Mp9k8L93eYZ7BYzSickzuqAQqAq0V956b3Ju6mLw==} + engines: {node: ^16.14.0 || >=18.0.0} + + '@sigstore/sign@2.3.2': + resolution: {integrity: sha512-5Vz5dPVuunIIvC5vBb0APwo7qKA4G9yM48kPWJT+OEERs40md5GoUR1yedwpekWZ4m0Hhw44m6zU+ObsON+iDA==} + engines: {node: ^16.14.0 || >=18.0.0} + + '@sigstore/tuf@2.3.4': + resolution: {integrity: sha512-44vtsveTPUpqhm9NCrbU8CWLe3Vck2HO1PNLw7RIajbB7xhtn5RBPm1VNSCMwqGYHhDsBJG8gDF0q4lgydsJvw==} + engines: {node: ^16.14.0 || >=18.0.0} + + '@sigstore/verify@1.2.1': + resolution: {integrity: sha512-8iKx79/F73DKbGfRf7+t4dqrc0bRr0thdPrxAtCKWRm/F0tG71i6O1rvlnScncJLLBZHn3h8M3c1BSUAb9yu8g==} + engines: {node: ^16.14.0 || >=18.0.0} + + '@sinclair/typebox@0.27.8': + resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + + '@sindresorhus/merge-streams@2.3.0': + resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} + engines: {node: '>=18'} + + '@tufjs/canonical-json@2.0.0': + resolution: {integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==} + engines: {node: ^16.14.0 || >=18.0.0} + + '@tufjs/models@2.0.1': + resolution: {integrity: sha512-92F7/SFyufn4DXsha9+QfKnN03JGqtMFMXgSHbZOo8JG59WkTni7UzAouNQDf7AuP9OAMxVOPQcqG3sB7w+kkg==} + engines: {node: ^16.14.0 || >=18.0.0} + + '@turf/jsts@2.7.1': + resolution: {integrity: sha512-+nwOKme/aUprsxnLSfr2LylV6eL6T1Tuln+4Hl92uwZ8FrmjDRCH5Bi1LJNVfWCiYgk8+5K+t2zDphWNTsIFDA==} + + '@types/benchmark@2.1.5': + resolution: {integrity: sha512-cKio2eFB3v7qmKcvIHLUMw/dIx/8bhWPuzpzRT4unCPRTD8VdA9Zb0afxpcxOqR4PixRS7yT42FqGS8BYL8g1w==} + + '@types/concaveman@1.1.6': + resolution: {integrity: sha512-3shTHRmSStvc+91qrFlQv2UmrOB0sZ6biDQo7YzY+9tV1mNLpdzuZal4D3hTYXYWig49K01lCvYDpnh+txToXw==} + + '@types/d3-voronoi@1.1.12': + resolution: {integrity: sha512-DauBl25PKZZ0WVJr42a6CNvI6efsdzofl9sajqZr2Gf5Gu733WkDdUGiPkUHXiUvYGzNNlFQde2wdZdfQPG+yw==} + + '@types/debug@4.1.12': + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + + '@types/estree@1.0.6': + resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} + + '@types/estree@1.0.7': + resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==} + + '@types/extend@3.0.4': + resolution: {integrity: sha512-ArMouDUTJEz1SQRpFsT2rIw7DeqICFv5aaVzLSIYMYQSLcwcGOfT3VyglQs/p7K3F7fT4zxr0NWxYZIdifD6dA==} + + '@types/geojson@7946.0.14': + resolution: {integrity: sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==} + + '@types/hast@2.3.10': + resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} + + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + + '@types/mdast@3.0.15': + resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} + + '@types/minimatch@3.0.5': + resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} + + '@types/minimist@1.2.5': + resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} + + '@types/ms@0.7.34': + resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} + + '@types/node@22.15.3': + resolution: {integrity: sha512-lX7HFZeHf4QG/J7tBZqrCAXwz9J5RD56Y6MpP0eJkka8p+K0RY/yBTW7CYFJ4VGCclxqOLKmiGP5juQc6MKgcw==} + + '@types/normalize-package-data@2.4.4': + resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} + + '@types/object-assign@4.0.33': + resolution: {integrity: sha512-HeuamLPmpVPuJU/oY7z/YGAezy4HFy6mhvzwupi9Xc8n0FKY8tR1/U3AKaOn/I5Mb4dvbw2szSYcXi84eW07TQ==} + + '@types/parse5@6.0.3': + resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==} + + '@types/rbush@3.0.3': + resolution: {integrity: sha512-lX55lR0iYCgapxD3IrgujpQA1zDxwZI5qMRelKvmKAsSMplFVr7wmMpG7/6+Op2tjrgEex8o3vjg8CRDrRNYxg==} + + '@types/resolve@1.20.2': + resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} + + '@types/skmeans@0.11.7': + resolution: {integrity: sha512-3fT48uRSRppOdQIlNCQKNNJRVaqzxkdCSTZM+NeHNxEpw6JejLLH78OHP54BxUHYEsa7pVsGn6uON552jwv9ZQ==} + + '@types/supports-color@8.1.3': + resolution: {integrity: sha512-Hy6UMpxhE3j1tLpl27exp1XqHD7n8chAiNPzWfz16LPZoMMoSc4dzLl6w9qijkEb/r5O1ozdu1CWGA2L83ZeZg==} + + '@types/tape@5.8.1': + resolution: {integrity: sha512-vRjK+E1c+I4WRDSXcYfgepPjz2Knh+gulU3359LrR9H2KM8AyiMbNmX7W5aMlw7JFoXMpVOhq3bEIm78qakGbQ==} + + '@types/topojson-client@3.1.3': + resolution: {integrity: sha512-liC+dHCxoqQy5bbJMsF59Cx1WZZwbcT084v/5bdp3NWSFUuzQpsm4gbLQh+wlv58Mng4jCsO4p8hWelqGlb7rg==} + + '@types/topojson-server@3.0.3': + resolution: {integrity: sha512-Xi903I5D0pu9il0xXRNxugj5MuIAUalZzciGS0FTLbiW4jLyd2jkoVN2g80RavHw39Z8YTFaSdRgp8f8WHbyxg==} + + '@types/topojson-specification@1.0.5': + resolution: {integrity: sha512-C7KvcQh+C2nr6Y2Ub4YfgvWvWCgP2nOQMtfhlnwsRL4pYmmwzBS7HclGiS87eQfDOU/DLQpX6GEscviaz4yLIQ==} + + '@types/triple-beam@1.3.5': + resolution: {integrity: sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==} + + '@types/unist@2.0.10': + resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} + + '@typescript-eslint/eslint-plugin@8.31.1': + resolution: {integrity: sha512-oUlH4h1ABavI4F0Xnl8/fOtML/eu8nI2A1nYd+f+55XI0BLu+RIqKoCiZKNo6DtqZBEQm5aNKA20G3Z5w3R6GQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/parser@8.31.1': + resolution: {integrity: sha512-oU/OtYVydhXnumd0BobL9rkJg7wFJ9bFFPmSmB/bf/XWN85hlViji59ko6bSKBXyseT9V8l+CN1nwmlbiN0G7Q==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/scope-manager@8.31.1': + resolution: {integrity: sha512-BMNLOElPxrtNQMIsFHE+3P0Yf1z0dJqV9zLdDxN/xLlWMlXK/ApEsVEKzpizg9oal8bAT5Sc7+ocal7AC1HCVw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/type-utils@8.31.1': + resolution: {integrity: sha512-fNaT/m9n0+dpSp8G/iOQ05GoHYXbxw81x+yvr7TArTuZuCA6VVKbqWYVZrV5dVagpDTtj/O8k5HBEE/p/HM5LA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/types@8.31.1': + resolution: {integrity: sha512-SfepaEFUDQYRoA70DD9GtytljBePSj17qPxFHA/h3eg6lPTqGJ5mWOtbXCk1YrVU1cTJRd14nhaXWFu0l2troQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/typescript-estree@8.31.1': + resolution: {integrity: sha512-kaA0ueLe2v7KunYOyWYtlf/QhhZb7+qh4Yw6Ni5kgukMIG+iP773tjgBiLWIXYumWCwEq3nLW+TUywEp8uEeag==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/utils@8.31.1': + resolution: {integrity: sha512-2DSI4SNfF5T4oRveQ4nUrSjUqjMND0nLq9rEkz0gfGr3tg0S5KB6DhwR+WZPCjzkZl3cH+4x2ce3EsL50FubjQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/visitor-keys@8.31.1': + resolution: {integrity: sha512-I+/rgqOVBn6f0o7NDTmAPWWC6NuqhV174lfYvAm9fUaWeiefLdux9/YI3/nLugEn9L8fcSi0XmpKi/r5u0nmpw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@vue/compiler-core@3.5.13': + resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==} + + '@vue/compiler-dom@3.5.13': + resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==} + + '@vue/compiler-sfc@3.5.13': + resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==} + + '@vue/compiler-ssr@3.5.13': + resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==} + + '@vue/shared@3.5.13': + resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==} + + '@yarnpkg/lockfile@1.1.0': + resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} + + '@yarnpkg/parsers@3.0.0-rc.46': + resolution: {integrity: sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==} + engines: {node: '>=14.15.0'} + + '@zkochan/js-yaml@0.0.7': + resolution: {integrity: sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==} + hasBin: true + + JSONStream@1.3.5: + resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} + hasBin: true + + abbrev@2.0.0: + resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + acorn-jsx@5.3.2: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + acorn-walk@8.3.4: + resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==} + engines: {node: '>=0.4.0'} + + acorn@8.14.1: + resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==} + engines: {node: '>=0.4.0'} + hasBin: true + + add-stream@1.0.0: + resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==} + + agent-base@7.1.1: + resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==} + engines: {node: '>= 14'} + + aggregate-error@3.1.0: + resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} + engines: {node: '>=8'} + + ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + + ansi-colors@4.1.3: + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} + engines: {node: '>=6'} + + ansi-escapes@4.3.2: + resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} + engines: {node: '>=8'} + + ansi-escapes@7.0.0: + resolution: {integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==} + engines: {node: '>=18'} + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-regex@6.0.1: + resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} + engines: {node: '>=12'} + + ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + ansi-styles@5.2.0: + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} + engines: {node: '>=10'} + + ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + + any-promise@1.3.0: + resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} + + anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + + app-module-path@2.2.0: + resolution: {integrity: sha512-gkco+qxENJV+8vFcDiiFhuoSvRXb2a/QPqpSoWhVz829VNJfOTnELbBmPmNKFxf3xdNnw4DWCkzkDaavcX/1YQ==} + + aproba@2.0.0: + resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} + + argparse@1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + array-buffer-byte-length@1.0.1: + resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} + engines: {node: '>= 0.4'} + + array-differ@3.0.0: + resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} + engines: {node: '>=8'} + + array-ify@1.0.0: + resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} + + array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + + array.prototype.every@1.1.6: + resolution: {integrity: sha512-gNEqZD97w6bfQRNmHkFv7rNnGM+VWyHZT+h/rf9C+22owcXuENr66Lfo0phItpU5KoXW6Owb34q2+8MnSIZ57w==} + engines: {node: '>= 0.4'} + + arraybuffer.prototype.slice@1.0.3: + resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} + engines: {node: '>= 0.4'} + + arrify@1.0.1: + resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} + engines: {node: '>=0.10.0'} + + arrify@2.0.1: + resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} + engines: {node: '>=8'} + + ast-module-types@6.0.1: + resolution: {integrity: sha512-WHw67kLXYbZuHTmcdbIrVArCq5wxo6NEuj3hiYAWr8mwJeC+C2mMCIBIWCiDoCye/OF/xelc+teJ1ERoWmnEIA==} + engines: {node: '>=18'} + + async@3.2.6: + resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} + + asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + + available-typed-arrays@1.0.7: + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + engines: {node: '>= 0.4'} + + axios@1.6.2: + resolution: {integrity: sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==} + + babel-plugin-polyfill-corejs2@0.4.13: + resolution: {integrity: sha512-3sX/eOms8kd3q2KZ6DAhKPc0dgm525Gqq5NtWKZ7QYYZEv57OQ54KtblzJzH1lQF/eQxO8KjWGIK9IPUJNus5g==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-polyfill-corejs3@0.11.1: + resolution: {integrity: sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-polyfill-regenerator@0.6.4: + resolution: {integrity: sha512-7gD3pRadPrbjhjLyxebmx/WrFYcuSjZ0XbdUujQMZ/fcE9oeewk2U/7PCvez84UeuK3oSjmPZ0Ch0dlupQvGzw==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + bail@2.0.2: + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + + before-after-hook@2.2.3: + resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} + + benchmark@2.1.4: + resolution: {integrity: sha512-l9MlfN4M1K/H2fbhfMy3B7vJd6AGKJVQn2h6Sg/Yx+KckoUA7ewS5Vv6TjSq18ooE1kS9hhAlQRH3AkXIh/aOQ==} + + bignumber.js@9.1.2: + resolution: {integrity: sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==} + + bin-links@4.0.4: + resolution: {integrity: sha512-cMtq4W5ZsEwcutJrVId+a/tjt8GSbS+h0oNkdl6+6rBuEv8Ot33Bevj5KPm40t309zuhVic8NjpuL42QCiJWWA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + binary-extensions@2.2.0: + resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} + engines: {node: '>=8'} + + bl@4.1.0: + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + + boolean-jsts@0.0.1: + resolution: {integrity: sha512-KB5kMk4thQO+bzkJ6MRTa+5ui+btRK7PiE4xvzDaDg/giG/sbL+htaoYlJqpDvVYax4GHRoQtz2S62iAuagXIA==} + + boolean-shapely@0.1.2: + resolution: {integrity: sha512-jURLo9c9NIVbaNeigJb4ZPwFDYj4dRF6LPFaLTkeVjXpwMbU6VU8YmeSeWl9rYqMwp/XH0qo1G0x6nHzmB8amA==} + + brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + + brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + + browserslist@4.24.4: + resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + + buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + + buffer@5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + + bundle-require@5.1.0: + resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + peerDependencies: + esbuild: '>=0.18' + + byte-size@8.1.1: + resolution: {integrity: sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg==} + engines: {node: '>=12.17'} + + cac@6.7.14: + resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} + engines: {node: '>=8'} + + cacache@18.0.4: + resolution: {integrity: sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==} + engines: {node: ^16.14.0 || >=18.0.0} + + call-bind-apply-helpers@1.0.2: + resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} + engines: {node: '>= 0.4'} + + call-bind@1.0.7: + resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} + engines: {node: '>= 0.4'} + + call-bind@1.0.8: + resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} + engines: {node: '>= 0.4'} + + callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + + camelcase-keys@6.2.2: + resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} + engines: {node: '>=8'} + + camelcase@5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} + + camelcase@8.0.0: + resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==} + engines: {node: '>=16'} + + caniuse-lite@1.0.30001716: + resolution: {integrity: sha512-49/c1+x3Kwz7ZIWt+4DvK3aMJy9oYXXG6/97JKsnjdCk/6n9vVyWL8NAwVt95Lwt9eigI10Hl782kDfZUUlRXw==} + + ccount@2.0.1: + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + + chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + + chalk@4.1.0: + resolution: {integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==} + engines: {node: '>=10'} + + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + + chalk@5.3.0: + resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + + chalk@5.4.1: + resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + + character-entities-html4@2.1.0: + resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} + + character-entities-legacy@3.0.0: + resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} + + character-entities@2.0.2: + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + + chardet@0.7.0: + resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + + chokidar@3.5.3: + resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} + engines: {node: '>= 8.10.0'} + + chokidar@4.0.3: + resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} + engines: {node: '>= 14.16.0'} + + chownr@2.0.0: + resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} + engines: {node: '>=10'} + + chromatism@3.0.0: + resolution: {integrity: sha512-slVGC45odKFB6KzD/hpXP8XgS/Y+x72X1ckAhxU/9YZecCy8VwCJUSZsn0O4gQUwaTogun6IfrSiK3YuQaADFw==} + + ci-info@3.9.0: + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} + engines: {node: '>=8'} + + ci-info@4.0.0: + resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==} + engines: {node: '>=8'} + + clean-stack@2.2.0: + resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} + engines: {node: '>=6'} + + cli-cursor@3.1.0: + resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} + engines: {node: '>=8'} + + cli-cursor@5.0.0: + resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} + engines: {node: '>=18'} + + cli-spinners@2.6.1: + resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} + engines: {node: '>=6'} + + cli-spinners@2.9.2: + resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} + engines: {node: '>=6'} + + cli-truncate@4.0.0: + resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==} + engines: {node: '>=18'} + + cli-width@3.0.0: + resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} + engines: {node: '>= 10'} + + cliui@7.0.4: + resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} + + cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + + clone-deep@4.0.1: + resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} + engines: {node: '>=6'} + + clone@1.0.4: + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} + engines: {node: '>=0.8'} + + cmd-shim@6.0.3: + resolution: {integrity: sha512-FMabTRlc5t5zjdenF6mS0MBeFZm0XqHqeOkcskKFb/LYCcRQ5fVgLOHVc4Lq9CqABd9zhjwPjMBCJvMCziSVtA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + color-string@1.9.1: + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} + + color-support@1.1.3: + resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} + hasBin: true + + color@3.2.1: + resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==} + + colorette@2.0.20: + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + + colorspace@1.1.4: + resolution: {integrity: sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==} + + columnify@1.6.0: + resolution: {integrity: sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==} + engines: {node: '>=8.0.0'} + + combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + + comma-separated-tokens@2.0.3: + resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} + + commander@12.1.0: + resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} + engines: {node: '>=18'} + + commander@13.1.0: + resolution: {integrity: sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==} + engines: {node: '>=18'} + + commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + + commander@4.1.1: + resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} + engines: {node: '>= 6'} + + common-ancestor-path@1.0.1: + resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} + + commondir@1.0.1: + resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + + compare-func@2.0.0: + resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + concat-stream@2.0.0: + resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} + engines: {'0': node >= 6.0} + + concaveman@1.2.1: + resolution: {integrity: sha512-PwZYKaM/ckQSa8peP5JpVr7IMJ4Nn/MHIaWUjP4be+KoZ7Botgs8seAZGpmaOM+UZXawcdYRao/px9ycrCihHw==} + + consola@3.4.2: + resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==} + engines: {node: ^14.18.0 || >=16.10.0} + + console-control-strings@1.1.0: + resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} + + conventional-changelog-angular@7.0.0: + resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==} + engines: {node: '>=16'} + + conventional-changelog-core@5.0.1: + resolution: {integrity: sha512-Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A==} + engines: {node: '>=14'} + + conventional-changelog-preset-loader@3.0.0: + resolution: {integrity: sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA==} + engines: {node: '>=14'} + + conventional-changelog-writer@6.0.1: + resolution: {integrity: sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ==} + engines: {node: '>=14'} + hasBin: true + + conventional-commits-filter@3.0.0: + resolution: {integrity: sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==} + engines: {node: '>=14'} + + conventional-commits-parser@4.0.0: + resolution: {integrity: sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==} + engines: {node: '>=14'} + hasBin: true + + conventional-recommended-bump@7.0.1: + resolution: {integrity: sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA==} + engines: {node: '>=14'} + hasBin: true + + convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + + core-js-compat@3.42.0: + resolution: {integrity: sha512-bQasjMfyDGyaeWKBIu33lHh9qlSR0MFE/Nmc6nMjf/iU9b3rSMdAYz1Baxrv4lPdGUsTqZudHA4jIGSJy0SWZQ==} + + core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + + cosmiconfig@9.0.0: + resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true + + cross-spawn@6.0.5: + resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} + engines: {node: '>=4.8'} + + cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + engines: {node: '>= 8'} + + cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + + d3-array@1.2.4: + resolution: {integrity: sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==} + + d3-geo@1.7.1: + resolution: {integrity: sha512-O4AempWAr+P5qbk2bC2FuN/sDW4z+dN2wDf9QV3bxQt4M5HfOEeXLgJ/UKQW0+o1Dj8BE+L5kiDbdWUMjsmQpw==} + + d3-queue@3.0.7: + resolution: {integrity: sha512-2rs+6pNFKkrJhqe1rg5znw7dKJ7KZr62j9aLZfhondkrnz6U7VRmJj1UGcbD8MRc46c7H8m4SWhab8EalBQrkw==} + + d3-voronoi@1.1.2: + resolution: {integrity: sha512-RhGS1u2vavcO7ay7ZNAPo4xeDh/VYeGof3x5ZLJBQgYhLegxr3s5IykvWmJ94FTU6mcbtp4sloqZ54mP6R4Utw==} + + dargs@7.0.0: + resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} + engines: {node: '>=8'} + + data-view-buffer@1.0.1: + resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} + engines: {node: '>= 0.4'} + + data-view-byte-length@1.0.1: + resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} + engines: {node: '>= 0.4'} + + data-view-byte-offset@1.0.0: + resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} + engines: {node: '>= 0.4'} + + dateformat@3.0.3: + resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} + + de-indent@1.0.2: + resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} + + debug@4.3.7: + resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.4.0: + resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + decamelize-keys@1.1.1: + resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} + engines: {node: '>=0.10.0'} + + decamelize@1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} + + decamelize@6.0.0: + resolution: {integrity: sha512-Fv96DCsdOgB6mdGl67MT5JaTNKRzrzill5OH5s8bjYJXVlcXyPYGyPsUkWyGV5p1TXI5esYIYMMeDJL0hEIwaA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + decode-named-character-reference@1.0.2: + resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} + + dedent@1.5.3: + resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==} + peerDependencies: + babel-plugin-macros: ^3.1.0 + peerDependenciesMeta: + babel-plugin-macros: + optional: true + + deep-equal@2.2.3: + resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} + engines: {node: '>= 0.4'} + + deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + + deepmerge@4.3.1: + resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} + engines: {node: '>=0.10.0'} + + defaults@1.0.4: + resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + + define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} + + define-lazy-prop@2.0.0: + resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} + engines: {node: '>=8'} + + define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + + defined@1.0.1: + resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==} + + delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + + dependency-tree@11.1.1: + resolution: {integrity: sha512-pnkCd8VGOq70EVaEQxDC9mZCjCwYj4yG4j8h+PEJswuWp+rdE6p8zbtVvWk+yPwaVimOjlhNi782U9K5KOU9MQ==} + engines: {node: '>=18'} + hasBin: true + + deprecation@2.3.1: + resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} + + dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} + + detect-indent@5.0.0: + resolution: {integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==} + engines: {node: '>=4'} + + detect-indent@7.0.1: + resolution: {integrity: sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==} + engines: {node: '>=12.20'} + + detective-amd@6.0.1: + resolution: {integrity: sha512-TtyZ3OhwUoEEIhTFoc1C9IyJIud3y+xYkSRjmvCt65+ycQuc3VcBrPRTMWoO/AnuCyOB8T5gky+xf7Igxtjd3g==} + engines: {node: '>=18'} + hasBin: true + + detective-cjs@6.0.1: + resolution: {integrity: sha512-tLTQsWvd2WMcmn/60T2inEJNhJoi7a//PQ7DwRKEj1yEeiQs4mrONgsUtEJKnZmrGWBBmE0kJ1vqOG/NAxwaJw==} + engines: {node: '>=18'} + + detective-es6@5.0.1: + resolution: {integrity: sha512-XusTPuewnSUdoxRSx8OOI6xIA/uld/wMQwYsouvFN2LAg7HgP06NF1lHRV3x6BZxyL2Kkoih4ewcq8hcbGtwew==} + engines: {node: '>=18'} + + detective-postcss@7.0.1: + resolution: {integrity: sha512-bEOVpHU9picRZux5XnwGsmCN4+8oZo7vSW0O0/Enq/TO5R2pIAP2279NsszpJR7ocnQt4WXU0+nnh/0JuK4KHQ==} + engines: {node: ^14.0.0 || >=16.0.0} + peerDependencies: + postcss: ^8.4.47 + + detective-sass@6.0.1: + resolution: {integrity: sha512-jSGPO8QDy7K7pztUmGC6aiHkexBQT4GIH+mBAL9ZyBmnUIOFbkfZnO8wPRRJFP/QP83irObgsZHCoDHZ173tRw==} + engines: {node: '>=18'} + + detective-scss@5.0.1: + resolution: {integrity: sha512-MAyPYRgS6DCiS6n6AoSBJXLGVOydsr9huwXORUlJ37K3YLyiN0vYHpzs3AdJOgHobBfispokoqrEon9rbmKacg==} + engines: {node: '>=18'} + + detective-stylus@5.0.1: + resolution: {integrity: sha512-Dgn0bUqdGbE3oZJ+WCKf8Dmu7VWLcmRJGc6RCzBgG31DLIyai9WAoEhYRgIHpt/BCRMrnXLbGWGPQuBUrnF0TA==} + engines: {node: '>=18'} + + detective-typescript@14.0.0: + resolution: {integrity: sha512-pgN43/80MmWVSEi5LUuiVvO/0a9ss5V7fwVfrJ4QzAQRd3cwqU1SfWGXJFcNKUqoD5cS+uIovhw5t/0rSeC5Mw==} + engines: {node: '>=18'} + peerDependencies: + typescript: ^5.4.4 + + detective-vue2@2.2.0: + resolution: {integrity: sha512-sVg/t6O2z1zna8a/UIV6xL5KUa2cMTQbdTIIvqNM0NIPswp52fe43Nwmbahzj3ww4D844u/vC2PYfiGLvD3zFA==} + engines: {node: '>=18'} + peerDependencies: + typescript: ^5.4.4 + + diff-sequences@29.6.3: + resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + diff@5.2.0: + resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} + engines: {node: '>=0.3.1'} + + dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + + doctrine-temporary-fork@2.1.0: + resolution: {integrity: sha512-nliqOv5NkE4zMON4UA6AMJE6As35afs8aYXATpU4pTUdIKiARZwrJVEP1boA3Rx1ZXHVkwxkhcq4VkqvsuRLsA==} + engines: {node: '>=0.10.0'} + + documentation@14.0.3: + resolution: {integrity: sha512-B7cAviVKN9Rw7Ofd+9grhVuxiHwly6Ieh+d/ceMw8UdBOv/irkuwnDEJP8tq0wgdLJDUVuIkovV+AX9mTrZFxg==} + engines: {node: '>=14'} + hasBin: true + + dot-prop@5.3.0: + resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} + engines: {node: '>=8'} + + dotenv-expand@10.0.0: + resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==} + engines: {node: '>=12'} + + dotenv@16.3.1: + resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==} + engines: {node: '>=12'} + + dotignore@0.1.2: + resolution: {integrity: sha512-UGGGWfSauusaVJC+8fgV+NVvBXkCTmVv7sk6nojDZZvuOUNGUy0Zk4UpHQD6EDjS0jpBwcACvH4eofvyzBcRDw==} + hasBin: true + + dunder-proto@1.0.1: + resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} + engines: {node: '>= 0.4'} + + duplexer@0.1.2: + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + + earcut@2.2.4: + resolution: {integrity: sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==} + + eastasianwidth@0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + + ejs@3.1.10: + resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} + engines: {node: '>=0.10.0'} + hasBin: true + + electron-to-chromium@1.5.145: + resolution: {integrity: sha512-pZ5EcTWRq/055MvSBgoFEyKf2i4apwfoqJbK/ak2jnFq8oHjZ+vzc3AhRcz37Xn+ZJfL58R666FLJx0YOK9yTw==} + + emoji-regex@10.4.0: + resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + + enabled@2.0.0: + resolution: {integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==} + + encoding@0.1.13: + resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} + + end-of-stream@1.4.4: + resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + + enhanced-resolve@5.18.1: + resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==} + engines: {node: '>=10.13.0'} + + enquirer@2.3.6: + resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} + engines: {node: '>=8.6'} + + entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + + env-paths@2.2.1: + resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} + engines: {node: '>=6'} + + envinfo@7.13.0: + resolution: {integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==} + engines: {node: '>=4'} + hasBin: true + + environment@1.1.0: + resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==} + engines: {node: '>=18'} + + err-code@2.0.3: + resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} + + error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + + es-abstract@1.23.5: + resolution: {integrity: sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ==} + engines: {node: '>= 0.4'} + + es-check@9.0.0: + resolution: {integrity: sha512-lxqD7bpt/LwXUlKkCldWXhy7mgWoWUO3eMihCKqh4BR2BnUtSNlndzaWUmKNEo2LhwEhXnFzwXgGqoaWnuDPYg==} + engines: {node: '>= 4'} + hasBin: true + + es-define-property@1.0.0: + resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} + engines: {node: '>= 0.4'} + + es-define-property@1.0.1: + resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} + engines: {node: '>= 0.4'} + + es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + + es-get-iterator@1.1.3: + resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} + + es-object-atoms@1.0.0: + resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} + engines: {node: '>= 0.4'} + + es-object-atoms@1.1.1: + resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} + engines: {node: '>= 0.4'} + + es-set-tostringtag@2.0.3: + resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} + engines: {node: '>= 0.4'} + + es-to-primitive@1.3.0: + resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} + engines: {node: '>= 0.4'} + + esbuild@0.25.3: + resolution: {integrity: sha512-qKA6Pvai73+M2FtftpNKRxJ78GIjmFXFxd/1DVBqGo/qNhLSfv+G12n9pNoWdytJC8U00TrViOwpjT0zgqQS8Q==} + engines: {node: '>=18'} + hasBin: true + + escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} + + escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + + escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + + escape-string-regexp@5.0.0: + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + engines: {node: '>=12'} + + escodegen@2.1.0: + resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} + engines: {node: '>=6.0'} + hasBin: true + + eslint-config-prettier@10.1.2: + resolution: {integrity: sha512-Epgp/EofAUeEpIdZkW60MHKvPyru1ruQJxPL+WIycnaPApuseK0Zpkrh/FwL9oIpQvIhJwV7ptOy0DWUjTlCiA==} + hasBin: true + peerDependencies: + eslint: '>=7.0.0' + + eslint-plugin-prettier@5.2.6: + resolution: {integrity: sha512-mUcf7QG2Tjk7H055Jk0lGBjbgDnfrvqjhXh9t2xLMSCjZVcw9Rb1V6sVNXO0th3jgeO7zllWPTNRil3JW94TnQ==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + '@types/eslint': '>=8.0.0' + eslint: '>=8.0.0' + eslint-config-prettier: '>= 7.0.0 <10.0.0 || >=10.1.0' + prettier: '>=3.0.0' + peerDependenciesMeta: + '@types/eslint': + optional: true + eslint-config-prettier: + optional: true + + eslint-scope@8.3.0: + resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint-visitor-keys@4.2.0: + resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint@9.25.1: + resolution: {integrity: sha512-E6Mtz9oGQWDCpV12319d59n4tx9zOTXSTmc8BLVxBx+G/0RdM5MvEEJLU9c0+aleoePYYgVTOsRblx433qmhWQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + hasBin: true + peerDependencies: + jiti: '*' + peerDependenciesMeta: + jiti: + optional: true + + esm@3.2.25: + resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==} + engines: {node: '>=6'} + + espree@10.3.0: + resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + + esquery@1.6.0: + resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} + engines: {node: '>=0.10'} + + esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + + estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + + estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + + esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + + eventemitter3@4.0.7: + resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + + eventemitter3@5.0.1: + resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} + + execa@5.0.0: + resolution: {integrity: sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==} + engines: {node: '>=10'} + + execa@8.0.1: + resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} + engines: {node: '>=16.17'} + + exponential-backoff@3.1.1: + resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==} + + extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + + external-editor@3.1.0: + resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} + engines: {node: '>=4'} + + fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + fast-diff@1.3.0: + resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} + + fast-glob@3.3.2: + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} + + fast-glob@3.3.3: + resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} + engines: {node: '>=8.6.0'} + + fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + + fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + + fastq@1.15.0: + resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} + + fdir@6.4.4: + resolution: {integrity: sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + + fecha@4.2.3: + resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==} + + figures@3.2.0: + resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} + engines: {node: '>=8'} + + file-entry-cache@8.0.0: + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + engines: {node: '>=16.0.0'} + + filelist@1.0.4: + resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} + + filing-cabinet@5.0.3: + resolution: {integrity: sha512-PlPcMwVWg60NQkhvfoxZs4wEHjhlOO/y7OAm4sKM60o1Z9nttRY4mcdQxp/iZ+kg/Vv6Hw1OAaTbYVM9DA9pYg==} + engines: {node: '>=18'} + hasBin: true + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + find-packages@10.0.4: + resolution: {integrity: sha512-JmO9lEBUEYOiRw/bdbdgFWpGFgBZBGLcK/5GjQKo3ZN+zR6jmQOh9gWyZoqxlQmnldZ9WBWhna0QYyuq6BxvRg==} + engines: {node: '>=14.6'} + + find-up@2.1.0: + resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} + engines: {node: '>=4'} + + find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + + find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + + find-up@6.3.0: + resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + find-up@7.0.0: + resolution: {integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==} + engines: {node: '>=18'} + + flat-cache@4.0.1: + resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} + engines: {node: '>=16'} + + flat@5.0.2: + resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} + hasBin: true + + flatted@3.3.2: + resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==} + + fn.name@1.1.0: + resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==} + + follow-redirects@1.15.6: + resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + + for-each@0.3.3: + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + + foreground-child@3.3.1: + resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} + engines: {node: '>=14'} + + form-data@4.0.0: + resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} + engines: {node: '>= 6'} + + fs-constants@1.0.0: + resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} + + fs-extra@11.3.0: + resolution: {integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==} + engines: {node: '>=14.14'} + + fs-minipass@2.1.0: + resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} + engines: {node: '>= 8'} + + fs-minipass@3.0.3: + resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + function.prototype.name@1.1.6: + resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} + engines: {node: '>= 0.4'} + + functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + + gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + + geojson-equality-ts@1.0.2: + resolution: {integrity: sha512-h3Ryq+0mCSN/7yLs0eDgrZhvc9af23o/QuC4aTiuuzP/MRCtd6mf5rLsLRY44jX0RPUfM8c4GqERQmlUxPGPoQ==} + + geojson-polygon-self-intersections@1.2.1: + resolution: {integrity: sha512-/QM1b5u2d172qQVO//9CGRa49jEmclKEsYOQmWP9ooEjj63tBM51m2805xsbxkzlEELQ2REgTf700gUhhlegxA==} + + get-amd-module-type@6.0.1: + resolution: {integrity: sha512-MtjsmYiCXcYDDrGqtNbeIYdAl85n+5mSv2r3FbzER/YV3ZILw4HNNIw34HuV5pyl0jzs6GFYU1VHVEefhgcNHQ==} + engines: {node: '>=18'} + + get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + + get-east-asian-width@1.3.0: + resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==} + engines: {node: '>=18'} + + get-intrinsic@1.2.4: + resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} + engines: {node: '>= 0.4'} + + get-intrinsic@1.3.0: + resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} + engines: {node: '>= 0.4'} + + get-own-enumerable-property-symbols@3.0.2: + resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} + + get-package-type@0.1.0: + resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} + engines: {node: '>=8.0.0'} + + get-pkg-repo@4.2.1: + resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==} + engines: {node: '>=6.9.0'} + hasBin: true + + get-port@5.1.1: + resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==} + engines: {node: '>=8'} + + get-proto@1.0.1: + resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} + engines: {node: '>= 0.4'} + + get-stream@6.0.0: + resolution: {integrity: sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==} + engines: {node: '>=10'} + + get-stream@6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + + get-stream@8.0.1: + resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} + engines: {node: '>=16'} + + get-symbol-description@1.0.2: + resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} + engines: {node: '>= 0.4'} + + get-tsconfig@4.8.1: + resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} + + git-raw-commits@3.0.0: + resolution: {integrity: sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==} + engines: {node: '>=14'} + hasBin: true + + git-remote-origin-url@2.0.0: + resolution: {integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==} + engines: {node: '>=4'} + + git-semver-tags@5.0.1: + resolution: {integrity: sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA==} + engines: {node: '>=14'} + hasBin: true + + git-up@7.0.0: + resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==} + + git-url-parse@13.1.0: + resolution: {integrity: sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==} + + git-url-parse@14.0.0: + resolution: {integrity: sha512-NnLweV+2A4nCvn4U/m2AoYu0pPKlsmhK9cknG7IMwsjFY1S2jxM+mAhsDxyxfCIGfGaD+dozsyX4b6vkYc83yQ==} + + gitconfiglocal@1.0.0: + resolution: {integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==} + + github-slugger@1.4.0: + resolution: {integrity: sha512-w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ==} + + github-slugger@2.0.0: + resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + + glob@10.4.5: + resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} + hasBin: true + + glob@11.0.2: + resolution: {integrity: sha512-YT7U7Vye+t5fZ/QMkBFrTJ7ZQxInIUjwyAjVj84CYXqgBdv30MFUPGnBR6sQaVq6Is15wYJUsnzTuWaGRBhBAQ==} + engines: {node: 20 || >=22} + hasBin: true + + glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + deprecated: Glob versions prior to v9 are no longer supported + + glob@8.1.0: + resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} + engines: {node: '>=12'} + deprecated: Glob versions prior to v9 are no longer supported + + glob@9.3.5: + resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==} + engines: {node: '>=16 || 14 >=14.17'} + + globals-docs@2.4.1: + resolution: {integrity: sha512-qpPnUKkWnz8NESjrCvnlGklsgiQzlq+rcCxoG5uNQ+dNA7cFMCmn231slLAwS2N/PlkzZ3COL8CcS10jXmLHqg==} + + globals@11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} + + globals@14.0.0: + resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} + engines: {node: '>=18'} + + globals@16.0.0: + resolution: {integrity: sha512-iInW14XItCXET01CQFqudPOWP2jYMl7T+QRQT+UNcR/iQncN/F0UNpgd76iFkBPgNQb4+X3LV9tLJYzwh+Gl3A==} + engines: {node: '>=18'} + + globalthis@1.0.4: + resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} + engines: {node: '>= 0.4'} + + globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} + + globby@14.0.2: + resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==} + engines: {node: '>=18'} + + gonzales-pe@4.3.0: + resolution: {integrity: sha512-otgSPpUmdWJ43VXyiNgEYE4luzHCL2pz4wQ0OnDluC6Eg4Ko3Vexy/SrSynglw/eR+OhkzmqFCZa/OFa/RgAOQ==} + engines: {node: '>=0.6.0'} + hasBin: true + + gopd@1.1.0: + resolution: {integrity: sha512-FQoVQnqcdk4hVM4JN1eromaun4iuS34oStkdlLENLdpULsuQcTyXj8w7ayhuUfPwEYZ1ZOooOTT6fdA9Vmx/RA==} + engines: {node: '>= 0.4'} + + gopd@1.2.0: + resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} + engines: {node: '>= 0.4'} + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + + handlebars@4.7.8: + resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} + engines: {node: '>=0.4.7'} + hasBin: true + + hard-rejection@2.1.0: + resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} + engines: {node: '>=6'} + + has-bigints@1.0.2: + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + + has-dynamic-import@2.1.0: + resolution: {integrity: sha512-su0anMkNEnJKZ/rB99jn3y6lV/J8Ro96hBJ28YAeVzj5rWxH+YL/AdCyiYYA1HDLV9YhmvqpWSJJj2KLo1MX6g==} + engines: {node: '>= 0.4'} + + has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + + has-proto@1.1.0: + resolution: {integrity: sha512-QLdzI9IIO1Jg7f9GT1gXpPpXArAn6cS31R1eEZqz08Gc+uQ8/XiqHWt17Fiw+2p6oTTIq5GXEpQkAlA88YRl/Q==} + engines: {node: '>= 0.4'} + + has-symbols@1.1.0: + resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} + engines: {node: '>= 0.4'} + + has-tostringtag@1.0.2: + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} + + has-unicode@2.0.1: + resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} + + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + + hast-util-from-parse5@7.1.2: + resolution: {integrity: sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==} + + hast-util-parse-selector@3.1.1: + resolution: {integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==} + + hast-util-raw@7.2.3: + resolution: {integrity: sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==} + + hast-util-sanitize@4.1.0: + resolution: {integrity: sha512-Hd9tU0ltknMGRDv+d6Ro/4XKzBqQnP/EZrpiTbpFYfXv/uOhWeKc+2uajcbEvAEH98VZd7eII2PiXm13RihnLw==} + + hast-util-to-html@8.0.4: + resolution: {integrity: sha512-4tpQTUOr9BMjtYyNlt0P50mH7xj0Ks2xpo8M943Vykljf99HW6EzulIoJP1N3eKOSScEHzyzi9dm7/cn0RfGwA==} + + hast-util-to-parse5@7.1.0: + resolution: {integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==} + + hast-util-whitespace@2.0.1: + resolution: {integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==} + + hastscript@7.2.0: + resolution: {integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==} + + he@1.2.0: + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + hasBin: true + + highlight.js@11.10.0: + resolution: {integrity: sha512-SYVnVFswQER+zu1laSya563s+F8VDGt7o35d4utbamowvUNLLMovFqwCLSocpZTz3MgaSRA1IbqRWZv97dtErQ==} + engines: {node: '>=12.0.0'} + + hosted-git-info@2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + + hosted-git-info@4.1.0: + resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} + engines: {node: '>=10'} + + hosted-git-info@7.0.2: + resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==} + engines: {node: ^16.14.0 || >=18.0.0} + + html-void-elements@2.0.1: + resolution: {integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==} + + http-cache-semantics@4.1.1: + resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} + + http-proxy-agent@7.0.2: + resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} + engines: {node: '>= 14'} + + https-proxy-agent@7.0.4: + resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==} + engines: {node: '>= 14'} + + human-signals@2.1.0: + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} + + human-signals@5.0.0: + resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} + engines: {node: '>=16.17.0'} + + husky@9.1.7: + resolution: {integrity: sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==} + engines: {node: '>=18'} + hasBin: true + + iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + + iconv-lite@0.6.3: + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + engines: {node: '>=0.10.0'} + + ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + + ignore-walk@6.0.4: + resolution: {integrity: sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} + + import-fresh@3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} + + import-local@3.1.0: + resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} + engines: {node: '>=8'} + hasBin: true + + imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + + indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + + inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + ini@1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + + ini@3.0.1: + resolution: {integrity: sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + init-package-json@6.0.3: + resolution: {integrity: sha512-Zfeb5ol+H+eqJWHTaGca9BovufyGeIfr4zaaBorPmJBMrJ+KBnN+kQx2ZtXdsotUTgldHmHQV44xvUWOUA7E2w==} + engines: {node: ^16.14.0 || >=18.0.0} + + inquirer@8.2.6: + resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} + engines: {node: '>=12.0.0'} + + internal-slot@1.0.7: + resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} + engines: {node: '>= 0.4'} + + ip@2.0.1: + resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==} + + is-absolute@1.0.0: + resolution: {integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==} + engines: {node: '>=0.10.0'} + + is-arguments@1.1.1: + resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} + engines: {node: '>= 0.4'} + + is-array-buffer@3.0.4: + resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} + engines: {node: '>= 0.4'} + + is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + + is-arrayish@0.3.2: + resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} + + is-async-function@2.0.0: + resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} + engines: {node: '>= 0.4'} + + is-bigint@1.1.0: + resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} + engines: {node: '>= 0.4'} + + is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + + is-boolean-object@1.2.0: + resolution: {integrity: sha512-kR5g0+dXf/+kXnqI+lu0URKYPKgICtHGGNCDSB10AaUFj3o/HkB3u7WfpRBJGFopxxY0oH3ux7ZsDjLtK7xqvw==} + engines: {node: '>= 0.4'} + + is-buffer@2.0.5: + resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} + engines: {node: '>=4'} + + is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + + is-ci@3.0.1: + resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} + hasBin: true + + is-core-module@2.13.1: + resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} + + is-core-module@2.16.1: + resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} + engines: {node: '>= 0.4'} + + is-data-view@1.0.1: + resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} + engines: {node: '>= 0.4'} + + is-date-object@1.0.5: + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} + engines: {node: '>= 0.4'} + + is-docker@2.2.1: + resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} + engines: {node: '>=8'} + hasBin: true + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-finalizationregistry@1.1.0: + resolution: {integrity: sha512-qfMdqbAQEwBw78ZyReKnlA8ezmPdb9BemzIIip/JkjaZUhitfXDkkr+3QTboW0JrSXT1QWyYShpvnNHGZ4c4yA==} + engines: {node: '>= 0.4'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-fullwidth-code-point@4.0.0: + resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==} + engines: {node: '>=12'} + + is-fullwidth-code-point@5.0.0: + resolution: {integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==} + engines: {node: '>=18'} + + is-generator-function@1.0.10: + resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} + engines: {node: '>= 0.4'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-interactive@1.0.0: + resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} + engines: {node: '>=8'} + + is-lambda@1.0.1: + resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} + + is-map@2.0.3: + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} + engines: {node: '>= 0.4'} + + is-module@1.0.0: + resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} + + is-negative-zero@2.0.3: + resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} + engines: {node: '>= 0.4'} + + is-number-object@1.1.0: + resolution: {integrity: sha512-KVSZV0Dunv9DTPkhXwcZ3Q+tUc9TsaE1ZwX5J2WMvsSGS6Md8TFPun5uwh0yRdrNerI6vf/tbJxqSx4c1ZI1Lw==} + engines: {node: '>= 0.4'} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-obj@1.0.1: + resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==} + engines: {node: '>=0.10.0'} + + is-obj@2.0.0: + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} + + is-plain-obj@1.1.0: + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} + engines: {node: '>=0.10.0'} + + is-plain-obj@2.1.0: + resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} + engines: {node: '>=8'} + + is-plain-obj@4.1.0: + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} + + is-plain-object@2.0.4: + resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} + engines: {node: '>=0.10.0'} + + is-reference@1.2.1: + resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} + + is-regex@1.1.4: + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + engines: {node: '>= 0.4'} + + is-regexp@1.0.0: + resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==} + engines: {node: '>=0.10.0'} + + is-relative@1.0.0: + resolution: {integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==} + engines: {node: '>=0.10.0'} + + is-set@2.0.3: + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} + engines: {node: '>= 0.4'} + + is-shared-array-buffer@1.0.3: + resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} + engines: {node: '>= 0.4'} + + is-ssh@1.4.0: + resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==} + + is-stream@2.0.0: + resolution: {integrity: sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==} + engines: {node: '>=8'} + + is-stream@2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + + is-stream@3.0.0: + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + is-string@1.1.0: + resolution: {integrity: sha512-PlfzajuF9vSo5wErv3MJAKD/nqf9ngAs1NFQYm16nUYFO2IzxJ2hcm+IOCg+EEopdykNNUhVq5cz35cAUxU8+g==} + engines: {node: '>= 0.4'} + + is-symbol@1.1.0: + resolution: {integrity: sha512-qS8KkNNXUZ/I+nX6QT8ZS1/Yx0A444yhzdTKxCzKkNjQ9sHErBxJnJAgh+f5YhusYECEcjo4XcyH87hn6+ks0A==} + engines: {node: '>= 0.4'} + + is-text-path@1.0.1: + resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} + engines: {node: '>=0.10.0'} + + is-typed-array@1.1.13: + resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} + engines: {node: '>= 0.4'} + + is-typedarray@1.0.0: + resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} + + is-unc-path@1.0.0: + resolution: {integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==} + engines: {node: '>=0.10.0'} + + is-unicode-supported@0.1.0: + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} + engines: {node: '>=10'} + + is-url-superb@4.0.0: + resolution: {integrity: sha512-GI+WjezhPPcbM+tqE9LnmsY5qqjwHzTvjJ36wxYX5ujNXefSUJ/T17r5bqDV8yLhcgB59KTPNOc9O9cmHTPWsA==} + engines: {node: '>=10'} + + is-url@1.2.4: + resolution: {integrity: sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==} + + is-weakmap@2.0.2: + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} + engines: {node: '>= 0.4'} + + is-weakref@1.0.2: + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + + is-weakset@2.0.3: + resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} + engines: {node: '>= 0.4'} + + is-windows@1.0.2: + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} + engines: {node: '>=0.10.0'} + + is-wsl@2.2.0: + resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} + engines: {node: '>=8'} + + isarray@1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + + isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + isexe@3.1.1: + resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==} + engines: {node: '>=16'} + + isobject@3.0.1: + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} + + jackspeak@3.4.3: + resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} + + jackspeak@4.1.0: + resolution: {integrity: sha512-9DDdhb5j6cpeitCbvLO7n7J4IxnbM6hoF6O1g4HQ5TfhvvKN8ywDM7668ZhMHRqVmxqhps/F6syWK2KcPxYlkw==} + engines: {node: 20 || >=22} + + jake@10.8.7: + resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==} + engines: {node: '>=10'} + hasBin: true + + jest-diff@29.7.0: + resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-get-type@29.6.3: + resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + joycon@3.1.1: + resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} + engines: {node: '>=10'} + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + js-yaml@3.14.1: + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + hasBin: true + + js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + + jsesc@3.0.2: + resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} + engines: {node: '>=6'} + hasBin: true + + jsesc@3.1.0: + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} + engines: {node: '>=6'} + hasBin: true + + json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + + json-parse-better-errors@1.0.2: + resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} + + json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + + json-parse-even-better-errors@3.0.2: + resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + + json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + + json-stringify-nice@1.1.4: + resolution: {integrity: sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==} + + json-stringify-safe@5.0.1: + resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + + json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + + jsonc-parser@3.2.0: + resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} + + jsonfile@6.1.0: + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + + jsonparse@1.3.1: + resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} + engines: {'0': node >= 0.2.0} + + jsts@1.6.2: + resolution: {integrity: sha512-JNfDQk/fo5MeXx4xefvCyHZD22/DHowHr5K07FdgCJ81MEqn02HsDV5FQvYTz60ZIOv/+hhGbsVzXX5cuDWWlA==} + engines: {node: '>= 6'} + + jsts@2.7.1: + resolution: {integrity: sha512-x2wSZHEBK20CY+Wy+BPE7MrFQHW6sIsdaGUMEqmGAio+3gFzQaBYPwLRonUfQf9Ak8pBieqj9tUofX1+WtAEIg==} + engines: {node: '>= 12'} + + just-diff-apply@5.5.0: + resolution: {integrity: sha512-OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw==} + + just-diff@6.0.2: + resolution: {integrity: sha512-S59eriX5u3/QhMNq3v/gm8Kd0w8OS6Tz2FS1NG4blv+z0MuQcBRJyFWjdovM0Rad4/P4aUPFtnkNjMjyMlMSYA==} + + keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + + kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + + kleur@4.1.5: + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} + engines: {node: '>=6'} + + konan@2.1.1: + resolution: {integrity: sha512-7ZhYV84UzJ0PR/RJnnsMZcAbn+kLasJhVNWsu8ZyVEJYRpGA5XESQ9d/7zOa08U0Ou4cmB++hMNY/3OSV9KIbg==} + + kuler@2.0.0: + resolution: {integrity: sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==} + + lerna@8.2.2: + resolution: {integrity: sha512-GkqBELTG4k7rfzAwRok2pKBvhNo046Hfwcj7TuhDah3q58/BBBAqvIFLfqEI5fglnNOs6maMSn6/MWjccQE55A==} + engines: {node: '>=18.0.0'} + hasBin: true + + levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + + libnpmaccess@8.0.6: + resolution: {integrity: sha512-uM8DHDEfYG6G5gVivVl+yQd4pH3uRclHC59lzIbSvy7b5FEwR+mU49Zq1jEyRtRFv7+M99mUW9S0wL/4laT4lw==} + engines: {node: ^16.14.0 || >=18.0.0} + + libnpmpublish@9.0.9: + resolution: {integrity: sha512-26zzwoBNAvX9AWOPiqqF6FG4HrSCPsHFkQm7nT+xU1ggAujL/eae81RnCv4CJ2In9q9fh10B88sYSzKCUh/Ghg==} + engines: {node: ^16.14.0 || >=18.0.0} + + lilconfig@3.1.3: + resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} + engines: {node: '>=14'} + + lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + + lines-and-columns@2.0.4: + resolution: {integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + lint-staged@15.5.1: + resolution: {integrity: sha512-6m7u8mue4Xn6wK6gZvSCQwBvMBR36xfY24nF5bMTf2MHDYG6S3yhJuOgdYVw99hsjyDt2d4z168b3naI8+NWtQ==} + engines: {node: '>=18.12.0'} + hasBin: true + + listr2@8.3.2: + resolution: {integrity: sha512-vsBzcU4oE+v0lj4FhVLzr9dBTv4/fHIa57l+GCwovP8MoFNZJTOhGU8PXd4v2VJCbECAaijBiHntiekFMLvo0g==} + engines: {node: '>=18.0.0'} + + load-json-file@4.0.0: + resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} + engines: {node: '>=4'} + + load-json-file@6.2.0: + resolution: {integrity: sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==} + engines: {node: '>=8'} + + load-json-file@7.0.1: + resolution: {integrity: sha512-Gnxj3ev3mB5TkVBGad0JM6dmLiQL+o0t23JPBZ9sd+yvSLk05mFoqKBw5N8gbbkU4TNXyqCgIrl/VM17OgUIgQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + load-tsconfig@0.2.5: + resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + locate-path@2.0.0: + resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} + engines: {node: '>=4'} + + locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + + locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + + locate-path@7.2.0: + resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + lodash.debounce@4.0.8: + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + + lodash.ismatch@4.4.0: + resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} + + lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + + lodash.sortby@4.7.0: + resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} + + lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + log-symbols@4.1.0: + resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} + engines: {node: '>=10'} + + log-update@6.1.0: + resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==} + engines: {node: '>=18'} + + logform@2.7.0: + resolution: {integrity: sha512-TFYA4jnP7PVbmlBIfhlSe+WKxs9dklXMTEGcBCIvLhE/Tn3H6Gk1norupVW7m5Cnd4bLcr08AytbyV/xj7f/kQ==} + engines: {node: '>= 12.0.0'} + + longest-streak@3.1.0: + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + + lru-cache@10.4.3: + resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + + lru-cache@11.1.0: + resolution: {integrity: sha512-QIXZUBJUx+2zHUdQujWejBkcD9+cs94tLn0+YL8UrCh+D5sCXZ4c7LaEH48pNwRY3MLDgqUFyhlCyjJPf1WP0A==} + engines: {node: 20 || >=22} + + lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + + lru-cache@6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + + magic-string@0.30.14: + resolution: {integrity: sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw==} + + magic-string@0.30.17: + resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} + + make-dir@2.1.0: + resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} + engines: {node: '>=6'} + + make-dir@4.0.0: + resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} + engines: {node: '>=10'} + + make-fetch-happen@13.0.1: + resolution: {integrity: sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA==} + engines: {node: ^16.14.0 || >=18.0.0} + + map-cache@0.2.2: + resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} + engines: {node: '>=0.10.0'} + + map-obj@1.0.1: + resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} + engines: {node: '>=0.10.0'} + + map-obj@4.3.0: + resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} + engines: {node: '>=8'} + + marchingsquares@1.3.3: + resolution: {integrity: sha512-gz6nNQoVK7Lkh2pZulrT4qd4347S/toG9RXH2pyzhLgkL5mLkBoqgv4EvAGXcV0ikDW72n/OQb3Xe8bGagQZCg==} + + markdown-table@3.0.3: + resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==} + + math-intrinsics@1.1.0: + resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} + engines: {node: '>= 0.4'} + + mdast-util-definitions@5.1.2: + resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==} + + mdast-util-find-and-replace@2.2.2: + resolution: {integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==} + + mdast-util-from-markdown@1.3.1: + resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==} + + mdast-util-gfm-autolink-literal@1.0.3: + resolution: {integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==} + + mdast-util-gfm-footnote@1.0.2: + resolution: {integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==} + + mdast-util-gfm-strikethrough@1.0.3: + resolution: {integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==} + + mdast-util-gfm-table@1.0.7: + resolution: {integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==} + + mdast-util-gfm-task-list-item@1.0.2: + resolution: {integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==} + + mdast-util-gfm@2.0.2: + resolution: {integrity: sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==} + + mdast-util-inject@1.1.0: + resolution: {integrity: sha512-CcJ0mHa36QYumDKiZ2OIR+ClhfOM7zIzN+Wfy8tRZ1hpH9DKLCS+Mh4DyK5bCxzE9uxMWcbIpeNFWsg1zrj/2g==} + + mdast-util-phrasing@3.0.1: + resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==} + + mdast-util-to-hast@12.3.0: + resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==} + + mdast-util-to-markdown@1.5.0: + resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==} + + mdast-util-to-string@1.1.0: + resolution: {integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==} + + mdast-util-to-string@3.2.0: + resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==} + + mdast-util-toc@6.1.1: + resolution: {integrity: sha512-Er21728Kow8hehecK2GZtb7Ny3omcoPUVrmObiSUwmoRYVZaXLR751QROEFjR8W/vAQdHMLj49Lz20J55XaNpw==} + + memorystream@0.3.1: + resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} + engines: {node: '>= 0.10.0'} + + meow@13.2.0: + resolution: {integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==} + engines: {node: '>=18'} + + meow@8.1.2: + resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} + engines: {node: '>=10'} + + merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + mgrs@1.0.0: + resolution: {integrity: sha512-awNbTOqCxK1DBGjalK3xqWIstBZgN6fxsMSiXLs9/spqWkF2pAhb2rrYCFSsr1/tT7PhcDGjZndG8SWYn0byYA==} + + micromark-core-commonmark@1.1.0: + resolution: {integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==} + + micromark-extension-gfm-autolink-literal@1.0.5: + resolution: {integrity: sha512-z3wJSLrDf8kRDOh2qBtoTRD53vJ+CWIyo7uyZuxf/JAbNJjiHsOpG1y5wxk8drtv3ETAHutCu6N3thkOOgueWg==} + + micromark-extension-gfm-footnote@1.1.2: + resolution: {integrity: sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==} + + micromark-extension-gfm-strikethrough@1.0.7: + resolution: {integrity: sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==} + + micromark-extension-gfm-table@1.0.7: + resolution: {integrity: sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==} + + micromark-extension-gfm-tagfilter@1.0.2: + resolution: {integrity: sha512-5XWB9GbAUSHTn8VPU8/1DBXMuKYT5uOgEjJb8gN3mW0PNW5OPHpSdojoqf+iq1xo7vWzw/P8bAHY0n6ijpXF7g==} + + micromark-extension-gfm-task-list-item@1.0.5: + resolution: {integrity: sha512-RMFXl2uQ0pNQy6Lun2YBYT9g9INXtWJULgbt01D/x8/6yJ2qpKyzdZD3pi6UIkzF++Da49xAelVKUeUMqd5eIQ==} + + micromark-extension-gfm@2.0.3: + resolution: {integrity: sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ==} + + micromark-factory-destination@1.1.0: + resolution: {integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==} + + micromark-factory-label@1.1.0: + resolution: {integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==} + + micromark-factory-space@1.1.0: + resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==} + + micromark-factory-title@1.1.0: + resolution: {integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==} + + micromark-factory-whitespace@1.1.0: + resolution: {integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==} + + micromark-util-character@1.2.0: + resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==} + + micromark-util-chunked@1.1.0: + resolution: {integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==} + + micromark-util-classify-character@1.1.0: + resolution: {integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==} + + micromark-util-combine-extensions@1.1.0: + resolution: {integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==} + + micromark-util-decode-numeric-character-reference@1.1.0: + resolution: {integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==} + + micromark-util-decode-string@1.1.0: + resolution: {integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==} + + micromark-util-encode@1.1.0: + resolution: {integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==} + + micromark-util-html-tag-name@1.2.0: + resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==} + + micromark-util-normalize-identifier@1.1.0: + resolution: {integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==} + + micromark-util-resolve-all@1.1.0: + resolution: {integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==} + + micromark-util-sanitize-uri@1.2.0: + resolution: {integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==} + + micromark-util-subtokenize@1.1.0: + resolution: {integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==} + + micromark-util-symbol@1.1.0: + resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==} + + micromark-util-types@1.1.0: + resolution: {integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==} + + micromark@3.2.0: + resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==} + + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + + mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + + mimic-fn@4.0.0: + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} + engines: {node: '>=12'} + + mimic-function@5.0.1: + resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} + engines: {node: '>=18'} + + min-indent@1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} + + minimatch@10.0.1: + resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==} + engines: {node: 20 || >=22} + + minimatch@3.0.5: + resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + minimatch@5.1.6: + resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} + engines: {node: '>=10'} + + minimatch@8.0.4: + resolution: {integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==} + engines: {node: '>=16 || 14 >=14.17'} + + minimatch@9.0.3: + resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} + engines: {node: '>=16 || 14 >=14.17'} + + minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} + + minimist-options@4.1.0: + resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} + engines: {node: '>= 6'} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + minipass-collect@2.0.1: + resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==} + engines: {node: '>=16 || 14 >=14.17'} + + minipass-fetch@3.0.4: + resolution: {integrity: sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + minipass-flush@1.0.5: + resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} + engines: {node: '>= 8'} + + minipass-pipeline@1.2.4: + resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} + engines: {node: '>=8'} + + minipass-sized@1.0.3: + resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==} + engines: {node: '>=8'} + + minipass@3.3.6: + resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} + engines: {node: '>=8'} + + minipass@4.2.8: + resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==} + engines: {node: '>=8'} + + minipass@5.0.0: + resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} + engines: {node: '>=8'} + + minipass@7.1.2: + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} + engines: {node: '>=16 || 14 >=14.17'} + + minizlib@2.1.2: + resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} + engines: {node: '>= 8'} + + mkdirp@1.0.4: + resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} + engines: {node: '>=10'} + hasBin: true + + mkdirp@3.0.1: + resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==} + engines: {node: '>=10'} + hasBin: true + + mock-property@1.1.0: + resolution: {integrity: sha512-1/JjbLoGwv87xVsutkX0XJc0M0W4kb40cZl/K41xtTViBOD9JuFPKfyMNTrLJ/ivYAd0aPqu/vduamXO0emTFQ==} + engines: {node: '>= 0.4'} + + modify-values@1.0.1: + resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==} + engines: {node: '>=0.10.0'} + + module-definition@6.0.1: + resolution: {integrity: sha512-FeVc50FTfVVQnolk/WQT8MX+2WVcDnTGiq6Wo+/+lJ2ET1bRVi3HG3YlJUfqagNMc/kUlFSoR96AJkxGpKz13g==} + engines: {node: '>=18'} + hasBin: true + + module-lookup-amd@9.0.4: + resolution: {integrity: sha512-DWJEuLVvjxh5b8wrvJC5wr2a7qo7pOWXIgdCBNazU416kcIyzO4drxvlqKhsHzYwxcC4cWuhoK+MiWCKCGnv7A==} + engines: {node: '>=18'} + hasBin: true + + mri@1.2.0: + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + multimatch@5.0.0: + resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==} + engines: {node: '>=10'} + + mute-stream@0.0.8: + resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} + + mute-stream@1.0.0: + resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + mz@2.7.0: + resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} + + nanoid@3.3.11: + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + nanoid@3.3.8: + resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + + negotiator@0.6.3: + resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} + engines: {node: '>= 0.6'} + + neo-async@2.6.2: + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + + nice-try@1.0.5: + resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} + + node-fetch@2.6.7: + resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} + engines: {node: 4.x || >=6.0.0} + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + + node-gyp@10.1.0: + resolution: {integrity: sha512-B4J5M1cABxPc5PwfjhbV5hoy2DP9p8lFXASnEN6hugXOa61416tnTZ29x9sSwAd0o99XNIcpvDDy1swAExsVKA==} + engines: {node: ^16.14.0 || >=18.0.0} + hasBin: true + + node-machine-id@1.1.12: + resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==} + + node-releases@2.0.19: + resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} + + node-source-walk@7.0.1: + resolution: {integrity: sha512-3VW/8JpPqPvnJvseXowjZcirPisssnBuDikk6JIZ8jQzF7KJQX52iPFX4RYYxLycYH7IbMRSPUOga/esVjy5Yg==} + engines: {node: '>=18'} + + nopt@7.2.1: + resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + hasBin: true + + normalize-package-data@2.5.0: + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + + normalize-package-data@3.0.3: + resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} + engines: {node: '>=10'} + + normalize-package-data@6.0.1: + resolution: {integrity: sha512-6rvCfeRW+OEZagAB4lMLSNuTNYZWLVtKccK79VSTf//yTY5VOCgcpH80O+bZK8Neps7pUnd5G+QlMg1yV/2iZQ==} + engines: {node: ^16.14.0 || >=18.0.0} + + normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + npm-bundled@3.0.1: + resolution: {integrity: sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + npm-install-checks@6.3.0: + resolution: {integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + npm-normalize-package-bin@3.0.1: + resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + npm-package-arg@11.0.2: + resolution: {integrity: sha512-IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw==} + engines: {node: ^16.14.0 || >=18.0.0} + + npm-packlist@8.0.2: + resolution: {integrity: sha512-shYrPFIS/JLP4oQmAwDyk5HcyysKW8/JLTEA32S0Z5TzvpaeeX2yMFfoK1fjEBnCBvVyIB/Jj/GBFdm0wsgzbA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + npm-pick-manifest@9.1.0: + resolution: {integrity: sha512-nkc+3pIIhqHVQr085X9d2JzPzLyjzQS96zbruppqC9aZRm/x8xx6xhI98gHtsfELP2bE+loHq8ZaHFHhe+NauA==} + engines: {node: ^16.14.0 || >=18.0.0} + + npm-registry-fetch@17.1.0: + resolution: {integrity: sha512-5+bKQRH0J1xG1uZ1zMNvxW0VEyoNWgJpY9UDuluPFLKDfJ9u2JmmjmTJV1srBGQOROfdBMiVvnH2Zvpbm+xkVA==} + engines: {node: ^16.14.0 || >=18.0.0} + + npm-run-all@4.1.5: + resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==} + engines: {node: '>= 4'} + hasBin: true + + npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + + npm-run-path@5.1.0: + resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + nx@19.1.1: + resolution: {integrity: sha512-9NPKoAQ+I3KcoFDThAVu7YznE9fKbV/AiE5dAXPbWfye9HjRdnhLQmXN122ADlq4pA5wkXwxvAxRLw2WA7Kkgw==} + hasBin: true + peerDependencies: + '@swc-node/register': ^1.8.0 + '@swc/core': ^1.3.85 + peerDependenciesMeta: + '@swc-node/register': + optional: true + '@swc/core': + optional: true + + object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + object-inspect@1.13.3: + resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==} + engines: {node: '>= 0.4'} + + object-is@1.1.6: + resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} + engines: {node: '>= 0.4'} + + object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + + object.assign@4.1.5: + resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} + engines: {node: '>= 0.4'} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + one-time@1.0.0: + resolution: {integrity: sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==} + + onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + + onetime@6.0.0: + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} + engines: {node: '>=12'} + + onetime@7.0.0: + resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==} + engines: {node: '>=18'} + + open@8.4.2: + resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} + engines: {node: '>=12'} + + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} + + ora@5.3.0: + resolution: {integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==} + engines: {node: '>=10'} + + ora@5.4.1: + resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} + engines: {node: '>=10'} + + os-tmpdir@1.0.2: + resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} + engines: {node: '>=0.10.0'} + + p-filter@2.1.0: + resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} + engines: {node: '>=8'} + + p-finally@1.0.0: + resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} + engines: {node: '>=4'} + + p-limit@1.3.0: + resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} + engines: {node: '>=4'} + + p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + + p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + + p-limit@4.0.0: + resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + p-locate@2.0.0: + resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} + engines: {node: '>=4'} + + p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + + p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + + p-locate@6.0.0: + resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + p-map-series@2.1.0: + resolution: {integrity: sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==} + engines: {node: '>=8'} + + p-map@2.1.0: + resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} + engines: {node: '>=6'} + + p-map@4.0.0: + resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} + engines: {node: '>=10'} + + p-pipe@3.1.0: + resolution: {integrity: sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==} + engines: {node: '>=8'} + + p-queue@6.6.2: + resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==} + engines: {node: '>=8'} + + p-reduce@2.1.0: + resolution: {integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==} + engines: {node: '>=8'} + + p-timeout@3.2.0: + resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} + engines: {node: '>=8'} + + p-try@1.0.0: + resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} + engines: {node: '>=4'} + + p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + + p-waterfall@2.1.1: + resolution: {integrity: sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==} + engines: {node: '>=8'} + + package-json-from-dist@1.0.1: + resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} + + pacote@18.0.6: + resolution: {integrity: sha512-+eK3G27SMwsB8kLIuj4h1FUhHtwiEUo21Tw8wNjmvdlpOEr613edv+8FUsTj/4F/VN5ywGE19X18N7CC2EJk6A==} + engines: {node: ^16.14.0 || >=18.0.0} + hasBin: true + + parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + + parse-conflict-json@3.0.1: + resolution: {integrity: sha512-01TvEktc68vwbJOtWZluyWeVGWjP+bZwXtPDMQVbBKzbJ/vZBif0L69KH1+cHv1SZ6e0FKLvjyHe8mqsIqYOmw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + parse-filepath@1.0.2: + resolution: {integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==} + engines: {node: '>=0.8'} + + parse-json@4.0.0: + resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} + engines: {node: '>=4'} + + parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + + parse-path@7.0.0: + resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==} + + parse-url@8.1.0: + resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} + + parse5@6.0.1: + resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} + + path-exists@3.0.0: + resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} + engines: {node: '>=4'} + + path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + + path-exists@5.0.0: + resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + + path-key@2.0.1: + resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} + engines: {node: '>=4'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-key@4.0.0: + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} + engines: {node: '>=12'} + + path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + path-root-regex@0.1.2: + resolution: {integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==} + engines: {node: '>=0.10.0'} + + path-root@0.1.1: + resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==} + engines: {node: '>=0.10.0'} + + path-scurry@1.11.1: + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} + + path-scurry@2.0.0: + resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==} + engines: {node: 20 || >=22} + + path-type@3.0.0: + resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} + engines: {node: '>=4'} + + path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + + path-type@5.0.0: + resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} + engines: {node: '>=12'} + + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + picomatch@4.0.2: + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} + engines: {node: '>=12'} + + pidtree@0.3.1: + resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==} + engines: {node: '>=0.10'} + hasBin: true + + pidtree@0.6.0: + resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} + engines: {node: '>=0.10'} + hasBin: true + + pify@2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} + + pify@3.0.0: + resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} + engines: {node: '>=4'} + + pify@4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} + + pify@5.0.0: + resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} + engines: {node: '>=10'} + + pify@6.1.0: + resolution: {integrity: sha512-KocF8ve28eFjjuBKKGvzOBGzG8ew2OqOOSxTTZhirkzH7h3BI1vyzqlR0qbfcDBve1Yzo3FVlWUAtCRrbVN8Fw==} + engines: {node: '>=14.16'} + + pirates@4.0.6: + resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} + engines: {node: '>= 6'} + + pkg-dir@4.2.0: + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} + engines: {node: '>=8'} + + platform@1.3.6: + resolution: {integrity: sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==} + + point-in-polygon-hao@1.1.0: + resolution: {integrity: sha512-3hTIM2j/v9Lio+wOyur3kckD4NxruZhpowUbEgmyikW+a2Kppjtu1eN+AhnMQtoHW46zld88JiYWv6fxpsDrTQ==} + + point-in-polygon@1.1.0: + resolution: {integrity: sha512-3ojrFwjnnw8Q9242TzgXuTD+eKiutbzyslcq1ydfu82Db2y+Ogbmyrkpv0Hgj31qwT3lbS9+QAAO/pIQM35XRw==} + + polyclip-ts@0.16.8: + resolution: {integrity: sha512-JPtKbDRuPEuAjuTdhR62Gph7Is2BS1Szx69CFOO3g71lpJDFo78k4tFyi+qFOMVPePEzdSKkpGU3NBXPHHjvKQ==} + + possible-typed-array-names@1.0.0: + resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} + engines: {node: '>= 0.4'} + + postcss-load-config@6.0.1: + resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==} + engines: {node: '>= 18'} + peerDependencies: + jiti: '>=1.21.0' + postcss: '>=8.0.9' + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + jiti: + optional: true + postcss: + optional: true + tsx: + optional: true + yaml: + optional: true + + postcss-selector-parser@6.1.2: + resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} + engines: {node: '>=4'} + + postcss-values-parser@6.0.2: + resolution: {integrity: sha512-YLJpK0N1brcNJrs9WatuJFtHaV9q5aAOj+S4DI5S7jgHlRfm0PIbDCAFRYMQD5SHq7Fy6xsDhyutgS0QOAs0qw==} + engines: {node: '>=10'} + peerDependencies: + postcss: ^8.2.9 + + postcss@8.4.49: + resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==} + engines: {node: ^10 || ^12 || >=14} + + postcss@8.5.3: + resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==} + engines: {node: ^10 || ^12 || >=14} + + precinct@12.2.0: + resolution: {integrity: sha512-NFBMuwIfaJ4SocE9YXPU/n4AcNSoFMVFjP72nvl3cx69j/ke61/hPOWFREVxLkFhhEGnA8ZuVfTqJBa+PK3b5w==} + engines: {node: '>=18'} + hasBin: true + + prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + + prettier-linter-helpers@1.0.0: + resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} + engines: {node: '>=6.0.0'} + + prettier@3.5.3: + resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==} + engines: {node: '>=14'} + hasBin: true + + pretty-format@29.7.0: + resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + proc-log@3.0.0: + resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + proc-log@4.2.0: + resolution: {integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + process-nextick-args@2.0.1: + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + + proggy@2.0.0: + resolution: {integrity: sha512-69agxLtnI8xBs9gUGqEnK26UfiexpHy+KUpBQWabiytQjnn5wFY8rklAi7GRfABIuPNnQ/ik48+LGLkYYJcy4A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + progress@2.0.3: + resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} + engines: {node: '>=0.4.0'} + + proj4@2.9.2: + resolution: {integrity: sha512-bdyfNmtlWjQN/rHEHEiqFvpTUHhuzDaeQ6Uu1G4sPGqk+Xkxae6ahh865fClJokSGPBmlDOQWWaO6465TCfv5Q==} + + promise-all-reject-late@1.0.1: + resolution: {integrity: sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==} + + promise-call-limit@3.0.2: + resolution: {integrity: sha512-mRPQO2T1QQVw11E7+UdCJu7S61eJVWknzml9sC1heAdj1jxl0fWMBypIt9ZOcLFf8FkG995ZD7RnVk7HH72fZw==} + + promise-inflight@1.0.1: + resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} + peerDependencies: + bluebird: '*' + peerDependenciesMeta: + bluebird: + optional: true + + promise-retry@2.0.1: + resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} + engines: {node: '>=10'} + + promzard@1.0.0: + resolution: {integrity: sha512-KQVDEubSUHGSt5xLakaToDFrSoZhStB8dXLzk2xvwR67gJktrHFvpR63oZgHyK19WKbHFLXJqCPXdVR3aBP8Ig==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + property-information@6.5.0: + resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} + + protocols@2.0.1: + resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==} + + proxy-from-env@1.1.0: + resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + + punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + + python-shell@0.4.0: + resolution: {integrity: sha512-1Ys9FWe0JtA8YSj3F+hU4iVyiRpUVQRNKrGUYCHc7GEnHKJGHEyThrEoHJcdINrdTRwFjvM/nHQv8MpVla0i3w==} + engines: {node: '>=0.10'} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + quick-lru@4.0.1: + resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} + engines: {node: '>=8'} + + quickselect@1.1.1: + resolution: {integrity: sha512-qN0Gqdw4c4KGPsBOQafj6yj/PA6c/L63f6CaZ/DCF/xF4Esu3jVmKLUDYxghFx8Kb/O7y9tI7x2RjTSXwdK1iQ==} + + quickselect@2.0.0: + resolution: {integrity: sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==} + + quote-unquote@1.0.0: + resolution: {integrity: sha512-twwRO/ilhlG/FIgYeKGFqyHhoEhqgnKVkcmqMKi2r524gz3ZbDTcyFt38E9xjJI2vT+KbRNHVbnJ/e0I25Azwg==} + + randombytes@2.1.0: + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + + rbush@2.0.2: + resolution: {integrity: sha512-XBOuALcTm+O/H8G90b6pzu6nX6v2zCKiFG4BJho8a+bY6AER6t8uQUZdi5bomQc0AprCWhEGa7ncAbbRap0bRA==} + + rbush@3.0.1: + resolution: {integrity: sha512-XRaVO0YecOpEuIvbhbpTrZgoiI6xBlz6hnlr6EHhd+0x9ase6EmeN+hdwwUaJvLcsFFQ8iWVF1GAK1yB0BWi0w==} + + react-is@18.2.0: + resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} + + read-cmd-shim@4.0.0: + resolution: {integrity: sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + read-package-json-fast@3.0.2: + resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + read-pkg-up@3.0.0: + resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==} + engines: {node: '>=4'} + + read-pkg-up@7.0.1: + resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} + engines: {node: '>=8'} + + read-pkg-up@9.1.0: + resolution: {integrity: sha512-vaMRR1AC1nrd5CQM0PhlRsO5oc2AAigqr7cCrZ/MW/Rsaflz4RlgzkpL4qoU/z1F6wrbd85iFv1OQj/y5RdGvg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + read-pkg@3.0.0: + resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} + engines: {node: '>=4'} + + read-pkg@5.2.0: + resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} + engines: {node: '>=8'} + + read-pkg@7.1.0: + resolution: {integrity: sha512-5iOehe+WF75IccPc30bWTbpdDQLOCc3Uu8bi3Dte3Eueij81yx1Mrufk8qBx/YAbR4uL1FdUr+7BKXDwEtisXg==} + engines: {node: '>=12.20'} + + read-yaml-file@2.1.0: + resolution: {integrity: sha512-UkRNRIwnhG+y7hpqnycCL/xbTk7+ia9VuVTC0S+zVbwd65DI9eUpRMfsWIGrCWxTU/mi+JW8cHQCrv+zfCbEPQ==} + engines: {node: '>=10.13'} + + read@2.1.0: + resolution: {integrity: sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + read@3.0.1: + resolution: {integrity: sha512-SLBrDU/Srs/9EoWhU5GdbAoxG1GzpQHo/6qiGItaoLJ1thmYpcNIM1qISEUvyHBzfGlWIyd6p2DNi1oV1VmAuw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + readable-stream@2.3.8: + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + + readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + + readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + + readdirp@4.1.2: + resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} + engines: {node: '>= 14.18.0'} + + redent@3.0.0: + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} + + reflect.getprototypeof@1.0.7: + resolution: {integrity: sha512-bMvFGIUKlc/eSfXNX+aZ+EL95/EgZzuwA0OBPTbZZDEJw/0AkentjMuM1oiRfwHrshqk4RzdgiTg5CcDalXN5g==} + engines: {node: '>= 0.4'} + + regenerate-unicode-properties@10.2.0: + resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==} + engines: {node: '>=4'} + + regenerate@1.4.2: + resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} + + regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + + regenerator-transform@0.15.2: + resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} + + regexp.prototype.flags@1.5.3: + resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} + engines: {node: '>= 0.4'} + + regexpu-core@6.2.0: + resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==} + engines: {node: '>=4'} + + regjsgen@0.8.0: + resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==} + + regjsparser@0.12.0: + resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==} + hasBin: true + + remark-gfm@3.0.1: + resolution: {integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==} + + remark-html@15.0.2: + resolution: {integrity: sha512-/CIOI7wzHJzsh48AiuIyIe1clxVkUtreul73zcCXLub0FmnevQE0UMFDQm7NUx8/3rl/4zCshlMfqBdWScQthw==} + + remark-parse@10.0.2: + resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==} + + remark-reference-links@6.0.1: + resolution: {integrity: sha512-34wY2C6HXSuKVTRtyJJwefkUD8zBOZOSHFZ4aSTnU2F656gr9WeuQ2dL6IJDK3NPd2F6xKF2t4XXcQY9MygAXg==} + + remark-stringify@10.0.3: + resolution: {integrity: sha512-koyOzCMYoUHudypbj4XpnAKFbkddRMYZHwghnxd7ue5210WzGw6kOBwauJTRUMq16jsovXx8dYNvSSWP89kZ3A==} + + remark-toc@8.0.1: + resolution: {integrity: sha512-7he2VOm/cy13zilnOTZcyAoyoolV26ULlon6XyCFU+vG54Z/LWJnwphj/xKIDLOt66QmJUgTyUvLVHi2aAElyg==} + + remark@14.0.3: + resolution: {integrity: sha512-bfmJW1dmR2LvaMJuAnE88pZP9DktIFYXazkTfOIKZzi3Knk9lT0roItIA24ydOucI3bV/g/tXBA6hzqq3FV9Ew==} + + require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + + requirejs-config-file@4.0.0: + resolution: {integrity: sha512-jnIre8cbWOyvr8a5F2KuqBnY+SDA4NXr/hzEZJG79Mxm2WiFQz2dzhC8ibtPJS7zkmBEl1mxSwp5HhC1W4qpxw==} + engines: {node: '>=10.13.0'} + + requirejs@2.3.7: + resolution: {integrity: sha512-DouTG8T1WanGok6Qjg2SXuCMzszOo0eHeH9hDZ5Y4x8Je+9JB38HdTLT4/VA8OaUhBa0JPVHJ0pyBkM1z+pDsw==} + engines: {node: '>=0.4.0'} + hasBin: true + + resolve-cwd@3.0.0: + resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} + engines: {node: '>=8'} + + resolve-dependency-path@4.0.1: + resolution: {integrity: sha512-YQftIIC4vzO9UMhO/sCgXukNyiwVRCVaxiWskCBy7Zpqkplm8kTAISZ8O1MoKW1ca6xzgLUBjZTcDgypXvXxiQ==} + engines: {node: '>=18'} + + resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + + resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + + resolve-package-path@4.0.3: + resolution: {integrity: sha512-SRpNAPW4kewOaNUt8VPqhJ0UMxawMwzJD8V7m1cJfdSTK9ieZwS6K7Dabsm4bmLFM96Z5Y/UznrpG5kt1im8yA==} + engines: {node: '>= 12'} + + resolve-pkg-maps@1.0.0: + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + + resolve@1.22.10: + resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} + engines: {node: '>= 0.4'} + hasBin: true + + resolve@1.22.8: + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} + hasBin: true + + resolve@2.0.0-next.5: + resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} + hasBin: true + + restore-cursor@3.1.0: + resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} + engines: {node: '>=8'} + + restore-cursor@5.1.0: + resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} + engines: {node: '>=18'} + + retry@0.12.0: + resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} + engines: {node: '>= 4'} + + reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rfdc@1.4.1: + resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} + + rimraf@3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true + + rimraf@4.4.1: + resolution: {integrity: sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==} + engines: {node: '>=14'} + hasBin: true + + robust-predicates@2.0.4: + resolution: {integrity: sha512-l4NwboJM74Ilm4VKfbAtFeGq7aEjWL+5kVFcmgFA2MrdnQWx9iE/tUGvxY5HyMI7o/WpSIUFLbC5fbeaHgSCYg==} + + rollup-plugin-polyfill-node@0.13.0: + resolution: {integrity: sha512-FYEvpCaD5jGtyBuBFcQImEGmTxDTPbiHjJdrYIp+mFIwgXiXabxvKUK7ZT9P31ozu2Tqm9llYQMRWsfvTMTAOw==} + peerDependencies: + rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 + + rollup@4.40.1: + resolution: {integrity: sha512-C5VvvgCCyfyotVITIAv+4efVytl5F7wt+/I2i9q9GZcEXW9BP52YYOXC58igUi+LFZVHukErIIqQSWwv/M3WRw==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + run-async@2.4.1: + resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} + engines: {node: '>=0.12.0'} + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + runtypes@6.7.0: + resolution: {integrity: sha512-3TLdfFX8YHNFOhwHrSJza6uxVBmBrEjnNQlNXvXCdItS0Pdskfg5vVXUTWIN+Y23QR09jWpSl99UHkA83m4uWA==} + + rxjs@7.8.1: + resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} + + sade@1.8.1: + resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} + engines: {node: '>=6'} + + safe-array-concat@1.1.2: + resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} + engines: {node: '>=0.4'} + + safe-buffer@5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + safe-regex-test@1.0.3: + resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} + engines: {node: '>= 0.4'} + + safe-stable-stringify@2.5.0: + resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==} + engines: {node: '>=10'} + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + sass-lookup@6.1.0: + resolution: {integrity: sha512-Zx+lVyoWqXZxHuYWlTA17Z5sczJ6braNT2C7rmClw+c4E7r/n911Zwss3h1uHI9reR5AgHZyNHF7c2+VIp5AUA==} + engines: {node: '>=18'} + hasBin: true + + semver@5.7.2: + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + hasBin: true + + semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + + semver@7.6.3: + resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} + engines: {node: '>=10'} + hasBin: true + + semver@7.7.1: + resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==} + engines: {node: '>=10'} + hasBin: true + + serialize-javascript@6.0.1: + resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==} + + set-blocking@2.0.0: + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + + set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} + + set-function-name@2.0.2: + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + engines: {node: '>= 0.4'} + + shallow-clone@3.0.1: + resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} + engines: {node: '>=8'} + + shebang-command@1.2.0: + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} + engines: {node: '>=0.10.0'} + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@1.0.0: + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} + engines: {node: '>=0.10.0'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + shell-quote@1.8.1: + resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} + + side-channel@1.0.6: + resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} + engines: {node: '>= 0.4'} + + signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + + signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + + sigstore@2.3.1: + resolution: {integrity: sha512-8G+/XDU8wNsJOQS5ysDVO0Etg9/2uA5gR9l4ZwijjlwxBcrU6RPfwi2+jJmbP+Ap1Hlp/nVAaEO4Fj22/SL2gQ==} + engines: {node: ^16.14.0 || >=18.0.0} + + simple-swizzle@0.2.2: + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} + + skmeans@0.9.7: + resolution: {integrity: sha512-hNj1/oZ7ygsfmPZ7ZfN5MUBRoGg1gtpnImuJBgLO0ljQ67DtJuiQaiYdS4lUA6s0KCwnPhGivtC/WRwIZLkHyg==} + + slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + + slash@5.1.0: + resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} + engines: {node: '>=14.16'} + + slice-ansi@5.0.0: + resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==} + engines: {node: '>=12'} + + slice-ansi@7.1.0: + resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==} + engines: {node: '>=18'} + + smart-buffer@4.2.0: + resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} + engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} + + smob@1.4.1: + resolution: {integrity: sha512-9LK+E7Hv5R9u4g4C3p+jjLstaLe11MDsL21UpYaCNmapvMkYhqCV4A/f/3gyH8QjMyh6l68q9xC85vihY9ahMQ==} + + socks-proxy-agent@8.0.3: + resolution: {integrity: sha512-VNegTZKhuGq5vSD6XNKlbqWhyt/40CgoEw8XxD6dhnm8Jq9IEa3nIa4HwnM8XOqU0CdB0BwWVXusqiFXfHB3+A==} + engines: {node: '>= 14'} + + socks@2.7.1: + resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==} + engines: {node: '>= 10.13.0', npm: '>= 3.0.0'} + + sort-keys@2.0.0: + resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==} + engines: {node: '>=4'} + + sort-keys@4.2.0: + resolution: {integrity: sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==} + engines: {node: '>=8'} + + sort-keys@5.1.0: + resolution: {integrity: sha512-aSbHV0DaBcr7u0PVHXzM6NbZNAtrr9sF6+Qfs9UUVG7Ll3jQ6hHi8F/xqIIcn2rvIVbr0v/2zyjSdwSV47AgLQ==} + engines: {node: '>=12'} + + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + + source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + source-map@0.8.0-beta.0: + resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} + engines: {node: '>= 8'} + + space-separated-tokens@2.0.2: + resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} + + spdx-correct@3.2.0: + resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + + spdx-exceptions@2.3.0: + resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} + + spdx-expression-parse@3.0.1: + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + + spdx-license-ids@3.0.16: + resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==} + + splaytree-ts@1.0.2: + resolution: {integrity: sha512-0kGecIZNIReCSiznK3uheYB8sbstLjCZLiwcQwbmLhgHJj2gz6OnSPkVzJQCMnmEz1BQ4gPK59ylhBoEWOhGNA==} + + split2@3.2.2: + resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} + + split@1.0.1: + resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} + + sprintf-js@1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + + ssri@10.0.6: + resolution: {integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + stack-trace@0.0.10: + resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==} + + stop-iteration-iterator@1.0.0: + resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} + engines: {node: '>= 0.4'} + + string-argv@0.3.2: + resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} + engines: {node: '>=0.6.19'} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + string-width@5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + + string-width@7.2.0: + resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} + engines: {node: '>=18'} + + string.prototype.padend@3.1.5: + resolution: {integrity: sha512-DOB27b/2UTTD+4myKUFh+/fXWcu/UDyASIXfg+7VzoCNNGOfWvoyU/x5pvVHr++ztyt/oSYI1BcWBBG/hmlNjA==} + engines: {node: '>= 0.4'} + + string.prototype.trim@1.2.9: + resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} + engines: {node: '>= 0.4'} + + string.prototype.trimend@1.0.8: + resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} + + string.prototype.trimstart@1.0.8: + resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} + engines: {node: '>= 0.4'} + + string_decoder@1.1.1: + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + + string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + + stringify-entities@4.0.4: + resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} + + stringify-object@3.3.0: + resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==} + engines: {node: '>=4'} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} + + strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + + strip-bom@4.0.0: + resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} + engines: {node: '>=8'} + + strip-comments-strings@1.2.0: + resolution: {integrity: sha512-zwF4bmnyEjZwRhaak9jUWNxc0DoeKBJ7lwSN/LEc8dQXZcUFG6auaaTQJokQWXopLdM3iTx01nQT8E4aL29DAQ==} + + strip-final-newline@2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + + strip-final-newline@3.0.0: + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} + engines: {node: '>=12'} + + strip-indent@3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} + + strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + + strip-json-comments@5.0.1: + resolution: {integrity: sha512-0fk9zBqO67Nq5M/m45qHCJxylV/DhBlIOVExqgOMiCCrzrhU6tCibRXNqE3jwJLftzE9SNuZtYbpzcO+i9FiKw==} + engines: {node: '>=14.16'} + + strong-log-transformer@2.1.0: + resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==} + engines: {node: '>=4'} + hasBin: true + + stylus-lookup@6.1.0: + resolution: {integrity: sha512-5QSwgxAzXPMN+yugy61C60PhoANdItfdjSEZR8siFwz7yL9jTmV0UBKDCfn3K8GkGB4g0Y9py7vTCX8rFu4/pQ==} + engines: {node: '>=18'} + hasBin: true + + sucrase@3.35.0: + resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} + engines: {node: '>=16 || 14 >=14.17'} + hasBin: true + + supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + supports-color@8.1.1: + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} + + supports-color@9.4.0: + resolution: {integrity: sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==} + engines: {node: '>=12'} + + supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + sweepline-intersections@1.5.0: + resolution: {integrity: sha512-AoVmx72QHpKtItPu72TzFL+kcYjd67BPLDoR0LarIk+xyaRg+pDTMFXndIEvZf9xEKnJv6JdhgRMnocoG0D3AQ==} + + synckit@0.11.4: + resolution: {integrity: sha512-Q/XQKRaJiLiFIBNN+mndW7S/RHxvwzuZS6ZwmRzUBqJBv/5QIKCEwkBC8GBf8EQJKYnaFs0wOZbKTXBPj8L9oQ==} + engines: {node: ^14.18.0 || >=16.0.0} + + tapable@2.2.1: + resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} + engines: {node: '>=6'} + + tape@5.9.0: + resolution: {integrity: sha512-czbGgxSVwRlbB3Ly/aqQrNwrDAzKHDW/kVXegp4hSFmR2c8qqm3hCgZbUy1+3QAQFGhPDG7J56UsV1uNilBFCA==} + hasBin: true + + tar-stream@2.2.0: + resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} + engines: {node: '>=6'} + + tar@6.2.1: + resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} + engines: {node: '>=10'} + + temp-dir@1.0.0: + resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==} + engines: {node: '>=4'} + + terser@5.26.0: + resolution: {integrity: sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==} + engines: {node: '>=10'} + hasBin: true + + text-extensions@1.9.0: + resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} + engines: {node: '>=0.10'} + + text-hex@1.0.0: + resolution: {integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==} + + thenify-all@1.6.0: + resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} + engines: {node: '>=0.8'} + + thenify@3.3.1: + resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} + + through2@2.0.5: + resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} + + through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + + tinyexec@0.3.2: + resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} + + tinyglobby@0.2.13: + resolution: {integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==} + engines: {node: '>=12.0.0'} + + tinyqueue@2.0.3: + resolution: {integrity: sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==} + + tmp@0.0.33: + resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} + engines: {node: '>=0.6.0'} + + tmp@0.2.1: + resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==} + engines: {node: '>=8.17.0'} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + topojson-client@3.1.0: + resolution: {integrity: sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==} + hasBin: true + + topojson-server@3.0.1: + resolution: {integrity: sha512-/VS9j/ffKr2XAOjlZ9CgyyeLmgJ9dMwq6Y0YEON8O7p/tGGk+dCWnrE03zEdu7i4L7YsFZLEPZPzCvcB7lEEXw==} + hasBin: true + + tr46@0.0.3: + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + + tr46@1.0.1: + resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==} + + tree-kill@1.2.2: + resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} + hasBin: true + + treeverse@3.0.0: + resolution: {integrity: sha512-gcANaAnd2QDZFmHFEOF4k7uc1J/6a6z3DJMd/QwEyxLoKGiptJRwid582r7QIsFlFMIZ3SnxfS52S4hm2DHkuQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + trim-lines@3.0.1: + resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} + + trim-newlines@3.0.1: + resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} + engines: {node: '>=8'} + + triple-beam@1.4.1: + resolution: {integrity: sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==} + engines: {node: '>= 14.0.0'} + + trough@2.2.0: + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} + + ts-api-utils@2.1.0: + resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==} + engines: {node: '>=18.12'} + peerDependencies: + typescript: '>=4.8.4' + + ts-interface-checker@0.1.13: + resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} + + tsconfig-paths@4.2.0: + resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} + engines: {node: '>=6'} + + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + + tsup@8.4.0: + resolution: {integrity: sha512-b+eZbPCjz10fRryaAA7C8xlIHnf8VnsaRqydheLIqwG/Mcpfk8Z5zp3HayX7GaTygkigHl5cBUs+IhcySiIexQ==} + engines: {node: '>=18'} + hasBin: true + peerDependencies: + '@microsoft/api-extractor': ^7.36.0 + '@swc/core': ^1 + postcss: ^8.4.12 + typescript: '>=4.5.0' + peerDependenciesMeta: + '@microsoft/api-extractor': + optional: true + '@swc/core': + optional: true + postcss: + optional: true + typescript: + optional: true + + tsx@4.19.4: + resolution: {integrity: sha512-gK5GVzDkJK1SI1zwHf32Mqxf2tSJkNx+eYcNly5+nHvWqXUJYUkWBQtKauoESz3ymezAI++ZwT855x5p5eop+Q==} + engines: {node: '>=18.0.0'} + hasBin: true + + tuf-js@2.2.1: + resolution: {integrity: sha512-GwIJau9XaA8nLVbUXsN3IlFi7WmQ48gBUrl3FTkkL/XLu/POhBzfmX9hd33FNMX1qAsfl6ozO1iMmW9NC8YniA==} + engines: {node: ^16.14.0 || >=18.0.0} + + type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + + type-fest@0.18.1: + resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} + engines: {node: '>=10'} + + type-fest@0.21.3: + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} + engines: {node: '>=10'} + + type-fest@0.4.1: + resolution: {integrity: sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==} + engines: {node: '>=6'} + + type-fest@0.6.0: + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} + engines: {node: '>=8'} + + type-fest@0.8.1: + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} + + type-fest@2.19.0: + resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} + engines: {node: '>=12.20'} + + typed-array-buffer@1.0.2: + resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} + engines: {node: '>= 0.4'} + + typed-array-byte-length@1.0.1: + resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} + engines: {node: '>= 0.4'} + + typed-array-byte-offset@1.0.3: + resolution: {integrity: sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw==} + engines: {node: '>= 0.4'} + + typed-array-length@1.0.7: + resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} + engines: {node: '>= 0.4'} + + typedarray-to-buffer@3.1.5: + resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} + + typedarray@0.0.6: + resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} + + typescript-eslint@8.31.1: + resolution: {integrity: sha512-j6DsEotD/fH39qKzXTQRwYYWlt7D+0HmfpOK+DVhwJOFLcdmn92hq3mBb7HlKJHbjjI/gTOqEcc9d6JfpFf/VA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + + typescript@5.8.3: + resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==} + engines: {node: '>=14.17'} + hasBin: true + + uglify-js@3.19.3: + resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==} + engines: {node: '>=0.8.0'} + hasBin: true + + unbox-primitive@1.0.2: + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + + unc-path-regex@0.1.2: + resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==} + engines: {node: '>=0.10.0'} + + undici-types@6.21.0: + resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} + + unicode-canonical-property-names-ecmascript@2.0.1: + resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==} + engines: {node: '>=4'} + + unicode-match-property-ecmascript@2.0.0: + resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} + engines: {node: '>=4'} + + unicode-match-property-value-ecmascript@2.2.0: + resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==} + engines: {node: '>=4'} + + unicode-property-aliases-ecmascript@2.1.0: + resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} + engines: {node: '>=4'} + + unicorn-magic@0.1.0: + resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} + engines: {node: '>=18'} + + unified@10.1.2: + resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==} + + unique-filename@3.0.0: + resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + unique-slug@4.0.0: + resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + unist-builder@3.0.1: + resolution: {integrity: sha512-gnpOw7DIpCA0vpr6NqdPvTWnlPTApCTRzr+38E6hCWx3rz/cjo83SsKIlS1Z+L5ttScQ2AwutNnb8+tAvpb6qQ==} + + unist-util-generated@2.0.1: + resolution: {integrity: sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==} + + unist-util-is@5.2.1: + resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==} + + unist-util-position@4.0.4: + resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==} + + unist-util-stringify-position@3.0.3: + resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==} + + unist-util-visit-parents@5.1.3: + resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==} + + unist-util-visit@4.1.2: + resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==} + + universal-user-agent@6.0.1: + resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==} + + universalify@2.0.1: + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} + + upath@2.0.1: + resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} + engines: {node: '>=4'} + + update-browserslist-db@1.1.3: + resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + uuid@10.0.0: + resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==} + hasBin: true + + uvu@0.5.6: + resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==} + engines: {node: '>=8'} + hasBin: true + + validate-npm-package-license@3.0.4: + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + + validate-npm-package-name@5.0.1: + resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + vfile-location@4.1.0: + resolution: {integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==} + + vfile-message@3.1.4: + resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==} + + vfile-reporter@7.0.5: + resolution: {integrity: sha512-NdWWXkv6gcd7AZMvDomlQbK3MqFWL1RlGzMn++/O2TI+68+nqxCPTvLugdOtfSzXmjh+xUyhp07HhlrbJjT+mw==} + + vfile-sort@3.0.1: + resolution: {integrity: sha512-1os1733XY6y0D5x0ugqSeaVJm9lYgj0j5qdcZQFyxlZOSy1jYarL77lLyb5gK4Wqr1d5OxmuyflSO3zKyFnTFw==} + + vfile-statistics@2.0.1: + resolution: {integrity: sha512-W6dkECZmP32EG/l+dp2jCLdYzmnDBIw6jwiLZSER81oR5AHRcVqL+k3Z+pfH1R73le6ayDkJRMk0sutj1bMVeg==} + + vfile@5.3.7: + resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==} + + vue-template-compiler@2.7.16: + resolution: {integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==} + + walk-up-path@3.0.1: + resolution: {integrity: sha512-9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA==} + + wcwidth@1.0.1: + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + + web-namespaces@2.0.1: + resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} + + webidl-conversions@3.0.1: + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + + webidl-conversions@4.0.2: + resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} + + whatwg-url@5.0.0: + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + + whatwg-url@7.1.0: + resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} + + which-boxed-primitive@1.1.0: + resolution: {integrity: sha512-Ei7Miu/AXe2JJ4iNF5j/UphAgRoma4trE6PtisM09bPygb3egMH3YLW/befsWb1A1AxvNSFidOFTB18XtnIIng==} + engines: {node: '>= 0.4'} + + which-builtin-type@1.2.0: + resolution: {integrity: sha512-I+qLGQ/vucCby4tf5HsLmGueEla4ZhwTBSqaooS+Y0BuxN4Cp+okmGuV+8mXZ84KDI9BA+oklo+RzKg0ONdSUA==} + engines: {node: '>= 0.4'} + + which-collection@1.0.2: + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} + engines: {node: '>= 0.4'} + + which-typed-array@1.1.16: + resolution: {integrity: sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ==} + engines: {node: '>= 0.4'} + + which@1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + which@4.0.0: + resolution: {integrity: sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==} + engines: {node: ^16.13.0 || >=18.0.0} + hasBin: true + + wide-align@1.1.5: + resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} + + winston-transport@4.9.0: + resolution: {integrity: sha512-8drMJ4rkgaPo1Me4zD/3WLfI/zPdA9o2IipKODunnGDcuqbHwjsbB79ylv04LCGGzU0xQ6vTznOMpQGaLhhm6A==} + engines: {node: '>= 12.0.0'} + + winston@3.17.0: + resolution: {integrity: sha512-DLiFIXYC5fMPxaRg832S6F5mJYvePtmO5G9v9IgUFPhXm9/GkXarH/TUrBAVzhTCzAj9anE/+GjrgXp/54nOgw==} + engines: {node: '>= 12.0.0'} + + wkt-parser@1.3.3: + resolution: {integrity: sha512-ZnV3yH8/k58ZPACOXeiHaMuXIiaTk1t0hSUVisbO0t4RjA5wPpUytcxeyiN2h+LZRrmuHIh/1UlrR9e7DHDvTw==} + + word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + + wordwrap@1.0.0: + resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} + + wrap-ansi@6.2.0: + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} + engines: {node: '>=8'} + + wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + + wrap-ansi@8.1.0: + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} + + wrap-ansi@9.0.0: + resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==} + engines: {node: '>=18'} + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + write-file-atomic@2.4.3: + resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} + + write-file-atomic@3.0.3: + resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} + + write-file-atomic@5.0.1: + resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + write-json-file@3.2.0: + resolution: {integrity: sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==} + engines: {node: '>=6'} + + write-json-file@6.0.0: + resolution: {integrity: sha512-MNHcU3f9WxnNyR6MxsYSj64Jz0+dwIpisWKWq9gqLj/GwmA9INg3BZ3vt70/HB3GEwrnDQWr4RPrywnhNzmUFA==} + engines: {node: '>=18'} + + write-pkg@4.0.0: + resolution: {integrity: sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==} + engines: {node: '>=8'} + + write-yaml-file@4.2.0: + resolution: {integrity: sha512-LwyucHy0uhWqbrOkh9cBluZBeNVxzHjDaE9mwepZG3n3ZlbM4v3ndrFw51zW/NXYFFqP+QWZ72ihtLWTh05e4Q==} + engines: {node: '>=10.13'} + + xtend@4.0.2: + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} + + y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + + yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + + yallist@4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + + yaml@2.7.1: + resolution: {integrity: sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ==} + engines: {node: '>= 14'} + hasBin: true + + yamljs@0.3.0: + resolution: {integrity: sha512-C/FsVVhht4iPQYXOInoxUM/1ELSf9EsgKH34FofQOp6hwCPrW4vG4w5++TED3xRUo8gD7l0P1J1dLlDYzODsTQ==} + hasBin: true + + yargs-parser@20.2.4: + resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==} + engines: {node: '>=10'} + + yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + + yargs@16.2.0: + resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} + engines: {node: '>=10'} + + yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} + + yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + + yocto-queue@1.0.0: + resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} + engines: {node: '>=12.20'} + + zwitch@2.0.4: + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} + +snapshots: + + '@ampproject/remapping@2.3.0': dependencies: - '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.23.5 - '@babel/generator': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) - '@babel/helpers': 7.23.5 - '@babel/parser': 7.23.5 - '@babel/template': 7.22.15 - '@babel/traverse': 7.23.5 - '@babel/types': 7.23.5 + '@jridgewell/gen-mapping': 0.3.8 + '@jridgewell/trace-mapping': 0.3.25 + + '@babel/code-frame@7.26.2': + dependencies: + '@babel/helper-validator-identifier': 7.25.9 + js-tokens: 4.0.0 + picocolors: 1.1.1 + + '@babel/compat-data@7.26.8': {} + + '@babel/core@7.26.0': + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.26.2 + '@babel/generator': 7.26.2 + '@babel/helper-compilation-targets': 7.27.0 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) + '@babel/helpers': 7.27.0 + '@babel/parser': 7.26.2 + '@babel/template': 7.27.0 + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 convert-source-map: 2.0.0 - debug: 4.3.4 + debug: 4.4.0 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 transitivePeerDependencies: - supports-color - dev: true - /@babel/generator@7.23.5: - resolution: {integrity: sha512-BPssCHrBD+0YrxviOa3QzpqwhNIXKEtOa2jQrm4FlmkC2apYgRnQcmPWiGZDlGxiNtltnUFolMe8497Esry+jA==} - engines: {node: '>=6.9.0'} + '@babel/core@7.26.10': dependencies: - '@babel/types': 7.23.5 - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.20 - jsesc: 2.5.2 - dev: true + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.26.2 + '@babel/generator': 7.27.0 + '@babel/helper-compilation-targets': 7.27.0 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10) + '@babel/helpers': 7.27.0 + '@babel/parser': 7.27.0 + '@babel/template': 7.27.0 + '@babel/traverse': 7.27.0 + '@babel/types': 7.27.0 + convert-source-map: 2.0.0 + debug: 4.4.0 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - /@babel/helper-annotate-as-pure@7.22.5: - resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} - engines: {node: '>=6.9.0'} + '@babel/generator@7.26.2': dependencies: - '@babel/types': 7.23.5 - dev: true + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 3.0.2 - /@babel/helper-builder-binary-assignment-operator-visitor@7.22.15: - resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} - engines: {node: '>=6.9.0'} + '@babel/generator@7.27.0': dependencies: - '@babel/types': 7.23.5 - dev: true + '@babel/parser': 7.27.0 + '@babel/types': 7.27.0 + '@jridgewell/gen-mapping': 0.3.8 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 3.1.0 - /@babel/helper-compilation-targets@7.22.15: - resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==} - engines: {node: '>=6.9.0'} + '@babel/helper-annotate-as-pure@7.25.9': dependencies: - '@babel/compat-data': 7.23.5 - '@babel/helper-validator-option': 7.23.5 - browserslist: 4.22.2 + '@babel/types': 7.27.0 + + '@babel/helper-compilation-targets@7.27.0': + dependencies: + '@babel/compat-data': 7.26.8 + '@babel/helper-validator-option': 7.25.9 + browserslist: 4.24.4 lru-cache: 5.1.1 semver: 6.3.1 - dev: true - /@babel/helper-create-class-features-plugin@7.23.5(@babel/core@7.23.5): - resolution: {integrity: sha512-QELlRWxSpgdwdJzSJn4WAhKC+hvw/AtHbbrIoncKHkhKKR/luAlKkgBDcri1EzWAo8f8VvYVryEHN4tax/V67A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/helper-create-class-features-plugin@7.27.0(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5) - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 + '@babel/core': 7.26.10 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-member-expression-to-functions': 7.25.9 + '@babel/helper-optimise-call-expression': 7.25.9 + '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.10) + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + '@babel/traverse': 7.27.0 semver: 6.3.1 - dev: true + transitivePeerDependencies: + - supports-color - /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.5): - resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/helper-create-regexp-features-plugin@7.27.0(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-annotate-as-pure': 7.22.5 - regexpu-core: 5.3.2 + '@babel/core': 7.26.10 + '@babel/helper-annotate-as-pure': 7.25.9 + regexpu-core: 6.2.0 semver: 6.3.1 - dev: true - /@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.5): - resolution: {integrity: sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/helper-define-polyfill-provider@0.6.4(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - debug: 4.3.4 + '@babel/core': 7.26.10 + '@babel/helper-compilation-targets': 7.27.0 + '@babel/helper-plugin-utils': 7.26.5 + debug: 4.4.0 lodash.debounce: 4.0.8 - resolve: 1.22.8 + resolve: 1.22.10 transitivePeerDependencies: - supports-color - dev: true - /@babel/helper-environment-visitor@7.22.20: - resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} - engines: {node: '>=6.9.0'} - dev: true - - /@babel/helper-function-name@7.23.0: - resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} - engines: {node: '>=6.9.0'} + '@babel/helper-member-expression-to-functions@7.25.9': dependencies: - '@babel/template': 7.22.15 - '@babel/types': 7.23.5 - dev: true - - /@babel/helper-hoist-variables@7.22.5: - resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.5 - dev: true - - /@babel/helper-member-expression-to-functions@7.23.0: - resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.25.2 - dev: true - - /@babel/helper-module-imports@7.22.15: - resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.5 - dev: true - - /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-simple-access': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.20 - dev: true - - /@babel/helper-optimise-call-expression@7.22.5: - resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.5 - dev: true - - /@babel/helper-plugin-utils@7.22.5: - resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} - engines: {node: '>=6.9.0'} - dev: true - - /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.5): - resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-wrap-function': 7.22.20 - dev: true - - /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.5): - resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - dev: true - - /@babel/helper-simple-access@7.22.5: - resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.5 - dev: true - - /@babel/helper-skip-transparent-expression-wrappers@7.22.5: - resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.5 - dev: true - - /@babel/helper-split-export-declaration@7.22.6: - resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.5 - dev: true - - /@babel/helper-string-parser@7.23.4: - resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==} - engines: {node: '>=6.9.0'} - dev: true - - /@babel/helper-string-parser@7.24.8: - resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==} - engines: {node: '>=6.9.0'} - requiresBuild: true - dev: true - - /@babel/helper-validator-identifier@7.22.20: - resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} - engines: {node: '>=6.9.0'} - dev: true - - /@babel/helper-validator-identifier@7.24.7: - resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} - engines: {node: '>=6.9.0'} - requiresBuild: true - dev: true - - /@babel/helper-validator-option@7.23.5: - resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} - engines: {node: '>=6.9.0'} - dev: true - - /@babel/helper-wrap-function@7.22.20: - resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-function-name': 7.23.0 - '@babel/template': 7.22.15 - '@babel/types': 7.25.2 - dev: true - - /@babel/helpers@7.23.5: - resolution: {integrity: sha512-oO7us8FzTEsG3U6ag9MfdF1iA/7Z6dz+MtFhifZk8C8o453rGJFFWUP1t+ULM9TUIAzC9uxXEiXjOiVMyd7QPg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.22.15 - '@babel/traverse': 7.23.5 - '@babel/types': 7.23.5 + '@babel/traverse': 7.27.0 + '@babel/types': 7.27.0 transitivePeerDependencies: - supports-color - dev: true - /@babel/highlight@7.23.4: - resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==} - engines: {node: '>=6.9.0'} + '@babel/helper-module-imports@7.25.9': dependencies: - '@babel/helper-validator-identifier': 7.22.20 - chalk: 2.4.2 - js-tokens: 4.0.0 - dev: true + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color - /@babel/parser@7.23.5: - resolution: {integrity: sha512-hOOqoiNXrmGdFbhgCzu6GiURxUgM27Xwd/aPuu8RfHEZPBzL1Z54okAHAQjXfcQNwvrlkAmAp4SlRTZ45vlthQ==} - engines: {node: '>=6.0.0'} - hasBin: true + '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)': dependencies: - '@babel/types': 7.23.5 - dev: true + '@babel/core': 7.26.0 + '@babel/helper-module-imports': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color - /@babel/parser@7.25.3: - resolution: {integrity: sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==} - engines: {node: '>=6.0.0'} - hasBin: true + '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.10)': dependencies: - '@babel/types': 7.25.2 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-module-imports': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 + '@babel/traverse': 7.27.0 + transitivePeerDependencies: + - supports-color - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/helper-optimise-call-expression@7.25.9': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/types': 7.27.0 - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.13.0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.5) - dev: true + '@babel/helper-plugin-utils@7.26.5': {} - /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-wrap-function': 7.25.9 + '@babel/traverse': 7.27.0 + transitivePeerDependencies: + - supports-color - /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.5): - resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/helper-replace-supers@7.26.5(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-member-expression-to-functions': 7.25.9 + '@babel/helper-optimise-call-expression': 7.25.9 + '@babel/traverse': 7.27.0 + transitivePeerDependencies: + - supports-color - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.5): - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/helper-skip-transparent-expression-wrappers@7.25.9': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/traverse': 7.27.0 + '@babel/types': 7.27.0 + transitivePeerDependencies: + - supports-color - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.5): - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/helper-string-parser@7.25.9': {} - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.5): - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/helper-validator-identifier@7.25.9': {} - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.5): - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/helper-validator-option@7.25.9': {} - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.5): - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/helper-wrap-function@7.25.9': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/template': 7.27.0 + '@babel/traverse': 7.27.0 + '@babel/types': 7.27.0 + transitivePeerDependencies: + - supports-color - /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/helpers@7.27.0': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/template': 7.27.0 + '@babel/types': 7.27.0 - /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/parser@7.26.2': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/types': 7.26.0 - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.5): - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/parser@7.27.0': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/types': 7.27.0 - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.5): - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 + '@babel/traverse': 7.27.0 + transitivePeerDependencies: + - supports-color - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.5): - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.5): - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.5): - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.10) + transitivePeerDependencies: + - supports-color - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.5): - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 + '@babel/traverse': 7.27.0 + transitivePeerDependencies: + - supports-color - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.5): - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.5): - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.5): - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.5): - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.5): - resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-async-generator-functions@7.26.8(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 + '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.10) + '@babel/traverse': 7.27.0 + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-async-generator-functions@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.5) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.5) - dev: true + '@babel/core': 7.26.10 + '@babel/helper-module-imports': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 + '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.10) + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-block-scoped-functions@7.26.5(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.5) - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-block-scoping@7.27.0(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.26.5 + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.26.5 + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.12.0 + '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.5) - dev: true - - /@babel/plugin-transform-classes@7.23.5(@babel/core@7.23.5): - resolution: {integrity: sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5) - '@babel/helper-split-export-declaration': 7.22.6 + '@babel/core': 7.26.10 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-compilation-targets': 7.27.0 + '@babel/helper-plugin-utils': 7.26.5 + '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.10) + '@babel/traverse': 7.27.0 globals: 11.12.0 - dev: true + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.15 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 + '@babel/template': 7.27.0 - /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.5) - dev: true + '@babel/core': 7.26.10 + '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.5) - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-for-of@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-X8jSm8X1CMwxmK878qsUGJRmbysKNbdpTv/O1/v0LuY/ZkZrng5WYiekYSdg9m09OTmDDUWeEDsTE+17WYbAZw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-for-of@7.26.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.5) - dev: true + '@babel/core': 7.26.10 + '@babel/helper-compilation-targets': 7.27.0 + '@babel/helper-plugin-utils': 7.26.5 + '@babel/traverse': 7.27.0 + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.5) - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-simple-access': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.26.5 + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-identifier': 7.22.20 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.26.5 + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.26.5 + '@babel/helper-validator-identifier': 7.25.9 + '@babel/traverse': 7.27.0 + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.5): - resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.26.5 + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.5) - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-nullish-coalescing-operator@7.26.6(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.5) - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.5) - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5) - dev: true + '@babel/core': 7.26.10 + '@babel/helper-compilation-targets': 7.27.0 + '@babel/helper-plugin-utils': 7.26.5 + '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10) - /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.5) - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 + '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.10) + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.5) - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.5) - dev: true + '@babel/core': 7.26.10 + '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.26.5 + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.26.5 + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 + + '@babel/plugin-transform-regenerator@7.27.0(@babel/core@7.26.10)': + dependencies: + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 regenerator-transform: 0.15.2 - dev: true - /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-template-literals@7.26.8(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-typeof-symbol@7.27.0(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.26.5 - /@babel/preset-env@7.23.5(@babel/core@7.23.5): - resolution: {integrity: sha512-0d/uxVD6tFGWXGDSfyMD1p2otoaKmu6+GD+NfAx0tMaH+dxORnp7T9TaVQ6mKyya7iBtCIVxHjWT7MuzzM9z+A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.10)': dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.5) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.5) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.5) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.5) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.5) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.5) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.5) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.5) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.5) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-async-generator-functions': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-classes': 7.23.5(@babel/core@7.23.5) - '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-for-of': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.5) - '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.5) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.5) - babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.5) - babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.5) - babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.5) - core-js-compat: 3.34.0 + '@babel/core': 7.26.10 + '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.26.5 + + '@babel/preset-env@7.26.9(@babel/core@7.26.10)': + dependencies: + '@babel/compat-data': 7.26.8 + '@babel/core': 7.26.10 + '@babel/helper-compilation-targets': 7.27.0 + '@babel/helper-plugin-utils': 7.26.5 + '@babel/helper-validator-option': 7.25.9 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.10) + '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.10) + '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.10) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.10) + '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.26.10) + '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-block-scoped-functions': 7.26.5(@babel/core@7.26.10) + '@babel/plugin-transform-block-scoping': 7.27.0(@babel/core@7.26.10) + '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.10) + '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.26.10) + '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-for-of': 7.26.9(@babel/core@7.26.10) + '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.10) + '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-nullish-coalescing-operator': 7.26.6(@babel/core@7.26.10) + '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-regenerator': 7.27.0(@babel/core@7.26.10) + '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.10) + '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-template-literals': 7.26.8(@babel/core@7.26.10) + '@babel/plugin-transform-typeof-symbol': 7.27.0(@babel/core@7.26.10) + '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.10) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.10) + babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.26.10) + babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.26.10) + babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.26.10) + core-js-compat: 3.42.0 semver: 6.3.1 transitivePeerDependencies: - supports-color - dev: true - /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.5): - resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} - peerDependencies: - '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.10)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/types': 7.23.5 + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.26.5 + '@babel/types': 7.27.0 esutils: 2.0.3 - dev: true - /@babel/regjsgen@0.8.0: - resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} - dev: true - - /@babel/runtime@7.23.5: - resolution: {integrity: sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==} - engines: {node: '>=6.9.0'} + '@babel/runtime@7.27.0': dependencies: - regenerator-runtime: 0.14.0 - dev: true + regenerator-runtime: 0.14.1 - /@babel/template@7.22.15: - resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} - engines: {node: '>=6.9.0'} + '@babel/template@7.27.0': dependencies: - '@babel/code-frame': 7.23.5 - '@babel/parser': 7.23.5 - '@babel/types': 7.23.5 - dev: true + '@babel/code-frame': 7.26.2 + '@babel/parser': 7.27.0 + '@babel/types': 7.27.0 - /@babel/traverse@7.23.5: - resolution: {integrity: sha512-czx7Xy5a6sapWWRx61m1Ke1Ra4vczu1mCTtJam5zRTBOonfdJ+S/B6HYmGYu3fJtr8GGET3si6IhgWVBhJ/m8w==} - engines: {node: '>=6.9.0'} + '@babel/traverse@7.25.9': dependencies: - '@babel/code-frame': 7.23.5 - '@babel/generator': 7.23.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.23.5 - '@babel/types': 7.23.5 - debug: 4.3.4 + '@babel/code-frame': 7.26.2 + '@babel/generator': 7.26.2 + '@babel/parser': 7.26.2 + '@babel/template': 7.27.0 + '@babel/types': 7.26.0 + debug: 4.4.0 globals: 11.12.0 transitivePeerDependencies: - supports-color - dev: true - /@babel/types@7.23.5: - resolution: {integrity: sha512-ON5kSOJwVO6xXVRTvOI0eOnWe7VdUcIpsovGo9U/Br4Ie4UVFQTboO2cYnDhAGU6Fp+UxSiT+pMft0SMHfuq6w==} - engines: {node: '>=6.9.0'} + '@babel/traverse@7.27.0': dependencies: - '@babel/helper-string-parser': 7.23.4 - '@babel/helper-validator-identifier': 7.22.20 - to-fast-properties: 2.0.0 - dev: true + '@babel/code-frame': 7.26.2 + '@babel/generator': 7.27.0 + '@babel/parser': 7.27.0 + '@babel/template': 7.27.0 + '@babel/types': 7.27.0 + debug: 4.4.0 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color - /@babel/types@7.25.2: - resolution: {integrity: sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==} - engines: {node: '>=6.9.0'} + '@babel/types@7.26.0': dependencies: - '@babel/helper-string-parser': 7.24.8 - '@babel/helper-validator-identifier': 7.24.7 - to-fast-properties: 2.0.0 - dev: true + '@babel/helper-string-parser': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 - /@colors/colors@1.6.0: - resolution: {integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==} - engines: {node: '>=0.1.90'} - dev: true + '@babel/types@7.27.0': + dependencies: + '@babel/helper-string-parser': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 - /@dabh/diagnostics@2.0.3: - resolution: {integrity: sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==} + '@colors/colors@1.6.0': {} + + '@dabh/diagnostics@2.0.3': dependencies: colorspace: 1.1.4 enabled: 2.0.0 kuler: 2.0.0 - dev: true - /@dependents/detective-less@5.0.0: - resolution: {integrity: sha512-D/9dozteKcutI5OdxJd8rU+fL6XgaaRg60sPPJWkT33OCiRfkCu5wO5B/yXTaaL2e6EB0lcCBGe5E0XscZCvvQ==} - engines: {node: '>=18'} + '@dependents/detective-less@5.0.1': dependencies: gonzales-pe: 4.3.0 - node-source-walk: 7.0.0 - dev: true + node-source-walk: 7.0.1 - /@esbuild/aix-ppc64@0.19.11: - resolution: {integrity: sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [aix] - requiresBuild: true - dev: true + '@esbuild/aix-ppc64@0.25.3': optional: true - /@esbuild/android-arm64@0.18.20: - resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: true + '@esbuild/android-arm64@0.25.3': optional: true - /@esbuild/android-arm64@0.19.11: - resolution: {integrity: sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: true + '@esbuild/android-arm@0.25.3': optional: true - /@esbuild/android-arm@0.18.20: - resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - requiresBuild: true - dev: true + '@esbuild/android-x64@0.25.3': optional: true - /@esbuild/android-arm@0.19.11: - resolution: {integrity: sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - requiresBuild: true - dev: true + '@esbuild/darwin-arm64@0.25.3': optional: true - /@esbuild/android-x64@0.18.20: - resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - dev: true + '@esbuild/darwin-x64@0.25.3': optional: true - /@esbuild/android-x64@0.19.11: - resolution: {integrity: sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - dev: true + '@esbuild/freebsd-arm64@0.25.3': optional: true - /@esbuild/darwin-arm64@0.18.20: - resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true + '@esbuild/freebsd-x64@0.25.3': optional: true - /@esbuild/darwin-arm64@0.19.11: - resolution: {integrity: sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true + '@esbuild/linux-arm64@0.25.3': optional: true - /@esbuild/darwin-x64@0.18.20: - resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true + '@esbuild/linux-arm@0.25.3': optional: true - /@esbuild/darwin-x64@0.19.11: - resolution: {integrity: sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true + '@esbuild/linux-ia32@0.25.3': optional: true - /@esbuild/freebsd-arm64@0.18.20: - resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - dev: true + '@esbuild/linux-loong64@0.25.3': optional: true - /@esbuild/freebsd-arm64@0.19.11: - resolution: {integrity: sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - dev: true + '@esbuild/linux-mips64el@0.25.3': optional: true - /@esbuild/freebsd-x64@0.18.20: - resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: true + '@esbuild/linux-ppc64@0.25.3': optional: true - /@esbuild/freebsd-x64@0.19.11: - resolution: {integrity: sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: true + '@esbuild/linux-riscv64@0.25.3': optional: true - /@esbuild/linux-arm64@0.18.20: - resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + '@esbuild/linux-s390x@0.25.3': optional: true - /@esbuild/linux-arm64@0.19.11: - resolution: {integrity: sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + '@esbuild/linux-x64@0.25.3': optional: true - /@esbuild/linux-arm@0.18.20: - resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true + '@esbuild/netbsd-arm64@0.25.3': optional: true - /@esbuild/linux-arm@0.19.11: - resolution: {integrity: sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true + '@esbuild/netbsd-x64@0.25.3': optional: true - /@esbuild/linux-ia32@0.18.20: - resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - dev: true + '@esbuild/openbsd-arm64@0.25.3': optional: true - /@esbuild/linux-ia32@0.19.11: - resolution: {integrity: sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - dev: true + '@esbuild/openbsd-x64@0.25.3': optional: true - /@esbuild/linux-loong64@0.18.20: - resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true - dev: true + '@esbuild/sunos-x64@0.25.3': optional: true - /@esbuild/linux-loong64@0.19.11: - resolution: {integrity: sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true - dev: true + '@esbuild/win32-arm64@0.25.3': optional: true - /@esbuild/linux-mips64el@0.18.20: - resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - dev: true + '@esbuild/win32-ia32@0.25.3': optional: true - /@esbuild/linux-mips64el@0.19.11: - resolution: {integrity: sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - dev: true + '@esbuild/win32-x64@0.25.3': optional: true - /@esbuild/linux-ppc64@0.18.20: - resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-ppc64@0.19.11: - resolution: {integrity: sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-riscv64@0.18.20: - resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-riscv64@0.19.11: - resolution: {integrity: sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-s390x@0.18.20: - resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-s390x@0.19.11: - resolution: {integrity: sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-x64@0.18.20: - resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-x64@0.19.11: - resolution: {integrity: sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/netbsd-x64@0.18.20: - resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/netbsd-x64@0.19.11: - resolution: {integrity: sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/openbsd-x64@0.18.20: - resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/openbsd-x64@0.19.11: - resolution: {integrity: sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/sunos-x64@0.18.20: - resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - dev: true - optional: true - - /@esbuild/sunos-x64@0.19.11: - resolution: {integrity: sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-arm64@0.18.20: - resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-arm64@0.19.11: - resolution: {integrity: sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-ia32@0.18.20: - resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-ia32@0.19.11: - resolution: {integrity: sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-x64@0.18.20: - resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-x64@0.19.11: - resolution: {integrity: sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@eslint-community/eslint-utils@4.4.0(eslint@8.55.0): - resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + '@eslint-community/eslint-utils@4.4.1(eslint@9.25.1)': dependencies: - eslint: 8.55.0 + eslint: 9.25.1 eslint-visitor-keys: 3.4.3 - dev: true - /@eslint-community/regexpp@4.10.0: - resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - dev: true + '@eslint-community/eslint-utils@4.6.1(eslint@9.25.1)': + dependencies: + eslint: 9.25.1 + eslint-visitor-keys: 3.4.3 - /@eslint/eslintrc@2.1.4: - resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@eslint-community/regexpp@4.12.1': {} + + '@eslint/config-array@0.20.0': + dependencies: + '@eslint/object-schema': 2.1.6 + debug: 4.3.7 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + '@eslint/config-helpers@0.2.1': {} + + '@eslint/core@0.13.0': + dependencies: + '@types/json-schema': 7.0.15 + + '@eslint/eslintrc@3.3.1': dependencies: ajv: 6.12.6 - debug: 4.3.4 - espree: 9.6.1 - globals: 13.23.0 - ignore: 5.3.0 + debug: 4.3.7 + espree: 10.3.0 + globals: 14.0.0 + ignore: 5.3.2 import-fresh: 3.3.0 js-yaml: 4.1.0 minimatch: 3.1.2 strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color - dev: true - /@eslint/js@8.55.0: - resolution: {integrity: sha512-qQfo2mxH5yVom1kacMtZZJFVdW+E70mqHMJvVg6WTLo+VBuQJ4TojZlfWBjK0ve5BdEeNAVxOsl/nvNMpJOaJA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dev: true + '@eslint/js@9.25.1': {} - /@gwhitney/detect-indent@7.0.1: - resolution: {integrity: sha512-7bQW+gkKa2kKZPeJf6+c6gFK9ARxQfn+FKy9ScTBppyKRWH2KzsmweXUoklqeEiHiNVWaeP5csIdsNq6w7QhzA==} - engines: {node: '>=12.20'} - dev: true + '@eslint/object-schema@2.1.6': {} - /@humanwhocodes/config-array@0.11.13: - resolution: {integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==} - engines: {node: '>=10.10.0'} + '@eslint/plugin-kit@0.2.8': dependencies: - '@humanwhocodes/object-schema': 2.0.1 - debug: 4.3.4 - minimatch: 3.1.2 - transitivePeerDependencies: - - supports-color - dev: true + '@eslint/core': 0.13.0 + levn: 0.4.1 - /@humanwhocodes/module-importer@1.0.1: - resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} - engines: {node: '>=12.22'} - dev: true + '@gwhitney/detect-indent@7.0.1': {} - /@humanwhocodes/object-schema@2.0.1: - resolution: {integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==} - dev: true + '@humanfs/core@0.19.1': {} - /@hutson/parse-repository-url@3.0.2: - resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==} - engines: {node: '>=6.9.0'} - dev: true + '@humanfs/node@0.16.6': + dependencies: + '@humanfs/core': 0.19.1 + '@humanwhocodes/retry': 0.3.1 - /@isaacs/cliui@8.0.2: - resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} - engines: {node: '>=12'} + '@humanwhocodes/module-importer@1.0.1': {} + + '@humanwhocodes/retry@0.3.1': {} + + '@humanwhocodes/retry@0.4.2': {} + + '@hutson/parse-repository-url@3.0.2': {} + + '@isaacs/cliui@8.0.2': dependencies: string-width: 5.1.2 - string-width-cjs: /string-width@4.2.3 + string-width-cjs: string-width@4.2.3 strip-ansi: 7.1.0 - strip-ansi-cjs: /strip-ansi@6.0.1 + strip-ansi-cjs: strip-ansi@6.0.1 wrap-ansi: 8.1.0 - wrap-ansi-cjs: /wrap-ansi@7.0.0 - dev: true + wrap-ansi-cjs: wrap-ansi@7.0.0 - /@isaacs/string-locale-compare@1.1.0: - resolution: {integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==} - dev: true + '@isaacs/string-locale-compare@1.1.0': {} - /@jest/schemas@29.6.3: - resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/schemas@29.6.3': dependencies: '@sinclair/typebox': 0.27.8 - dev: true - /@jridgewell/gen-mapping@0.3.3: - resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} - engines: {node: '>=6.0.0'} + '@jridgewell/gen-mapping@0.3.5': dependencies: - '@jridgewell/set-array': 1.1.2 - '@jridgewell/sourcemap-codec': 1.4.15 - '@jridgewell/trace-mapping': 0.3.20 - dev: true + '@jridgewell/set-array': 1.2.1 + '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping': 0.3.25 - /@jridgewell/resolve-uri@3.1.1: - resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} - engines: {node: '>=6.0.0'} - dev: true - - /@jridgewell/set-array@1.1.2: - resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} - engines: {node: '>=6.0.0'} - dev: true - - /@jridgewell/source-map@0.3.5: - resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==} + '@jridgewell/gen-mapping@0.3.8': dependencies: - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.20 - dev: true + '@jridgewell/set-array': 1.2.1 + '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping': 0.3.25 - /@jridgewell/sourcemap-codec@1.4.15: - resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} - dev: true + '@jridgewell/resolve-uri@3.1.2': {} - /@jridgewell/sourcemap-codec@1.5.0: - resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} - requiresBuild: true - dev: true + '@jridgewell/set-array@1.2.1': {} - /@jridgewell/trace-mapping@0.3.20: - resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==} + '@jridgewell/source-map@0.3.5': dependencies: - '@jridgewell/resolve-uri': 3.1.1 - '@jridgewell/sourcemap-codec': 1.4.15 - dev: true + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 - /@lerna/create@8.1.7(typescript@5.5.4): - resolution: {integrity: sha512-ch81CgU5pBNOiUCQx44F/ZtN4DxxJjUQtuytYRBFWJSHAJ+XPJtiC/yQ9zjr1I1yaUlmNYYblkopoOyziOdJ1w==} - engines: {node: '>=18.0.0'} + '@jridgewell/sourcemap-codec@1.5.0': {} + + '@jridgewell/trace-mapping@0.3.25': dependencies: - '@npmcli/arborist': 7.5.3 + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 + + '@lerna/create@8.2.2(typescript@5.8.3)': + dependencies: + '@npmcli/arborist': 7.5.4 '@npmcli/package-json': 5.2.0 '@npmcli/run-script': 8.1.0 '@nx/devkit': 19.1.1(nx@19.1.1) '@octokit/plugin-enterprise-rest': 6.0.1 - '@octokit/rest': 19.0.11 + '@octokit/rest': 20.1.2 aproba: 2.0.0 byte-size: 8.1.1 chalk: 4.1.0 @@ -8306,10 +12826,10 @@ packages: console-control-strings: 1.1.0 conventional-changelog-core: 5.0.1 conventional-recommended-bump: 7.0.1 - cosmiconfig: 8.3.6(typescript@5.5.4) + cosmiconfig: 9.0.0(typescript@5.8.3) dedent: 1.5.3 execa: 5.0.0 - fs-extra: 11.2.0 + fs-extra: 11.3.0 get-stream: 6.0.0 git-url-parse: 14.0.0 glob-parent: 6.0.2 @@ -8348,7 +12868,6 @@ packages: slash: 3.0.0 ssri: 10.0.6 string-width: 4.2.3 - strip-ansi: 6.0.1 strong-log-transformer: 2.1.0 tar: 6.2.1 temp-dir: 1.0.0 @@ -8370,119 +12889,86 @@ packages: - encoding - supports-color - typescript - dev: true - /@ljharb/resumer@0.0.1: - resolution: {integrity: sha512-skQiAOrCfO7vRTq53cxznMpks7wS1va95UCidALlOVWqvBAzwPVErwizDwoMqNVMEn1mDq0utxZd02eIrvF1lw==} - engines: {node: '>= 0.4'} + '@ljharb/resumer@0.1.3': dependencies: - '@ljharb/through': 2.3.11 - dev: true + '@ljharb/through': 2.3.13 + call-bind: 1.0.7 - /@ljharb/through@2.3.11: - resolution: {integrity: sha512-ccfcIDlogiXNq5KcbAwbaO7lMh3Tm1i3khMPYpxlK8hH/W53zN81KM9coerRLOnTGu3nfXIniAmQbRI9OxbC0w==} - engines: {node: '>= 0.4'} + '@ljharb/through@2.3.13': dependencies: - call-bind: 1.0.5 - dev: true + call-bind: 1.0.7 - /@monorepolint/cli@0.5.0-alpha.132: - resolution: {integrity: sha512-6R7qK2SLpKENaby2GKXUUUhhwEnYjIEHfwNB4A6PtTh3qdlNG2DQjFeyZb4N/gU7ehiHQHZIM6AgYdU1VP+XoA==} - engines: {node: '>=18'} - hasBin: true + '@ljharb/through@2.3.14': dependencies: - '@monorepolint/config': 0.5.0-alpha.132 - '@monorepolint/core': 0.5.0-alpha.132 - '@monorepolint/utils': 0.5.0-alpha.132 + call-bind: 1.0.8 + + '@monorepolint/cli@0.5.0': + dependencies: + '@monorepolint/config': 0.5.0 + '@monorepolint/core': 0.5.0 + '@monorepolint/utils': 0.5.0 chalk: 5.3.0 - tslib: 2.6.2 + tslib: 2.8.1 yargs: 17.7.2 - dev: true - /@monorepolint/config@0.5.0-alpha.132: - resolution: {integrity: sha512-pSxzhB2jTEjO3jDDjeopNDhV+cJ7ILHIYNuUeAEJD4+HOLLZZRhkU3yr+ucKTAEmi+RrrBWcUa8TFFRJdHvoWQ==} - engines: {node: '>=18'} + '@monorepolint/config@0.5.0': dependencies: - '@monorepolint/utils': 0.5.0-alpha.132 + '@monorepolint/utils': 0.5.0 chalk: 5.3.0 - tslib: 2.6.2 - dev: true + tslib: 2.8.1 - /@monorepolint/core@0.5.0-alpha.132: - resolution: {integrity: sha512-ZjTTTU/xEz3cLyY3MSPffYKfs2/WSpHpOqgANGAxXRHSre/Xzp7dORlZYbVfwqLERO0St1t/Hxl6l45/BvOEYg==} - engines: {node: '>=18'} + '@monorepolint/core@0.5.0': dependencies: - '@monorepolint/config': 0.5.0-alpha.132 - '@monorepolint/utils': 0.5.0-alpha.132 + '@monorepolint/config': 0.5.0 + '@monorepolint/utils': 0.5.0 chalk: 5.3.0 - tslib: 2.6.2 - dev: true + tslib: 2.8.1 - /@monorepolint/rules@0.5.0-alpha.132: - resolution: {integrity: sha512-HxsQUYTeQBKcTQ0WNgASXfwBYGnfht356nxApfCVG26k0iaFgkLb6VN7uxV56y/cS5eNMiGKRIQY1RLhoLn9Hg==} - engines: {node: '>=18'} + '@monorepolint/rules@0.5.0': dependencies: - '@monorepolint/config': 0.5.0-alpha.132 - '@monorepolint/core': 0.5.0-alpha.132 - '@monorepolint/utils': 0.5.0-alpha.132 - globby: 14.0.0 + '@monorepolint/config': 0.5.0 + '@monorepolint/core': 0.5.0 + '@monorepolint/utils': 0.5.0 + globby: 14.0.2 jest-diff: 29.7.0 resolve-package-path: 4.0.3 runtypes: 6.7.0 - semver: 7.5.4 - tslib: 2.6.2 - dev: true + semver: 7.6.3 + tslib: 2.8.1 - /@monorepolint/utils@0.5.0-alpha.132: - resolution: {integrity: sha512-zLtWpQPFwIfjBZbhkHvyPCREEM8wo+Vr7iUhG2se8JECju/MlodRAhaOllUFlQ5la0gtEfYGqFKpIinYeYq6Cw==} - engines: {node: '>=18'} + '@monorepolint/utils@0.5.0': dependencies: find-packages: 10.0.4 find-up: 7.0.0 - glob: 10.3.10 - micromatch: 4.0.5 + glob: 10.4.5 + micromatch: 4.0.8 read-yaml-file: 2.1.0 - tslib: 2.6.2 - dev: true + tslib: 2.8.1 - /@nodelib/fs.scandir@2.1.5: - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} + '@nodelib/fs.scandir@2.1.5': dependencies: '@nodelib/fs.stat': 2.0.5 run-parallel: 1.2.0 - dev: true - /@nodelib/fs.stat@2.0.5: - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} - dev: true + '@nodelib/fs.stat@2.0.5': {} - /@nodelib/fs.walk@1.2.8: - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} + '@nodelib/fs.walk@1.2.8': dependencies: '@nodelib/fs.scandir': 2.1.5 fastq: 1.15.0 - dev: true - /@npmcli/agent@2.2.2: - resolution: {integrity: sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og==} - engines: {node: ^16.14.0 || >=18.0.0} + '@npmcli/agent@2.2.2': dependencies: agent-base: 7.1.1 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.4 - lru-cache: 10.1.0 + lru-cache: 10.4.3 socks-proxy-agent: 8.0.3 transitivePeerDependencies: - supports-color - dev: true - /@npmcli/arborist@7.5.3: - resolution: {integrity: sha512-7gbMdDNSYUzi0j2mpb6FoXRg3BxXWplMQZH1MZlvNjSdWFObaUz2Ssvo0Nlh2xmWks1OPo+gpsE6qxpT/5M7lQ==} - engines: {node: ^16.14.0 || >=18.0.0} - hasBin: true + '@npmcli/arborist@7.5.4': dependencies: '@isaacs/string-locale-compare': 1.1.0 '@npmcli/fs': 3.1.1 @@ -8496,24 +12982,24 @@ packages: '@npmcli/redact': 2.0.1 '@npmcli/run-script': 8.1.0 bin-links: 4.0.4 - cacache: 18.0.3 + cacache: 18.0.4 common-ancestor-path: 1.0.1 hosted-git-info: 7.0.2 json-parse-even-better-errors: 3.0.2 json-stringify-nice: 1.1.4 lru-cache: 10.4.3 - minimatch: 9.0.4 + minimatch: 9.0.5 nopt: 7.2.1 npm-install-checks: 6.3.0 npm-package-arg: 11.0.2 - npm-pick-manifest: 9.0.1 + npm-pick-manifest: 9.1.0 npm-registry-fetch: 17.1.0 pacote: 18.0.6 parse-conflict-json: 3.0.1 proc-log: 4.2.0 proggy: 2.0.0 promise-all-reject-late: 1.0.1 - promise-call-limit: 3.0.1 + promise-call-limit: 3.0.2 read-package-json-fast: 3.0.2 semver: 7.6.3 ssri: 10.0.6 @@ -8522,29 +13008,16 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /@npmcli/fs@3.1.0: - resolution: {integrity: sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + '@npmcli/fs@3.1.1': dependencies: semver: 7.6.3 - dev: true - /@npmcli/fs@3.1.1: - resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - semver: 7.6.3 - dev: true - - /@npmcli/git@5.0.7: - resolution: {integrity: sha512-WaOVvto604d5IpdCRV2KjQu8PzkfE96d50CQGKgywXh2GxXmDeUO5EWcBC4V57uFyrNqx83+MewuJh3WTR3xPA==} - engines: {node: ^16.14.0 || >=18.0.0} + '@npmcli/git@5.0.7': dependencies: '@npmcli/promise-spawn': 7.0.2 - lru-cache: 10.1.0 - npm-pick-manifest: 9.0.1 + lru-cache: 10.4.3 + npm-pick-manifest: 9.1.0 proc-log: 4.2.0 promise-inflight: 1.0.1 promise-retry: 2.0.1 @@ -8552,41 +13025,22 @@ packages: which: 4.0.0 transitivePeerDependencies: - bluebird - dev: true - /@npmcli/installed-package-contents@2.0.2: - resolution: {integrity: sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - hasBin: true + '@npmcli/installed-package-contents@2.1.0': dependencies: - npm-bundled: 3.0.0 + npm-bundled: 3.0.1 npm-normalize-package-bin: 3.0.1 - dev: true - /@npmcli/installed-package-contents@2.1.0: - resolution: {integrity: sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - hasBin: true - dependencies: - npm-bundled: 3.0.0 - npm-normalize-package-bin: 3.0.1 - dev: true - - /@npmcli/map-workspaces@3.0.6: - resolution: {integrity: sha512-tkYs0OYnzQm6iIRdfy+LcLBjcKuQCeE5YLb8KnrIlutJfheNaPvPpgoFEyEFgbjzl5PLZ3IA/BWAwRU0eHuQDA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + '@npmcli/map-workspaces@3.0.6': dependencies: '@npmcli/name-from-folder': 2.0.0 - glob: 10.3.10 - minimatch: 9.0.4 + glob: 10.4.5 + minimatch: 9.0.5 read-package-json-fast: 3.0.2 - dev: true - /@npmcli/metavuln-calculator@7.1.1: - resolution: {integrity: sha512-Nkxf96V0lAx3HCpVda7Vw4P23RILgdi/5K1fmj2tZkWIYLpXAN8k2UVVOsW16TsS5F8Ws2I7Cm+PU1/rsVF47g==} - engines: {node: ^16.14.0 || >=18.0.0} + '@npmcli/metavuln-calculator@7.1.1': dependencies: - cacache: 18.0.3 + cacache: 18.0.4 json-parse-even-better-errors: 3.0.2 pacote: 18.0.6 proc-log: 4.2.0 @@ -8594,55 +13048,34 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /@npmcli/name-from-folder@2.0.0: - resolution: {integrity: sha512-pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + '@npmcli/name-from-folder@2.0.0': {} - /@npmcli/node-gyp@3.0.0: - resolution: {integrity: sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + '@npmcli/node-gyp@3.0.0': {} - /@npmcli/package-json@5.2.0: - resolution: {integrity: sha512-qe/kiqqkW0AGtvBjL8TJKZk/eBBSpnJkUWvHdQ9jM2lKHXRYYJuyNpJPlJw3c8QjC2ow6NZYiLExhUaeJelbxQ==} - engines: {node: ^16.14.0 || >=18.0.0} + '@npmcli/package-json@5.2.0': dependencies: '@npmcli/git': 5.0.7 - glob: 10.3.10 + glob: 10.4.5 hosted-git-info: 7.0.2 - json-parse-even-better-errors: 3.0.1 + json-parse-even-better-errors: 3.0.2 normalize-package-data: 6.0.1 proc-log: 4.2.0 semver: 7.6.3 transitivePeerDependencies: - bluebird - dev: true - /@npmcli/promise-spawn@7.0.2: - resolution: {integrity: sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==} - engines: {node: ^16.14.0 || >=18.0.0} + '@npmcli/promise-spawn@7.0.2': dependencies: which: 4.0.0 - dev: true - /@npmcli/query@3.1.0: - resolution: {integrity: sha512-C/iR0tk7KSKGldibYIB9x8GtO/0Bd0I2mhOaDb8ucQL/bQVTmGoeREaFj64Z5+iCBRf3dQfed0CjJL7I8iTkiQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + '@npmcli/query@3.1.0': dependencies: - postcss-selector-parser: 6.1.1 - dev: true + postcss-selector-parser: 6.1.2 - /@npmcli/redact@2.0.1: - resolution: {integrity: sha512-YgsR5jCQZhVmTJvjduTOIHph0L73pK8xwMVaDY0PatySqVM9AZj93jpoXYSJqfHFxFkN9dmqTw6OiqExsS3LPw==} - engines: {node: ^16.14.0 || >=18.0.0} - dev: true + '@npmcli/redact@2.0.1': {} - /@npmcli/run-script@8.1.0: - resolution: {integrity: sha512-y7efHHwghQfk28G2z3tlZ67pLG0XdfYbcVG26r7YIXALRsrVQcTq4/tdenSmdOrEsNahIYA/eh8aEVROWGFUDg==} - engines: {node: ^16.14.0 || >=18.0.0} + '@npmcli/run-script@8.1.0': dependencies: '@npmcli/node-gyp': 3.0.0 '@npmcli/package-json': 5.2.0 @@ -8653,309 +13086,148 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /@nrwl/devkit@19.1.1(nx@19.1.1): - resolution: {integrity: sha512-CrbEy4zBRPPV8gGtwpSgfxJUElXRxEGvvxQlrhoCKmzH7v9407jFjXpzYOipwa9u65a7raCCtsSKYuRdecRglQ==} + '@nrwl/devkit@19.1.1(nx@19.1.1)': dependencies: '@nx/devkit': 19.1.1(nx@19.1.1) transitivePeerDependencies: - nx - dev: true - /@nrwl/tao@19.1.1: - resolution: {integrity: sha512-03iaf+rnOEf5HHLsiSA7QIk63mBtcU4vkqkggoYLxJpMthx5nD4Z12nk+G/Z5RKWYUG4k3j6G7CFiIQRYOy7TA==} - hasBin: true + '@nrwl/tao@19.1.1': dependencies: nx: 19.1.1 - tslib: 2.6.2 + tslib: 2.8.1 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug - dev: true - /@nx/devkit@19.1.1(nx@19.1.1): - resolution: {integrity: sha512-YMt5vFaNMeIKgBwQ3RIFQG7AoYOksd8vNxwunirN95q/70HMIoJQsnRCMT45jVd9D/GIWASgY8QsGTMJfcO0qQ==} - peerDependencies: - nx: '>= 17 <= 20' + '@nx/devkit@19.1.1(nx@19.1.1)': dependencies: '@nrwl/devkit': 19.1.1(nx@19.1.1) ejs: 3.1.10 enquirer: 2.3.6 - ignore: 5.3.0 + ignore: 5.3.2 minimatch: 9.0.3 nx: 19.1.1 semver: 7.6.3 tmp: 0.2.1 - tslib: 2.6.2 + tslib: 2.8.1 yargs-parser: 21.1.1 - dev: true - /@nx/nx-darwin-arm64@19.1.1: - resolution: {integrity: sha512-5CcgmNhUg5N62zCuzNZfRRPvaLRZNhLk0OkpMa085atEshM8RUAMbN80ffINaBssYtKu6znJ9LhUK+q7C3KiFQ==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true + '@nx/nx-darwin-arm64@19.1.1': optional: true - /@nx/nx-darwin-x64@19.1.1: - resolution: {integrity: sha512-vDM9vZow3YLA3+7GKTqhtguNcbQPifMTbqm8Aevd/suqCChQsLyD1Hh1Z+o03RNolNTRacNb6GPvoKFY4BJ2tA==} - engines: {node: '>= 10'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true + '@nx/nx-darwin-x64@19.1.1': optional: true - /@nx/nx-freebsd-x64@19.1.1: - resolution: {integrity: sha512-FfOBrc1vndWYXSZVgbB9nWRp8/jo7f9b3g3ZfqaVwsGpcYcwz7dxiPV7HQKysTR0WNVv1aTi2Dg1CF+F94qlPw==} - engines: {node: '>= 10'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: true + '@nx/nx-freebsd-x64@19.1.1': optional: true - /@nx/nx-linux-arm-gnueabihf@19.1.1: - resolution: {integrity: sha512-Bb94MmoOsPnTI4n1mrILSwGmx9I50LEkEOgksoiOEYdykWKjbz6z4ZnFCJHTeF0bca1OmF5iCjFWU42KlLUsRQ==} - engines: {node: '>= 10'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true + '@nx/nx-linux-arm-gnueabihf@19.1.1': optional: true - /@nx/nx-linux-arm64-gnu@19.1.1: - resolution: {integrity: sha512-mqiRi95LOUTWldtif3f2aJOFLxg/2jnM1UYj85vUlaLZJmQK64OhQslCAAZCmEWkHAYqEooHaYqj30YmDb92jw==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + '@nx/nx-linux-arm64-gnu@19.1.1': optional: true - /@nx/nx-linux-arm64-musl@19.1.1: - resolution: {integrity: sha512-lhyVsuT19Ez4ynhen6dT+Zdq2cABXcphYSkVSASvZGvka/65AS+0D1hX0TFDPJvbTdsHwVszJQZzIqGmYUkhLA==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + '@nx/nx-linux-arm64-musl@19.1.1': optional: true - /@nx/nx-linux-x64-gnu@19.1.1: - resolution: {integrity: sha512-zUQhMwz/gQ0up1iymwTqXbyLJca87HXOP+uAD5wfgarh0yhPDwcGaVsV8O8t2z8W/dH/yYmuppe3gAwsvd5SSg==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true + '@nx/nx-linux-x64-gnu@19.1.1': optional: true - /@nx/nx-linux-x64-musl@19.1.1: - resolution: {integrity: sha512-3Gc2iwMbFAp50OlIqfgryTtZno/FqPW+AOP1Pijo/jJOZ8DHP3A7Zy8QoJYUgTQxCffzVbhshXW6yy403pV3OQ==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true + '@nx/nx-linux-x64-musl@19.1.1': optional: true - /@nx/nx-win32-arm64-msvc@19.1.1: - resolution: {integrity: sha512-91LJG0triTdZDHnT9l1N1YuIwhmR7iCbKsEv345OdPhHJeQ6GAuJCD0SqDk6aZ13xr7LoRlS8c6bnfctXeslQQ==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true + '@nx/nx-win32-arm64-msvc@19.1.1': optional: true - /@nx/nx-win32-x64-msvc@19.1.1: - resolution: {integrity: sha512-rEWRqcW1osCeaZ9KPfZWARIdOHGd0WXRW6iqqRvZZEAIbGlZP/89Sj2o9Fvs5oHpng7kfrqsDbpbikmmlX7HTQ==} - engines: {node: '>= 10'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true + '@nx/nx-win32-x64-msvc@19.1.1': optional: true - /@octokit/auth-token@3.0.4: - resolution: {integrity: sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==} - engines: {node: '>= 14'} - dev: true + '@octokit/auth-token@4.0.0': {} - /@octokit/core@4.2.4: - resolution: {integrity: sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==} - engines: {node: '>= 14'} + '@octokit/core@5.2.1': dependencies: - '@octokit/auth-token': 3.0.4 - '@octokit/graphql': 5.0.6 - '@octokit/request': 6.2.8 - '@octokit/request-error': 3.0.3 - '@octokit/types': 9.3.2 + '@octokit/auth-token': 4.0.0 + '@octokit/graphql': 7.1.1 + '@octokit/request': 8.4.1 + '@octokit/request-error': 5.1.1 + '@octokit/types': 13.10.0 before-after-hook: 2.2.3 universal-user-agent: 6.0.1 - transitivePeerDependencies: - - encoding - dev: true - /@octokit/endpoint@7.0.6: - resolution: {integrity: sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==} - engines: {node: '>= 14'} + '@octokit/endpoint@9.0.6': dependencies: - '@octokit/types': 9.3.2 - is-plain-object: 5.0.0 + '@octokit/types': 13.10.0 universal-user-agent: 6.0.1 - dev: true - /@octokit/graphql@5.0.6: - resolution: {integrity: sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==} - engines: {node: '>= 14'} + '@octokit/graphql@7.1.1': dependencies: - '@octokit/request': 6.2.8 - '@octokit/types': 9.3.2 + '@octokit/request': 8.4.1 + '@octokit/types': 13.10.0 universal-user-agent: 6.0.1 - transitivePeerDependencies: - - encoding - dev: true - /@octokit/openapi-types@18.1.1: - resolution: {integrity: sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==} - dev: true + '@octokit/openapi-types@24.2.0': {} - /@octokit/plugin-enterprise-rest@6.0.1: - resolution: {integrity: sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==} - dev: true + '@octokit/plugin-enterprise-rest@6.0.1': {} - /@octokit/plugin-paginate-rest@6.1.2(@octokit/core@4.2.4): - resolution: {integrity: sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==} - engines: {node: '>= 14'} - peerDependencies: - '@octokit/core': '>=4' + '@octokit/plugin-paginate-rest@11.4.4-cjs.2(@octokit/core@5.2.1)': dependencies: - '@octokit/core': 4.2.4 - '@octokit/tsconfig': 1.0.2 - '@octokit/types': 9.3.2 - dev: true + '@octokit/core': 5.2.1 + '@octokit/types': 13.10.0 - /@octokit/plugin-request-log@1.0.4(@octokit/core@4.2.4): - resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==} - peerDependencies: - '@octokit/core': '>=3' + '@octokit/plugin-request-log@4.0.1(@octokit/core@5.2.1)': dependencies: - '@octokit/core': 4.2.4 - dev: true + '@octokit/core': 5.2.1 - /@octokit/plugin-rest-endpoint-methods@7.2.3(@octokit/core@4.2.4): - resolution: {integrity: sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==} - engines: {node: '>= 14'} - peerDependencies: - '@octokit/core': '>=3' + '@octokit/plugin-rest-endpoint-methods@13.3.2-cjs.1(@octokit/core@5.2.1)': dependencies: - '@octokit/core': 4.2.4 - '@octokit/types': 10.0.0 - dev: true + '@octokit/core': 5.2.1 + '@octokit/types': 13.10.0 - /@octokit/request-error@3.0.3: - resolution: {integrity: sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==} - engines: {node: '>= 14'} + '@octokit/request-error@5.1.1': dependencies: - '@octokit/types': 9.3.2 + '@octokit/types': 13.10.0 deprecation: 2.3.1 once: 1.4.0 - dev: true - /@octokit/request@6.2.8: - resolution: {integrity: sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==} - engines: {node: '>= 14'} + '@octokit/request@8.4.1': dependencies: - '@octokit/endpoint': 7.0.6 - '@octokit/request-error': 3.0.3 - '@octokit/types': 9.3.2 - is-plain-object: 5.0.0 - node-fetch: 2.6.7 + '@octokit/endpoint': 9.0.6 + '@octokit/request-error': 5.1.1 + '@octokit/types': 13.10.0 universal-user-agent: 6.0.1 - transitivePeerDependencies: - - encoding - dev: true - /@octokit/rest@19.0.11: - resolution: {integrity: sha512-m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw==} - engines: {node: '>= 14'} + '@octokit/rest@20.1.2': dependencies: - '@octokit/core': 4.2.4 - '@octokit/plugin-paginate-rest': 6.1.2(@octokit/core@4.2.4) - '@octokit/plugin-request-log': 1.0.4(@octokit/core@4.2.4) - '@octokit/plugin-rest-endpoint-methods': 7.2.3(@octokit/core@4.2.4) - transitivePeerDependencies: - - encoding - dev: true + '@octokit/core': 5.2.1 + '@octokit/plugin-paginate-rest': 11.4.4-cjs.2(@octokit/core@5.2.1) + '@octokit/plugin-request-log': 4.0.1(@octokit/core@5.2.1) + '@octokit/plugin-rest-endpoint-methods': 13.3.2-cjs.1(@octokit/core@5.2.1) - /@octokit/tsconfig@1.0.2: - resolution: {integrity: sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==} - dev: true - - /@octokit/types@10.0.0: - resolution: {integrity: sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==} + '@octokit/types@13.10.0': dependencies: - '@octokit/openapi-types': 18.1.1 - dev: true + '@octokit/openapi-types': 24.2.0 - /@octokit/types@9.3.2: - resolution: {integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==} - dependencies: - '@octokit/openapi-types': 18.1.1 - dev: true - - /@pkgjs/parseargs@0.11.0: - resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} - engines: {node: '>=14'} - requiresBuild: true - dev: true + '@pkgjs/parseargs@0.11.0': optional: true - /@pkgr/utils@2.4.2: - resolution: {integrity: sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==} - engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} - dependencies: - cross-spawn: 7.0.3 - fast-glob: 3.3.2 - is-glob: 4.0.3 - open: 9.1.0 - picocolors: 1.0.0 - tslib: 2.6.2 - dev: true + '@pkgr/core@0.2.4': {} - /@placemarkio/check-geojson@0.1.12: - resolution: {integrity: sha512-sSNPtPDVB0oKwImi4NYg1LVE2QSCIqs/jIRmu8U4fQVWdRjlGy+C/n7AbNO2FycE9rVWtz256f33aMGzvKC7gg==} - engines: {node: '>=10'} - dev: true + '@placemarkio/check-geojson@0.1.12': {} - /@pnpm/constants@6.1.0: - resolution: {integrity: sha512-L6AiU3OXv9kjKGTJN9j8n1TeJGDcLX9atQlZvAkthlvbXjvKc5SKNWESc/eXhr5nEfuMWhQhiKHDJCpYejmeCQ==} - engines: {node: '>=14.19'} - dev: true + '@pnpm/constants@6.1.0': {} - /@pnpm/error@4.0.0: - resolution: {integrity: sha512-NI4DFCMF6xb1SA0bZiiV5KrMCaJM2QmPJFC6p78FXujn7FpiRSWhT9r032wpuQumsl7DEmN4s3wl/P8TA+bL8w==} - engines: {node: '>=14.6'} + '@pnpm/error@4.0.0': dependencies: '@pnpm/constants': 6.1.0 - dev: true - /@pnpm/graceful-fs@2.0.0: - resolution: {integrity: sha512-ogUZCGf0/UILZt6d8PsO4gA4pXh7f0BumXeFkcCe4AQ65PXPKfAkHC0C30Lheh2EgFOpLZm3twDP1Eiww18gew==} - engines: {node: '>=14.19'} + '@pnpm/graceful-fs@2.0.0': dependencies: graceful-fs: 4.2.11 - dev: true - /@pnpm/read-project-manifest@4.1.1: - resolution: {integrity: sha512-jGNoofG8kkUlgAMX8fqbUwRRXYf4WcWdvi/y1Sv1abUfcoVgXW6GdGVm0MIJ+enaong3hXHjaLl/AwmSj6O1Uw==} - engines: {node: '>=14.6'} + '@pnpm/read-project-manifest@4.1.1': dependencies: '@gwhitney/detect-indent': 7.0.1 '@pnpm/error': 4.0.0 @@ -8970,260 +13242,149 @@ packages: read-yaml-file: 2.1.0 sort-keys: 4.2.0 strip-bom: 4.0.0 - dev: true - /@pnpm/text.comments-parser@1.0.0: - resolution: {integrity: sha512-iG0qrFcObze3uK+HligvzaTocZKukqqIj1dC3NOH58NeMACUW1NUitSKBgeWuNIE4LJT3SPxnyLEBARMMcqVKA==} - engines: {node: '>=14.6'} + '@pnpm/text.comments-parser@1.0.0': dependencies: strip-comments-strings: 1.2.0 - dev: true - /@pnpm/types@8.9.0: - resolution: {integrity: sha512-3MYHYm8epnciApn6w5Fzx6sepawmsNU7l6lvIq+ER22/DPSrr83YMhU/EQWnf4lORn2YyiXFj0FJSyJzEtIGmw==} - engines: {node: '>=14.6'} - dev: true + '@pnpm/types@8.9.0': {} - /@pnpm/util.lex-comparator@1.0.0: - resolution: {integrity: sha512-3aBQPHntVgk5AweBWZn+1I/fqZ9krK/w01197aYVkAJQGftb+BVWgEepxY5GChjSW12j52XX+CmfynYZ/p0DFQ==} - engines: {node: '>=12.22.0'} - dev: true + '@pnpm/util.lex-comparator@1.0.0': {} - /@pnpm/write-project-manifest@4.1.1: - resolution: {integrity: sha512-nRqvPYO8xUVdgy/KhJuaCrWlVT/4uZr97Mpbuizsa6CmvtCQf3NuYnVvOOrpYiKUJcZYtEvm84OooJ8+lJytMQ==} - engines: {node: '>=14.6'} + '@pnpm/write-project-manifest@4.1.1': dependencies: '@pnpm/text.comments-parser': 1.0.0 '@pnpm/types': 8.9.0 json5: 2.2.3 write-file-atomic: 5.0.1 write-yaml-file: 4.2.0 - dev: true - /@rollup/plugin-babel@6.0.4(@babel/core@7.23.5)(rollup@2.79.1): - resolution: {integrity: sha512-YF7Y52kFdFT/xVSuVdjkV5ZdX/3YtmX0QulG+x0taQOtJdHYzVU61aSSkAgVJ7NOv6qPkIYiJSgSWWN/DM5sGw==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@types/babel__core': ^7.1.9 - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - '@types/babel__core': - optional: true - rollup: - optional: true + '@rollup/plugin-babel@6.0.4(@babel/core@7.26.10)(rollup@4.40.1)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-module-imports': 7.22.15 - '@rollup/pluginutils': 5.1.0(rollup@2.79.1) - rollup: 2.79.1 - dev: true + '@babel/core': 7.26.10 + '@babel/helper-module-imports': 7.25.9 + '@rollup/pluginutils': 5.1.3(rollup@4.40.1) + rollup: 4.40.1 + transitivePeerDependencies: + - supports-color - /@rollup/plugin-commonjs@25.0.7(rollup@2.79.1): - resolution: {integrity: sha512-nEvcR+LRjEjsaSsc4x3XZfCCvZIaSMenZu/OiwOKGN2UhQpAYI7ru7czFvyWbErlpoGjnSX3D5Ch5FcMA3kRWQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.68.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/plugin-commonjs@28.0.3(rollup@4.40.1)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@2.79.1) + '@rollup/pluginutils': 5.1.4(rollup@4.40.1) commondir: 1.0.1 estree-walker: 2.0.2 - glob: 8.1.0 + fdir: 6.4.4(picomatch@4.0.2) is-reference: 1.2.1 - magic-string: 0.30.5 - rollup: 2.79.1 - dev: true + magic-string: 0.30.17 + picomatch: 4.0.2 + rollup: 4.40.1 - /@rollup/plugin-inject@5.0.5(rollup@2.79.1): - resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/plugin-inject@5.0.5(rollup@4.40.1)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@2.79.1) + '@rollup/pluginutils': 5.1.3(rollup@4.40.1) estree-walker: 2.0.2 - magic-string: 0.30.5 - rollup: 2.79.1 - dev: true + magic-string: 0.30.14 + rollup: 4.40.1 - /@rollup/plugin-node-resolve@15.2.3(rollup@2.79.1): - resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.78.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/plugin-node-resolve@16.0.1(rollup@4.40.1)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@2.79.1) + '@rollup/pluginutils': 5.1.4(rollup@4.40.1) '@types/resolve': 1.20.2 deepmerge: 4.3.1 - is-builtin-module: 3.2.1 is-module: 1.0.0 - resolve: 1.22.8 - rollup: 2.79.1 - dev: true + resolve: 1.22.10 + rollup: 4.40.1 - /@rollup/plugin-terser@0.4.4(rollup@2.79.1): - resolution: {integrity: sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/plugin-terser@0.4.4(rollup@4.40.1)': dependencies: - rollup: 2.79.1 + rollup: 4.40.1 serialize-javascript: 6.0.1 smob: 1.4.1 terser: 5.26.0 - dev: true - /@rollup/pluginutils@5.1.0(rollup@2.79.1): - resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/pluginutils@5.1.3(rollup@4.40.1)': dependencies: - '@types/estree': 1.0.5 + '@types/estree': 1.0.6 estree-walker: 2.0.2 - picomatch: 2.3.1 - rollup: 2.79.1 - dev: true + picomatch: 4.0.2 + rollup: 4.40.1 - /@rollup/rollup-android-arm-eabi@4.9.0: - resolution: {integrity: sha512-+1ge/xmaJpm1KVBuIH38Z94zj9fBD+hp+/5WLaHgyY8XLq1ibxk/zj6dTXaqM2cAbYKq8jYlhHd6k05If1W5xA==} - cpu: [arm] - os: [android] - requiresBuild: true - dev: true + '@rollup/pluginutils@5.1.4(rollup@4.40.1)': + dependencies: + '@types/estree': 1.0.7 + estree-walker: 2.0.2 + picomatch: 4.0.2 + rollup: 4.40.1 + + '@rollup/rollup-android-arm-eabi@4.40.1': optional: true - /@rollup/rollup-android-arm64@4.9.0: - resolution: {integrity: sha512-im6hUEyQ7ZfoZdNvtwgEJvBWZYauC9KVKq1w58LG2Zfz6zMd8gRrbN+xCVoqA2hv/v6fm9lp5LFGJ3za8EQH3A==} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: true + '@rollup/rollup-android-arm64@4.40.1': optional: true - /@rollup/rollup-darwin-arm64@4.9.0: - resolution: {integrity: sha512-u7aTMskN6Dmg1lCT0QJ+tINRt+ntUrvVkhbPfFz4bCwRZvjItx2nJtwJnJRlKMMaQCHRjrNqHRDYvE4mBm3DlQ==} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true + '@rollup/rollup-darwin-arm64@4.40.1': optional: true - /@rollup/rollup-darwin-x64@4.9.0: - resolution: {integrity: sha512-8FvEl3w2ExmpcOmX5RJD0yqXcVSOqAJJUJ29Lca29Ik+3zPS1yFimr2fr5JSZ4Z5gt8/d7WqycpgkX9nocijSw==} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true + '@rollup/rollup-darwin-x64@4.40.1': optional: true - /@rollup/rollup-linux-arm-gnueabihf@4.9.0: - resolution: {integrity: sha512-lHoKYaRwd4gge+IpqJHCY+8Vc3hhdJfU6ukFnnrJasEBUvVlydP8PuwndbWfGkdgSvZhHfSEw6urrlBj0TSSfg==} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-freebsd-arm64@4.40.1': optional: true - /@rollup/rollup-linux-arm64-gnu@4.9.0: - resolution: {integrity: sha512-JbEPfhndYeWHfOSeh4DOFvNXrj7ls9S/2omijVsao+LBPTPayT1uKcK3dHW3MwDJ7KO11t9m2cVTqXnTKpeaiw==} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-freebsd-x64@4.40.1': optional: true - /@rollup/rollup-linux-arm64-musl@4.9.0: - resolution: {integrity: sha512-ahqcSXLlcV2XUBM3/f/C6cRoh7NxYA/W7Yzuv4bDU1YscTFw7ay4LmD7l6OS8EMhTNvcrWGkEettL1Bhjf+B+w==} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-arm-gnueabihf@4.40.1': optional: true - /@rollup/rollup-linux-riscv64-gnu@4.9.0: - resolution: {integrity: sha512-uwvOYNtLw8gVtrExKhdFsYHA/kotURUmZYlinH2VcQxNCQJeJXnkmWgw2hI9Xgzhgu7J9QvWiq9TtTVwWMDa+w==} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-arm-musleabihf@4.40.1': optional: true - /@rollup/rollup-linux-x64-gnu@4.9.0: - resolution: {integrity: sha512-m6pkSwcZZD2LCFHZX/zW2aLIISyzWLU3hrLLzQKMI12+OLEzgruTovAxY5sCZJkipklaZqPy/2bEEBNjp+Y7xg==} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-arm64-gnu@4.40.1': optional: true - /@rollup/rollup-linux-x64-musl@4.9.0: - resolution: {integrity: sha512-VFAC1RDRSbU3iOF98X42KaVicAfKf0m0OvIu8dbnqhTe26Kh6Ym9JrDulz7Hbk7/9zGc41JkV02g+p3BivOdAg==} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-arm64-musl@4.40.1': optional: true - /@rollup/rollup-win32-arm64-msvc@4.9.0: - resolution: {integrity: sha512-9jPgMvTKXARz4inw6jezMLA2ihDBvgIU9Ml01hjdVpOcMKyxFBJrn83KVQINnbeqDv0+HdO1c09hgZ8N0s820Q==} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true + '@rollup/rollup-linux-loongarch64-gnu@4.40.1': optional: true - /@rollup/rollup-win32-ia32-msvc@4.9.0: - resolution: {integrity: sha512-WE4pT2kTXQN2bAv40Uog0AsV7/s9nT9HBWXAou8+++MBCnY51QS02KYtm6dQxxosKi1VIz/wZIrTQO5UP2EW+Q==} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true + '@rollup/rollup-linux-powerpc64le-gnu@4.40.1': optional: true - /@rollup/rollup-win32-x64-msvc@4.9.0: - resolution: {integrity: sha512-aPP5Q5AqNGuT0tnuEkK/g4mnt3ZhheiXrDIiSVIHN9mcN21OyXDVbEMqmXPE7e2OplNLDkcvV+ZoGJa2ZImFgw==} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true + '@rollup/rollup-linux-riscv64-gnu@4.40.1': optional: true - /@sigstore/bundle@2.3.2: - resolution: {integrity: sha512-wueKWDk70QixNLB363yHc2D2ItTgYiMTdPwK8D9dKQMR3ZQ0c35IxP5xnwQ8cNLoCgCRcHf14kE+CLIvNX1zmA==} - engines: {node: ^16.14.0 || >=18.0.0} + '@rollup/rollup-linux-riscv64-musl@4.40.1': + optional: true + + '@rollup/rollup-linux-s390x-gnu@4.40.1': + optional: true + + '@rollup/rollup-linux-x64-gnu@4.40.1': + optional: true + + '@rollup/rollup-linux-x64-musl@4.40.1': + optional: true + + '@rollup/rollup-win32-arm64-msvc@4.40.1': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.40.1': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.40.1': + optional: true + + '@sigstore/bundle@2.3.2': dependencies: '@sigstore/protobuf-specs': 0.3.2 - dev: true - /@sigstore/core@1.1.0: - resolution: {integrity: sha512-JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg==} - engines: {node: ^16.14.0 || >=18.0.0} - dev: true + '@sigstore/core@1.1.0': {} - /@sigstore/protobuf-specs@0.3.2: - resolution: {integrity: sha512-c6B0ehIWxMI8wiS/bj6rHMPqeFvngFV7cDU/MY+B16P9Z3Mp9k8L93eYZ7BYzSickzuqAQqAq0V956b3Ju6mLw==} - engines: {node: ^16.14.0 || >=18.0.0} - dev: true + '@sigstore/protobuf-specs@0.3.2': {} - /@sigstore/sign@2.3.2: - resolution: {integrity: sha512-5Vz5dPVuunIIvC5vBb0APwo7qKA4G9yM48kPWJT+OEERs40md5GoUR1yedwpekWZ4m0Hhw44m6zU+ObsON+iDA==} - engines: {node: ^16.14.0 || >=18.0.0} + '@sigstore/sign@2.3.2': dependencies: '@sigstore/bundle': 2.3.2 '@sigstore/core': 1.1.0 @@ -9233,851 +13394,468 @@ packages: promise-retry: 2.0.1 transitivePeerDependencies: - supports-color - dev: true - /@sigstore/tuf@2.3.4: - resolution: {integrity: sha512-44vtsveTPUpqhm9NCrbU8CWLe3Vck2HO1PNLw7RIajbB7xhtn5RBPm1VNSCMwqGYHhDsBJG8gDF0q4lgydsJvw==} - engines: {node: ^16.14.0 || >=18.0.0} + '@sigstore/tuf@2.3.4': dependencies: '@sigstore/protobuf-specs': 0.3.2 tuf-js: 2.2.1 transitivePeerDependencies: - supports-color - dev: true - /@sigstore/verify@1.2.1: - resolution: {integrity: sha512-8iKx79/F73DKbGfRf7+t4dqrc0bRr0thdPrxAtCKWRm/F0tG71i6O1rvlnScncJLLBZHn3h8M3c1BSUAb9yu8g==} - engines: {node: ^16.14.0 || >=18.0.0} + '@sigstore/verify@1.2.1': dependencies: '@sigstore/bundle': 2.3.2 '@sigstore/core': 1.1.0 '@sigstore/protobuf-specs': 0.3.2 - dev: true - /@sinclair/typebox@0.27.8: - resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} - dev: true + '@sinclair/typebox@0.27.8': {} - /@sindresorhus/merge-streams@1.0.0: - resolution: {integrity: sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==} - engines: {node: '>=18'} - dev: true + '@sindresorhus/merge-streams@2.3.0': {} - /@tufjs/canonical-json@2.0.0: - resolution: {integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==} - engines: {node: ^16.14.0 || >=18.0.0} - dev: true + '@tufjs/canonical-json@2.0.0': {} - /@tufjs/models@2.0.1: - resolution: {integrity: sha512-92F7/SFyufn4DXsha9+QfKnN03JGqtMFMXgSHbZOo8JG59WkTni7UzAouNQDf7AuP9OAMxVOPQcqG3sB7w+kkg==} - engines: {node: ^16.14.0 || >=18.0.0} + '@tufjs/models@2.0.1': dependencies: '@tufjs/canonical-json': 2.0.0 - minimatch: 9.0.4 - dev: true + minimatch: 9.0.5 - /@turf/jsts@2.7.1: - resolution: {integrity: sha512-+nwOKme/aUprsxnLSfr2LylV6eL6T1Tuln+4Hl92uwZ8FrmjDRCH5Bi1LJNVfWCiYgk8+5K+t2zDphWNTsIFDA==} + '@turf/jsts@2.7.1': dependencies: jsts: 2.7.1 - dev: false - /@types/benchmark@2.1.5: - resolution: {integrity: sha512-cKio2eFB3v7qmKcvIHLUMw/dIx/8bhWPuzpzRT4unCPRTD8VdA9Zb0afxpcxOqR4PixRS7yT42FqGS8BYL8g1w==} - dev: true + '@types/benchmark@2.1.5': {} - /@types/concaveman@1.1.6: - resolution: {integrity: sha512-3shTHRmSStvc+91qrFlQv2UmrOB0sZ6biDQo7YzY+9tV1mNLpdzuZal4D3hTYXYWig49K01lCvYDpnh+txToXw==} - dev: true + '@types/concaveman@1.1.6': {} - /@types/d3-voronoi@1.1.12: - resolution: {integrity: sha512-DauBl25PKZZ0WVJr42a6CNvI6efsdzofl9sajqZr2Gf5Gu733WkDdUGiPkUHXiUvYGzNNlFQde2wdZdfQPG+yw==} - dev: false + '@types/d3-voronoi@1.1.12': {} - /@types/debug@4.1.12: - resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + '@types/debug@4.1.12': dependencies: '@types/ms': 0.7.34 - dev: true - /@types/estree@1.0.5: - resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} - dev: true + '@types/estree@1.0.6': {} - /@types/extend@3.0.4: - resolution: {integrity: sha512-ArMouDUTJEz1SQRpFsT2rIw7DeqICFv5aaVzLSIYMYQSLcwcGOfT3VyglQs/p7K3F7fT4zxr0NWxYZIdifD6dA==} - dev: true + '@types/estree@1.0.7': {} - /@types/geojson@7946.0.14: - resolution: {integrity: sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==} + '@types/extend@3.0.4': {} - /@types/hast@2.3.10: - resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} + '@types/geojson@7946.0.14': {} + + '@types/hast@2.3.10': dependencies: '@types/unist': 2.0.10 - dev: true - /@types/json-schema@7.0.15: - resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} - dev: true + '@types/json-schema@7.0.15': {} - /@types/mdast@3.0.15: - resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} + '@types/mdast@3.0.15': dependencies: '@types/unist': 2.0.10 - dev: true - /@types/minimatch@3.0.5: - resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} - dev: true + '@types/minimatch@3.0.5': {} - /@types/minimist@1.2.5: - resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} - dev: true + '@types/minimist@1.2.5': {} - /@types/ms@0.7.34: - resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} - dev: true + '@types/ms@0.7.34': {} - /@types/node@18.11.9: - resolution: {integrity: sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==} - dev: true - - /@types/normalize-package-data@2.4.4: - resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} - dev: true - - /@types/object-assign@4.0.33: - resolution: {integrity: sha512-HeuamLPmpVPuJU/oY7z/YGAezy4HFy6mhvzwupi9Xc8n0FKY8tR1/U3AKaOn/I5Mb4dvbw2szSYcXi84eW07TQ==} - dev: true - - /@types/parse5@6.0.3: - resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==} - dev: true - - /@types/rbush@3.0.3: - resolution: {integrity: sha512-lX55lR0iYCgapxD3IrgujpQA1zDxwZI5qMRelKvmKAsSMplFVr7wmMpG7/6+Op2tjrgEex8o3vjg8CRDrRNYxg==} - dev: true - - /@types/resolve@1.20.2: - resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} - dev: true - - /@types/semver@7.5.6: - resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==} - dev: true - - /@types/skmeans@0.11.7: - resolution: {integrity: sha512-3fT48uRSRppOdQIlNCQKNNJRVaqzxkdCSTZM+NeHNxEpw6JejLLH78OHP54BxUHYEsa7pVsGn6uON552jwv9ZQ==} - dev: true - - /@types/supports-color@8.1.3: - resolution: {integrity: sha512-Hy6UMpxhE3j1tLpl27exp1XqHD7n8chAiNPzWfz16LPZoMMoSc4dzLl6w9qijkEb/r5O1ozdu1CWGA2L83ZeZg==} - dev: true - - /@types/tape@4.13.4: - resolution: {integrity: sha512-0Mw8/FAMheD2MvyaFYDaAix7X5GfNjl/XI+zvqJdzC6N05BmHKz6Hwn+r7+8PEXDEKrC3V/irC9z7mrl5a130g==} + '@types/node@22.15.3': dependencies: - '@types/node': 18.11.9 - '@types/through': 0.0.33 - dev: true + undici-types: 6.21.0 - /@types/through@0.0.33: - resolution: {integrity: sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==} + '@types/normalize-package-data@2.4.4': {} + + '@types/object-assign@4.0.33': {} + + '@types/parse5@6.0.3': {} + + '@types/rbush@3.0.3': {} + + '@types/resolve@1.20.2': {} + + '@types/skmeans@0.11.7': {} + + '@types/supports-color@8.1.3': {} + + '@types/tape@5.8.1': dependencies: - '@types/node': 18.11.9 - dev: true + '@ljharb/through': 2.3.14 + '@types/node': 22.15.3 + mock-property: 1.1.0 - /@types/topojson-client@3.1.3: - resolution: {integrity: sha512-liC+dHCxoqQy5bbJMsF59Cx1WZZwbcT084v/5bdp3NWSFUuzQpsm4gbLQh+wlv58Mng4jCsO4p8hWelqGlb7rg==} + '@types/topojson-client@3.1.3': dependencies: '@types/geojson': 7946.0.14 '@types/topojson-specification': 1.0.5 - dev: true - /@types/topojson-server@3.0.3: - resolution: {integrity: sha512-Xi903I5D0pu9il0xXRNxugj5MuIAUalZzciGS0FTLbiW4jLyd2jkoVN2g80RavHw39Z8YTFaSdRgp8f8WHbyxg==} + '@types/topojson-server@3.0.3': dependencies: '@types/geojson': 7946.0.14 '@types/topojson-specification': 1.0.5 - dev: true - /@types/topojson-specification@1.0.5: - resolution: {integrity: sha512-C7KvcQh+C2nr6Y2Ub4YfgvWvWCgP2nOQMtfhlnwsRL4pYmmwzBS7HclGiS87eQfDOU/DLQpX6GEscviaz4yLIQ==} + '@types/topojson-specification@1.0.5': dependencies: '@types/geojson': 7946.0.14 - dev: true - /@types/triple-beam@1.3.5: - resolution: {integrity: sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==} - dev: true + '@types/triple-beam@1.3.5': {} - /@types/unist@2.0.10: - resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} - dev: true + '@types/unist@2.0.10': {} - /@typescript-eslint/eslint-plugin@6.13.2(@typescript-eslint/parser@6.13.2)(eslint@8.55.0)(typescript@5.3.3): - resolution: {integrity: sha512-3+9OGAWHhk4O1LlcwLBONbdXsAhLjyCFogJY/cWy2lxdVJ2JrcTF2pTGMaLl2AE7U1l31n8Py4a8bx5DLf/0dQ==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha - eslint: ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@typescript-eslint/eslint-plugin@8.31.1(@typescript-eslint/parser@8.31.1)(eslint@9.25.1)(typescript@5.8.3)': dependencies: - '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 6.13.2(eslint@8.55.0)(typescript@5.3.3) - '@typescript-eslint/scope-manager': 6.13.2 - '@typescript-eslint/type-utils': 6.13.2(eslint@8.55.0)(typescript@5.3.3) - '@typescript-eslint/utils': 6.13.2(eslint@8.55.0)(typescript@5.3.3) - '@typescript-eslint/visitor-keys': 6.13.2 - debug: 4.3.4 - eslint: 8.55.0 + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 8.31.1(eslint@9.25.1)(typescript@5.8.3) + '@typescript-eslint/scope-manager': 8.31.1 + '@typescript-eslint/type-utils': 8.31.1(eslint@9.25.1)(typescript@5.8.3) + '@typescript-eslint/utils': 8.31.1(eslint@9.25.1)(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.31.1 + eslint: 9.25.1 graphemer: 1.4.0 - ignore: 5.3.0 + ignore: 5.3.2 natural-compare: 1.4.0 - semver: 7.5.4 - ts-api-utils: 1.0.3(typescript@5.3.3) - typescript: 5.3.3 + ts-api-utils: 2.1.0(typescript@5.8.3) + typescript: 5.8.3 transitivePeerDependencies: - supports-color - dev: true - /@typescript-eslint/parser@6.13.2(eslint@8.55.0)(typescript@5.3.3): - resolution: {integrity: sha512-MUkcC+7Wt/QOGeVlM8aGGJZy1XV5YKjTpq9jK6r6/iLsGXhBVaGP5N0UYvFsu9BFlSpwY9kMretzdBH01rkRXg==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@typescript-eslint/parser@8.31.1(eslint@9.25.1)(typescript@5.8.3)': dependencies: - '@typescript-eslint/scope-manager': 6.13.2 - '@typescript-eslint/types': 6.13.2 - '@typescript-eslint/typescript-estree': 6.13.2(typescript@5.3.3) - '@typescript-eslint/visitor-keys': 6.13.2 - debug: 4.3.4 - eslint: 8.55.0 - typescript: 5.3.3 + '@typescript-eslint/scope-manager': 8.31.1 + '@typescript-eslint/types': 8.31.1 + '@typescript-eslint/typescript-estree': 8.31.1(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.31.1 + debug: 4.4.0 + eslint: 9.25.1 + typescript: 5.8.3 transitivePeerDependencies: - supports-color - dev: true - /@typescript-eslint/scope-manager@6.13.2: - resolution: {integrity: sha512-CXQA0xo7z6x13FeDYCgBkjWzNqzBn8RXaE3QVQVIUm74fWJLkJkaHmHdKStrxQllGh6Q4eUGyNpMe0b1hMkXFA==} - engines: {node: ^16.0.0 || >=18.0.0} + '@typescript-eslint/scope-manager@8.31.1': dependencies: - '@typescript-eslint/types': 6.13.2 - '@typescript-eslint/visitor-keys': 6.13.2 - dev: true + '@typescript-eslint/types': 8.31.1 + '@typescript-eslint/visitor-keys': 8.31.1 - /@typescript-eslint/type-utils@6.13.2(eslint@8.55.0)(typescript@5.3.3): - resolution: {integrity: sha512-Qr6ssS1GFongzH2qfnWKkAQmMUyZSyOr0W54nZNU1MDfo+U4Mv3XveeLZzadc/yq8iYhQZHYT+eoXJqnACM1tw==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@typescript-eslint/type-utils@8.31.1(eslint@9.25.1)(typescript@5.8.3)': dependencies: - '@typescript-eslint/typescript-estree': 6.13.2(typescript@5.3.3) - '@typescript-eslint/utils': 6.13.2(eslint@8.55.0)(typescript@5.3.3) - debug: 4.3.4 - eslint: 8.55.0 - ts-api-utils: 1.0.3(typescript@5.3.3) - typescript: 5.3.3 + '@typescript-eslint/typescript-estree': 8.31.1(typescript@5.8.3) + '@typescript-eslint/utils': 8.31.1(eslint@9.25.1)(typescript@5.8.3) + debug: 4.4.0 + eslint: 9.25.1 + ts-api-utils: 2.1.0(typescript@5.8.3) + typescript: 5.8.3 transitivePeerDependencies: - supports-color - dev: true - /@typescript-eslint/types@6.13.2: - resolution: {integrity: sha512-7sxbQ+EMRubQc3wTfTsycgYpSujyVbI1xw+3UMRUcrhSy+pN09y/lWzeKDbvhoqcRbHdc+APLs/PWYi/cisLPg==} - engines: {node: ^16.0.0 || >=18.0.0} - dev: true + '@typescript-eslint/types@8.31.1': {} - /@typescript-eslint/types@7.18.0: - resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==} - engines: {node: ^18.18.0 || >=20.0.0} - dev: true - - /@typescript-eslint/typescript-estree@6.13.2(typescript@5.3.3): - resolution: {integrity: sha512-SuD8YLQv6WHnOEtKv8D6HZUzOub855cfPnPMKvdM/Bh1plv1f7Q/0iFUDLKKlxHcEstQnaUU4QZskgQq74t+3w==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@typescript-eslint/typescript-estree@8.31.1(typescript@5.8.3)': dependencies: - '@typescript-eslint/types': 6.13.2 - '@typescript-eslint/visitor-keys': 6.13.2 - debug: 4.3.4 - globby: 11.1.0 + '@typescript-eslint/types': 8.31.1 + '@typescript-eslint/visitor-keys': 8.31.1 + debug: 4.4.0 + fast-glob: 3.3.3 is-glob: 4.0.3 - semver: 7.5.4 - ts-api-utils: 1.0.3(typescript@5.3.3) - typescript: 5.3.3 + minimatch: 9.0.5 + semver: 7.7.1 + ts-api-utils: 2.1.0(typescript@5.8.3) + typescript: 5.8.3 transitivePeerDependencies: - supports-color - dev: true - /@typescript-eslint/typescript-estree@7.18.0(typescript@5.5.4): - resolution: {integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==} - engines: {node: ^18.18.0 || >=20.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@typescript-eslint/utils@8.31.1(eslint@9.25.1)(typescript@5.8.3)': dependencies: - '@typescript-eslint/types': 7.18.0 - '@typescript-eslint/visitor-keys': 7.18.0 - debug: 4.3.4 - globby: 11.1.0 - is-glob: 4.0.3 - minimatch: 9.0.4 - semver: 7.6.3 - ts-api-utils: 1.3.0(typescript@5.5.4) - typescript: 5.5.4 + '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1) + '@typescript-eslint/scope-manager': 8.31.1 + '@typescript-eslint/types': 8.31.1 + '@typescript-eslint/typescript-estree': 8.31.1(typescript@5.8.3) + eslint: 9.25.1 + typescript: 5.8.3 transitivePeerDependencies: - supports-color - dev: true - /@typescript-eslint/utils@6.13.2(eslint@8.55.0)(typescript@5.3.3): - resolution: {integrity: sha512-b9Ptq4eAZUym4idijCRzl61oPCwwREcfDI8xGk751Vhzig5fFZR9CyzDz4Sp/nxSLBYxUPyh4QdIDqWykFhNmQ==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 + '@typescript-eslint/visitor-keys@8.31.1': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.55.0) - '@types/json-schema': 7.0.15 - '@types/semver': 7.5.6 - '@typescript-eslint/scope-manager': 6.13.2 - '@typescript-eslint/types': 6.13.2 - '@typescript-eslint/typescript-estree': 6.13.2(typescript@5.3.3) - eslint: 8.55.0 - semver: 7.5.4 - transitivePeerDependencies: - - supports-color - - typescript - dev: true + '@typescript-eslint/types': 8.31.1 + eslint-visitor-keys: 4.2.0 - /@typescript-eslint/visitor-keys@6.13.2: - resolution: {integrity: sha512-OGznFs0eAQXJsp+xSd6k/O1UbFi/K/L7WjqeRoFE7vadjAF9y0uppXhYNQNEqygjou782maGClOoZwPqF0Drlw==} - engines: {node: ^16.0.0 || >=18.0.0} + '@vue/compiler-core@3.5.13': dependencies: - '@typescript-eslint/types': 6.13.2 - eslint-visitor-keys: 3.4.3 - dev: true - - /@typescript-eslint/visitor-keys@7.18.0: - resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==} - engines: {node: ^18.18.0 || >=20.0.0} - dependencies: - '@typescript-eslint/types': 7.18.0 - eslint-visitor-keys: 3.4.3 - dev: true - - /@ungap/structured-clone@1.2.0: - resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} - dev: true - - /@vue/compiler-core@3.4.35: - resolution: {integrity: sha512-gKp0zGoLnMYtw4uS/SJRRO7rsVggLjvot3mcctlMXunYNsX+aRJDqqw/lV5/gHK91nvaAAlWFgdVl020AW1Prg==} - requiresBuild: true - dependencies: - '@babel/parser': 7.25.3 - '@vue/shared': 3.4.35 + '@babel/parser': 7.26.2 + '@vue/shared': 3.5.13 entities: 4.5.0 estree-walker: 2.0.2 - source-map-js: 1.2.0 - dev: true + source-map-js: 1.2.1 - /@vue/compiler-dom@3.4.35: - resolution: {integrity: sha512-pWIZRL76/oE/VMhdv/ovZfmuooEni6JPG1BFe7oLk5DZRo/ImydXijoZl/4kh2406boRQ7lxTYzbZEEXEhj9NQ==} - requiresBuild: true + '@vue/compiler-dom@3.5.13': dependencies: - '@vue/compiler-core': 3.4.35 - '@vue/shared': 3.4.35 - dev: true + '@vue/compiler-core': 3.5.13 + '@vue/shared': 3.5.13 - /@vue/compiler-sfc@3.4.35: - resolution: {integrity: sha512-xacnRS/h/FCsjsMfxBkzjoNxyxEyKyZfBch/P4vkLRvYJwe5ChXmZZrj8Dsed/752H2Q3JE8kYu9Uyha9J6PgA==} + '@vue/compiler-sfc@3.5.13': dependencies: - '@babel/parser': 7.25.3 - '@vue/compiler-core': 3.4.35 - '@vue/compiler-dom': 3.4.35 - '@vue/compiler-ssr': 3.4.35 - '@vue/shared': 3.4.35 + '@babel/parser': 7.26.2 + '@vue/compiler-core': 3.5.13 + '@vue/compiler-dom': 3.5.13 + '@vue/compiler-ssr': 3.5.13 + '@vue/shared': 3.5.13 estree-walker: 2.0.2 - magic-string: 0.30.11 - postcss: 8.4.40 - source-map-js: 1.2.0 - dev: true + magic-string: 0.30.14 + postcss: 8.4.49 + source-map-js: 1.2.1 - /@vue/compiler-ssr@3.4.35: - resolution: {integrity: sha512-7iynB+0KB1AAJKk/biENTV5cRGHRdbdaD7Mx3nWcm1W8bVD6QmnH3B4AHhQQ1qZHhqFwzEzMwiytXm3PX1e60A==} - requiresBuild: true + '@vue/compiler-ssr@3.5.13': dependencies: - '@vue/compiler-dom': 3.4.35 - '@vue/shared': 3.4.35 - dev: true + '@vue/compiler-dom': 3.5.13 + '@vue/shared': 3.5.13 - /@vue/shared@3.4.35: - resolution: {integrity: sha512-hvuhBYYDe+b1G8KHxsQ0diDqDMA8D9laxWZhNAjE83VZb5UDaXl9Xnz7cGdDSyiHM90qqI/CyGMcpBpiDy6VVQ==} - requiresBuild: true - dev: true + '@vue/shared@3.5.13': {} - /@yarnpkg/lockfile@1.1.0: - resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} - dev: true + '@yarnpkg/lockfile@1.1.0': {} - /@yarnpkg/parsers@3.0.0-rc.46: - resolution: {integrity: sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==} - engines: {node: '>=14.15.0'} + '@yarnpkg/parsers@3.0.0-rc.46': dependencies: js-yaml: 3.14.1 - tslib: 2.6.2 - dev: true + tslib: 2.8.1 - /@zkochan/js-yaml@0.0.7: - resolution: {integrity: sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==} - hasBin: true + '@zkochan/js-yaml@0.0.7': dependencies: argparse: 2.0.1 - dev: true - /JSONStream@1.3.5: - resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} - hasBin: true + JSONStream@1.3.5: dependencies: jsonparse: 1.3.1 through: 2.3.8 - dev: true - /abbrev@2.0.0: - resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + abbrev@2.0.0: {} - /acorn-jsx@5.3.2(acorn@8.11.2): - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + acorn-jsx@5.3.2(acorn@8.14.1): dependencies: - acorn: 8.11.2 - dev: true + acorn: 8.14.1 - /acorn@7.4.1: - resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} - engines: {node: '>=0.4.0'} - hasBin: true - dev: true - - /acorn@8.11.2: - resolution: {integrity: sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==} - engines: {node: '>=0.4.0'} - hasBin: true - dev: true - - /acorn@8.8.2: - resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} - engines: {node: '>=0.4.0'} - hasBin: true - dev: true - - /add-stream@1.0.0: - resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==} - dev: true - - /agent-base@7.1.1: - resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==} - engines: {node: '>= 14'} + acorn-walk@8.3.4: dependencies: - debug: 4.3.4 + acorn: 8.14.1 + + acorn@8.14.1: {} + + add-stream@1.0.0: {} + + agent-base@7.1.1: + dependencies: + debug: 4.4.0 transitivePeerDependencies: - supports-color - dev: true - /aggregate-error@3.1.0: - resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} - engines: {node: '>=8'} + aggregate-error@3.1.0: dependencies: clean-stack: 2.2.0 indent-string: 4.0.0 - dev: true - /ajv@6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + ajv@6.12.6: dependencies: fast-deep-equal: 3.1.3 fast-json-stable-stringify: 2.1.0 json-schema-traverse: 0.4.1 uri-js: 4.4.1 - dev: true - /ansi-colors@4.1.3: - resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} - engines: {node: '>=6'} - dev: true + ansi-colors@4.1.3: {} - /ansi-escapes@4.3.2: - resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} - engines: {node: '>=8'} + ansi-escapes@4.3.2: dependencies: type-fest: 0.21.3 - dev: true - /ansi-escapes@7.0.0: - resolution: {integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==} - engines: {node: '>=18'} + ansi-escapes@7.0.0: dependencies: environment: 1.1.0 - dev: true - /ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} - dev: true + ansi-regex@5.0.1: {} - /ansi-regex@6.0.1: - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} - engines: {node: '>=12'} - dev: true + ansi-regex@6.0.1: {} - /ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} + ansi-styles@3.2.1: dependencies: color-convert: 1.9.3 - dev: true - /ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} + ansi-styles@4.3.0: dependencies: color-convert: 2.0.1 - dev: true - /ansi-styles@5.2.0: - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} - engines: {node: '>=10'} - dev: true + ansi-styles@5.2.0: {} - /ansi-styles@6.2.1: - resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} - engines: {node: '>=12'} - dev: true + ansi-styles@6.2.1: {} - /any-promise@1.3.0: - resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} - dev: true + any-promise@1.3.0: {} - /anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: '>= 8'} + anymatch@3.1.3: dependencies: normalize-path: 3.0.0 picomatch: 2.3.1 - dev: true - /app-module-path@2.2.0: - resolution: {integrity: sha512-gkco+qxENJV+8vFcDiiFhuoSvRXb2a/QPqpSoWhVz829VNJfOTnELbBmPmNKFxf3xdNnw4DWCkzkDaavcX/1YQ==} - dev: true + app-module-path@2.2.0: {} - /aproba@2.0.0: - resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} - dev: true + aproba@2.0.0: {} - /arg@4.1.3: - resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} - dev: true - - /argparse@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + argparse@1.0.10: dependencies: sprintf-js: 1.0.3 - dev: true - /argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - dev: true + argparse@2.0.1: {} - /array-buffer-byte-length@1.0.0: - resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} + array-buffer-byte-length@1.0.1: dependencies: - call-bind: 1.0.5 - is-array-buffer: 3.0.2 - dev: true + call-bind: 1.0.7 + is-array-buffer: 3.0.4 - /array-differ@3.0.0: - resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} - engines: {node: '>=8'} - dev: true + array-differ@3.0.0: {} - /array-ify@1.0.0: - resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} - dev: true + array-ify@1.0.0: {} - /array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} - dev: true + array-union@2.1.0: {} - /array.prototype.every@1.1.5: - resolution: {integrity: sha512-FfMQJ+/joFGXpRCltbzV3znaP5QxIhLFySo0fEPn3GuoYlud9LhknMCIxdYKC2qsM/6VHoSp6YGwe3EZXrEcwQ==} - engines: {node: '>= 0.4'} + array.prototype.every@1.1.6: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 - is-string: 1.0.7 - dev: true + es-abstract: 1.23.5 + es-object-atoms: 1.0.0 + is-string: 1.1.0 - /arraybuffer.prototype.slice@1.0.2: - resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} - engines: {node: '>= 0.4'} + arraybuffer.prototype.slice@1.0.3: dependencies: - array-buffer-byte-length: 1.0.0 - call-bind: 1.0.5 + array-buffer-byte-length: 1.0.1 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 - get-intrinsic: 1.2.2 - is-array-buffer: 3.0.2 - is-shared-array-buffer: 1.0.2 - dev: true + es-abstract: 1.23.5 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + is-array-buffer: 3.0.4 + is-shared-array-buffer: 1.0.3 - /arrify@1.0.1: - resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} - engines: {node: '>=0.10.0'} - dev: true + arrify@1.0.1: {} - /arrify@2.0.1: - resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} - engines: {node: '>=8'} - dev: true + arrify@2.0.1: {} - /ast-module-types@6.0.0: - resolution: {integrity: sha512-LFRg7178Fw5R4FAEwZxVqiRI8IxSM+Ay2UBrHoCerXNme+kMMMfz7T3xDGV/c2fer87hcrtgJGsnSOfUrPK6ng==} - engines: {node: '>=18'} - dev: true + ast-module-types@6.0.1: {} - /async@3.2.5: - resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} - dev: true + async@3.2.6: {} - /asynckit@0.4.0: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} - dev: true + asynckit@0.4.0: {} - /available-typed-arrays@1.0.5: - resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} - engines: {node: '>= 0.4'} - dev: true + available-typed-arrays@1.0.7: + dependencies: + possible-typed-array-names: 1.0.0 - /axios@1.6.2: - resolution: {integrity: sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==} + axios@1.6.2: dependencies: follow-redirects: 1.15.6 form-data: 4.0.0 proxy-from-env: 1.1.0 transitivePeerDependencies: - debug - dev: true - /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.5): - resolution: {integrity: sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-corejs2@0.4.13(@babel/core@7.26.10): dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.5 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.5) + '@babel/compat-data': 7.26.8 + '@babel/core': 7.26.10 + '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.10) semver: 6.3.1 transitivePeerDependencies: - supports-color - dev: true - /babel-plugin-polyfill-corejs3@0.8.6(@babel/core@7.23.5): - resolution: {integrity: sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.26.10): dependencies: - '@babel/core': 7.23.5 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.5) - core-js-compat: 3.34.0 + '@babel/core': 7.26.10 + '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.10) + core-js-compat: 3.42.0 transitivePeerDependencies: - supports-color - dev: true - /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.5): - resolution: {integrity: sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-regenerator@0.6.4(@babel/core@7.26.10): dependencies: - '@babel/core': 7.23.5 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.5) + '@babel/core': 7.26.10 + '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.10) transitivePeerDependencies: - supports-color - dev: true - /bail@2.0.2: - resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} - dev: true + bail@2.0.2: {} - /balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - dev: true + balanced-match@1.0.2: {} - /base64-js@1.5.1: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - dev: true + base64-js@1.5.1: {} - /before-after-hook@2.2.3: - resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} - dev: true + before-after-hook@2.2.3: {} - /benchmark@2.1.4: - resolution: {integrity: sha512-l9MlfN4M1K/H2fbhfMy3B7vJd6AGKJVQn2h6Sg/Yx+KckoUA7ewS5Vv6TjSq18ooE1kS9hhAlQRH3AkXIh/aOQ==} + benchmark@2.1.4: dependencies: lodash: 4.17.21 platform: 1.3.6 - dev: true - /big-integer@1.6.52: - resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} - engines: {node: '>=0.6'} - dev: true + bignumber.js@9.1.2: {} - /bin-links@4.0.4: - resolution: {integrity: sha512-cMtq4W5ZsEwcutJrVId+a/tjt8GSbS+h0oNkdl6+6rBuEv8Ot33Bevj5KPm40t309zuhVic8NjpuL42QCiJWWA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + bin-links@4.0.4: dependencies: cmd-shim: 6.0.3 npm-normalize-package-bin: 3.0.1 read-cmd-shim: 4.0.0 write-file-atomic: 5.0.1 - dev: true - /binary-extensions@2.2.0: - resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} - engines: {node: '>=8'} - dev: true + binary-extensions@2.2.0: {} - /bl@4.1.0: - resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + bl@4.1.0: dependencies: buffer: 5.7.1 inherits: 2.0.4 readable-stream: 3.6.2 - dev: true - /boolean-jsts@0.0.1: - resolution: {integrity: sha512-KB5kMk4thQO+bzkJ6MRTa+5ui+btRK7PiE4xvzDaDg/giG/sbL+htaoYlJqpDvVYax4GHRoQtz2S62iAuagXIA==} + boolean-jsts@0.0.1: dependencies: jsts: 1.6.2 - dev: true - /boolean-shapely@0.1.2: - resolution: {integrity: sha512-jURLo9c9NIVbaNeigJb4ZPwFDYj4dRF6LPFaLTkeVjXpwMbU6VU8YmeSeWl9rYqMwp/XH0qo1G0x6nHzmB8amA==} + boolean-shapely@0.1.2: dependencies: python-shell: 0.4.0 - dev: true - /bplist-parser@0.2.0: - resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} - engines: {node: '>= 5.10.0'} - dependencies: - big-integer: 1.6.52 - dev: true - - /brace-expansion@1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + brace-expansion@1.1.11: dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 - dev: true - /brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + brace-expansion@2.0.1: dependencies: balanced-match: 1.0.2 - dev: true - /braces@3.0.3: - resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} - engines: {node: '>=8'} + braces@3.0.3: dependencies: fill-range: 7.1.1 - dev: true - /browserslist@4.22.2: - resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true + browserslist@4.24.4: dependencies: - caniuse-lite: 1.0.30001566 - electron-to-chromium: 1.4.609 - node-releases: 2.0.14 - update-browserslist-db: 1.0.13(browserslist@4.22.2) - dev: true + caniuse-lite: 1.0.30001716 + electron-to-chromium: 1.5.145 + node-releases: 2.0.19 + update-browserslist-db: 1.1.3(browserslist@4.24.4) - /buffer-from@1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} - dev: true + buffer-from@1.1.2: {} - /buffer@5.7.1: - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + buffer@5.7.1: dependencies: base64-js: 1.5.1 ieee754: 1.2.1 - dev: true - /builtin-modules@3.3.0: - resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} - engines: {node: '>=6'} - dev: true - - /bundle-name@3.0.0: - resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==} - engines: {node: '>=12'} + bundle-require@5.1.0(esbuild@0.25.3): dependencies: - run-applescript: 5.0.0 - dev: true - - /bundle-require@4.0.2(esbuild@0.19.11): - resolution: {integrity: sha512-jwzPOChofl67PSTW2SGubV9HBQAhhR2i6nskiOThauo9dzwDUgOWQScFVaJkjEfYX+UXiD+LEx8EblQMc2wIag==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - peerDependencies: - esbuild: '>=0.17' - dependencies: - esbuild: 0.19.11 + esbuild: 0.25.3 load-tsconfig: 0.2.5 - dev: true - /byte-size@8.1.1: - resolution: {integrity: sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg==} - engines: {node: '>=12.17'} - dev: true + byte-size@8.1.1: {} - /cac@6.7.14: - resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} - engines: {node: '>=8'} - dev: true + cac@6.7.14: {} - /cacache@18.0.3: - resolution: {integrity: sha512-qXCd4rh6I07cnDqh8V48/94Tc/WSfj+o3Gn6NZ0aZovS255bUx8O13uKxRFd2eWG0xgsco7+YItQNPaa5E85hg==} - engines: {node: ^16.14.0 || >=18.0.0} + cacache@18.0.4: dependencies: - '@npmcli/fs': 3.1.0 + '@npmcli/fs': 3.1.1 fs-minipass: 3.0.3 - glob: 10.3.10 - lru-cache: 10.1.0 - minipass: 7.0.4 + glob: 10.4.5 + lru-cache: 10.4.3 + minipass: 7.1.2 minipass-collect: 2.0.1 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 @@ -10085,97 +13863,72 @@ packages: ssri: 10.0.6 tar: 6.2.1 unique-filename: 3.0.0 - dev: true - /call-bind@1.0.5: - resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} + call-bind-apply-helpers@1.0.2: dependencies: + es-errors: 1.3.0 function-bind: 1.1.2 - get-intrinsic: 1.2.2 - set-function-length: 1.1.1 - dev: true - /callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} - dev: true + call-bind@1.0.7: + dependencies: + es-define-property: 1.0.0 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.2.4 + set-function-length: 1.2.2 - /camelcase-keys@6.2.2: - resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} - engines: {node: '>=8'} + call-bind@1.0.8: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-define-property: 1.0.1 + get-intrinsic: 1.3.0 + set-function-length: 1.2.2 + + callsites@3.1.0: {} + + camelcase-keys@6.2.2: dependencies: camelcase: 5.3.1 map-obj: 4.3.0 quick-lru: 4.0.1 - dev: true - /camelcase@5.3.1: - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} - engines: {node: '>=6'} - dev: true + camelcase@5.3.1: {} - /camelcase@8.0.0: - resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==} - engines: {node: '>=16'} - dev: true + camelcase@8.0.0: {} - /caniuse-lite@1.0.30001566: - resolution: {integrity: sha512-ggIhCsTxmITBAMmK8yZjEhCO5/47jKXPu6Dha/wuCS4JePVL+3uiDEBuhu2aIoT+bqTOR8L76Ip1ARL9xYsEJA==} - dev: true + caniuse-lite@1.0.30001716: {} - /ccount@2.0.1: - resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} - dev: true + ccount@2.0.1: {} - /chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} + chalk@2.4.2: dependencies: ansi-styles: 3.2.1 escape-string-regexp: 1.0.5 supports-color: 5.5.0 - dev: true - /chalk@4.1.0: - resolution: {integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==} - engines: {node: '>=10'} + chalk@4.1.0: dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 - dev: true - /chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} + chalk@4.1.2: dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 - dev: true - /chalk@5.3.0: - resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} - engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} - dev: true + chalk@5.3.0: {} - /character-entities-html4@2.1.0: - resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} - dev: true + chalk@5.4.1: {} - /character-entities-legacy@3.0.0: - resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} - dev: true + character-entities-html4@2.1.0: {} - /character-entities@2.0.2: - resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} - dev: true + character-entities-legacy@3.0.0: {} - /chardet@0.7.0: - resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} - dev: true + character-entities@2.0.2: {} - /chokidar@3.5.3: - resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} - engines: {node: '>= 8.10.0'} + chardet@0.7.0: {} + + chokidar@3.5.3: dependencies: anymatch: 3.1.3 braces: 3.0.3 @@ -10186,244 +13939,146 @@ packages: readdirp: 3.6.0 optionalDependencies: fsevents: 2.3.3 - dev: true - /chownr@2.0.0: - resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} - engines: {node: '>=10'} - dev: true + chokidar@4.0.3: + dependencies: + readdirp: 4.1.2 - /chromatism@3.0.0: - resolution: {integrity: sha512-slVGC45odKFB6KzD/hpXP8XgS/Y+x72X1ckAhxU/9YZecCy8VwCJUSZsn0O4gQUwaTogun6IfrSiK3YuQaADFw==} - dev: true + chownr@2.0.0: {} - /ci-info@3.9.0: - resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} - engines: {node: '>=8'} - dev: true + chromatism@3.0.0: {} - /ci-info@4.0.0: - resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==} - engines: {node: '>=8'} - dev: true + ci-info@3.9.0: {} - /clean-stack@2.2.0: - resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} - engines: {node: '>=6'} - dev: true + ci-info@4.0.0: {} - /cli-cursor@3.1.0: - resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} - engines: {node: '>=8'} + clean-stack@2.2.0: {} + + cli-cursor@3.1.0: dependencies: restore-cursor: 3.1.0 - dev: true - /cli-cursor@5.0.0: - resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} - engines: {node: '>=18'} + cli-cursor@5.0.0: dependencies: restore-cursor: 5.1.0 - dev: true - /cli-spinners@2.6.1: - resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} - engines: {node: '>=6'} - dev: true + cli-spinners@2.6.1: {} - /cli-spinners@2.9.2: - resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} - engines: {node: '>=6'} - dev: true + cli-spinners@2.9.2: {} - /cli-truncate@4.0.0: - resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==} - engines: {node: '>=18'} + cli-truncate@4.0.0: dependencies: slice-ansi: 5.0.0 string-width: 7.2.0 - dev: true - /cli-width@3.0.0: - resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} - engines: {node: '>= 10'} - dev: true + cli-width@3.0.0: {} - /cliui@7.0.4: - resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} + cliui@7.0.4: dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - dev: true - /cliui@8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} - engines: {node: '>=12'} + cliui@8.0.1: dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - dev: true - /clone-deep@4.0.1: - resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} - engines: {node: '>=6'} + clone-deep@4.0.1: dependencies: is-plain-object: 2.0.4 kind-of: 6.0.3 shallow-clone: 3.0.1 - dev: true - /clone@1.0.4: - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} - engines: {node: '>=0.8'} - dev: true + clone@1.0.4: {} - /cmd-shim@6.0.3: - resolution: {integrity: sha512-FMabTRlc5t5zjdenF6mS0MBeFZm0XqHqeOkcskKFb/LYCcRQ5fVgLOHVc4Lq9CqABd9zhjwPjMBCJvMCziSVtA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + cmd-shim@6.0.3: {} - /color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + color-convert@1.9.3: dependencies: color-name: 1.1.3 - dev: true - /color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} + color-convert@2.0.1: dependencies: color-name: 1.1.4 - dev: true - /color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} - dev: true + color-name@1.1.3: {} - /color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} - dev: true + color-name@1.1.4: {} - /color-string@1.9.1: - resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} + color-string@1.9.1: dependencies: color-name: 1.1.4 simple-swizzle: 0.2.2 - dev: true - /color-support@1.1.3: - resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} - hasBin: true - dev: true + color-support@1.1.3: {} - /color@3.2.1: - resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==} + color@3.2.1: dependencies: color-convert: 1.9.3 color-string: 1.9.1 - dev: true - /colorette@2.0.20: - resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} - dev: true + colorette@2.0.20: {} - /colorspace@1.1.4: - resolution: {integrity: sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==} + colorspace@1.1.4: dependencies: color: 3.2.1 text-hex: 1.0.0 - dev: true - /columnify@1.6.0: - resolution: {integrity: sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==} - engines: {node: '>=8.0.0'} + columnify@1.6.0: dependencies: strip-ansi: 6.0.1 wcwidth: 1.0.1 - dev: true - /combined-stream@1.0.8: - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} - engines: {node: '>= 0.8'} + combined-stream@1.0.8: dependencies: delayed-stream: 1.0.0 - dev: true - /comma-separated-tokens@2.0.3: - resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} - dev: true + comma-separated-tokens@2.0.3: {} - /commander@10.0.0: - resolution: {integrity: sha512-zS5PnTI22FIRM6ylNW8G4Ap0IEOyk62fhLSD0+uHRT9McRCLGpkVNvao4bjimpK/GShynyQkFFxHhwMcETmduA==} - engines: {node: '>=14'} - dev: true + commander@12.1.0: {} - /commander@12.1.0: - resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} - engines: {node: '>=18'} - dev: true + commander@13.1.0: {} - /commander@2.20.3: - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + commander@2.20.3: {} - /commander@4.1.1: - resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} - engines: {node: '>= 6'} - dev: true + commander@4.1.1: {} - /common-ancestor-path@1.0.1: - resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} - dev: true + common-ancestor-path@1.0.1: {} - /commondir@1.0.1: - resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} - dev: true + commondir@1.0.1: {} - /compare-func@2.0.0: - resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} + compare-func@2.0.0: dependencies: array-ify: 1.0.0 dot-prop: 5.3.0 - dev: true - /concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} - dev: true + concat-map@0.0.1: {} - /concat-stream@2.0.0: - resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} - engines: {'0': node >= 6.0} + concat-stream@2.0.0: dependencies: buffer-from: 1.1.2 inherits: 2.0.4 readable-stream: 3.6.2 typedarray: 0.0.6 - dev: true - /concaveman@1.2.1: - resolution: {integrity: sha512-PwZYKaM/ckQSa8peP5JpVr7IMJ4Nn/MHIaWUjP4be+KoZ7Botgs8seAZGpmaOM+UZXawcdYRao/px9ycrCihHw==} + concaveman@1.2.1: dependencies: point-in-polygon: 1.1.0 rbush: 3.0.1 robust-predicates: 2.0.4 tinyqueue: 2.0.3 - /console-control-strings@1.1.0: - resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} - dev: true + consola@3.4.2: {} - /conventional-changelog-angular@7.0.0: - resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==} - engines: {node: '>=16'} + console-control-strings@1.1.0: {} + + conventional-changelog-angular@7.0.0: dependencies: compare-func: 2.0.0 - dev: true - /conventional-changelog-core@5.0.1: - resolution: {integrity: sha512-Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A==} - engines: {node: '>=14'} + conventional-changelog-core@5.0.1: dependencies: add-stream: 1.0.0 conventional-changelog-writer: 6.0.1 @@ -10436,17 +14091,10 @@ packages: normalize-package-data: 3.0.3 read-pkg: 3.0.0 read-pkg-up: 3.0.0 - dev: true - /conventional-changelog-preset-loader@3.0.0: - resolution: {integrity: sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA==} - engines: {node: '>=14'} - dev: true + conventional-changelog-preset-loader@3.0.0: {} - /conventional-changelog-writer@6.0.1: - resolution: {integrity: sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ==} - engines: {node: '>=14'} - hasBin: true + conventional-changelog-writer@6.0.1: dependencies: conventional-commits-filter: 3.0.0 dateformat: 3.0.3 @@ -10455,31 +14103,20 @@ packages: meow: 8.1.2 semver: 7.6.3 split: 1.0.1 - dev: true - /conventional-commits-filter@3.0.0: - resolution: {integrity: sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==} - engines: {node: '>=14'} + conventional-commits-filter@3.0.0: dependencies: lodash.ismatch: 4.4.0 modify-values: 1.0.1 - dev: true - /conventional-commits-parser@4.0.0: - resolution: {integrity: sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==} - engines: {node: '>=14'} - hasBin: true + conventional-commits-parser@4.0.0: dependencies: JSONStream: 1.3.5 is-text-path: 1.0.1 meow: 8.1.2 split2: 3.2.2 - dev: true - /conventional-recommended-bump@7.0.1: - resolution: {integrity: sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA==} - engines: {node: '>=14'} - hasBin: true + conventional-recommended-bump@7.0.1: dependencies: concat-stream: 2.0.0 conventional-changelog-preset-loader: 3.0.0 @@ -10488,419 +14125,236 @@ packages: git-raw-commits: 3.0.0 git-semver-tags: 5.0.1 meow: 8.1.2 - dev: true - /convert-source-map@2.0.0: - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - dev: true + convert-source-map@2.0.0: {} - /core-js-compat@3.34.0: - resolution: {integrity: sha512-4ZIyeNbW/Cn1wkMMDy+mvrRUxrwFNjKwbhCfQpDd+eLgYipDqp8oGFGtLmhh18EDPKA0g3VUBYOxQGGwvWLVpA==} + core-js-compat@3.42.0: dependencies: - browserslist: 4.22.2 - dev: true + browserslist: 4.24.4 - /core-util-is@1.0.3: - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} - dev: true + core-util-is@1.0.3: {} - /cosmiconfig@8.3.6(typescript@5.5.4): - resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} - engines: {node: '>=14'} - peerDependencies: - typescript: '>=4.9.5' - peerDependenciesMeta: - typescript: - optional: true + cosmiconfig@9.0.0(typescript@5.8.3): dependencies: + env-paths: 2.2.1 import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 - path-type: 4.0.0 - typescript: 5.5.4 - dev: true + typescript: 5.8.3 - /create-require@1.1.1: - resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} - dev: true - - /cross-spawn@6.0.5: - resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} - engines: {node: '>=4.8'} + cross-spawn@6.0.5: dependencies: nice-try: 1.0.5 path-key: 2.0.1 semver: 5.7.2 shebang-command: 1.2.0 which: 1.3.1 - dev: true - /cross-spawn@7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} - engines: {node: '>= 8'} + cross-spawn@7.0.6: dependencies: path-key: 3.1.1 shebang-command: 2.0.0 which: 2.0.2 - dev: true - /cssesc@3.0.0: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: '>=4'} - hasBin: true - dev: true + cssesc@3.0.0: {} - /d3-array@1.2.4: - resolution: {integrity: sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==} - dev: false + d3-array@1.2.4: {} - /d3-geo@1.7.1: - resolution: {integrity: sha512-O4AempWAr+P5qbk2bC2FuN/sDW4z+dN2wDf9QV3bxQt4M5HfOEeXLgJ/UKQW0+o1Dj8BE+L5kiDbdWUMjsmQpw==} + d3-geo@1.7.1: dependencies: d3-array: 1.2.4 - dev: false - /d3-queue@3.0.7: - resolution: {integrity: sha512-2rs+6pNFKkrJhqe1rg5znw7dKJ7KZr62j9aLZfhondkrnz6U7VRmJj1UGcbD8MRc46c7H8m4SWhab8EalBQrkw==} - dev: true + d3-queue@3.0.7: {} - /d3-voronoi@1.1.2: - resolution: {integrity: sha512-RhGS1u2vavcO7ay7ZNAPo4xeDh/VYeGof3x5ZLJBQgYhLegxr3s5IykvWmJ94FTU6mcbtp4sloqZ54mP6R4Utw==} - dev: false + d3-voronoi@1.1.2: {} - /dargs@7.0.0: - resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} - engines: {node: '>=8'} - dev: true + dargs@7.0.0: {} - /dateformat@3.0.3: - resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} - dev: true + data-view-buffer@1.0.1: + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-data-view: 1.0.1 - /de-indent@1.0.2: - resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} - requiresBuild: true - dev: true + data-view-byte-length@1.0.1: + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-data-view: 1.0.1 + + data-view-byte-offset@1.0.0: + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-data-view: 1.0.1 + + dateformat@3.0.3: {} + + de-indent@1.0.2: optional: true - /debug@4.3.4: - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + debug@4.3.7: dependencies: - ms: 2.1.2 - dev: true + ms: 2.1.3 - /debug@4.3.6: - resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + debug@4.4.0: dependencies: - ms: 2.1.2 - dev: true + ms: 2.1.3 - /decamelize-keys@1.1.1: - resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} - engines: {node: '>=0.10.0'} + decamelize-keys@1.1.1: dependencies: decamelize: 1.2.0 map-obj: 1.0.1 - dev: true - /decamelize@1.2.0: - resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} - engines: {node: '>=0.10.0'} - dev: true + decamelize@1.2.0: {} - /decamelize@6.0.0: - resolution: {integrity: sha512-Fv96DCsdOgB6mdGl67MT5JaTNKRzrzill5OH5s8bjYJXVlcXyPYGyPsUkWyGV5p1TXI5esYIYMMeDJL0hEIwaA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true + decamelize@6.0.0: {} - /decode-named-character-reference@1.0.2: - resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} + decode-named-character-reference@1.0.2: dependencies: character-entities: 2.0.2 - dev: true - /dedent@1.5.3: - resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==} - peerDependencies: - babel-plugin-macros: ^3.1.0 - peerDependenciesMeta: - babel-plugin-macros: - optional: true - dev: true + dedent@1.5.3: {} - /deep-equal@2.2.3: - resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} - engines: {node: '>= 0.4'} + deep-equal@2.2.3: dependencies: - array-buffer-byte-length: 1.0.0 - call-bind: 1.0.5 + array-buffer-byte-length: 1.0.1 + call-bind: 1.0.7 es-get-iterator: 1.1.3 - get-intrinsic: 1.2.2 + get-intrinsic: 1.2.4 is-arguments: 1.1.1 - is-array-buffer: 3.0.2 + is-array-buffer: 3.0.4 is-date-object: 1.0.5 is-regex: 1.1.4 - is-shared-array-buffer: 1.0.2 + is-shared-array-buffer: 1.0.3 isarray: 2.0.5 - object-is: 1.1.5 + object-is: 1.1.6 object-keys: 1.1.1 object.assign: 4.1.5 - regexp.prototype.flags: 1.5.1 - side-channel: 1.0.4 - which-boxed-primitive: 1.0.2 - which-collection: 1.0.1 - which-typed-array: 1.1.13 - dev: true + regexp.prototype.flags: 1.5.3 + side-channel: 1.0.6 + which-boxed-primitive: 1.1.0 + which-collection: 1.0.2 + which-typed-array: 1.1.16 - /deep-is@0.1.4: - resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} - dev: true + deep-is@0.1.4: {} - /deepmerge@4.3.1: - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} - engines: {node: '>=0.10.0'} - dev: true + deepmerge@4.3.1: {} - /default-browser-id@3.0.0: - resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} - engines: {node: '>=12'} - dependencies: - bplist-parser: 0.2.0 - untildify: 4.0.0 - dev: true - - /default-browser@4.0.0: - resolution: {integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==} - engines: {node: '>=14.16'} - dependencies: - bundle-name: 3.0.0 - default-browser-id: 3.0.0 - execa: 7.2.0 - titleize: 3.0.0 - dev: true - - /defaults@1.0.4: - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + defaults@1.0.4: dependencies: clone: 1.0.4 - dev: true - /define-data-property@1.1.1: - resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} - engines: {node: '>= 0.4'} + define-data-property@1.1.4: dependencies: - get-intrinsic: 1.2.2 - gopd: 1.0.1 - has-property-descriptors: 1.0.1 - dev: true + es-define-property: 1.0.0 + es-errors: 1.3.0 + gopd: 1.1.0 - /define-lazy-prop@2.0.0: - resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} - engines: {node: '>=8'} - dev: true + define-lazy-prop@2.0.0: {} - /define-lazy-prop@3.0.0: - resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} - engines: {node: '>=12'} - dev: true - - /define-properties@1.2.1: - resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} - engines: {node: '>= 0.4'} + define-properties@1.2.1: dependencies: - define-data-property: 1.1.1 - has-property-descriptors: 1.0.1 + define-data-property: 1.1.4 + has-property-descriptors: 1.0.2 object-keys: 1.1.1 - dev: true - /defined@1.0.1: - resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==} - dev: true + defined@1.0.1: {} - /delayed-stream@1.0.0: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} - engines: {node: '>=0.4.0'} - dev: true + delayed-stream@1.0.0: {} - /dependency-tree@11.0.1: - resolution: {integrity: sha512-eCt7HSKIC9NxgIykG2DRq3Aewn9UhVS14MB3rEn6l/AsEI1FBg6ZGSlCU0SZ6Tjm2kkhj6/8c2pViinuyKELhg==} - engines: {node: '>=18'} - hasBin: true + dependency-tree@11.1.1: dependencies: commander: 12.1.0 - filing-cabinet: 5.0.2 - precinct: 12.1.2 - typescript: 5.5.4 + filing-cabinet: 5.0.3 + precinct: 12.2.0 + typescript: 5.8.3 transitivePeerDependencies: - supports-color - dev: true - /deprecation@2.3.1: - resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} - dev: true + deprecation@2.3.1: {} - /dequal@2.0.3: - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} - engines: {node: '>=6'} - dev: true + dequal@2.0.3: {} - /detect-indent@5.0.0: - resolution: {integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==} - engines: {node: '>=4'} - dev: true + detect-indent@5.0.0: {} - /detect-indent@7.0.1: - resolution: {integrity: sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==} - engines: {node: '>=12.20'} - dev: true + detect-indent@7.0.1: {} - /detective-amd@6.0.0: - resolution: {integrity: sha512-NTqfYfwNsW7AQltKSEaWR66hGkTeD52Kz3eRQ+nfkA9ZFZt3iifRCWh+yZ/m6t3H42JFwVFTrml/D64R2PAIOA==} - engines: {node: '>=18'} - hasBin: true + detective-amd@6.0.1: dependencies: - ast-module-types: 6.0.0 + ast-module-types: 6.0.1 escodegen: 2.1.0 - get-amd-module-type: 6.0.0 - node-source-walk: 7.0.0 - dev: true + get-amd-module-type: 6.0.1 + node-source-walk: 7.0.1 - /detective-cjs@6.0.0: - resolution: {integrity: sha512-R55jTS6Kkmy6ukdrbzY4x+I7KkXiuDPpFzUViFV/tm2PBGtTCjkh9ZmTuJc1SaziMHJOe636dtiZLEuzBL9drg==} - engines: {node: '>=18'} + detective-cjs@6.0.1: dependencies: - ast-module-types: 6.0.0 - node-source-walk: 7.0.0 - dev: true + ast-module-types: 6.0.1 + node-source-walk: 7.0.1 - /detective-es6@5.0.0: - resolution: {integrity: sha512-NGTnzjvgeMW1khUSEXCzPDoraLenWbUjCFjwxReH+Ir+P6LGjYtaBbAvITWn2H0VSC+eM7/9LFOTAkrta6hNYg==} - engines: {node: '>=18'} + detective-es6@5.0.1: dependencies: - node-source-walk: 7.0.0 - dev: true + node-source-walk: 7.0.1 - /detective-postcss@7.0.0(postcss@8.4.40): - resolution: {integrity: sha512-pSXA6dyqmBPBuERpoOKKTUUjQCZwZPLRbd1VdsTbt6W+m/+6ROl4BbE87yQBUtLoK7yX8pvXHdKyM/xNIW9F7A==} - engines: {node: ^14.0.0 || >=16.0.0} - peerDependencies: - postcss: ^8.4.38 + detective-postcss@7.0.1(postcss@8.5.3): dependencies: is-url: 1.2.4 - postcss: 8.4.40 - postcss-values-parser: 6.0.2(postcss@8.4.40) - dev: true + postcss: 8.5.3 + postcss-values-parser: 6.0.2(postcss@8.5.3) - /detective-sass@6.0.0: - resolution: {integrity: sha512-h5GCfFMkPm4ZUUfGHVPKNHKT8jV7cSmgK+s4dgQH4/dIUNh9/huR1fjEQrblOQNDalSU7k7g+tiW9LJ+nVEUhg==} - engines: {node: '>=18'} + detective-sass@6.0.1: dependencies: gonzales-pe: 4.3.0 - node-source-walk: 7.0.0 - dev: true + node-source-walk: 7.0.1 - /detective-scss@5.0.0: - resolution: {integrity: sha512-Y64HyMqntdsCh1qAH7ci95dk0nnpA29g319w/5d/oYcHolcGUVJbIhOirOFjfN1KnMAXAFm5FIkZ4l2EKFGgxg==} - engines: {node: '>=18'} + detective-scss@5.0.1: dependencies: gonzales-pe: 4.3.0 - node-source-walk: 7.0.0 - dev: true + node-source-walk: 7.0.1 - /detective-stylus@5.0.0: - resolution: {integrity: sha512-KMHOsPY6aq3196WteVhkY5FF+6Nnc/r7q741E+Gq+Ax9mhE2iwj8Hlw8pl+749hPDRDBHZ2WlgOjP+twIG61vQ==} - engines: {node: '>=18'} - dev: true + detective-stylus@5.0.1: {} - /detective-typescript@13.0.0(typescript@5.5.4): - resolution: {integrity: sha512-tcMYfiFWoUejSbvSblw90NDt76/4mNftYCX0SMnVRYzSXv8Fvo06hi4JOPdNvVNxRtCAKg3MJ3cBJh+ygEMH+A==} - engines: {node: ^14.14.0 || >=16.0.0} - peerDependencies: - typescript: ^5.4.4 + detective-typescript@14.0.0(typescript@5.8.3): dependencies: - '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.5.4) - ast-module-types: 6.0.0 - node-source-walk: 7.0.0 - typescript: 5.5.4 + '@typescript-eslint/typescript-estree': 8.31.1(typescript@5.8.3) + ast-module-types: 6.0.1 + node-source-walk: 7.0.1 + typescript: 5.8.3 transitivePeerDependencies: - supports-color - dev: true - /detective-vue2@2.0.3(typescript@5.5.4): - resolution: {integrity: sha512-AgWdSfVnft8uPGnUkdvE1EDadEENDCzoSRMt2xZfpxsjqVO617zGWXbB8TGIxHaqHz/nHa6lOSgAB8/dt0yEug==} - engines: {node: '>=18'} - peerDependencies: - typescript: ^5.4.4 + detective-vue2@2.2.0(typescript@5.8.3): dependencies: - '@vue/compiler-sfc': 3.4.35 - detective-es6: 5.0.0 - detective-sass: 6.0.0 - detective-scss: 5.0.0 - detective-stylus: 5.0.0 - detective-typescript: 13.0.0(typescript@5.5.4) - typescript: 5.5.4 + '@dependents/detective-less': 5.0.1 + '@vue/compiler-sfc': 3.5.13 + detective-es6: 5.0.1 + detective-sass: 6.0.1 + detective-scss: 5.0.1 + detective-stylus: 5.0.1 + detective-typescript: 14.0.0(typescript@5.8.3) + typescript: 5.8.3 transitivePeerDependencies: - supports-color - dev: true - /diff-sequences@29.6.3: - resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dev: true + diff-sequences@29.6.3: {} - /diff@4.0.2: - resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} - engines: {node: '>=0.3.1'} - dev: true + diff@5.2.0: {} - /diff@5.2.0: - resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} - engines: {node: '>=0.3.1'} - dev: true - - /dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} + dir-glob@3.0.1: dependencies: path-type: 4.0.0 - dev: true - /doctrine-temporary-fork@2.1.0: - resolution: {integrity: sha512-nliqOv5NkE4zMON4UA6AMJE6As35afs8aYXATpU4pTUdIKiARZwrJVEP1boA3Rx1ZXHVkwxkhcq4VkqvsuRLsA==} - engines: {node: '>=0.10.0'} + doctrine-temporary-fork@2.1.0: dependencies: esutils: 2.0.3 - dev: true - /doctrine@3.0.0: - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} - engines: {node: '>=6.0.0'} + documentation@14.0.3: dependencies: - esutils: 2.0.3 - dev: true - - /documentation@14.0.3: - resolution: {integrity: sha512-B7cAviVKN9Rw7Ofd+9grhVuxiHwly6Ieh+d/ceMw8UdBOv/irkuwnDEJP8tq0wgdLJDUVuIkovV+AX9mTrZFxg==} - engines: {node: '>=14'} - hasBin: true - dependencies: - '@babel/core': 7.23.5 - '@babel/generator': 7.23.5 - '@babel/parser': 7.23.5 - '@babel/traverse': 7.23.5 - '@babel/types': 7.23.5 + '@babel/core': 7.26.0 + '@babel/generator': 7.26.2 + '@babel/parser': 7.26.2 + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 chalk: 5.3.0 chokidar: 3.5.3 diff: 5.2.0 @@ -10934,470 +14388,317 @@ packages: vfile-sort: 3.0.1 yargs: 17.7.2 optionalDependencies: - '@vue/compiler-sfc': 3.4.35 + '@vue/compiler-sfc': 3.5.13 vue-template-compiler: 2.7.16 transitivePeerDependencies: - supports-color - dev: true - /dot-prop@5.3.0: - resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} - engines: {node: '>=8'} + dot-prop@5.3.0: dependencies: is-obj: 2.0.0 - dev: true - /dotenv-expand@10.0.0: - resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==} - engines: {node: '>=12'} - dev: true + dotenv-expand@10.0.0: {} - /dotenv@16.3.1: - resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==} - engines: {node: '>=12'} - dev: true + dotenv@16.3.1: {} - /dotignore@0.1.2: - resolution: {integrity: sha512-UGGGWfSauusaVJC+8fgV+NVvBXkCTmVv7sk6nojDZZvuOUNGUy0Zk4UpHQD6EDjS0jpBwcACvH4eofvyzBcRDw==} - hasBin: true + dotignore@0.1.2: dependencies: minimatch: 3.1.2 - dev: true - /duplexer@0.1.2: - resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} - dev: true + dunder-proto@1.0.1: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-errors: 1.3.0 + gopd: 1.2.0 - /earcut@2.2.4: - resolution: {integrity: sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==} - dev: false + duplexer@0.1.2: {} - /eastasianwidth@0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - dev: true + earcut@2.2.4: {} - /ejs@3.1.10: - resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} - engines: {node: '>=0.10.0'} - hasBin: true + eastasianwidth@0.2.0: {} + + ejs@3.1.10: dependencies: jake: 10.8.7 - dev: true - /electron-to-chromium@1.4.609: - resolution: {integrity: sha512-ihiCP7PJmjoGNuLpl7TjNA8pCQWu09vGyjlPYw1Rqww4gvNuCcmvl+44G+2QyJ6S2K4o+wbTS++Xz0YN8Q9ERw==} - dev: true + electron-to-chromium@1.5.145: {} - /emoji-regex@10.3.0: - resolution: {integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==} - dev: true + emoji-regex@10.4.0: {} - /emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} - dev: true + emoji-regex@8.0.0: {} - /emoji-regex@9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} - dev: true + emoji-regex@9.2.2: {} - /enabled@2.0.0: - resolution: {integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==} - dev: true + enabled@2.0.0: {} - /encoding@0.1.13: - resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} - requiresBuild: true + encoding@0.1.13: dependencies: iconv-lite: 0.6.3 - dev: true optional: true - /end-of-stream@1.4.4: - resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + end-of-stream@1.4.4: dependencies: once: 1.4.0 - dev: true - /enhanced-resolve@5.17.1: - resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==} - engines: {node: '>=10.13.0'} + enhanced-resolve@5.18.1: dependencies: graceful-fs: 4.2.11 tapable: 2.2.1 - dev: true - /enquirer@2.3.6: - resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} - engines: {node: '>=8.6'} + enquirer@2.3.6: dependencies: ansi-colors: 4.1.3 - dev: true - /entities@4.5.0: - resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} - engines: {node: '>=0.12'} - requiresBuild: true - dev: true + entities@4.5.0: {} - /env-paths@2.2.1: - resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} - engines: {node: '>=6'} - dev: true + env-paths@2.2.1: {} - /envinfo@7.13.0: - resolution: {integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==} - engines: {node: '>=4'} - hasBin: true - dev: true + envinfo@7.13.0: {} - /environment@1.1.0: - resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==} - engines: {node: '>=18'} - dev: true + environment@1.1.0: {} - /err-code@2.0.3: - resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} - dev: true + err-code@2.0.3: {} - /error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + error-ex@1.3.2: dependencies: is-arrayish: 0.2.1 - dev: true - /es-abstract@1.22.3: - resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==} - engines: {node: '>= 0.4'} + es-abstract@1.23.5: dependencies: - array-buffer-byte-length: 1.0.0 - arraybuffer.prototype.slice: 1.0.2 - available-typed-arrays: 1.0.5 - call-bind: 1.0.5 - es-set-tostringtag: 2.0.2 - es-to-primitive: 1.2.1 + array-buffer-byte-length: 1.0.1 + arraybuffer.prototype.slice: 1.0.3 + available-typed-arrays: 1.0.7 + call-bind: 1.0.7 + data-view-buffer: 1.0.1 + data-view-byte-length: 1.0.1 + data-view-byte-offset: 1.0.0 + es-define-property: 1.0.0 + es-errors: 1.3.0 + es-object-atoms: 1.0.0 + es-set-tostringtag: 2.0.3 + es-to-primitive: 1.3.0 function.prototype.name: 1.1.6 - get-intrinsic: 1.2.2 - get-symbol-description: 1.0.0 - globalthis: 1.0.3 - gopd: 1.0.1 - has-property-descriptors: 1.0.1 - has-proto: 1.0.1 - has-symbols: 1.0.3 - hasown: 2.0.0 - internal-slot: 1.0.6 - is-array-buffer: 3.0.2 + get-intrinsic: 1.2.4 + get-symbol-description: 1.0.2 + globalthis: 1.0.4 + gopd: 1.1.0 + has-property-descriptors: 1.0.2 + has-proto: 1.1.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + internal-slot: 1.0.7 + is-array-buffer: 3.0.4 is-callable: 1.2.7 - is-negative-zero: 2.0.2 + is-data-view: 1.0.1 + is-negative-zero: 2.0.3 is-regex: 1.1.4 - is-shared-array-buffer: 1.0.2 - is-string: 1.0.7 - is-typed-array: 1.1.12 + is-shared-array-buffer: 1.0.3 + is-string: 1.1.0 + is-typed-array: 1.1.13 is-weakref: 1.0.2 - object-inspect: 1.13.1 + object-inspect: 1.13.3 object-keys: 1.1.1 object.assign: 4.1.5 - regexp.prototype.flags: 1.5.1 - safe-array-concat: 1.0.1 - safe-regex-test: 1.0.0 - string.prototype.trim: 1.2.8 - string.prototype.trimend: 1.0.7 - string.prototype.trimstart: 1.0.7 - typed-array-buffer: 1.0.0 - typed-array-byte-length: 1.0.0 - typed-array-byte-offset: 1.0.0 - typed-array-length: 1.0.4 + regexp.prototype.flags: 1.5.3 + safe-array-concat: 1.1.2 + safe-regex-test: 1.0.3 + string.prototype.trim: 1.2.9 + string.prototype.trimend: 1.0.8 + string.prototype.trimstart: 1.0.8 + typed-array-buffer: 1.0.2 + typed-array-byte-length: 1.0.1 + typed-array-byte-offset: 1.0.3 + typed-array-length: 1.0.7 unbox-primitive: 1.0.2 - which-typed-array: 1.1.13 - dev: true + which-typed-array: 1.1.16 - /es-check@7.1.1: - resolution: {integrity: sha512-rgwR2wdJp437Exq28Emwc4x5+Qn6ORDliN9daWo0wTCg5jOQxJsIZieqxVi4AfDEIN4OwMwYhld9b13mnRocUQ==} - engines: {node: '>= 4'} - hasBin: true + es-check@9.0.0: dependencies: - acorn: 8.8.2 - commander: 10.0.0 - fast-glob: 3.3.2 + acorn: 8.14.1 + acorn-walk: 8.3.4 + browserslist: 4.24.4 + commander: 13.1.0 + fast-glob: 3.3.3 + lilconfig: 3.1.3 supports-color: 8.1.1 - winston: 3.11.0 - dev: true + winston: 3.17.0 - /es-get-iterator@1.1.3: - resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} + es-define-property@1.0.0: dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - has-symbols: 1.0.3 + get-intrinsic: 1.2.4 + + es-define-property@1.0.1: {} + + es-errors@1.3.0: {} + + es-get-iterator@1.1.3: + dependencies: + call-bind: 1.0.7 + get-intrinsic: 1.2.4 + has-symbols: 1.1.0 is-arguments: 1.1.1 - is-map: 2.0.2 - is-set: 2.0.2 - is-string: 1.0.7 + is-map: 2.0.3 + is-set: 2.0.3 + is-string: 1.1.0 isarray: 2.0.5 stop-iteration-iterator: 1.0.0 - dev: true - /es-set-tostringtag@2.0.2: - resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==} - engines: {node: '>= 0.4'} + es-object-atoms@1.0.0: dependencies: - get-intrinsic: 1.2.2 - has-tostringtag: 1.0.0 - hasown: 2.0.0 - dev: true + es-errors: 1.3.0 - /es-to-primitive@1.2.1: - resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} - engines: {node: '>= 0.4'} + es-object-atoms@1.1.1: + dependencies: + es-errors: 1.3.0 + + es-set-tostringtag@2.0.3: + dependencies: + get-intrinsic: 1.2.4 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + + es-to-primitive@1.3.0: dependencies: is-callable: 1.2.7 is-date-object: 1.0.5 - is-symbol: 1.0.4 - dev: true + is-symbol: 1.1.0 - /esbuild@0.18.20: - resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true + esbuild@0.25.3: optionalDependencies: - '@esbuild/android-arm': 0.18.20 - '@esbuild/android-arm64': 0.18.20 - '@esbuild/android-x64': 0.18.20 - '@esbuild/darwin-arm64': 0.18.20 - '@esbuild/darwin-x64': 0.18.20 - '@esbuild/freebsd-arm64': 0.18.20 - '@esbuild/freebsd-x64': 0.18.20 - '@esbuild/linux-arm': 0.18.20 - '@esbuild/linux-arm64': 0.18.20 - '@esbuild/linux-ia32': 0.18.20 - '@esbuild/linux-loong64': 0.18.20 - '@esbuild/linux-mips64el': 0.18.20 - '@esbuild/linux-ppc64': 0.18.20 - '@esbuild/linux-riscv64': 0.18.20 - '@esbuild/linux-s390x': 0.18.20 - '@esbuild/linux-x64': 0.18.20 - '@esbuild/netbsd-x64': 0.18.20 - '@esbuild/openbsd-x64': 0.18.20 - '@esbuild/sunos-x64': 0.18.20 - '@esbuild/win32-arm64': 0.18.20 - '@esbuild/win32-ia32': 0.18.20 - '@esbuild/win32-x64': 0.18.20 - dev: true + '@esbuild/aix-ppc64': 0.25.3 + '@esbuild/android-arm': 0.25.3 + '@esbuild/android-arm64': 0.25.3 + '@esbuild/android-x64': 0.25.3 + '@esbuild/darwin-arm64': 0.25.3 + '@esbuild/darwin-x64': 0.25.3 + '@esbuild/freebsd-arm64': 0.25.3 + '@esbuild/freebsd-x64': 0.25.3 + '@esbuild/linux-arm': 0.25.3 + '@esbuild/linux-arm64': 0.25.3 + '@esbuild/linux-ia32': 0.25.3 + '@esbuild/linux-loong64': 0.25.3 + '@esbuild/linux-mips64el': 0.25.3 + '@esbuild/linux-ppc64': 0.25.3 + '@esbuild/linux-riscv64': 0.25.3 + '@esbuild/linux-s390x': 0.25.3 + '@esbuild/linux-x64': 0.25.3 + '@esbuild/netbsd-arm64': 0.25.3 + '@esbuild/netbsd-x64': 0.25.3 + '@esbuild/openbsd-arm64': 0.25.3 + '@esbuild/openbsd-x64': 0.25.3 + '@esbuild/sunos-x64': 0.25.3 + '@esbuild/win32-arm64': 0.25.3 + '@esbuild/win32-ia32': 0.25.3 + '@esbuild/win32-x64': 0.25.3 - /esbuild@0.19.11: - resolution: {integrity: sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - optionalDependencies: - '@esbuild/aix-ppc64': 0.19.11 - '@esbuild/android-arm': 0.19.11 - '@esbuild/android-arm64': 0.19.11 - '@esbuild/android-x64': 0.19.11 - '@esbuild/darwin-arm64': 0.19.11 - '@esbuild/darwin-x64': 0.19.11 - '@esbuild/freebsd-arm64': 0.19.11 - '@esbuild/freebsd-x64': 0.19.11 - '@esbuild/linux-arm': 0.19.11 - '@esbuild/linux-arm64': 0.19.11 - '@esbuild/linux-ia32': 0.19.11 - '@esbuild/linux-loong64': 0.19.11 - '@esbuild/linux-mips64el': 0.19.11 - '@esbuild/linux-ppc64': 0.19.11 - '@esbuild/linux-riscv64': 0.19.11 - '@esbuild/linux-s390x': 0.19.11 - '@esbuild/linux-x64': 0.19.11 - '@esbuild/netbsd-x64': 0.19.11 - '@esbuild/openbsd-x64': 0.19.11 - '@esbuild/sunos-x64': 0.19.11 - '@esbuild/win32-arm64': 0.19.11 - '@esbuild/win32-ia32': 0.19.11 - '@esbuild/win32-x64': 0.19.11 - dev: true + escalade@3.2.0: {} - /escalade@3.1.1: - resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} - engines: {node: '>=6'} - dev: true + escape-string-regexp@1.0.5: {} - /escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} - dev: true + escape-string-regexp@4.0.0: {} - /escape-string-regexp@4.0.0: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} - engines: {node: '>=10'} - dev: true + escape-string-regexp@5.0.0: {} - /escape-string-regexp@5.0.0: - resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} - engines: {node: '>=12'} - dev: true - - /escodegen@2.1.0: - resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} - engines: {node: '>=6.0'} - hasBin: true + escodegen@2.1.0: dependencies: esprima: 4.0.1 estraverse: 5.3.0 esutils: 2.0.3 optionalDependencies: source-map: 0.6.1 - dev: true - /eslint-config-prettier@9.1.0(eslint@8.55.0): - resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} - hasBin: true - peerDependencies: - eslint: '>=7.0.0' + eslint-config-prettier@10.1.2(eslint@9.25.1): dependencies: - eslint: 8.55.0 - dev: true + eslint: 9.25.1 - /eslint-plugin-prettier@5.0.1(eslint-config-prettier@9.1.0)(eslint@8.55.0)(prettier@3.3.3): - resolution: {integrity: sha512-m3u5RnR56asrwV/lDC4GHorlW75DsFfmUcjfCYylTUs85dBRnB7VM6xG8eCMJdeDRnppzmxZVf1GEPJvl1JmNg==} - engines: {node: ^14.18.0 || >=16.0.0} - peerDependencies: - '@types/eslint': '>=8.0.0' - eslint: '>=8.0.0' - eslint-config-prettier: '*' - prettier: '>=3.0.0' - peerDependenciesMeta: - '@types/eslint': - optional: true - eslint-config-prettier: - optional: true + eslint-plugin-prettier@5.2.6(eslint-config-prettier@10.1.2)(eslint@9.25.1)(prettier@3.5.3): dependencies: - eslint: 8.55.0 - eslint-config-prettier: 9.1.0(eslint@8.55.0) - prettier: 3.3.3 + eslint: 9.25.1 + eslint-config-prettier: 10.1.2(eslint@9.25.1) + prettier: 3.5.3 prettier-linter-helpers: 1.0.0 - synckit: 0.8.6 - dev: true + synckit: 0.11.4 - /eslint-scope@7.2.2: - resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + eslint-scope@8.3.0: dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 - dev: true - /eslint-visitor-keys@3.4.3: - resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dev: true + eslint-visitor-keys@3.4.3: {} - /eslint@8.55.0: - resolution: {integrity: sha512-iyUUAM0PCKj5QpwGfmCAG9XXbZCWsqP/eWAWrG/W0umvjuLRBECwSFdt+rCntju0xEH7teIABPwXpahftIaTdA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - hasBin: true + eslint-visitor-keys@4.2.0: {} + + eslint@9.25.1: dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.55.0) - '@eslint-community/regexpp': 4.10.0 - '@eslint/eslintrc': 2.1.4 - '@eslint/js': 8.55.0 - '@humanwhocodes/config-array': 0.11.13 + '@eslint-community/eslint-utils': 4.4.1(eslint@9.25.1) + '@eslint-community/regexpp': 4.12.1 + '@eslint/config-array': 0.20.0 + '@eslint/config-helpers': 0.2.1 + '@eslint/core': 0.13.0 + '@eslint/eslintrc': 3.3.1 + '@eslint/js': 9.25.1 + '@eslint/plugin-kit': 0.2.8 + '@humanfs/node': 0.16.6 '@humanwhocodes/module-importer': 1.0.1 - '@nodelib/fs.walk': 1.2.8 - '@ungap/structured-clone': 1.2.0 + '@humanwhocodes/retry': 0.4.2 + '@types/estree': 1.0.6 + '@types/json-schema': 7.0.15 ajv: 6.12.6 chalk: 4.1.2 - cross-spawn: 7.0.3 - debug: 4.3.4 - doctrine: 3.0.0 + cross-spawn: 7.0.6 + debug: 4.3.7 escape-string-regexp: 4.0.0 - eslint-scope: 7.2.2 - eslint-visitor-keys: 3.4.3 - espree: 9.6.1 - esquery: 1.5.0 + eslint-scope: 8.3.0 + eslint-visitor-keys: 4.2.0 + espree: 10.3.0 + esquery: 1.6.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 - file-entry-cache: 6.0.1 + file-entry-cache: 8.0.0 find-up: 5.0.0 glob-parent: 6.0.2 - globals: 13.23.0 - graphemer: 1.4.0 - ignore: 5.3.0 + ignore: 5.3.2 imurmurhash: 0.1.4 is-glob: 4.0.3 - is-path-inside: 3.0.3 - js-yaml: 4.1.0 json-stable-stringify-without-jsonify: 1.0.1 - levn: 0.4.1 lodash.merge: 4.6.2 minimatch: 3.1.2 natural-compare: 1.4.0 - optionator: 0.9.3 - strip-ansi: 6.0.1 - text-table: 0.2.0 + optionator: 0.9.4 transitivePeerDependencies: - supports-color - dev: true - /esm@3.2.25: - resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==} - engines: {node: '>=6'} - dev: true + esm@3.2.25: {} - /espree@9.6.1: - resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + espree@10.3.0: dependencies: - acorn: 8.11.2 - acorn-jsx: 5.3.2(acorn@8.11.2) - eslint-visitor-keys: 3.4.3 - dev: true + acorn: 8.14.1 + acorn-jsx: 5.3.2(acorn@8.14.1) + eslint-visitor-keys: 4.2.0 - /esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} - hasBin: true - dev: true + esprima@4.0.1: {} - /esquery@1.5.0: - resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} - engines: {node: '>=0.10'} + esquery@1.6.0: dependencies: estraverse: 5.3.0 - dev: true - /esrecurse@4.3.0: - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} - engines: {node: '>=4.0'} + esrecurse@4.3.0: dependencies: estraverse: 5.3.0 - dev: true - /estraverse@5.3.0: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} - engines: {node: '>=4.0'} - dev: true + estraverse@5.3.0: {} - /estree-walker@2.0.2: - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} - dev: true + estree-walker@2.0.2: {} - /esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} - dev: true + esutils@2.0.3: {} - /eventemitter3@4.0.7: - resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} - dev: true + eventemitter3@4.0.7: {} - /eventemitter3@5.0.1: - resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} - dev: true + eventemitter3@5.0.1: {} - /execa@5.0.0: - resolution: {integrity: sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==} - engines: {node: '>=10'} + execa@5.0.0: dependencies: - cross-spawn: 7.0.3 + cross-spawn: 7.0.6 get-stream: 6.0.1 human-signals: 2.1.0 is-stream: 2.0.1 @@ -11406,43 +14707,10 @@ packages: onetime: 5.1.2 signal-exit: 3.0.7 strip-final-newline: 2.0.0 - dev: true - /execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} + execa@8.0.1: dependencies: - cross-spawn: 7.0.3 - get-stream: 6.0.1 - human-signals: 2.1.0 - is-stream: 2.0.1 - merge-stream: 2.0.0 - npm-run-path: 4.0.1 - onetime: 5.1.2 - signal-exit: 3.0.7 - strip-final-newline: 2.0.0 - dev: true - - /execa@7.2.0: - resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==} - engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0} - dependencies: - cross-spawn: 7.0.3 - get-stream: 6.0.1 - human-signals: 4.3.1 - is-stream: 3.0.0 - merge-stream: 2.0.0 - npm-run-path: 5.1.0 - onetime: 6.0.0 - signal-exit: 3.0.7 - strip-final-newline: 3.0.0 - dev: true - - /execa@8.0.1: - resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} - engines: {node: '>=16.17'} - dependencies: - cross-spawn: 7.0.3 + cross-spawn: 7.0.6 get-stream: 8.0.1 human-signals: 5.0.0 is-stream: 3.0.0 @@ -11451,455 +14719,312 @@ packages: onetime: 6.0.0 signal-exit: 4.1.0 strip-final-newline: 3.0.0 - dev: true - /exponential-backoff@3.1.1: - resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==} - dev: true + exponential-backoff@3.1.1: {} - /extend@3.0.2: - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} - dev: true + extend@3.0.2: {} - /external-editor@3.1.0: - resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} - engines: {node: '>=4'} + external-editor@3.1.0: dependencies: chardet: 0.7.0 iconv-lite: 0.4.24 tmp: 0.0.33 - dev: true - /fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + fast-deep-equal@3.1.3: {} - /fast-diff@1.3.0: - resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} - dev: true + fast-diff@1.3.0: {} - /fast-glob@3.3.2: - resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} - engines: {node: '>=8.6.0'} + fast-glob@3.3.2: dependencies: '@nodelib/fs.stat': 2.0.5 '@nodelib/fs.walk': 1.2.8 glob-parent: 5.1.2 merge2: 1.4.1 - micromatch: 4.0.5 - dev: true + micromatch: 4.0.8 - /fast-json-stable-stringify@2.1.0: - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} - dev: true + fast-glob@3.3.3: + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.8 - /fast-levenshtein@2.0.6: - resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} - dev: true + fast-json-stable-stringify@2.1.0: {} - /fastq@1.15.0: - resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} + fast-levenshtein@2.0.6: {} + + fastq@1.15.0: dependencies: reusify: 1.0.4 - dev: true - /fecha@4.2.3: - resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==} - dev: true + fdir@6.4.4(picomatch@4.0.2): + dependencies: + picomatch: 4.0.2 - /figures@3.2.0: - resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} - engines: {node: '>=8'} + fecha@4.2.3: {} + + figures@3.2.0: dependencies: escape-string-regexp: 1.0.5 - dev: true - /file-entry-cache@6.0.1: - resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} - engines: {node: ^10.12.0 || >=12.0.0} + file-entry-cache@8.0.0: dependencies: - flat-cache: 3.2.0 - dev: true + flat-cache: 4.0.1 - /filelist@1.0.4: - resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} + filelist@1.0.4: dependencies: minimatch: 5.1.6 - dev: true - /filing-cabinet@5.0.2: - resolution: {integrity: sha512-RZlFj8lzyu6jqtFBeXNqUjjNG6xm+gwXue3T70pRxw1W40kJwlgq0PSWAmh0nAnn5DHuBIecLXk9+1VKS9ICXA==} - engines: {node: '>=18'} - hasBin: true + filing-cabinet@5.0.3: dependencies: app-module-path: 2.2.0 commander: 12.1.0 - enhanced-resolve: 5.17.1 - module-definition: 6.0.0 - module-lookup-amd: 9.0.2 - resolve: 1.22.8 - resolve-dependency-path: 4.0.0 - sass-lookup: 6.0.1 - stylus-lookup: 6.0.0 + enhanced-resolve: 5.18.1 + module-definition: 6.0.1 + module-lookup-amd: 9.0.4 + resolve: 1.22.10 + resolve-dependency-path: 4.0.1 + sass-lookup: 6.1.0 + stylus-lookup: 6.1.0 tsconfig-paths: 4.2.0 - typescript: 5.5.4 - dev: true + typescript: 5.8.3 - /fill-range@7.1.1: - resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} - engines: {node: '>=8'} + fill-range@7.1.1: dependencies: to-regex-range: 5.0.1 - dev: true - /find-packages@10.0.4: - resolution: {integrity: sha512-JmO9lEBUEYOiRw/bdbdgFWpGFgBZBGLcK/5GjQKo3ZN+zR6jmQOh9gWyZoqxlQmnldZ9WBWhna0QYyuq6BxvRg==} - engines: {node: '>=14.6'} + find-packages@10.0.4: dependencies: '@pnpm/read-project-manifest': 4.1.1 '@pnpm/types': 8.9.0 '@pnpm/util.lex-comparator': 1.0.0 - fast-glob: 3.3.2 + fast-glob: 3.3.3 p-filter: 2.1.0 - dev: true - /find-up@2.1.0: - resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} - engines: {node: '>=4'} + find-up@2.1.0: dependencies: locate-path: 2.0.0 - dev: true - /find-up@4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} - engines: {node: '>=8'} + find-up@4.1.0: dependencies: locate-path: 5.0.0 path-exists: 4.0.0 - dev: true - /find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} + find-up@5.0.0: dependencies: locate-path: 6.0.0 path-exists: 4.0.0 - dev: true - /find-up@6.3.0: - resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + find-up@6.3.0: dependencies: locate-path: 7.2.0 path-exists: 5.0.0 - dev: true - /find-up@7.0.0: - resolution: {integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==} - engines: {node: '>=18'} + find-up@7.0.0: dependencies: locate-path: 7.2.0 path-exists: 5.0.0 unicorn-magic: 0.1.0 - dev: true - /flat-cache@3.2.0: - resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} - engines: {node: ^10.12.0 || >=12.0.0} + flat-cache@4.0.1: dependencies: - flatted: 3.2.9 + flatted: 3.3.2 keyv: 4.5.4 - rimraf: 3.0.2 - dev: true - /flat@5.0.2: - resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} - hasBin: true - dev: true + flat@5.0.2: {} - /flatted@3.2.9: - resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} - dev: true + flatted@3.3.2: {} - /fn.name@1.1.0: - resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==} - dev: true + fn.name@1.1.0: {} - /follow-redirects@1.15.6: - resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==} - engines: {node: '>=4.0'} - peerDependencies: - debug: '*' - peerDependenciesMeta: - debug: - optional: true - dev: true + follow-redirects@1.15.6: {} - /for-each@0.3.3: - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + for-each@0.3.3: dependencies: is-callable: 1.2.7 - dev: true - /foreground-child@3.1.1: - resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} - engines: {node: '>=14'} + foreground-child@3.3.1: dependencies: - cross-spawn: 7.0.3 + cross-spawn: 7.0.6 signal-exit: 4.1.0 - dev: true - /form-data@4.0.0: - resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} - engines: {node: '>= 6'} + form-data@4.0.0: dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.35 - dev: true - /fs-constants@1.0.0: - resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} - dev: true + fs-constants@1.0.0: {} - /fs-extra@11.2.0: - resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} - engines: {node: '>=14.14'} + fs-extra@11.3.0: dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 universalify: 2.0.1 - dev: true - /fs-minipass@2.1.0: - resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} - engines: {node: '>= 8'} + fs-minipass@2.1.0: dependencies: minipass: 3.3.6 - dev: true - /fs-minipass@3.0.3: - resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + fs-minipass@3.0.3: dependencies: - minipass: 7.0.4 - dev: true + minipass: 7.1.2 - /fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - dev: true + fs.realpath@1.0.0: {} - /fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - requiresBuild: true - dev: true + fsevents@2.3.3: optional: true - /function-bind@1.1.2: - resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} - dev: true + function-bind@1.1.2: {} - /function.prototype.name@1.1.6: - resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} - engines: {node: '>= 0.4'} + function.prototype.name@1.1.6: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 + es-abstract: 1.23.5 functions-have-names: 1.2.3 - dev: true - /functions-have-names@1.2.3: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} - dev: true + functions-have-names@1.2.3: {} - /gensync@1.0.0-beta.2: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} - engines: {node: '>=6.9.0'} - dev: true + gensync@1.0.0-beta.2: {} - /geojson-equality-ts@1.0.2: - resolution: {integrity: sha512-h3Ryq+0mCSN/7yLs0eDgrZhvc9af23o/QuC4aTiuuzP/MRCtd6mf5rLsLRY44jX0RPUfM8c4GqERQmlUxPGPoQ==} + geojson-equality-ts@1.0.2: dependencies: '@types/geojson': 7946.0.14 - dev: false - /geojson-polygon-self-intersections@1.2.1: - resolution: {integrity: sha512-/QM1b5u2d172qQVO//9CGRa49jEmclKEsYOQmWP9ooEjj63tBM51m2805xsbxkzlEELQ2REgTf700gUhhlegxA==} + geojson-polygon-self-intersections@1.2.1: dependencies: rbush: 2.0.2 - dev: false - /get-amd-module-type@6.0.0: - resolution: {integrity: sha512-hFM7oivtlgJ3d6XWD6G47l8Wyh/C6vFw5G24Kk1Tbq85yh5gcM8Fne5/lFhiuxB+RT6+SI7I1ThB9lG4FBh3jw==} - engines: {node: '>=18'} + get-amd-module-type@6.0.1: dependencies: - ast-module-types: 6.0.0 - node-source-walk: 7.0.0 - dev: true + ast-module-types: 6.0.1 + node-source-walk: 7.0.1 - /get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} - engines: {node: 6.* || 8.* || >= 10.*} - dev: true + get-caller-file@2.0.5: {} - /get-east-asian-width@1.2.0: - resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==} - engines: {node: '>=18'} - dev: true + get-east-asian-width@1.3.0: {} - /get-intrinsic@1.2.2: - resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} + get-intrinsic@1.2.4: dependencies: + es-errors: 1.3.0 function-bind: 1.1.2 - has-proto: 1.0.1 - has-symbols: 1.0.3 - hasown: 2.0.0 - dev: true + has-proto: 1.1.0 + has-symbols: 1.1.0 + hasown: 2.0.2 - /get-own-enumerable-property-symbols@3.0.2: - resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} - dev: true + get-intrinsic@1.3.0: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + function-bind: 1.1.2 + get-proto: 1.0.1 + gopd: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + math-intrinsics: 1.1.0 - /get-package-type@0.1.0: - resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} - engines: {node: '>=8.0.0'} - dev: true + get-own-enumerable-property-symbols@3.0.2: {} - /get-pkg-repo@4.2.1: - resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==} - engines: {node: '>=6.9.0'} - hasBin: true + get-package-type@0.1.0: {} + + get-pkg-repo@4.2.1: dependencies: '@hutson/parse-repository-url': 3.0.2 hosted-git-info: 4.1.0 through2: 2.0.5 yargs: 16.2.0 - dev: true - /get-port@5.1.1: - resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==} - engines: {node: '>=8'} - dev: true + get-port@5.1.1: {} - /get-stream@6.0.0: - resolution: {integrity: sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==} - engines: {node: '>=10'} - dev: true - - /get-stream@6.0.1: - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} - engines: {node: '>=10'} - dev: true - - /get-stream@8.0.1: - resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} - engines: {node: '>=16'} - dev: true - - /get-symbol-description@1.0.0: - resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} - engines: {node: '>= 0.4'} + get-proto@1.0.1: dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - dev: true + dunder-proto: 1.0.1 + es-object-atoms: 1.1.1 - /get-tsconfig@4.7.2: - resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==} + get-stream@6.0.0: {} + + get-stream@6.0.1: {} + + get-stream@8.0.1: {} + + get-symbol-description@1.0.2: + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + + get-tsconfig@4.8.1: dependencies: resolve-pkg-maps: 1.0.0 - dev: true - /git-raw-commits@3.0.0: - resolution: {integrity: sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==} - engines: {node: '>=14'} - hasBin: true + git-raw-commits@3.0.0: dependencies: dargs: 7.0.0 meow: 8.1.2 split2: 3.2.2 - dev: true - /git-remote-origin-url@2.0.0: - resolution: {integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==} - engines: {node: '>=4'} + git-remote-origin-url@2.0.0: dependencies: gitconfiglocal: 1.0.0 pify: 2.3.0 - dev: true - /git-semver-tags@5.0.1: - resolution: {integrity: sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA==} - engines: {node: '>=14'} - hasBin: true + git-semver-tags@5.0.1: dependencies: meow: 8.1.2 semver: 7.6.3 - dev: true - /git-up@7.0.0: - resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==} + git-up@7.0.0: dependencies: is-ssh: 1.4.0 parse-url: 8.1.0 - dev: true - /git-url-parse@13.1.0: - resolution: {integrity: sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==} + git-url-parse@13.1.0: dependencies: git-up: 7.0.0 - dev: true - /git-url-parse@14.0.0: - resolution: {integrity: sha512-NnLweV+2A4nCvn4U/m2AoYu0pPKlsmhK9cknG7IMwsjFY1S2jxM+mAhsDxyxfCIGfGaD+dozsyX4b6vkYc83yQ==} + git-url-parse@14.0.0: dependencies: git-up: 7.0.0 - dev: true - /gitconfiglocal@1.0.0: - resolution: {integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==} + gitconfiglocal@1.0.0: dependencies: ini: 1.3.8 - dev: true - /github-slugger@1.4.0: - resolution: {integrity: sha512-w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ==} - dev: true + github-slugger@1.4.0: {} - /github-slugger@2.0.0: - resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} - dev: true + github-slugger@2.0.0: {} - /glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} + glob-parent@5.1.2: dependencies: is-glob: 4.0.3 - dev: true - /glob-parent@6.0.2: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} - engines: {node: '>=10.13.0'} + glob-parent@6.0.2: dependencies: is-glob: 4.0.3 - dev: true - /glob@10.3.10: - resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} - engines: {node: '>=16 || 14 >=14.17'} - hasBin: true + glob@10.4.5: dependencies: - foreground-child: 3.1.1 - jackspeak: 2.3.6 - minimatch: 9.0.3 - minipass: 7.0.4 - path-scurry: 1.10.1 - dev: true + foreground-child: 3.3.1 + jackspeak: 3.4.3 + minimatch: 9.0.5 + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 1.11.1 - /glob@7.1.6: - resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} + glob@11.0.2: + dependencies: + foreground-child: 3.3.1 + jackspeak: 4.1.0 + minimatch: 10.0.1 + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 2.0.0 + + glob@7.2.3: dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -11907,185 +15032,110 @@ packages: minimatch: 3.1.2 once: 1.4.0 path-is-absolute: 1.0.1 - dev: true - /glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 - dev: true - - /glob@8.1.0: - resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} - engines: {node: '>=12'} - deprecated: Glob versions prior to v9 are no longer supported + glob@8.1.0: dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 minimatch: 5.1.6 once: 1.4.0 - dev: true - /glob@9.3.5: - resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==} - engines: {node: '>=16 || 14 >=14.17'} + glob@9.3.5: dependencies: fs.realpath: 1.0.0 minimatch: 8.0.4 minipass: 4.2.8 - path-scurry: 1.10.1 - dev: true + path-scurry: 1.11.1 - /globals-docs@2.4.1: - resolution: {integrity: sha512-qpPnUKkWnz8NESjrCvnlGklsgiQzlq+rcCxoG5uNQ+dNA7cFMCmn231slLAwS2N/PlkzZ3COL8CcS10jXmLHqg==} - dev: true + globals-docs@2.4.1: {} - /globals@11.12.0: - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} - engines: {node: '>=4'} - dev: true + globals@11.12.0: {} - /globals@13.23.0: - resolution: {integrity: sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==} - engines: {node: '>=8'} - dependencies: - type-fest: 0.20.2 - dev: true + globals@14.0.0: {} - /globalthis@1.0.3: - resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} - engines: {node: '>= 0.4'} + globals@16.0.0: {} + + globalthis@1.0.4: dependencies: define-properties: 1.2.1 - dev: true + gopd: 1.1.0 - /globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} + globby@11.1.0: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 fast-glob: 3.3.2 - ignore: 5.3.0 + ignore: 5.3.2 merge2: 1.4.1 slash: 3.0.0 - dev: true - /globby@14.0.0: - resolution: {integrity: sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==} - engines: {node: '>=18'} + globby@14.0.2: dependencies: - '@sindresorhus/merge-streams': 1.0.0 + '@sindresorhus/merge-streams': 2.3.0 fast-glob: 3.3.2 - ignore: 5.3.0 + ignore: 5.3.2 path-type: 5.0.0 slash: 5.1.0 unicorn-magic: 0.1.0 - dev: true - /gonzales-pe@4.3.0: - resolution: {integrity: sha512-otgSPpUmdWJ43VXyiNgEYE4luzHCL2pz4wQ0OnDluC6Eg4Ko3Vexy/SrSynglw/eR+OhkzmqFCZa/OFa/RgAOQ==} - engines: {node: '>=0.6.0'} - hasBin: true + gonzales-pe@4.3.0: dependencies: minimist: 1.2.8 - dev: true - /gopd@1.0.1: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + gopd@1.1.0: dependencies: - get-intrinsic: 1.2.2 - dev: true + get-intrinsic: 1.2.4 - /graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} - dev: true + gopd@1.2.0: {} - /graphemer@1.4.0: - resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} - dev: true + graceful-fs@4.2.11: {} - /handlebars@4.7.8: - resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} - engines: {node: '>=0.4.7'} - hasBin: true + graphemer@1.4.0: {} + + handlebars@4.7.8: dependencies: minimist: 1.2.8 neo-async: 2.6.2 source-map: 0.6.1 wordwrap: 1.0.0 optionalDependencies: - uglify-js: 3.19.1 - dev: true + uglify-js: 3.19.3 - /hard-rejection@2.1.0: - resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} - engines: {node: '>=6'} - dev: true + hard-rejection@2.1.0: {} - /has-bigints@1.0.2: - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} - dev: true + has-bigints@1.0.2: {} - /has-dynamic-import@2.0.1: - resolution: {integrity: sha512-X3fbtsZmwb6W7fJGR9o7x65fZoodygCrZ3TVycvghP62yYQfS0t4RS0Qcz+j5tQYUKeSWS09tHkWW6WhFV3XhQ==} + has-dynamic-import@2.1.0: dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - dev: true + call-bind: 1.0.7 + get-intrinsic: 1.2.4 - /has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} - dev: true + has-flag@3.0.0: {} - /has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} - dev: true + has-flag@4.0.0: {} - /has-property-descriptors@1.0.1: - resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} + has-property-descriptors@1.0.2: dependencies: - get-intrinsic: 1.2.2 - dev: true + es-define-property: 1.0.0 - /has-proto@1.0.1: - resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} - engines: {node: '>= 0.4'} - dev: true - - /has-symbols@1.0.3: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} - engines: {node: '>= 0.4'} - dev: true - - /has-tostringtag@1.0.0: - resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} - engines: {node: '>= 0.4'} + has-proto@1.1.0: dependencies: - has-symbols: 1.0.3 - dev: true + call-bind: 1.0.7 - /has-unicode@2.0.1: - resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} - dev: true + has-symbols@1.1.0: {} - /hasown@2.0.0: - resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} - engines: {node: '>= 0.4'} + has-tostringtag@1.0.2: + dependencies: + has-symbols: 1.1.0 + + has-unicode@2.0.1: {} + + hasown@2.0.2: dependencies: function-bind: 1.1.2 - dev: true - /hast-util-from-parse5@7.1.2: - resolution: {integrity: sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==} + hast-util-from-parse5@7.1.2: dependencies: '@types/hast': 2.3.10 '@types/unist': 2.0.10 @@ -12094,16 +15144,12 @@ packages: vfile: 5.3.7 vfile-location: 4.1.0 web-namespaces: 2.0.1 - dev: true - /hast-util-parse-selector@3.1.1: - resolution: {integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==} + hast-util-parse-selector@3.1.1: dependencies: '@types/hast': 2.3.10 - dev: true - /hast-util-raw@7.2.3: - resolution: {integrity: sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==} + hast-util-raw@7.2.3: dependencies: '@types/hast': 2.3.10 '@types/parse5': 6.0.3 @@ -12116,16 +15162,12 @@ packages: vfile: 5.3.7 web-namespaces: 2.0.1 zwitch: 2.0.4 - dev: true - /hast-util-sanitize@4.1.0: - resolution: {integrity: sha512-Hd9tU0ltknMGRDv+d6Ro/4XKzBqQnP/EZrpiTbpFYfXv/uOhWeKc+2uajcbEvAEH98VZd7eII2PiXm13RihnLw==} + hast-util-sanitize@4.1.0: dependencies: '@types/hast': 2.3.10 - dev: true - /hast-util-to-html@8.0.4: - resolution: {integrity: sha512-4tpQTUOr9BMjtYyNlt0P50mH7xj0Ks2xpo8M943Vykljf99HW6EzulIoJP1N3eKOSScEHzyzi9dm7/cn0RfGwA==} + hast-util-to-html@8.0.4: dependencies: '@types/hast': 2.3.10 '@types/unist': 2.0.10 @@ -12138,10 +15180,8 @@ packages: space-separated-tokens: 2.0.2 stringify-entities: 4.0.4 zwitch: 2.0.4 - dev: true - /hast-util-to-parse5@7.1.0: - resolution: {integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==} + hast-util-to-parse5@7.1.0: dependencies: '@types/hast': 2.3.10 comma-separated-tokens: 2.0.3 @@ -12149,183 +15189,99 @@ packages: space-separated-tokens: 2.0.2 web-namespaces: 2.0.1 zwitch: 2.0.4 - dev: true - /hast-util-whitespace@2.0.1: - resolution: {integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==} - dev: true + hast-util-whitespace@2.0.1: {} - /hastscript@7.2.0: - resolution: {integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==} + hastscript@7.2.0: dependencies: '@types/hast': 2.3.10 comma-separated-tokens: 2.0.3 hast-util-parse-selector: 3.1.1 property-information: 6.5.0 space-separated-tokens: 2.0.2 - dev: true - /he@1.2.0: - resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} - hasBin: true - requiresBuild: true - dev: true + he@1.2.0: optional: true - /highlight.js@11.10.0: - resolution: {integrity: sha512-SYVnVFswQER+zu1laSya563s+F8VDGt7o35d4utbamowvUNLLMovFqwCLSocpZTz3MgaSRA1IbqRWZv97dtErQ==} - engines: {node: '>=12.0.0'} - dev: true + highlight.js@11.10.0: {} - /hosted-git-info@2.8.9: - resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} - dev: true + hosted-git-info@2.8.9: {} - /hosted-git-info@4.1.0: - resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} - engines: {node: '>=10'} + hosted-git-info@4.1.0: dependencies: lru-cache: 6.0.0 - dev: true - /hosted-git-info@7.0.2: - resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==} - engines: {node: ^16.14.0 || >=18.0.0} + hosted-git-info@7.0.2: dependencies: - lru-cache: 10.1.0 - dev: true + lru-cache: 10.4.3 - /html-void-elements@2.0.1: - resolution: {integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==} - dev: true + html-void-elements@2.0.1: {} - /http-cache-semantics@4.1.1: - resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} - dev: true + http-cache-semantics@4.1.1: {} - /http-proxy-agent@7.0.2: - resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} - engines: {node: '>= 14'} + http-proxy-agent@7.0.2: dependencies: agent-base: 7.1.1 - debug: 4.3.4 + debug: 4.4.0 transitivePeerDependencies: - supports-color - dev: true - /https-proxy-agent@7.0.4: - resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==} - engines: {node: '>= 14'} + https-proxy-agent@7.0.4: dependencies: agent-base: 7.1.1 - debug: 4.3.4 + debug: 4.4.0 transitivePeerDependencies: - supports-color - dev: true - /human-signals@2.1.0: - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} - engines: {node: '>=10.17.0'} - dev: true + human-signals@2.1.0: {} - /human-signals@4.3.1: - resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==} - engines: {node: '>=14.18.0'} - dev: true + human-signals@5.0.0: {} - /human-signals@5.0.0: - resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} - engines: {node: '>=16.17.0'} - dev: true + husky@9.1.7: {} - /husky@9.1.4: - resolution: {integrity: sha512-bho94YyReb4JV7LYWRWxZ/xr6TtOTt8cMfmQ39MQYJ7f/YE268s3GdghGwi+y4zAeqewE5zYLvuhV0M0ijsDEA==} - engines: {node: '>=18'} - hasBin: true - dev: true - - /iconv-lite@0.4.24: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} - engines: {node: '>=0.10.0'} + iconv-lite@0.4.24: dependencies: safer-buffer: 2.1.2 - dev: true - /iconv-lite@0.6.3: - resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} - engines: {node: '>=0.10.0'} - requiresBuild: true + iconv-lite@0.6.3: dependencies: safer-buffer: 2.1.2 - dev: true optional: true - /ieee754@1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - dev: true + ieee754@1.2.1: {} - /ignore-walk@6.0.4: - resolution: {integrity: sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + ignore-walk@6.0.4: dependencies: - minimatch: 9.0.4 - dev: true + minimatch: 9.0.5 - /ignore@5.3.0: - resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==} - engines: {node: '>= 4'} - dev: true + ignore@5.3.2: {} - /import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} - engines: {node: '>=6'} + import-fresh@3.3.0: dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 - dev: true - /import-local@3.1.0: - resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} - engines: {node: '>=8'} - hasBin: true + import-local@3.1.0: dependencies: pkg-dir: 4.2.0 resolve-cwd: 3.0.0 - dev: true - /imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} - dev: true + imurmurhash@0.1.4: {} - /indent-string@4.0.0: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} - engines: {node: '>=8'} - dev: true + indent-string@4.0.0: {} - /inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + inflight@1.0.6: dependencies: once: 1.4.0 wrappy: 1.0.2 - dev: true - /inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - dev: true + inherits@2.0.4: {} - /ini@1.3.8: - resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} - dev: true + ini@1.3.8: {} - /ini@3.0.1: - resolution: {integrity: sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dev: true + ini@3.0.1: {} - /init-package-json@6.0.3: - resolution: {integrity: sha512-Zfeb5ol+H+eqJWHTaGca9BovufyGeIfr4zaaBorPmJBMrJ+KBnN+kQx2ZtXdsotUTgldHmHQV44xvUWOUA7E2w==} - engines: {node: ^16.14.0 || >=18.0.0} + init-package-json@6.0.3: dependencies: '@npmcli/package-json': 5.2.0 npm-package-arg: 11.0.2 @@ -12336,11 +15292,8 @@ packages: validate-npm-package-name: 5.0.1 transitivePeerDependencies: - bluebird - dev: true - /inquirer@8.2.6: - resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} - engines: {node: '>=12.0.0'} + inquirer@8.2.6: dependencies: ansi-escapes: 4.3.2 chalk: 4.1.2 @@ -12357,587 +15310,324 @@ packages: strip-ansi: 6.0.1 through: 2.3.8 wrap-ansi: 6.2.0 - dev: true - /internal-slot@1.0.6: - resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==} - engines: {node: '>= 0.4'} + internal-slot@1.0.7: dependencies: - get-intrinsic: 1.2.2 - hasown: 2.0.0 - side-channel: 1.0.4 - dev: true + es-errors: 1.3.0 + hasown: 2.0.2 + side-channel: 1.0.6 - /ip@2.0.1: - resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==} - dev: true + ip@2.0.1: {} - /is-absolute@1.0.0: - resolution: {integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==} - engines: {node: '>=0.10.0'} + is-absolute@1.0.0: dependencies: is-relative: 1.0.0 is-windows: 1.0.2 - dev: true - /is-arguments@1.1.1: - resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} - engines: {node: '>= 0.4'} + is-arguments@1.1.1: dependencies: - call-bind: 1.0.5 - has-tostringtag: 1.0.0 - dev: true + call-bind: 1.0.7 + has-tostringtag: 1.0.2 - /is-array-buffer@3.0.2: - resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} + is-array-buffer@3.0.4: dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - is-typed-array: 1.1.12 - dev: true + call-bind: 1.0.7 + get-intrinsic: 1.2.4 - /is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} - dev: true + is-arrayish@0.2.1: {} - /is-arrayish@0.3.2: - resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} - dev: true + is-arrayish@0.3.2: {} - /is-bigint@1.0.4: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + is-async-function@2.0.0: + dependencies: + has-tostringtag: 1.0.2 + + is-bigint@1.1.0: dependencies: has-bigints: 1.0.2 - dev: true - /is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} + is-binary-path@2.1.0: dependencies: binary-extensions: 2.2.0 - dev: true - /is-boolean-object@1.1.2: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} - engines: {node: '>= 0.4'} + is-boolean-object@1.2.0: dependencies: - call-bind: 1.0.5 - has-tostringtag: 1.0.0 - dev: true + call-bind: 1.0.7 + has-tostringtag: 1.0.2 - /is-buffer@2.0.5: - resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} - engines: {node: '>=4'} - dev: true + is-buffer@2.0.5: {} - /is-builtin-module@3.2.1: - resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} - engines: {node: '>=6'} - dependencies: - builtin-modules: 3.3.0 - dev: true + is-callable@1.2.7: {} - /is-callable@1.2.7: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} - engines: {node: '>= 0.4'} - dev: true - - /is-ci@3.0.1: - resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} - hasBin: true + is-ci@3.0.1: dependencies: ci-info: 3.9.0 - dev: true - /is-core-module@2.13.1: - resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} + is-core-module@2.13.1: dependencies: - hasown: 2.0.0 - dev: true + hasown: 2.0.2 - /is-date-object@1.0.5: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} - engines: {node: '>= 0.4'} + is-core-module@2.16.1: dependencies: - has-tostringtag: 1.0.0 - dev: true + hasown: 2.0.2 - /is-docker@2.2.1: - resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} - engines: {node: '>=8'} - hasBin: true - dev: true - - /is-docker@3.0.0: - resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - hasBin: true - dev: true - - /is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} - dev: true - - /is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} - dev: true - - /is-fullwidth-code-point@4.0.0: - resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==} - engines: {node: '>=12'} - dev: true - - /is-fullwidth-code-point@5.0.0: - resolution: {integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==} - engines: {node: '>=18'} + is-data-view@1.0.1: dependencies: - get-east-asian-width: 1.2.0 - dev: true + is-typed-array: 1.1.13 - /is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} + is-date-object@1.0.5: + dependencies: + has-tostringtag: 1.0.2 + + is-docker@2.2.1: {} + + is-extglob@2.1.1: {} + + is-finalizationregistry@1.1.0: + dependencies: + call-bind: 1.0.7 + + is-fullwidth-code-point@3.0.0: {} + + is-fullwidth-code-point@4.0.0: {} + + is-fullwidth-code-point@5.0.0: + dependencies: + get-east-asian-width: 1.3.0 + + is-generator-function@1.0.10: + dependencies: + has-tostringtag: 1.0.2 + + is-glob@4.0.3: dependencies: is-extglob: 2.1.1 - dev: true - /is-inside-container@1.0.0: - resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} - engines: {node: '>=14.16'} - hasBin: true + is-interactive@1.0.0: {} + + is-lambda@1.0.1: {} + + is-map@2.0.3: {} + + is-module@1.0.0: {} + + is-negative-zero@2.0.3: {} + + is-number-object@1.1.0: dependencies: - is-docker: 3.0.0 - dev: true + call-bind: 1.0.7 + has-tostringtag: 1.0.2 - /is-interactive@1.0.0: - resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} - engines: {node: '>=8'} - dev: true + is-number@7.0.0: {} - /is-lambda@1.0.1: - resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} - dev: true + is-obj@1.0.1: {} - /is-map@2.0.2: - resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} - dev: true + is-obj@2.0.0: {} - /is-module@1.0.0: - resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} - dev: true + is-plain-obj@1.1.0: {} - /is-negative-zero@2.0.2: - resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} - engines: {node: '>= 0.4'} - dev: true + is-plain-obj@2.1.0: {} - /is-number-object@1.0.7: - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} - engines: {node: '>= 0.4'} - dependencies: - has-tostringtag: 1.0.0 - dev: true + is-plain-obj@4.1.0: {} - /is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} - dev: true - - /is-obj@1.0.1: - resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==} - engines: {node: '>=0.10.0'} - dev: true - - /is-obj@2.0.0: - resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} - engines: {node: '>=8'} - dev: true - - /is-path-inside@3.0.3: - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} - engines: {node: '>=8'} - dev: true - - /is-plain-obj@1.1.0: - resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} - engines: {node: '>=0.10.0'} - dev: true - - /is-plain-obj@2.1.0: - resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} - engines: {node: '>=8'} - dev: true - - /is-plain-obj@4.1.0: - resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} - engines: {node: '>=12'} - dev: true - - /is-plain-object@2.0.4: - resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} - engines: {node: '>=0.10.0'} + is-plain-object@2.0.4: dependencies: isobject: 3.0.1 - dev: true - /is-plain-object@5.0.0: - resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} - engines: {node: '>=0.10.0'} - dev: true - - /is-reference@1.2.1: - resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} + is-reference@1.2.1: dependencies: - '@types/estree': 1.0.5 - dev: true + '@types/estree': 1.0.7 - /is-regex@1.1.4: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} - engines: {node: '>= 0.4'} + is-regex@1.1.4: dependencies: - call-bind: 1.0.5 - has-tostringtag: 1.0.0 - dev: true + call-bind: 1.0.7 + has-tostringtag: 1.0.2 - /is-regexp@1.0.0: - resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==} - engines: {node: '>=0.10.0'} - dev: true + is-regexp@1.0.0: {} - /is-relative@1.0.0: - resolution: {integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==} - engines: {node: '>=0.10.0'} + is-relative@1.0.0: dependencies: is-unc-path: 1.0.0 - dev: true - /is-set@2.0.2: - resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} - dev: true + is-set@2.0.3: {} - /is-shared-array-buffer@1.0.2: - resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} + is-shared-array-buffer@1.0.3: dependencies: - call-bind: 1.0.5 - dev: true + call-bind: 1.0.7 - /is-ssh@1.4.0: - resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==} + is-ssh@1.4.0: dependencies: protocols: 2.0.1 - dev: true - /is-stream@2.0.0: - resolution: {integrity: sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==} - engines: {node: '>=8'} - dev: true + is-stream@2.0.0: {} - /is-stream@2.0.1: - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} - engines: {node: '>=8'} - dev: true + is-stream@2.0.1: {} - /is-stream@3.0.0: - resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true + is-stream@3.0.0: {} - /is-string@1.0.7: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} - engines: {node: '>= 0.4'} + is-string@1.1.0: dependencies: - has-tostringtag: 1.0.0 - dev: true + call-bind: 1.0.7 + has-tostringtag: 1.0.2 - /is-symbol@1.0.4: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} - engines: {node: '>= 0.4'} + is-symbol@1.1.0: dependencies: - has-symbols: 1.0.3 - dev: true + call-bind: 1.0.7 + has-symbols: 1.1.0 + safe-regex-test: 1.0.3 - /is-text-path@1.0.1: - resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} - engines: {node: '>=0.10.0'} + is-text-path@1.0.1: dependencies: text-extensions: 1.9.0 - dev: true - /is-typed-array@1.1.12: - resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} - engines: {node: '>= 0.4'} + is-typed-array@1.1.13: dependencies: - which-typed-array: 1.1.13 - dev: true + which-typed-array: 1.1.16 - /is-typedarray@1.0.0: - resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} - dev: true + is-typedarray@1.0.0: {} - /is-unc-path@1.0.0: - resolution: {integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==} - engines: {node: '>=0.10.0'} + is-unc-path@1.0.0: dependencies: unc-path-regex: 0.1.2 - dev: true - /is-unicode-supported@0.1.0: - resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} - engines: {node: '>=10'} - dev: true + is-unicode-supported@0.1.0: {} - /is-url-superb@4.0.0: - resolution: {integrity: sha512-GI+WjezhPPcbM+tqE9LnmsY5qqjwHzTvjJ36wxYX5ujNXefSUJ/T17r5bqDV8yLhcgB59KTPNOc9O9cmHTPWsA==} - engines: {node: '>=10'} - dev: true + is-url-superb@4.0.0: {} - /is-url@1.2.4: - resolution: {integrity: sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==} - dev: true + is-url@1.2.4: {} - /is-weakmap@2.0.1: - resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} - dev: true + is-weakmap@2.0.2: {} - /is-weakref@1.0.2: - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + is-weakref@1.0.2: dependencies: - call-bind: 1.0.5 - dev: true + call-bind: 1.0.7 - /is-weakset@2.0.2: - resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} + is-weakset@2.0.3: dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - dev: true + call-bind: 1.0.7 + get-intrinsic: 1.2.4 - /is-windows@1.0.2: - resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} - engines: {node: '>=0.10.0'} - dev: true + is-windows@1.0.2: {} - /is-wsl@2.2.0: - resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} - engines: {node: '>=8'} + is-wsl@2.2.0: dependencies: is-docker: 2.2.1 - dev: true - /isarray@1.0.0: - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} - dev: true + isarray@1.0.0: {} - /isarray@2.0.5: - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} - dev: true + isarray@2.0.5: {} - /isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - dev: true + isexe@2.0.0: {} - /isexe@3.1.1: - resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==} - engines: {node: '>=16'} - dev: true + isexe@3.1.1: {} - /isobject@3.0.1: - resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} - engines: {node: '>=0.10.0'} - dev: true + isobject@3.0.1: {} - /jackspeak@2.3.6: - resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} - engines: {node: '>=14'} + jackspeak@3.4.3: dependencies: '@isaacs/cliui': 8.0.2 optionalDependencies: '@pkgjs/parseargs': 0.11.0 - dev: true - /jake@10.8.7: - resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==} - engines: {node: '>=10'} - hasBin: true + jackspeak@4.1.0: dependencies: - async: 3.2.5 - chalk: 4.1.2 + '@isaacs/cliui': 8.0.2 + + jake@10.8.7: + dependencies: + async: 3.2.6 + chalk: 4.1.0 filelist: 1.0.4 minimatch: 3.1.2 - dev: true - /jest-diff@29.7.0: - resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-diff@29.7.0: dependencies: chalk: 4.1.2 diff-sequences: 29.6.3 jest-get-type: 29.6.3 pretty-format: 29.7.0 - dev: true - /jest-get-type@29.6.3: - resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dev: true + jest-get-type@29.6.3: {} - /joycon@3.1.1: - resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} - engines: {node: '>=10'} - dev: true + joycon@3.1.1: {} - /js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - dev: true + js-tokens@4.0.0: {} - /js-yaml@3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} - hasBin: true + js-yaml@3.14.1: dependencies: argparse: 1.0.10 esprima: 4.0.1 - dev: true - /js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} - hasBin: true + js-yaml@4.1.0: dependencies: argparse: 2.0.1 - dev: true - /jsesc@0.5.0: - resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} - hasBin: true - dev: true + jsesc@3.0.2: {} - /jsesc@2.5.2: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} - engines: {node: '>=4'} - hasBin: true - dev: true + jsesc@3.1.0: {} - /json-buffer@3.0.1: - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} - dev: true + json-buffer@3.0.1: {} - /json-parse-better-errors@1.0.2: - resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} - dev: true + json-parse-better-errors@1.0.2: {} - /json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} - dev: true + json-parse-even-better-errors@2.3.1: {} - /json-parse-even-better-errors@3.0.1: - resolution: {integrity: sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + json-parse-even-better-errors@3.0.2: {} - /json-parse-even-better-errors@3.0.2: - resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + json-schema-traverse@0.4.1: {} - /json-schema-traverse@0.4.1: - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} - dev: true + json-stable-stringify-without-jsonify@1.0.1: {} - /json-stable-stringify-without-jsonify@1.0.1: - resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} - dev: true + json-stringify-nice@1.1.4: {} - /json-stringify-nice@1.1.4: - resolution: {integrity: sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==} - dev: true + json-stringify-safe@5.0.1: {} - /json-stringify-safe@5.0.1: - resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} - dev: true + json5@2.2.3: {} - /json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} - engines: {node: '>=6'} - hasBin: true - dev: true + jsonc-parser@3.2.0: {} - /jsonc-parser@3.2.0: - resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} - dev: true - - /jsonfile@6.1.0: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + jsonfile@6.1.0: dependencies: universalify: 2.0.1 optionalDependencies: graceful-fs: 4.2.11 - dev: true - /jsonparse@1.3.1: - resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} - engines: {'0': node >= 0.2.0} - dev: true + jsonparse@1.3.1: {} - /jsts@1.6.2: - resolution: {integrity: sha512-JNfDQk/fo5MeXx4xefvCyHZD22/DHowHr5K07FdgCJ81MEqn02HsDV5FQvYTz60ZIOv/+hhGbsVzXX5cuDWWlA==} - engines: {node: '>= 6'} - dev: true + jsts@1.6.2: {} - /jsts@2.7.1: - resolution: {integrity: sha512-x2wSZHEBK20CY+Wy+BPE7MrFQHW6sIsdaGUMEqmGAio+3gFzQaBYPwLRonUfQf9Ak8pBieqj9tUofX1+WtAEIg==} - engines: {node: '>= 12'} - dev: false + jsts@2.7.1: {} - /just-diff-apply@5.5.0: - resolution: {integrity: sha512-OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw==} - dev: true + just-diff-apply@5.5.0: {} - /just-diff@6.0.2: - resolution: {integrity: sha512-S59eriX5u3/QhMNq3v/gm8Kd0w8OS6Tz2FS1NG4blv+z0MuQcBRJyFWjdovM0Rad4/P4aUPFtnkNjMjyMlMSYA==} - dev: true + just-diff@6.0.2: {} - /keyv@4.5.4: - resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + keyv@4.5.4: dependencies: json-buffer: 3.0.1 - dev: true - /kind-of@6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: '>=0.10.0'} - dev: true + kind-of@6.0.3: {} - /kleur@4.1.5: - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} - engines: {node: '>=6'} - dev: true + kleur@4.1.5: {} - /konan@2.1.1: - resolution: {integrity: sha512-7ZhYV84UzJ0PR/RJnnsMZcAbn+kLasJhVNWsu8ZyVEJYRpGA5XESQ9d/7zOa08U0Ou4cmB++hMNY/3OSV9KIbg==} + konan@2.1.1: dependencies: - '@babel/parser': 7.23.5 - '@babel/traverse': 7.23.5 + '@babel/parser': 7.26.2 + '@babel/traverse': 7.25.9 transitivePeerDependencies: - supports-color - dev: true - /kuler@2.0.0: - resolution: {integrity: sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==} - dev: true + kuler@2.0.0: {} - /lerna@8.1.7: - resolution: {integrity: sha512-v2kkBn8Vqtroo30Pr5/JQ9MygRhnCsoI1jSOf3DxWmcTbkpC5U7c6rGr+7NPK6QrxKbC0/Cj4kuIBMb/7f79sQ==} - engines: {node: '>=18.0.0'} - hasBin: true + lerna@8.2.2: dependencies: - '@lerna/create': 8.1.7(typescript@5.5.4) - '@npmcli/arborist': 7.5.3 + '@lerna/create': 8.2.2(typescript@5.8.3) + '@npmcli/arborist': 7.5.4 '@npmcli/package-json': 5.2.0 '@npmcli/run-script': 8.1.0 '@nx/devkit': 19.1.1(nx@19.1.1) '@octokit/plugin-enterprise-rest': 6.0.1 - '@octokit/rest': 19.0.11 + '@octokit/rest': 20.1.2 aproba: 2.0.0 byte-size: 8.1.1 chalk: 4.1.0 @@ -12949,11 +15639,11 @@ packages: conventional-changelog-angular: 7.0.0 conventional-changelog-core: 5.0.1 conventional-recommended-bump: 7.0.1 - cosmiconfig: 8.3.6(typescript@5.5.4) + cosmiconfig: 9.0.0(typescript@5.8.3) dedent: 1.5.3 envinfo: 7.13.0 execa: 5.0.0 - fs-extra: 11.2.0 + fs-extra: 11.3.0 get-port: 5.1.1 get-stream: 6.0.0 git-url-parse: 14.0.0 @@ -12998,11 +15688,10 @@ packages: slash: 3.0.0 ssri: 10.0.6 string-width: 4.2.3 - strip-ansi: 6.0.1 strong-log-transformer: 2.1.0 tar: 6.2.1 temp-dir: 1.0.0 - typescript: 5.5.4 + typescript: 5.8.3 upath: 2.0.1 uuid: 10.0.0 validate-npm-package-license: 3.0.4 @@ -13020,29 +15709,20 @@ packages: - debug - encoding - supports-color - dev: true - /levn@0.4.1: - resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} - engines: {node: '>= 0.8.0'} + levn@0.4.1: dependencies: prelude-ls: 1.2.1 type-check: 0.4.0 - dev: true - /libnpmaccess@8.0.6: - resolution: {integrity: sha512-uM8DHDEfYG6G5gVivVl+yQd4pH3uRclHC59lzIbSvy7b5FEwR+mU49Zq1jEyRtRFv7+M99mUW9S0wL/4laT4lw==} - engines: {node: ^16.14.0 || >=18.0.0} + libnpmaccess@8.0.6: dependencies: npm-package-arg: 11.0.2 npm-registry-fetch: 17.1.0 transitivePeerDependencies: - supports-color - dev: true - /libnpmpublish@9.0.9: - resolution: {integrity: sha512-26zzwoBNAvX9AWOPiqqF6FG4HrSCPsHFkQm7nT+xU1ggAujL/eae81RnCv4CJ2In9q9fh10B88sYSzKCUh/Ghg==} - engines: {node: ^16.14.0 || >=18.0.0} + libnpmpublish@9.0.9: dependencies: ci-info: 4.0.0 normalize-package-data: 6.0.1 @@ -13054,49 +15734,29 @@ packages: ssri: 10.0.6 transitivePeerDependencies: - supports-color - dev: true - /lilconfig@3.0.0: - resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==} - engines: {node: '>=14'} - dev: true + lilconfig@3.1.3: {} - /lilconfig@3.1.2: - resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==} - engines: {node: '>=14'} - dev: true + lines-and-columns@1.2.4: {} - /lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - dev: true + lines-and-columns@2.0.4: {} - /lines-and-columns@2.0.4: - resolution: {integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true - - /lint-staged@15.2.8: - resolution: {integrity: sha512-PUWFf2zQzsd9EFU+kM1d7UP+AZDbKFKuj+9JNVTBkhUFhbg4MAt6WfyMMwBfM4lYqd4D2Jwac5iuTu9rVj4zCQ==} - engines: {node: '>=18.12.0'} - hasBin: true + lint-staged@15.5.1: dependencies: - chalk: 5.3.0 - commander: 12.1.0 - debug: 4.3.6 + chalk: 5.4.1 + commander: 13.1.0 + debug: 4.4.0 execa: 8.0.1 - lilconfig: 3.1.2 - listr2: 8.2.4 - micromatch: 4.0.7 + lilconfig: 3.1.3 + listr2: 8.3.2 + micromatch: 4.0.8 pidtree: 0.6.0 string-argv: 0.3.2 - yaml: 2.5.0 + yaml: 2.7.1 transitivePeerDependencies: - supports-color - dev: true - /listr2@8.2.4: - resolution: {integrity: sha512-opevsywziHd3zHCVQGAj8zu+Z3yHNkkoYhWIGnq54RrCVwLz0MozotJEDnKsIBLvkfLGN6BLOyAeRrYI0pKA4g==} - engines: {node: '>=18.0.0'} + listr2@8.3.2: dependencies: cli-truncate: 4.0.0 colorette: 2.0.20 @@ -13104,187 +15764,112 @@ packages: log-update: 6.1.0 rfdc: 1.4.1 wrap-ansi: 9.0.0 - dev: true - /load-json-file@4.0.0: - resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} - engines: {node: '>=4'} + load-json-file@4.0.0: dependencies: graceful-fs: 4.2.11 parse-json: 4.0.0 pify: 3.0.0 strip-bom: 3.0.0 - dev: true - /load-json-file@6.2.0: - resolution: {integrity: sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==} - engines: {node: '>=8'} + load-json-file@6.2.0: dependencies: graceful-fs: 4.2.11 parse-json: 5.2.0 strip-bom: 4.0.0 type-fest: 0.6.0 - dev: true - /load-json-file@7.0.1: - resolution: {integrity: sha512-Gnxj3ev3mB5TkVBGad0JM6dmLiQL+o0t23JPBZ9sd+yvSLk05mFoqKBw5N8gbbkU4TNXyqCgIrl/VM17OgUIgQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true + load-json-file@7.0.1: {} - /load-tsconfig@0.2.5: - resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true + load-tsconfig@0.2.5: {} - /locate-path@2.0.0: - resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} - engines: {node: '>=4'} + locate-path@2.0.0: dependencies: p-locate: 2.0.0 path-exists: 3.0.0 - dev: true - /locate-path@5.0.0: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} - engines: {node: '>=8'} + locate-path@5.0.0: dependencies: p-locate: 4.1.0 - dev: true - /locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} + locate-path@6.0.0: dependencies: p-locate: 5.0.0 - dev: true - /locate-path@7.2.0: - resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + locate-path@7.2.0: dependencies: p-locate: 6.0.0 - dev: true - /lodash.debounce@4.0.8: - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} - dev: true + lodash.debounce@4.0.8: {} - /lodash.ismatch@4.4.0: - resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} - dev: true + lodash.ismatch@4.4.0: {} - /lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} - dev: true + lodash.merge@4.6.2: {} - /lodash.sortby@4.7.0: - resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} - dev: true + lodash.sortby@4.7.0: {} - /lodash@4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} - dev: true + lodash@4.17.21: {} - /log-symbols@4.1.0: - resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} - engines: {node: '>=10'} + log-symbols@4.1.0: dependencies: chalk: 4.1.2 is-unicode-supported: 0.1.0 - dev: true - /log-update@6.1.0: - resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==} - engines: {node: '>=18'} + log-update@6.1.0: dependencies: ansi-escapes: 7.0.0 cli-cursor: 5.0.0 slice-ansi: 7.1.0 strip-ansi: 7.1.0 wrap-ansi: 9.0.0 - dev: true - /logform@2.6.0: - resolution: {integrity: sha512-1ulHeNPp6k/LD8H91o7VYFBng5i1BDE7HoKxVbZiGFidS1Rj65qcywLxX+pVfAPoQJEjRdvKcusKwOupHCVOVQ==} - engines: {node: '>= 12.0.0'} + logform@2.7.0: dependencies: '@colors/colors': 1.6.0 '@types/triple-beam': 1.3.5 fecha: 4.2.3 ms: 2.1.3 - safe-stable-stringify: 2.4.3 + safe-stable-stringify: 2.5.0 triple-beam: 1.4.1 - dev: true - /longest-streak@3.1.0: - resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} - dev: true + longest-streak@3.1.0: {} - /lru-cache@10.1.0: - resolution: {integrity: sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==} - engines: {node: 14 || >=16.14} - dev: true + lru-cache@10.4.3: {} - /lru-cache@10.4.3: - resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} - dev: true + lru-cache@11.1.0: {} - /lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + lru-cache@5.1.1: dependencies: yallist: 3.1.1 - dev: true - /lru-cache@6.0.0: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} - engines: {node: '>=10'} + lru-cache@6.0.0: dependencies: yallist: 4.0.0 - dev: true - /magic-string@0.30.11: - resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==} - requiresBuild: true + magic-string@0.30.14: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 - dev: true - /magic-string@0.30.5: - resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==} - engines: {node: '>=12'} - requiresBuild: true + magic-string@0.30.17: dependencies: - '@jridgewell/sourcemap-codec': 1.4.15 - dev: true + '@jridgewell/sourcemap-codec': 1.5.0 - /make-dir@2.1.0: - resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} - engines: {node: '>=6'} + make-dir@2.1.0: dependencies: pify: 4.0.1 semver: 5.7.2 - dev: true - /make-dir@4.0.0: - resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} - engines: {node: '>=10'} + make-dir@4.0.0: dependencies: semver: 7.6.3 - dev: true - /make-error@1.3.6: - resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} - dev: true - - /make-fetch-happen@13.0.1: - resolution: {integrity: sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA==} - engines: {node: ^16.14.0 || >=18.0.0} + make-fetch-happen@13.0.1: dependencies: '@npmcli/agent': 2.2.2 - cacache: 18.0.3 + cacache: 18.0.4 http-cache-semantics: 4.1.1 is-lambda: 1.0.1 - minipass: 7.0.4 + minipass: 7.1.2 minipass-fetch: 3.0.4 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 @@ -13294,50 +15879,33 @@ packages: ssri: 10.0.6 transitivePeerDependencies: - supports-color - dev: true - /map-cache@0.2.2: - resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} - engines: {node: '>=0.10.0'} - dev: true + map-cache@0.2.2: {} - /map-obj@1.0.1: - resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} - engines: {node: '>=0.10.0'} - dev: true + map-obj@1.0.1: {} - /map-obj@4.3.0: - resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} - engines: {node: '>=8'} - dev: true + map-obj@4.3.0: {} - /marchingsquares@1.3.3: - resolution: {integrity: sha512-gz6nNQoVK7Lkh2pZulrT4qd4347S/toG9RXH2pyzhLgkL5mLkBoqgv4EvAGXcV0ikDW72n/OQb3Xe8bGagQZCg==} - dev: false + marchingsquares@1.3.3: {} - /markdown-table@3.0.3: - resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==} - dev: true + markdown-table@3.0.3: {} - /mdast-util-definitions@5.1.2: - resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==} + math-intrinsics@1.1.0: {} + + mdast-util-definitions@5.1.2: dependencies: '@types/mdast': 3.0.15 '@types/unist': 2.0.10 unist-util-visit: 4.1.2 - dev: true - /mdast-util-find-and-replace@2.2.2: - resolution: {integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==} + mdast-util-find-and-replace@2.2.2: dependencies: '@types/mdast': 3.0.15 escape-string-regexp: 5.0.0 unist-util-is: 5.2.1 unist-util-visit-parents: 5.1.3 - dev: true - /mdast-util-from-markdown@1.3.1: - resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==} + mdast-util-from-markdown@1.3.1: dependencies: '@types/mdast': 3.0.15 '@types/unist': 2.0.10 @@ -13353,34 +15921,26 @@ packages: uvu: 0.5.6 transitivePeerDependencies: - supports-color - dev: true - /mdast-util-gfm-autolink-literal@1.0.3: - resolution: {integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==} + mdast-util-gfm-autolink-literal@1.0.3: dependencies: '@types/mdast': 3.0.15 ccount: 2.0.1 mdast-util-find-and-replace: 2.2.2 micromark-util-character: 1.2.0 - dev: true - /mdast-util-gfm-footnote@1.0.2: - resolution: {integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==} + mdast-util-gfm-footnote@1.0.2: dependencies: '@types/mdast': 3.0.15 mdast-util-to-markdown: 1.5.0 micromark-util-normalize-identifier: 1.1.0 - dev: true - /mdast-util-gfm-strikethrough@1.0.3: - resolution: {integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==} + mdast-util-gfm-strikethrough@1.0.3: dependencies: '@types/mdast': 3.0.15 mdast-util-to-markdown: 1.5.0 - dev: true - /mdast-util-gfm-table@1.0.7: - resolution: {integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==} + mdast-util-gfm-table@1.0.7: dependencies: '@types/mdast': 3.0.15 markdown-table: 3.0.3 @@ -13388,17 +15948,13 @@ packages: mdast-util-to-markdown: 1.5.0 transitivePeerDependencies: - supports-color - dev: true - /mdast-util-gfm-task-list-item@1.0.2: - resolution: {integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==} + mdast-util-gfm-task-list-item@1.0.2: dependencies: '@types/mdast': 3.0.15 mdast-util-to-markdown: 1.5.0 - dev: true - /mdast-util-gfm@2.0.2: - resolution: {integrity: sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==} + mdast-util-gfm@2.0.2: dependencies: mdast-util-from-markdown: 1.3.1 mdast-util-gfm-autolink-literal: 1.0.3 @@ -13409,23 +15965,17 @@ packages: mdast-util-to-markdown: 1.5.0 transitivePeerDependencies: - supports-color - dev: true - /mdast-util-inject@1.1.0: - resolution: {integrity: sha512-CcJ0mHa36QYumDKiZ2OIR+ClhfOM7zIzN+Wfy8tRZ1hpH9DKLCS+Mh4DyK5bCxzE9uxMWcbIpeNFWsg1zrj/2g==} + mdast-util-inject@1.1.0: dependencies: mdast-util-to-string: 1.1.0 - dev: true - /mdast-util-phrasing@3.0.1: - resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==} + mdast-util-phrasing@3.0.1: dependencies: '@types/mdast': 3.0.15 unist-util-is: 5.2.1 - dev: true - /mdast-util-to-hast@12.3.0: - resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==} + mdast-util-to-hast@12.3.0: dependencies: '@types/hast': 2.3.10 '@types/mdast': 3.0.15 @@ -13435,10 +15985,8 @@ packages: unist-util-generated: 2.0.1 unist-util-position: 4.0.4 unist-util-visit: 4.1.2 - dev: true - /mdast-util-to-markdown@1.5.0: - resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==} + mdast-util-to-markdown@1.5.0: dependencies: '@types/mdast': 3.0.15 '@types/unist': 2.0.10 @@ -13448,20 +15996,14 @@ packages: micromark-util-decode-string: 1.1.0 unist-util-visit: 4.1.2 zwitch: 2.0.4 - dev: true - /mdast-util-to-string@1.1.0: - resolution: {integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==} - dev: true + mdast-util-to-string@1.1.0: {} - /mdast-util-to-string@3.2.0: - resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==} + mdast-util-to-string@3.2.0: dependencies: '@types/mdast': 3.0.15 - dev: true - /mdast-util-toc@6.1.1: - resolution: {integrity: sha512-Er21728Kow8hehecK2GZtb7Ny3omcoPUVrmObiSUwmoRYVZaXLR751QROEFjR8W/vAQdHMLj49Lz20J55XaNpw==} + mdast-util-toc@6.1.1: dependencies: '@types/extend': 3.0.4 '@types/mdast': 3.0.15 @@ -13470,21 +16012,12 @@ packages: mdast-util-to-string: 3.2.0 unist-util-is: 5.2.1 unist-util-visit: 4.1.2 - dev: true - /memorystream@0.3.1: - resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} - engines: {node: '>= 0.10.0'} - dev: true + memorystream@0.3.1: {} - /meow@12.1.1: - resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==} - engines: {node: '>=16.10'} - dev: true + meow@13.2.0: {} - /meow@8.1.2: - resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} - engines: {node: '>=10'} + meow@8.1.2: dependencies: '@types/minimist': 1.2.5 camelcase-keys: 6.2.2 @@ -13497,23 +16030,14 @@ packages: trim-newlines: 3.0.1 type-fest: 0.18.1 yargs-parser: 20.2.4 - dev: true - /merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} - dev: true + merge-stream@2.0.0: {} - /merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} - dev: true + merge2@1.4.1: {} - /mgrs@1.0.0: - resolution: {integrity: sha512-awNbTOqCxK1DBGjalK3xqWIstBZgN6fxsMSiXLs9/spqWkF2pAhb2rrYCFSsr1/tT7PhcDGjZndG8SWYn0byYA==} - dev: true + mgrs@1.0.0: {} - /micromark-core-commonmark@1.1.0: - resolution: {integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==} + micromark-core-commonmark@1.1.0: dependencies: decode-named-character-reference: 1.0.2 micromark-factory-destination: 1.1.0 @@ -13531,19 +16055,15 @@ packages: micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 uvu: 0.5.6 - dev: true - /micromark-extension-gfm-autolink-literal@1.0.5: - resolution: {integrity: sha512-z3wJSLrDf8kRDOh2qBtoTRD53vJ+CWIyo7uyZuxf/JAbNJjiHsOpG1y5wxk8drtv3ETAHutCu6N3thkOOgueWg==} + micromark-extension-gfm-autolink-literal@1.0.5: dependencies: micromark-util-character: 1.2.0 micromark-util-sanitize-uri: 1.2.0 micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 - dev: true - /micromark-extension-gfm-footnote@1.1.2: - resolution: {integrity: sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==} + micromark-extension-gfm-footnote@1.1.2: dependencies: micromark-core-commonmark: 1.1.0 micromark-factory-space: 1.1.0 @@ -13553,10 +16073,8 @@ packages: micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 uvu: 0.5.6 - dev: true - /micromark-extension-gfm-strikethrough@1.0.7: - resolution: {integrity: sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==} + micromark-extension-gfm-strikethrough@1.0.7: dependencies: micromark-util-chunked: 1.1.0 micromark-util-classify-character: 1.1.0 @@ -13564,36 +16082,28 @@ packages: micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 uvu: 0.5.6 - dev: true - /micromark-extension-gfm-table@1.0.7: - resolution: {integrity: sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==} + micromark-extension-gfm-table@1.0.7: dependencies: micromark-factory-space: 1.1.0 micromark-util-character: 1.2.0 micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 uvu: 0.5.6 - dev: true - /micromark-extension-gfm-tagfilter@1.0.2: - resolution: {integrity: sha512-5XWB9GbAUSHTn8VPU8/1DBXMuKYT5uOgEjJb8gN3mW0PNW5OPHpSdojoqf+iq1xo7vWzw/P8bAHY0n6ijpXF7g==} + micromark-extension-gfm-tagfilter@1.0.2: dependencies: micromark-util-types: 1.1.0 - dev: true - /micromark-extension-gfm-task-list-item@1.0.5: - resolution: {integrity: sha512-RMFXl2uQ0pNQy6Lun2YBYT9g9INXtWJULgbt01D/x8/6yJ2qpKyzdZD3pi6UIkzF++Da49xAelVKUeUMqd5eIQ==} + micromark-extension-gfm-task-list-item@1.0.5: dependencies: micromark-factory-space: 1.1.0 micromark-util-character: 1.2.0 micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 uvu: 0.5.6 - dev: true - /micromark-extension-gfm@2.0.3: - resolution: {integrity: sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ==} + micromark-extension-gfm@2.0.3: dependencies: micromark-extension-gfm-autolink-literal: 1.0.5 micromark-extension-gfm-footnote: 1.1.2 @@ -13603,143 +16113,103 @@ packages: micromark-extension-gfm-task-list-item: 1.0.5 micromark-util-combine-extensions: 1.1.0 micromark-util-types: 1.1.0 - dev: true - /micromark-factory-destination@1.1.0: - resolution: {integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==} + micromark-factory-destination@1.1.0: dependencies: micromark-util-character: 1.2.0 micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 - dev: true - /micromark-factory-label@1.1.0: - resolution: {integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==} + micromark-factory-label@1.1.0: dependencies: micromark-util-character: 1.2.0 micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 uvu: 0.5.6 - dev: true - /micromark-factory-space@1.1.0: - resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==} + micromark-factory-space@1.1.0: dependencies: micromark-util-character: 1.2.0 micromark-util-types: 1.1.0 - dev: true - /micromark-factory-title@1.1.0: - resolution: {integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==} + micromark-factory-title@1.1.0: dependencies: micromark-factory-space: 1.1.0 micromark-util-character: 1.2.0 micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 - dev: true - /micromark-factory-whitespace@1.1.0: - resolution: {integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==} + micromark-factory-whitespace@1.1.0: dependencies: micromark-factory-space: 1.1.0 micromark-util-character: 1.2.0 micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 - dev: true - /micromark-util-character@1.2.0: - resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==} + micromark-util-character@1.2.0: dependencies: micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 - dev: true - /micromark-util-chunked@1.1.0: - resolution: {integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==} + micromark-util-chunked@1.1.0: dependencies: micromark-util-symbol: 1.1.0 - dev: true - /micromark-util-classify-character@1.1.0: - resolution: {integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==} + micromark-util-classify-character@1.1.0: dependencies: micromark-util-character: 1.2.0 micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 - dev: true - /micromark-util-combine-extensions@1.1.0: - resolution: {integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==} + micromark-util-combine-extensions@1.1.0: dependencies: micromark-util-chunked: 1.1.0 micromark-util-types: 1.1.0 - dev: true - /micromark-util-decode-numeric-character-reference@1.1.0: - resolution: {integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==} + micromark-util-decode-numeric-character-reference@1.1.0: dependencies: micromark-util-symbol: 1.1.0 - dev: true - /micromark-util-decode-string@1.1.0: - resolution: {integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==} + micromark-util-decode-string@1.1.0: dependencies: decode-named-character-reference: 1.0.2 micromark-util-character: 1.2.0 micromark-util-decode-numeric-character-reference: 1.1.0 micromark-util-symbol: 1.1.0 - dev: true - /micromark-util-encode@1.1.0: - resolution: {integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==} - dev: true + micromark-util-encode@1.1.0: {} - /micromark-util-html-tag-name@1.2.0: - resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==} - dev: true + micromark-util-html-tag-name@1.2.0: {} - /micromark-util-normalize-identifier@1.1.0: - resolution: {integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==} + micromark-util-normalize-identifier@1.1.0: dependencies: micromark-util-symbol: 1.1.0 - dev: true - /micromark-util-resolve-all@1.1.0: - resolution: {integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==} + micromark-util-resolve-all@1.1.0: dependencies: micromark-util-types: 1.1.0 - dev: true - /micromark-util-sanitize-uri@1.2.0: - resolution: {integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==} + micromark-util-sanitize-uri@1.2.0: dependencies: micromark-util-character: 1.2.0 micromark-util-encode: 1.1.0 micromark-util-symbol: 1.1.0 - dev: true - /micromark-util-subtokenize@1.1.0: - resolution: {integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==} + micromark-util-subtokenize@1.1.0: dependencies: micromark-util-chunked: 1.1.0 micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 uvu: 0.5.6 - dev: true - /micromark-util-symbol@1.1.0: - resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==} - dev: true + micromark-util-symbol@1.1.0: {} - /micromark-util-types@1.1.0: - resolution: {integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==} - dev: true + micromark-util-types@1.1.0: {} - /micromark@3.2.0: - resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==} + micromark@3.2.0: dependencies: '@types/debug': 4.1.12 - debug: 4.3.4 + debug: 4.4.0 decode-named-character-reference: 1.0.2 micromark-core-commonmark: 1.1.0 micromark-factory-space: 1.1.0 @@ -13757,312 +16227,172 @@ packages: uvu: 0.5.6 transitivePeerDependencies: - supports-color - dev: true - /micromatch@4.0.5: - resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} - engines: {node: '>=8.6'} + micromatch@4.0.8: dependencies: braces: 3.0.3 picomatch: 2.3.1 - dev: true - /micromatch@4.0.7: - resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} - engines: {node: '>=8.6'} - dependencies: - braces: 3.0.3 - picomatch: 2.3.1 - dev: true + mime-db@1.52.0: {} - /mime-db@1.52.0: - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} - engines: {node: '>= 0.6'} - dev: true - - /mime-types@2.1.35: - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} - engines: {node: '>= 0.6'} + mime-types@2.1.35: dependencies: mime-db: 1.52.0 - dev: true - /mimic-fn@2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: '>=6'} - dev: true + mimic-fn@2.1.0: {} - /mimic-fn@4.0.0: - resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} - engines: {node: '>=12'} - dev: true + mimic-fn@4.0.0: {} - /mimic-function@5.0.1: - resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} - engines: {node: '>=18'} - dev: true + mimic-function@5.0.1: {} - /min-indent@1.0.1: - resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} - engines: {node: '>=4'} - dev: true + min-indent@1.0.1: {} - /minimatch@3.0.5: - resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} + minimatch@10.0.1: + dependencies: + brace-expansion: 2.0.1 + + minimatch@3.0.5: dependencies: brace-expansion: 1.1.11 - dev: true - /minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + minimatch@3.1.2: dependencies: brace-expansion: 1.1.11 - dev: true - /minimatch@5.1.6: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} - engines: {node: '>=10'} + minimatch@5.1.6: dependencies: brace-expansion: 2.0.1 - dev: true - /minimatch@8.0.4: - resolution: {integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==} - engines: {node: '>=16 || 14 >=14.17'} + minimatch@8.0.4: dependencies: brace-expansion: 2.0.1 - dev: true - /minimatch@9.0.3: - resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} - engines: {node: '>=16 || 14 >=14.17'} + minimatch@9.0.3: dependencies: brace-expansion: 2.0.1 - dev: true - /minimatch@9.0.4: - resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==} - engines: {node: '>=16 || 14 >=14.17'} + minimatch@9.0.5: dependencies: brace-expansion: 2.0.1 - dev: true - /minimist-options@4.1.0: - resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} - engines: {node: '>= 6'} + minimist-options@4.1.0: dependencies: arrify: 1.0.1 is-plain-obj: 1.1.0 kind-of: 6.0.3 - dev: true - /minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - dev: true + minimist@1.2.8: {} - /minipass-collect@2.0.1: - resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==} - engines: {node: '>=16 || 14 >=14.17'} + minipass-collect@2.0.1: dependencies: - minipass: 7.0.4 - dev: true + minipass: 7.1.2 - /minipass-fetch@3.0.4: - resolution: {integrity: sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + minipass-fetch@3.0.4: dependencies: - minipass: 7.0.4 + minipass: 7.1.2 minipass-sized: 1.0.3 minizlib: 2.1.2 optionalDependencies: encoding: 0.1.13 - dev: true - /minipass-flush@1.0.5: - resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} - engines: {node: '>= 8'} + minipass-flush@1.0.5: dependencies: minipass: 3.3.6 - dev: true - /minipass-pipeline@1.2.4: - resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} - engines: {node: '>=8'} + minipass-pipeline@1.2.4: dependencies: minipass: 3.3.6 - dev: true - /minipass-sized@1.0.3: - resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==} - engines: {node: '>=8'} + minipass-sized@1.0.3: dependencies: minipass: 3.3.6 - dev: true - /minipass@3.3.6: - resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} - engines: {node: '>=8'} + minipass@3.3.6: dependencies: yallist: 4.0.0 - dev: true - /minipass@4.2.8: - resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==} - engines: {node: '>=8'} - dev: true + minipass@4.2.8: {} - /minipass@5.0.0: - resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} - engines: {node: '>=8'} - dev: true + minipass@5.0.0: {} - /minipass@7.0.4: - resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} - engines: {node: '>=16 || 14 >=14.17'} - dev: true + minipass@7.1.2: {} - /minizlib@2.1.2: - resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} - engines: {node: '>= 8'} + minizlib@2.1.2: dependencies: minipass: 3.3.6 yallist: 4.0.0 - dev: true - /mkdirp@1.0.4: - resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} - engines: {node: '>=10'} - hasBin: true - dev: true + mkdirp@1.0.4: {} - /mkdirp@3.0.1: - resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==} - engines: {node: '>=10'} - hasBin: true - dev: true + mkdirp@3.0.1: {} - /mock-property@1.0.3: - resolution: {integrity: sha512-2emPTb1reeLLYwHxyVx993iYyCHEiRRO+y8NFXFPL5kl5q14sgTK76cXyEKkeKCHeRw35SfdkUJ10Q1KfHuiIQ==} - engines: {node: '>= 0.4'} + mock-property@1.1.0: dependencies: - define-data-property: 1.1.1 + define-data-property: 1.1.4 functions-have-names: 1.2.3 - gopd: 1.0.1 - has-property-descriptors: 1.0.1 - hasown: 2.0.0 + gopd: 1.1.0 + has-property-descriptors: 1.0.2 + hasown: 2.0.2 isarray: 2.0.5 - dev: true + object-inspect: 1.13.3 - /modify-values@1.0.1: - resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==} - engines: {node: '>=0.10.0'} - dev: true + modify-values@1.0.1: {} - /module-definition@6.0.0: - resolution: {integrity: sha512-sEGP5nKEXU7fGSZUML/coJbrO+yQtxcppDAYWRE9ovWsTbFoUHB2qDUx564WUzDaBHXsD46JBbIK5WVTwCyu3w==} - engines: {node: '>=18'} - hasBin: true + module-definition@6.0.1: dependencies: - ast-module-types: 6.0.0 - node-source-walk: 7.0.0 - dev: true + ast-module-types: 6.0.1 + node-source-walk: 7.0.1 - /module-lookup-amd@9.0.2: - resolution: {integrity: sha512-p7PzSVEWiW9fHRX9oM+V4aV5B2nCVddVNv4DZ/JB6t9GsXY4E+ZVhPpnwUX7bbJyGeeVZqhS8q/JZ/H77IqPFA==} - engines: {node: '>=18'} - hasBin: true + module-lookup-amd@9.0.4: dependencies: commander: 12.1.0 glob: 7.2.3 requirejs: 2.3.7 requirejs-config-file: 4.0.0 - dev: true - /mri@1.2.0: - resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} - engines: {node: '>=4'} - dev: true + mri@1.2.0: {} - /ms@2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} - dev: true + ms@2.1.3: {} - /ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - dev: true - - /multimatch@5.0.0: - resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==} - engines: {node: '>=10'} + multimatch@5.0.0: dependencies: '@types/minimatch': 3.0.5 array-differ: 3.0.0 array-union: 2.1.0 arrify: 2.0.1 minimatch: 3.1.2 - dev: true - /mute-stream@0.0.8: - resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} - dev: true + mute-stream@0.0.8: {} - /mute-stream@1.0.0: - resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + mute-stream@1.0.0: {} - /mz@2.7.0: - resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} + mz@2.7.0: dependencies: any-promise: 1.3.0 object-assign: 4.1.1 thenify-all: 1.6.0 - dev: true - /nanoid@3.3.7: - resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true - requiresBuild: true - dev: true + nanoid@3.3.11: {} - /natural-compare@1.4.0: - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} - dev: true + nanoid@3.3.8: {} - /negotiator@0.6.3: - resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} - engines: {node: '>= 0.6'} - dev: true + natural-compare@1.4.0: {} - /neo-async@2.6.2: - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} - dev: true + negotiator@0.6.3: {} - /nice-try@1.0.5: - resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} - dev: true + neo-async@2.6.2: {} - /node-fetch@2.6.7: - resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} - engines: {node: 4.x || >=6.0.0} - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true + nice-try@1.0.5: {} + + node-fetch@2.6.7: dependencies: whatwg-url: 5.0.0 - dev: true - /node-gyp@10.1.0: - resolution: {integrity: sha512-B4J5M1cABxPc5PwfjhbV5hoy2DP9p8lFXASnEN6hugXOa61416tnTZ29x9sSwAd0o99XNIcpvDDy1swAExsVKA==} - engines: {node: ^16.14.0 || >=18.0.0} - hasBin: true + node-gyp@10.1.0: dependencies: env-paths: 2.2.1 exponential-backoff: 3.1.1 - glob: 10.3.10 + glob: 10.4.5 graceful-fs: 4.2.11 make-fetch-happen: 13.0.1 nopt: 7.2.1 @@ -14072,131 +16402,84 @@ packages: which: 4.0.0 transitivePeerDependencies: - supports-color - dev: true - /node-machine-id@1.1.12: - resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==} - dev: true + node-machine-id@1.1.12: {} - /node-releases@2.0.14: - resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} - dev: true + node-releases@2.0.19: {} - /node-source-walk@7.0.0: - resolution: {integrity: sha512-1uiY543L+N7Og4yswvlm5NCKgPKDEXd9AUR9Jh3gen6oOeBsesr6LqhXom1er3eRzSUcVRWXzhv8tSNrIfGHKw==} - engines: {node: '>=18'} + node-source-walk@7.0.1: dependencies: - '@babel/parser': 7.25.3 - dev: true + '@babel/parser': 7.27.0 - /nopt@7.2.1: - resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - hasBin: true + nopt@7.2.1: dependencies: abbrev: 2.0.0 - dev: true - /normalize-package-data@2.5.0: - resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + normalize-package-data@2.5.0: dependencies: hosted-git-info: 2.8.9 resolve: 1.22.8 semver: 5.7.2 validate-npm-package-license: 3.0.4 - dev: true - /normalize-package-data@3.0.3: - resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} - engines: {node: '>=10'} + normalize-package-data@3.0.3: dependencies: hosted-git-info: 4.1.0 is-core-module: 2.13.1 semver: 7.6.3 validate-npm-package-license: 3.0.4 - dev: true - /normalize-package-data@6.0.1: - resolution: {integrity: sha512-6rvCfeRW+OEZagAB4lMLSNuTNYZWLVtKccK79VSTf//yTY5VOCgcpH80O+bZK8Neps7pUnd5G+QlMg1yV/2iZQ==} - engines: {node: ^16.14.0 || >=18.0.0} + normalize-package-data@6.0.1: dependencies: hosted-git-info: 7.0.2 is-core-module: 2.13.1 semver: 7.6.3 validate-npm-package-license: 3.0.4 - dev: true - /normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} - dev: true + normalize-path@3.0.0: {} - /npm-bundled@3.0.0: - resolution: {integrity: sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + npm-bundled@3.0.1: dependencies: npm-normalize-package-bin: 3.0.1 - dev: true - /npm-install-checks@6.3.0: - resolution: {integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + npm-install-checks@6.3.0: dependencies: semver: 7.6.3 - dev: true - /npm-normalize-package-bin@3.0.1: - resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + npm-normalize-package-bin@3.0.1: {} - /npm-package-arg@11.0.2: - resolution: {integrity: sha512-IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw==} - engines: {node: ^16.14.0 || >=18.0.0} + npm-package-arg@11.0.2: dependencies: hosted-git-info: 7.0.2 proc-log: 4.2.0 semver: 7.6.3 validate-npm-package-name: 5.0.1 - dev: true - /npm-packlist@8.0.2: - resolution: {integrity: sha512-shYrPFIS/JLP4oQmAwDyk5HcyysKW8/JLTEA32S0Z5TzvpaeeX2yMFfoK1fjEBnCBvVyIB/Jj/GBFdm0wsgzbA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + npm-packlist@8.0.2: dependencies: ignore-walk: 6.0.4 - dev: true - /npm-pick-manifest@9.0.1: - resolution: {integrity: sha512-Udm1f0l2nXb3wxDpKjfohwgdFUSV50UVwzEIpDXVsbDMXVIEF81a/i0UhuQbhrPMMmdiq3+YMFLFIRVLs3hxQw==} - engines: {node: ^16.14.0 || >=18.0.0} + npm-pick-manifest@9.1.0: dependencies: npm-install-checks: 6.3.0 npm-normalize-package-bin: 3.0.1 npm-package-arg: 11.0.2 semver: 7.6.3 - dev: true - /npm-registry-fetch@17.1.0: - resolution: {integrity: sha512-5+bKQRH0J1xG1uZ1zMNvxW0VEyoNWgJpY9UDuluPFLKDfJ9u2JmmjmTJV1srBGQOROfdBMiVvnH2Zvpbm+xkVA==} - engines: {node: ^16.14.0 || >=18.0.0} + npm-registry-fetch@17.1.0: dependencies: '@npmcli/redact': 2.0.1 jsonparse: 1.3.1 make-fetch-happen: 13.0.1 - minipass: 7.0.4 + minipass: 7.1.2 minipass-fetch: 3.0.4 minizlib: 2.1.2 npm-package-arg: 11.0.2 proc-log: 4.2.0 transitivePeerDependencies: - supports-color - dev: true - /npm-run-all@4.1.5: - resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==} - engines: {node: '>= 4'} - hasBin: true + npm-run-all@4.1.5: dependencies: ansi-styles: 3.2.1 chalk: 2.4.2 @@ -14207,34 +16490,16 @@ packages: read-pkg: 3.0.0 shell-quote: 1.8.1 string.prototype.padend: 3.1.5 - dev: true - /npm-run-path@4.0.1: - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} - engines: {node: '>=8'} + npm-run-path@4.0.1: dependencies: path-key: 3.1.1 - dev: true - /npm-run-path@5.1.0: - resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + npm-run-path@5.1.0: dependencies: path-key: 4.0.0 - dev: true - /nx@19.1.1: - resolution: {integrity: sha512-9NPKoAQ+I3KcoFDThAVu7YznE9fKbV/AiE5dAXPbWfye9HjRdnhLQmXN122ADlq4pA5wkXwxvAxRLw2WA7Kkgw==} - hasBin: true - requiresBuild: true - peerDependencies: - '@swc-node/register': ^1.8.0 - '@swc/core': ^1.3.85 - peerDependenciesMeta: - '@swc-node/register': - optional: true - '@swc/core': - optional: true + nx@19.1.1: dependencies: '@nrwl/tao': 19.1.1 '@yarnpkg/lockfile': 1.1.0 @@ -14250,8 +16515,8 @@ packages: enquirer: 2.3.6 figures: 3.2.0 flat: 5.0.2 - fs-extra: 11.2.0 - ignore: 5.3.0 + fs-extra: 11.3.0 + ignore: 5.3.2 jest-diff: 29.7.0 jsonc-parser: 3.2.0 lines-and-columns: 2.0.4 @@ -14266,7 +16531,7 @@ packages: tar-stream: 2.2.0 tmp: 0.2.1 tsconfig-paths: 4.2.0 - tslib: 2.6.2 + tslib: 2.8.1 yargs: 17.7.2 yargs-parser: 21.1.1 optionalDependencies: @@ -14282,107 +16547,61 @@ packages: '@nx/nx-win32-x64-msvc': 19.1.1 transitivePeerDependencies: - debug - dev: true - /object-assign@4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: '>=0.10.0'} - dev: true + object-assign@4.1.1: {} - /object-inspect@1.13.1: - resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} - dev: true + object-inspect@1.13.3: {} - /object-is@1.1.5: - resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} - engines: {node: '>= 0.4'} + object-is@1.1.6: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - dev: true - /object-keys@1.1.1: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} - engines: {node: '>= 0.4'} - dev: true + object-keys@1.1.1: {} - /object.assign@4.1.5: - resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} - engines: {node: '>= 0.4'} + object.assign@4.1.5: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - has-symbols: 1.0.3 + has-symbols: 1.1.0 object-keys: 1.1.1 - dev: true - /once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + once@1.4.0: dependencies: wrappy: 1.0.2 - dev: true - /one-time@1.0.0: - resolution: {integrity: sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==} + one-time@1.0.0: dependencies: fn.name: 1.1.0 - dev: true - /onetime@5.1.2: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} - engines: {node: '>=6'} + onetime@5.1.2: dependencies: mimic-fn: 2.1.0 - dev: true - /onetime@6.0.0: - resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} - engines: {node: '>=12'} + onetime@6.0.0: dependencies: mimic-fn: 4.0.0 - dev: true - /onetime@7.0.0: - resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==} - engines: {node: '>=18'} + onetime@7.0.0: dependencies: mimic-function: 5.0.1 - dev: true - /open@8.4.2: - resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} - engines: {node: '>=12'} + open@8.4.2: dependencies: define-lazy-prop: 2.0.0 is-docker: 2.2.1 is-wsl: 2.2.0 - dev: true - /open@9.1.0: - resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==} - engines: {node: '>=14.16'} + optionator@0.9.4: dependencies: - default-browser: 4.0.0 - define-lazy-prop: 3.0.0 - is-inside-container: 1.0.0 - is-wsl: 2.2.0 - dev: true - - /optionator@0.9.3: - resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} - engines: {node: '>= 0.8.0'} - dependencies: - '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 prelude-ls: 1.2.1 type-check: 0.4.0 - dev: true + word-wrap: 1.2.5 - /ora@5.3.0: - resolution: {integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==} - engines: {node: '>=10'} + ora@5.3.0: dependencies: bl: 4.1.0 chalk: 4.1.2 @@ -14392,11 +16611,8 @@ packages: log-symbols: 4.1.0 strip-ansi: 6.0.1 wcwidth: 1.0.1 - dev: true - /ora@5.4.1: - resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} - engines: {node: '>=10'} + ora@5.4.1: dependencies: bl: 4.1.0 chalk: 4.1.2 @@ -14407,156 +16623,91 @@ packages: log-symbols: 4.1.0 strip-ansi: 6.0.1 wcwidth: 1.0.1 - dev: true - /os-tmpdir@1.0.2: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} - engines: {node: '>=0.10.0'} - dev: true + os-tmpdir@1.0.2: {} - /p-filter@2.1.0: - resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} - engines: {node: '>=8'} + p-filter@2.1.0: dependencies: p-map: 2.1.0 - dev: true - /p-finally@1.0.0: - resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} - engines: {node: '>=4'} - dev: true + p-finally@1.0.0: {} - /p-limit@1.3.0: - resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} - engines: {node: '>=4'} + p-limit@1.3.0: dependencies: p-try: 1.0.0 - dev: true - /p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} - engines: {node: '>=6'} + p-limit@2.3.0: dependencies: p-try: 2.2.0 - dev: true - /p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} + p-limit@3.1.0: dependencies: yocto-queue: 0.1.0 - dev: true - /p-limit@4.0.0: - resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + p-limit@4.0.0: dependencies: yocto-queue: 1.0.0 - dev: true - /p-locate@2.0.0: - resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} - engines: {node: '>=4'} + p-locate@2.0.0: dependencies: p-limit: 1.3.0 - dev: true - /p-locate@4.1.0: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} - engines: {node: '>=8'} + p-locate@4.1.0: dependencies: p-limit: 2.3.0 - dev: true - /p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} + p-locate@5.0.0: dependencies: p-limit: 3.1.0 - dev: true - /p-locate@6.0.0: - resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + p-locate@6.0.0: dependencies: p-limit: 4.0.0 - dev: true - /p-map-series@2.1.0: - resolution: {integrity: sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==} - engines: {node: '>=8'} - dev: true + p-map-series@2.1.0: {} - /p-map@2.1.0: - resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} - engines: {node: '>=6'} - dev: true + p-map@2.1.0: {} - /p-map@4.0.0: - resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} - engines: {node: '>=10'} + p-map@4.0.0: dependencies: aggregate-error: 3.1.0 - dev: true - /p-pipe@3.1.0: - resolution: {integrity: sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==} - engines: {node: '>=8'} - dev: true + p-pipe@3.1.0: {} - /p-queue@6.6.2: - resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==} - engines: {node: '>=8'} + p-queue@6.6.2: dependencies: eventemitter3: 4.0.7 p-timeout: 3.2.0 - dev: true - /p-reduce@2.1.0: - resolution: {integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==} - engines: {node: '>=8'} - dev: true + p-reduce@2.1.0: {} - /p-timeout@3.2.0: - resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} - engines: {node: '>=8'} + p-timeout@3.2.0: dependencies: p-finally: 1.0.0 - dev: true - /p-try@1.0.0: - resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} - engines: {node: '>=4'} - dev: true + p-try@1.0.0: {} - /p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} - engines: {node: '>=6'} - dev: true + p-try@2.2.0: {} - /p-waterfall@2.1.1: - resolution: {integrity: sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==} - engines: {node: '>=8'} + p-waterfall@2.1.1: dependencies: p-reduce: 2.1.0 - dev: true - /pacote@18.0.6: - resolution: {integrity: sha512-+eK3G27SMwsB8kLIuj4h1FUhHtwiEUo21Tw8wNjmvdlpOEr613edv+8FUsTj/4F/VN5ywGE19X18N7CC2EJk6A==} - engines: {node: ^16.14.0 || >=18.0.0} - hasBin: true + package-json-from-dist@1.0.1: {} + + pacote@18.0.6: dependencies: '@npmcli/git': 5.0.7 - '@npmcli/installed-package-contents': 2.0.2 + '@npmcli/installed-package-contents': 2.1.0 '@npmcli/package-json': 5.2.0 '@npmcli/promise-spawn': 7.0.2 '@npmcli/run-script': 8.1.0 - cacache: 18.0.3 + cacache: 18.0.4 fs-minipass: 3.0.3 - minipass: 7.0.4 + minipass: 7.1.2 npm-package-arg: 11.0.2 npm-packlist: 8.0.2 - npm-pick-manifest: 9.0.1 + npm-pick-manifest: 9.1.0 npm-registry-fetch: 17.1.0 proc-log: 4.2.0 promise-retry: 2.0.1 @@ -14566,538 +16717,310 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} + parent-module@1.0.1: dependencies: callsites: 3.1.0 - dev: true - /parse-conflict-json@3.0.1: - resolution: {integrity: sha512-01TvEktc68vwbJOtWZluyWeVGWjP+bZwXtPDMQVbBKzbJ/vZBif0L69KH1+cHv1SZ6e0FKLvjyHe8mqsIqYOmw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + parse-conflict-json@3.0.1: dependencies: json-parse-even-better-errors: 3.0.2 just-diff: 6.0.2 just-diff-apply: 5.5.0 - dev: true - /parse-filepath@1.0.2: - resolution: {integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==} - engines: {node: '>=0.8'} + parse-filepath@1.0.2: dependencies: is-absolute: 1.0.0 map-cache: 0.2.2 path-root: 0.1.1 - dev: true - /parse-json@4.0.0: - resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} - engines: {node: '>=4'} + parse-json@4.0.0: dependencies: error-ex: 1.3.2 json-parse-better-errors: 1.0.2 - dev: true - /parse-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: '>=8'} + parse-json@5.2.0: dependencies: - '@babel/code-frame': 7.23.5 + '@babel/code-frame': 7.26.2 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 - dev: true - /parse-path@7.0.0: - resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==} + parse-path@7.0.0: dependencies: protocols: 2.0.1 - dev: true - /parse-url@8.1.0: - resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} + parse-url@8.1.0: dependencies: parse-path: 7.0.0 - dev: true - /parse5@6.0.1: - resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} - dev: true + parse5@6.0.1: {} - /path-exists@3.0.0: - resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} - engines: {node: '>=4'} - dev: true + path-exists@3.0.0: {} - /path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} - dev: true + path-exists@4.0.0: {} - /path-exists@5.0.0: - resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true + path-exists@5.0.0: {} - /path-is-absolute@1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: '>=0.10.0'} - dev: true + path-is-absolute@1.0.1: {} - /path-key@2.0.1: - resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} - engines: {node: '>=4'} - dev: true + path-key@2.0.1: {} - /path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} - dev: true + path-key@3.1.1: {} - /path-key@4.0.0: - resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} - engines: {node: '>=12'} - dev: true + path-key@4.0.0: {} - /path-parse@1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} - dev: true + path-parse@1.0.7: {} - /path-root-regex@0.1.2: - resolution: {integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==} - engines: {node: '>=0.10.0'} - dev: true + path-root-regex@0.1.2: {} - /path-root@0.1.1: - resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==} - engines: {node: '>=0.10.0'} + path-root@0.1.1: dependencies: path-root-regex: 0.1.2 - dev: true - /path-scurry@1.10.1: - resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} - engines: {node: '>=16 || 14 >=14.17'} + path-scurry@1.11.1: dependencies: - lru-cache: 10.1.0 - minipass: 7.0.4 - dev: true + lru-cache: 10.4.3 + minipass: 7.1.2 - /path-type@3.0.0: - resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} - engines: {node: '>=4'} + path-scurry@2.0.0: + dependencies: + lru-cache: 11.1.0 + minipass: 7.1.2 + + path-type@3.0.0: dependencies: pify: 3.0.0 - dev: true - /path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} - dev: true + path-type@4.0.0: {} - /path-type@5.0.0: - resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} - engines: {node: '>=12'} - dev: true + path-type@5.0.0: {} - /picocolors@1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} - dev: true + picocolors@1.1.1: {} - /picocolors@1.0.1: - resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} - dev: true + picomatch@2.3.1: {} - /picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} - dev: true + picomatch@4.0.2: {} - /pidtree@0.3.1: - resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==} - engines: {node: '>=0.10'} - hasBin: true - dev: true + pidtree@0.3.1: {} - /pidtree@0.6.0: - resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} - engines: {node: '>=0.10'} - hasBin: true - dev: true + pidtree@0.6.0: {} - /pify@2.3.0: - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} - engines: {node: '>=0.10.0'} - dev: true + pify@2.3.0: {} - /pify@3.0.0: - resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} - engines: {node: '>=4'} - dev: true + pify@3.0.0: {} - /pify@4.0.1: - resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} - engines: {node: '>=6'} - dev: true + pify@4.0.1: {} - /pify@5.0.0: - resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} - engines: {node: '>=10'} - dev: true + pify@5.0.0: {} - /pify@6.1.0: - resolution: {integrity: sha512-KocF8ve28eFjjuBKKGvzOBGzG8ew2OqOOSxTTZhirkzH7h3BI1vyzqlR0qbfcDBve1Yzo3FVlWUAtCRrbVN8Fw==} - engines: {node: '>=14.16'} - dev: true + pify@6.1.0: {} - /pirates@4.0.6: - resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} - engines: {node: '>= 6'} - dev: true + pirates@4.0.6: {} - /pkg-dir@4.2.0: - resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} - engines: {node: '>=8'} + pkg-dir@4.2.0: dependencies: find-up: 4.1.0 - dev: true - /platform@1.3.6: - resolution: {integrity: sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==} - dev: true + platform@1.3.6: {} - /point-in-polygon-hao@1.1.0: - resolution: {integrity: sha512-3hTIM2j/v9Lio+wOyur3kckD4NxruZhpowUbEgmyikW+a2Kppjtu1eN+AhnMQtoHW46zld88JiYWv6fxpsDrTQ==} - dev: false + point-in-polygon-hao@1.1.0: {} - /point-in-polygon@1.1.0: - resolution: {integrity: sha512-3ojrFwjnnw8Q9242TzgXuTD+eKiutbzyslcq1ydfu82Db2y+Ogbmyrkpv0Hgj31qwT3lbS9+QAAO/pIQM35XRw==} + point-in-polygon@1.1.0: {} - /polygon-clipping@0.15.3: - resolution: {integrity: sha512-ho0Xx5DLkgxRx/+n4O74XyJ67DcyN3Tu9bGYKsnTukGAW6ssnuak6Mwcyb1wHy9MZc9xsUWqIoiazkZB5weECg==} + polyclip-ts@0.16.8: dependencies: - splaytree: 3.1.2 - dev: false + bignumber.js: 9.1.2 + splaytree-ts: 1.0.2 - /postcss-load-config@4.0.2(postcss@8.4.40)(ts-node@9.1.1): - resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} - engines: {node: '>= 14'} - peerDependencies: - postcss: '>=8.0.9' - ts-node: '>=9.0.0' - peerDependenciesMeta: - postcss: - optional: true - ts-node: - optional: true + possible-typed-array-names@1.0.0: {} + + postcss-load-config@6.0.1(postcss@8.5.3)(tsx@4.19.4): dependencies: - lilconfig: 3.0.0 - postcss: 8.4.40 - ts-node: 9.1.1(typescript@5.3.3) - yaml: 2.3.4 - dev: true + lilconfig: 3.1.3 + postcss: 8.5.3 + tsx: 4.19.4 - /postcss-selector-parser@6.1.1: - resolution: {integrity: sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==} - engines: {node: '>=4'} + postcss-selector-parser@6.1.2: dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 - dev: true - /postcss-values-parser@6.0.2(postcss@8.4.40): - resolution: {integrity: sha512-YLJpK0N1brcNJrs9WatuJFtHaV9q5aAOj+S4DI5S7jgHlRfm0PIbDCAFRYMQD5SHq7Fy6xsDhyutgS0QOAs0qw==} - engines: {node: '>=10'} - peerDependencies: - postcss: ^8.2.9 + postcss-values-parser@6.0.2(postcss@8.5.3): dependencies: color-name: 1.1.4 is-url-superb: 4.0.0 - postcss: 8.4.40 + postcss: 8.5.3 quote-unquote: 1.0.0 - dev: true - /postcss@8.4.40: - resolution: {integrity: sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==} - engines: {node: ^10 || ^12 || >=14} + postcss@8.4.49: dependencies: - nanoid: 3.3.7 - picocolors: 1.0.1 - source-map-js: 1.2.0 - dev: true + nanoid: 3.3.8 + picocolors: 1.1.1 + source-map-js: 1.2.1 - /precinct@12.1.2: - resolution: {integrity: sha512-x2qVN3oSOp3D05ihCd8XdkIPuEQsyte7PSxzLqiRgktu79S5Dr1I75/S+zAup8/0cwjoiJTQztE9h0/sWp9bJQ==} - engines: {node: '>=18'} - hasBin: true + postcss@8.5.3: dependencies: - '@dependents/detective-less': 5.0.0 + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + precinct@12.2.0: + dependencies: + '@dependents/detective-less': 5.0.1 commander: 12.1.0 - detective-amd: 6.0.0 - detective-cjs: 6.0.0 - detective-es6: 5.0.0 - detective-postcss: 7.0.0(postcss@8.4.40) - detective-sass: 6.0.0 - detective-scss: 5.0.0 - detective-stylus: 5.0.0 - detective-typescript: 13.0.0(typescript@5.5.4) - detective-vue2: 2.0.3(typescript@5.5.4) - module-definition: 6.0.0 - node-source-walk: 7.0.0 - postcss: 8.4.40 - typescript: 5.5.4 + detective-amd: 6.0.1 + detective-cjs: 6.0.1 + detective-es6: 5.0.1 + detective-postcss: 7.0.1(postcss@8.5.3) + detective-sass: 6.0.1 + detective-scss: 5.0.1 + detective-stylus: 5.0.1 + detective-typescript: 14.0.0(typescript@5.8.3) + detective-vue2: 2.2.0(typescript@5.8.3) + module-definition: 6.0.1 + node-source-walk: 7.0.1 + postcss: 8.5.3 + typescript: 5.8.3 transitivePeerDependencies: - supports-color - dev: true - /prelude-ls@1.2.1: - resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} - engines: {node: '>= 0.8.0'} - dev: true + prelude-ls@1.2.1: {} - /prettier-linter-helpers@1.0.0: - resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} - engines: {node: '>=6.0.0'} + prettier-linter-helpers@1.0.0: dependencies: fast-diff: 1.3.0 - dev: true - /prettier@3.3.3: - resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==} - engines: {node: '>=14'} - hasBin: true - dev: true + prettier@3.5.3: {} - /pretty-format@29.7.0: - resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + pretty-format@29.7.0: dependencies: '@jest/schemas': 29.6.3 ansi-styles: 5.2.0 react-is: 18.2.0 - dev: true - /proc-log@3.0.0: - resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + proc-log@3.0.0: {} - /proc-log@4.2.0: - resolution: {integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + proc-log@4.2.0: {} - /process-nextick-args@2.0.1: - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} - dev: true + process-nextick-args@2.0.1: {} - /proggy@2.0.0: - resolution: {integrity: sha512-69agxLtnI8xBs9gUGqEnK26UfiexpHy+KUpBQWabiytQjnn5wFY8rklAi7GRfABIuPNnQ/ik48+LGLkYYJcy4A==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + proggy@2.0.0: {} - /progress@2.0.3: - resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} - engines: {node: '>=0.4.0'} - dev: true + progress@2.0.3: {} - /proj4@2.9.2: - resolution: {integrity: sha512-bdyfNmtlWjQN/rHEHEiqFvpTUHhuzDaeQ6Uu1G4sPGqk+Xkxae6ahh865fClJokSGPBmlDOQWWaO6465TCfv5Q==} + proj4@2.9.2: dependencies: mgrs: 1.0.0 wkt-parser: 1.3.3 - dev: true - /promise-all-reject-late@1.0.1: - resolution: {integrity: sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==} - dev: true + promise-all-reject-late@1.0.1: {} - /promise-call-limit@3.0.1: - resolution: {integrity: sha512-utl+0x8gIDasV5X+PI5qWEPqH6fJS0pFtQ/4gZ95xfEFb/89dmh+/b895TbFDBLiafBvxD/PGTKfvxl4kH/pQg==} - dev: true + promise-call-limit@3.0.2: {} - /promise-inflight@1.0.1: - resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} - peerDependencies: - bluebird: '*' - peerDependenciesMeta: - bluebird: - optional: true - dev: true + promise-inflight@1.0.1: {} - /promise-retry@2.0.1: - resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} - engines: {node: '>=10'} + promise-retry@2.0.1: dependencies: err-code: 2.0.3 retry: 0.12.0 - dev: true - /promzard@1.0.0: - resolution: {integrity: sha512-KQVDEubSUHGSt5xLakaToDFrSoZhStB8dXLzk2xvwR67gJktrHFvpR63oZgHyK19WKbHFLXJqCPXdVR3aBP8Ig==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + promzard@1.0.0: dependencies: read: 2.1.0 - dev: true - /property-information@6.5.0: - resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} - dev: true + property-information@6.5.0: {} - /protocols@2.0.1: - resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==} - dev: true + protocols@2.0.1: {} - /proxy-from-env@1.1.0: - resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} - dev: true + proxy-from-env@1.1.0: {} - /punycode@2.3.1: - resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} - engines: {node: '>=6'} - dev: true + punycode@2.3.1: {} - /python-shell@0.4.0: - resolution: {integrity: sha512-1Ys9FWe0JtA8YSj3F+hU4iVyiRpUVQRNKrGUYCHc7GEnHKJGHEyThrEoHJcdINrdTRwFjvM/nHQv8MpVla0i3w==} - engines: {node: '>=0.10'} - dev: true + python-shell@0.4.0: {} - /queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - dev: true + queue-microtask@1.2.3: {} - /quick-lru@4.0.1: - resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} - engines: {node: '>=8'} - dev: true + quick-lru@4.0.1: {} - /quickselect@1.1.1: - resolution: {integrity: sha512-qN0Gqdw4c4KGPsBOQafj6yj/PA6c/L63f6CaZ/DCF/xF4Esu3jVmKLUDYxghFx8Kb/O7y9tI7x2RjTSXwdK1iQ==} - dev: false + quickselect@1.1.1: {} - /quickselect@2.0.0: - resolution: {integrity: sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==} + quickselect@2.0.0: {} - /quote-unquote@1.0.0: - resolution: {integrity: sha512-twwRO/ilhlG/FIgYeKGFqyHhoEhqgnKVkcmqMKi2r524gz3ZbDTcyFt38E9xjJI2vT+KbRNHVbnJ/e0I25Azwg==} - dev: true + quote-unquote@1.0.0: {} - /randombytes@2.1.0: - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + randombytes@2.1.0: dependencies: safe-buffer: 5.2.1 - dev: true - /rbush@2.0.2: - resolution: {integrity: sha512-XBOuALcTm+O/H8G90b6pzu6nX6v2zCKiFG4BJho8a+bY6AER6t8uQUZdi5bomQc0AprCWhEGa7ncAbbRap0bRA==} + rbush@2.0.2: dependencies: quickselect: 1.1.1 - dev: false - /rbush@3.0.1: - resolution: {integrity: sha512-XRaVO0YecOpEuIvbhbpTrZgoiI6xBlz6hnlr6EHhd+0x9ase6EmeN+hdwwUaJvLcsFFQ8iWVF1GAK1yB0BWi0w==} + rbush@3.0.1: dependencies: quickselect: 2.0.0 - /react-is@18.2.0: - resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} - dev: true + react-is@18.2.0: {} - /read-cmd-shim@4.0.0: - resolution: {integrity: sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + read-cmd-shim@4.0.0: {} - /read-package-json-fast@3.0.2: - resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + read-package-json-fast@3.0.2: dependencies: json-parse-even-better-errors: 3.0.2 npm-normalize-package-bin: 3.0.1 - dev: true - /read-pkg-up@3.0.0: - resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==} - engines: {node: '>=4'} + read-pkg-up@3.0.0: dependencies: find-up: 2.1.0 read-pkg: 3.0.0 - dev: true - /read-pkg-up@7.0.1: - resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} - engines: {node: '>=8'} + read-pkg-up@7.0.1: dependencies: find-up: 4.1.0 read-pkg: 5.2.0 type-fest: 0.8.1 - dev: true - /read-pkg-up@9.1.0: - resolution: {integrity: sha512-vaMRR1AC1nrd5CQM0PhlRsO5oc2AAigqr7cCrZ/MW/Rsaflz4RlgzkpL4qoU/z1F6wrbd85iFv1OQj/y5RdGvg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + read-pkg-up@9.1.0: dependencies: find-up: 6.3.0 read-pkg: 7.1.0 type-fest: 2.19.0 - dev: true - /read-pkg@3.0.0: - resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} - engines: {node: '>=4'} + read-pkg@3.0.0: dependencies: load-json-file: 4.0.0 normalize-package-data: 2.5.0 path-type: 3.0.0 - dev: true - /read-pkg@5.2.0: - resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} - engines: {node: '>=8'} + read-pkg@5.2.0: dependencies: '@types/normalize-package-data': 2.4.4 normalize-package-data: 2.5.0 parse-json: 5.2.0 type-fest: 0.6.0 - dev: true - /read-pkg@7.1.0: - resolution: {integrity: sha512-5iOehe+WF75IccPc30bWTbpdDQLOCc3Uu8bi3Dte3Eueij81yx1Mrufk8qBx/YAbR4uL1FdUr+7BKXDwEtisXg==} - engines: {node: '>=12.20'} + read-pkg@7.1.0: dependencies: '@types/normalize-package-data': 2.4.4 normalize-package-data: 3.0.3 parse-json: 5.2.0 type-fest: 2.19.0 - dev: true - /read-yaml-file@2.1.0: - resolution: {integrity: sha512-UkRNRIwnhG+y7hpqnycCL/xbTk7+ia9VuVTC0S+zVbwd65DI9eUpRMfsWIGrCWxTU/mi+JW8cHQCrv+zfCbEPQ==} - engines: {node: '>=10.13'} + read-yaml-file@2.1.0: dependencies: js-yaml: 4.1.0 strip-bom: 4.0.0 - dev: true - /read@2.1.0: - resolution: {integrity: sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + read@2.1.0: dependencies: mute-stream: 1.0.0 - dev: true - /read@3.0.1: - resolution: {integrity: sha512-SLBrDU/Srs/9EoWhU5GdbAoxG1GzpQHo/6qiGItaoLJ1thmYpcNIM1qISEUvyHBzfGlWIyd6p2DNi1oV1VmAuw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + read@3.0.1: dependencies: mute-stream: 1.0.0 - dev: true - /readable-stream@2.3.8: - resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + readable-stream@2.3.8: dependencies: core-util-is: 1.0.3 inherits: 2.0.4 @@ -15106,83 +17029,69 @@ packages: safe-buffer: 5.1.2 string_decoder: 1.1.1 util-deprecate: 1.0.2 - dev: true - /readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} - engines: {node: '>= 6'} + readable-stream@3.6.2: dependencies: inherits: 2.0.4 string_decoder: 1.3.0 util-deprecate: 1.0.2 - dev: true - /readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} + readdirp@3.6.0: dependencies: picomatch: 2.3.1 - dev: true - /redent@3.0.0: - resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} - engines: {node: '>=8'} + readdirp@4.1.2: {} + + redent@3.0.0: dependencies: indent-string: 4.0.0 strip-indent: 3.0.0 - dev: true - /regenerate-unicode-properties@10.1.1: - resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} - engines: {node: '>=4'} + reflect.getprototypeof@1.0.7: dependencies: - regenerate: 1.4.2 - dev: true - - /regenerate@1.4.2: - resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} - dev: true - - /regenerator-runtime@0.14.0: - resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==} - dev: true - - /regenerator-transform@0.15.2: - resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} - dependencies: - '@babel/runtime': 7.23.5 - dev: true - - /regexp.prototype.flags@1.5.1: - resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - set-function-name: 2.0.1 - dev: true + es-abstract: 1.23.5 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + gopd: 1.1.0 + which-builtin-type: 1.2.0 - /regexpu-core@5.3.2: - resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} - engines: {node: '>=4'} + regenerate-unicode-properties@10.2.0: dependencies: - '@babel/regjsgen': 0.8.0 regenerate: 1.4.2 - regenerate-unicode-properties: 10.1.1 - regjsparser: 0.9.1 - unicode-match-property-ecmascript: 2.0.0 - unicode-match-property-value-ecmascript: 2.1.0 - dev: true - /regjsparser@0.9.1: - resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} - hasBin: true + regenerate@1.4.2: {} + + regenerator-runtime@0.14.1: {} + + regenerator-transform@0.15.2: dependencies: - jsesc: 0.5.0 - dev: true + '@babel/runtime': 7.27.0 - /remark-gfm@3.0.1: - resolution: {integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==} + regexp.prototype.flags@1.5.3: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-errors: 1.3.0 + set-function-name: 2.0.2 + + regexpu-core@6.2.0: + dependencies: + regenerate: 1.4.2 + regenerate-unicode-properties: 10.2.0 + regjsgen: 0.8.0 + regjsparser: 0.12.0 + unicode-match-property-ecmascript: 2.0.0 + unicode-match-property-value-ecmascript: 2.2.0 + + regjsgen@0.8.0: {} + + regjsparser@0.12.0: + dependencies: + jsesc: 3.0.2 + + remark-gfm@3.0.1: dependencies: '@types/mdast': 3.0.15 mdast-util-gfm: 2.0.2 @@ -15190,54 +17099,42 @@ packages: unified: 10.1.2 transitivePeerDependencies: - supports-color - dev: true - /remark-html@15.0.2: - resolution: {integrity: sha512-/CIOI7wzHJzsh48AiuIyIe1clxVkUtreul73zcCXLub0FmnevQE0UMFDQm7NUx8/3rl/4zCshlMfqBdWScQthw==} + remark-html@15.0.2: dependencies: '@types/mdast': 3.0.15 hast-util-sanitize: 4.1.0 hast-util-to-html: 8.0.4 mdast-util-to-hast: 12.3.0 unified: 10.1.2 - dev: true - /remark-parse@10.0.2: - resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==} + remark-parse@10.0.2: dependencies: '@types/mdast': 3.0.15 mdast-util-from-markdown: 1.3.1 unified: 10.1.2 transitivePeerDependencies: - supports-color - dev: true - /remark-reference-links@6.0.1: - resolution: {integrity: sha512-34wY2C6HXSuKVTRtyJJwefkUD8zBOZOSHFZ4aSTnU2F656gr9WeuQ2dL6IJDK3NPd2F6xKF2t4XXcQY9MygAXg==} + remark-reference-links@6.0.1: dependencies: '@types/mdast': 3.0.15 unified: 10.1.2 unist-util-visit: 4.1.2 - dev: true - /remark-stringify@10.0.3: - resolution: {integrity: sha512-koyOzCMYoUHudypbj4XpnAKFbkddRMYZHwghnxd7ue5210WzGw6kOBwauJTRUMq16jsovXx8dYNvSSWP89kZ3A==} + remark-stringify@10.0.3: dependencies: '@types/mdast': 3.0.15 mdast-util-to-markdown: 1.5.0 unified: 10.1.2 - dev: true - /remark-toc@8.0.1: - resolution: {integrity: sha512-7he2VOm/cy13zilnOTZcyAoyoolV26ULlon6XyCFU+vG54Z/LWJnwphj/xKIDLOt66QmJUgTyUvLVHi2aAElyg==} + remark-toc@8.0.1: dependencies: '@types/mdast': 3.0.15 mdast-util-toc: 6.1.1 unified: 10.1.2 - dev: true - /remark@14.0.3: - resolution: {integrity: sha512-bfmJW1dmR2LvaMJuAnE88pZP9DktIFYXazkTfOIKZzi3Knk9lT0roItIA24ydOucI3bV/g/tXBA6hzqq3FV9Ew==} + remark@14.0.3: dependencies: '@types/mdast': 3.0.15 remark-parse: 10.0.2 @@ -15245,350 +17142,209 @@ packages: unified: 10.1.2 transitivePeerDependencies: - supports-color - dev: true - /require-directory@2.1.1: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} - engines: {node: '>=0.10.0'} - dev: true + require-directory@2.1.1: {} - /requirejs-config-file@4.0.0: - resolution: {integrity: sha512-jnIre8cbWOyvr8a5F2KuqBnY+SDA4NXr/hzEZJG79Mxm2WiFQz2dzhC8ibtPJS7zkmBEl1mxSwp5HhC1W4qpxw==} - engines: {node: '>=10.13.0'} + requirejs-config-file@4.0.0: dependencies: esprima: 4.0.1 stringify-object: 3.3.0 - dev: true - /requirejs@2.3.7: - resolution: {integrity: sha512-DouTG8T1WanGok6Qjg2SXuCMzszOo0eHeH9hDZ5Y4x8Je+9JB38HdTLT4/VA8OaUhBa0JPVHJ0pyBkM1z+pDsw==} - engines: {node: '>=0.4.0'} - hasBin: true - dev: true + requirejs@2.3.7: {} - /resolve-cwd@3.0.0: - resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} - engines: {node: '>=8'} + resolve-cwd@3.0.0: dependencies: resolve-from: 5.0.0 - dev: true - /resolve-dependency-path@4.0.0: - resolution: {integrity: sha512-hlY1SybBGm5aYN3PC4rp15MzsJLM1w+MEA/4KU3UBPfz4S0lL3FL6mgv7JgaA8a+ZTeEQAiF1a1BuN2nkqiIlg==} - engines: {node: '>=18'} - dev: true + resolve-dependency-path@4.0.1: {} - /resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} - dev: true + resolve-from@4.0.0: {} - /resolve-from@5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} - engines: {node: '>=8'} - dev: true + resolve-from@5.0.0: {} - /resolve-package-path@4.0.3: - resolution: {integrity: sha512-SRpNAPW4kewOaNUt8VPqhJ0UMxawMwzJD8V7m1cJfdSTK9ieZwS6K7Dabsm4bmLFM96Z5Y/UznrpG5kt1im8yA==} - engines: {node: '>= 12'} + resolve-package-path@4.0.3: dependencies: path-root: 0.1.1 - dev: true - /resolve-pkg-maps@1.0.0: - resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} - dev: true + resolve-pkg-maps@1.0.0: {} - /resolve@1.22.8: - resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} - hasBin: true + resolve@1.22.10: + dependencies: + is-core-module: 2.16.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + resolve@1.22.8: dependencies: is-core-module: 2.13.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - dev: true - /resolve@2.0.0-next.5: - resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} - hasBin: true + resolve@2.0.0-next.5: dependencies: is-core-module: 2.13.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - dev: true - /restore-cursor@3.1.0: - resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} - engines: {node: '>=8'} + restore-cursor@3.1.0: dependencies: onetime: 5.1.2 signal-exit: 3.0.7 - dev: true - /restore-cursor@5.1.0: - resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} - engines: {node: '>=18'} + restore-cursor@5.1.0: dependencies: onetime: 7.0.0 signal-exit: 4.1.0 - dev: true - /retry@0.12.0: - resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} - engines: {node: '>= 4'} - dev: true + retry@0.12.0: {} - /reusify@1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - dev: true + reusify@1.0.4: {} - /rfdc@1.4.1: - resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} - dev: true + rfdc@1.4.1: {} - /rimraf@3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} - hasBin: true + rimraf@3.0.2: dependencies: glob: 7.2.3 - dev: true - /rimraf@4.4.1: - resolution: {integrity: sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==} - engines: {node: '>=14'} - hasBin: true + rimraf@4.4.1: dependencies: glob: 9.3.5 - dev: true - /robust-predicates@2.0.4: - resolution: {integrity: sha512-l4NwboJM74Ilm4VKfbAtFeGq7aEjWL+5kVFcmgFA2MrdnQWx9iE/tUGvxY5HyMI7o/WpSIUFLbC5fbeaHgSCYg==} + robust-predicates@2.0.4: {} - /rollup-plugin-polyfill-node@0.13.0(rollup@2.79.1): - resolution: {integrity: sha512-FYEvpCaD5jGtyBuBFcQImEGmTxDTPbiHjJdrYIp+mFIwgXiXabxvKUK7ZT9P31ozu2Tqm9llYQMRWsfvTMTAOw==} - peerDependencies: - rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 + rollup-plugin-polyfill-node@0.13.0(rollup@4.40.1): dependencies: - '@rollup/plugin-inject': 5.0.5(rollup@2.79.1) - rollup: 2.79.1 - dev: true + '@rollup/plugin-inject': 5.0.5(rollup@4.40.1) + rollup: 4.40.1 - /rollup@2.79.1: - resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} - engines: {node: '>=10.0.0'} - hasBin: true - optionalDependencies: - fsevents: 2.3.3 - dev: true - - /rollup@4.9.0: - resolution: {integrity: sha512-bUHW/9N21z64gw8s6tP4c88P382Bq/L5uZDowHlHx6s/QWpjJXivIAbEw6LZthgSvlEizZBfLC4OAvWe7aoF7A==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} - hasBin: true - optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.9.0 - '@rollup/rollup-android-arm64': 4.9.0 - '@rollup/rollup-darwin-arm64': 4.9.0 - '@rollup/rollup-darwin-x64': 4.9.0 - '@rollup/rollup-linux-arm-gnueabihf': 4.9.0 - '@rollup/rollup-linux-arm64-gnu': 4.9.0 - '@rollup/rollup-linux-arm64-musl': 4.9.0 - '@rollup/rollup-linux-riscv64-gnu': 4.9.0 - '@rollup/rollup-linux-x64-gnu': 4.9.0 - '@rollup/rollup-linux-x64-musl': 4.9.0 - '@rollup/rollup-win32-arm64-msvc': 4.9.0 - '@rollup/rollup-win32-ia32-msvc': 4.9.0 - '@rollup/rollup-win32-x64-msvc': 4.9.0 - fsevents: 2.3.3 - dev: true - - /run-applescript@5.0.0: - resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==} - engines: {node: '>=12'} + rollup@4.40.1: dependencies: - execa: 5.1.1 - dev: true + '@types/estree': 1.0.7 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.40.1 + '@rollup/rollup-android-arm64': 4.40.1 + '@rollup/rollup-darwin-arm64': 4.40.1 + '@rollup/rollup-darwin-x64': 4.40.1 + '@rollup/rollup-freebsd-arm64': 4.40.1 + '@rollup/rollup-freebsd-x64': 4.40.1 + '@rollup/rollup-linux-arm-gnueabihf': 4.40.1 + '@rollup/rollup-linux-arm-musleabihf': 4.40.1 + '@rollup/rollup-linux-arm64-gnu': 4.40.1 + '@rollup/rollup-linux-arm64-musl': 4.40.1 + '@rollup/rollup-linux-loongarch64-gnu': 4.40.1 + '@rollup/rollup-linux-powerpc64le-gnu': 4.40.1 + '@rollup/rollup-linux-riscv64-gnu': 4.40.1 + '@rollup/rollup-linux-riscv64-musl': 4.40.1 + '@rollup/rollup-linux-s390x-gnu': 4.40.1 + '@rollup/rollup-linux-x64-gnu': 4.40.1 + '@rollup/rollup-linux-x64-musl': 4.40.1 + '@rollup/rollup-win32-arm64-msvc': 4.40.1 + '@rollup/rollup-win32-ia32-msvc': 4.40.1 + '@rollup/rollup-win32-x64-msvc': 4.40.1 + fsevents: 2.3.3 - /run-async@2.4.1: - resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} - engines: {node: '>=0.12.0'} - dev: true + run-async@2.4.1: {} - /run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + run-parallel@1.2.0: dependencies: queue-microtask: 1.2.3 - dev: true - /runtypes@6.7.0: - resolution: {integrity: sha512-3TLdfFX8YHNFOhwHrSJza6uxVBmBrEjnNQlNXvXCdItS0Pdskfg5vVXUTWIN+Y23QR09jWpSl99UHkA83m4uWA==} - dev: true + runtypes@6.7.0: {} - /rxjs@7.8.1: - resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} + rxjs@7.8.1: dependencies: - tslib: 2.6.2 - dev: true + tslib: 2.8.1 - /sade@1.8.1: - resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} - engines: {node: '>=6'} + sade@1.8.1: dependencies: mri: 1.2.0 - dev: true - /safe-array-concat@1.0.1: - resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==} - engines: {node: '>=0.4'} + safe-array-concat@1.1.2: dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - has-symbols: 1.0.3 + call-bind: 1.0.7 + get-intrinsic: 1.2.4 + has-symbols: 1.1.0 isarray: 2.0.5 - dev: true - /safe-buffer@5.1.2: - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} - dev: true + safe-buffer@5.1.2: {} - /safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - dev: true + safe-buffer@5.2.1: {} - /safe-regex-test@1.0.0: - resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} + safe-regex-test@1.0.3: dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 + call-bind: 1.0.7 + es-errors: 1.3.0 is-regex: 1.1.4 - dev: true - /safe-stable-stringify@2.4.3: - resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==} - engines: {node: '>=10'} - dev: true + safe-stable-stringify@2.5.0: {} - /safer-buffer@2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - dev: true + safer-buffer@2.1.2: {} - /sass-lookup@6.0.1: - resolution: {integrity: sha512-nl9Wxbj9RjEJA5SSV0hSDoU2zYGtE+ANaDS4OFUR7nYrquvBFvPKZZtQHe3lvnxCcylEDV00KUijjdMTUElcVQ==} - engines: {node: '>=18'} - hasBin: true + sass-lookup@6.1.0: dependencies: commander: 12.1.0 - dev: true + enhanced-resolve: 5.18.1 - /semver@5.7.2: - resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} - hasBin: true - dev: true + semver@5.7.2: {} - /semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} - hasBin: true - dev: true + semver@6.3.1: {} - /semver@7.5.4: - resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} - engines: {node: '>=10'} - hasBin: true - dependencies: - lru-cache: 6.0.0 - dev: true + semver@7.6.3: {} - /semver@7.6.3: - resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} - engines: {node: '>=10'} - hasBin: true - dev: true + semver@7.7.1: {} - /serialize-javascript@6.0.1: - resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==} + serialize-javascript@6.0.1: dependencies: randombytes: 2.1.0 - dev: true - /set-blocking@2.0.0: - resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} - dev: true + set-blocking@2.0.0: {} - /set-function-length@1.1.1: - resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==} - engines: {node: '>= 0.4'} + set-function-length@1.2.2: dependencies: - define-data-property: 1.1.1 - get-intrinsic: 1.2.2 - gopd: 1.0.1 - has-property-descriptors: 1.0.1 - dev: true + define-data-property: 1.1.4 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.2.4 + gopd: 1.1.0 + has-property-descriptors: 1.0.2 - /set-function-name@2.0.1: - resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} - engines: {node: '>= 0.4'} + set-function-name@2.0.2: dependencies: - define-data-property: 1.1.1 + define-data-property: 1.1.4 + es-errors: 1.3.0 functions-have-names: 1.2.3 - has-property-descriptors: 1.0.1 - dev: true + has-property-descriptors: 1.0.2 - /shallow-clone@3.0.1: - resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} - engines: {node: '>=8'} + shallow-clone@3.0.1: dependencies: kind-of: 6.0.3 - dev: true - /shebang-command@1.2.0: - resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} - engines: {node: '>=0.10.0'} + shebang-command@1.2.0: dependencies: shebang-regex: 1.0.0 - dev: true - /shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} + shebang-command@2.0.0: dependencies: shebang-regex: 3.0.0 - dev: true - /shebang-regex@1.0.0: - resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} - engines: {node: '>=0.10.0'} - dev: true + shebang-regex@1.0.0: {} - /shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} - dev: true + shebang-regex@3.0.0: {} - /shell-quote@1.8.1: - resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} - dev: true + shell-quote@1.8.1: {} - /side-channel@1.0.4: - resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} + side-channel@1.0.6: dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - object-inspect: 1.13.1 - dev: true + call-bind: 1.0.7 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + object-inspect: 1.13.3 - /signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} - dev: true + signal-exit@3.0.7: {} - /signal-exit@4.1.0: - resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} - engines: {node: '>=14'} - dev: true + signal-exit@4.1.0: {} - /sigstore@2.3.1: - resolution: {integrity: sha512-8G+/XDU8wNsJOQS5ysDVO0Etg9/2uA5gR9l4ZwijjlwxBcrU6RPfwi2+jJmbP+Ap1Hlp/nVAaEO4Fj22/SL2gQ==} - engines: {node: ^16.14.0 || >=18.0.0} + sigstore@2.3.1: dependencies: '@sigstore/bundle': 2.3.2 '@sigstore/core': 1.1.0 @@ -15598,454 +17354,278 @@ packages: '@sigstore/verify': 1.2.1 transitivePeerDependencies: - supports-color - dev: true - /simple-swizzle@0.2.2: - resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} + simple-swizzle@0.2.2: dependencies: is-arrayish: 0.3.2 - dev: true - /skmeans@0.9.7: - resolution: {integrity: sha512-hNj1/oZ7ygsfmPZ7ZfN5MUBRoGg1gtpnImuJBgLO0ljQ67DtJuiQaiYdS4lUA6s0KCwnPhGivtC/WRwIZLkHyg==} - dev: false + skmeans@0.9.7: {} - /slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} - dev: true + slash@3.0.0: {} - /slash@5.1.0: - resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} - engines: {node: '>=14.16'} - dev: true + slash@5.1.0: {} - /slice-ansi@5.0.0: - resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==} - engines: {node: '>=12'} + slice-ansi@5.0.0: dependencies: ansi-styles: 6.2.1 is-fullwidth-code-point: 4.0.0 - dev: true - /slice-ansi@7.1.0: - resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==} - engines: {node: '>=18'} + slice-ansi@7.1.0: dependencies: ansi-styles: 6.2.1 is-fullwidth-code-point: 5.0.0 - dev: true - /smart-buffer@4.2.0: - resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} - engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} - dev: true + smart-buffer@4.2.0: {} - /smob@1.4.1: - resolution: {integrity: sha512-9LK+E7Hv5R9u4g4C3p+jjLstaLe11MDsL21UpYaCNmapvMkYhqCV4A/f/3gyH8QjMyh6l68q9xC85vihY9ahMQ==} - dev: true + smob@1.4.1: {} - /socks-proxy-agent@8.0.3: - resolution: {integrity: sha512-VNegTZKhuGq5vSD6XNKlbqWhyt/40CgoEw8XxD6dhnm8Jq9IEa3nIa4HwnM8XOqU0CdB0BwWVXusqiFXfHB3+A==} - engines: {node: '>= 14'} + socks-proxy-agent@8.0.3: dependencies: agent-base: 7.1.1 - debug: 4.3.4 + debug: 4.4.0 socks: 2.7.1 transitivePeerDependencies: - supports-color - dev: true - /socks@2.7.1: - resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==} - engines: {node: '>= 10.13.0', npm: '>= 3.0.0'} + socks@2.7.1: dependencies: ip: 2.0.1 smart-buffer: 4.2.0 - dev: true - /sort-keys@2.0.0: - resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==} - engines: {node: '>=4'} + sort-keys@2.0.0: dependencies: is-plain-obj: 1.1.0 - dev: true - /sort-keys@4.2.0: - resolution: {integrity: sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==} - engines: {node: '>=8'} + sort-keys@4.2.0: dependencies: is-plain-obj: 2.1.0 - dev: true - /sort-keys@5.0.0: - resolution: {integrity: sha512-Pdz01AvCAottHTPQGzndktFNdbRA75BgOfeT1hH+AMnJFv8lynkPi42rfeEhpx1saTEI3YNMWxfqu0sFD1G8pw==} - engines: {node: '>=12'} + sort-keys@5.1.0: dependencies: is-plain-obj: 4.1.0 - dev: true - /source-map-js@1.2.0: - resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} - engines: {node: '>=0.10.0'} - dev: true + source-map-js@1.2.1: {} - /source-map-support@0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + source-map-support@0.5.21: dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - dev: true - /source-map@0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} - dev: true + source-map@0.6.1: {} - /source-map@0.8.0-beta.0: - resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} - engines: {node: '>= 8'} + source-map@0.8.0-beta.0: dependencies: whatwg-url: 7.1.0 - dev: true - /space-separated-tokens@2.0.2: - resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} - dev: true + space-separated-tokens@2.0.2: {} - /spdx-correct@3.2.0: - resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + spdx-correct@3.2.0: dependencies: spdx-expression-parse: 3.0.1 spdx-license-ids: 3.0.16 - dev: true - /spdx-exceptions@2.3.0: - resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} - dev: true + spdx-exceptions@2.3.0: {} - /spdx-expression-parse@3.0.1: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + spdx-expression-parse@3.0.1: dependencies: spdx-exceptions: 2.3.0 spdx-license-ids: 3.0.16 - dev: true - /spdx-license-ids@3.0.16: - resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==} - dev: true + spdx-license-ids@3.0.16: {} - /splaytree@3.1.2: - resolution: {integrity: sha512-4OM2BJgC5UzrhVnnJA4BkHKGtjXNzzUfpQjCO8I05xYPsfS/VuQDwjCGGMi8rYQilHEV4j8NBqTFbls/PZEE7A==} - dev: false + splaytree-ts@1.0.2: {} - /split2@3.2.2: - resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} + split2@3.2.2: dependencies: readable-stream: 3.6.2 - dev: true - /split@1.0.1: - resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} + split@1.0.1: dependencies: through: 2.3.8 - dev: true - /sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} - dev: true + sprintf-js@1.0.3: {} - /ssri@10.0.6: - resolution: {integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + ssri@10.0.6: dependencies: - minipass: 7.0.4 - dev: true + minipass: 7.1.2 - /stack-trace@0.0.10: - resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==} - dev: true + stack-trace@0.0.10: {} - /stop-iteration-iterator@1.0.0: - resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} - engines: {node: '>= 0.4'} + stop-iteration-iterator@1.0.0: dependencies: - internal-slot: 1.0.6 - dev: true + internal-slot: 1.0.7 - /string-argv@0.3.2: - resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} - engines: {node: '>=0.6.19'} - dev: true + string-argv@0.3.2: {} - /string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} + string-width@4.2.3: dependencies: emoji-regex: 8.0.0 is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - dev: true - /string-width@5.1.2: - resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} - engines: {node: '>=12'} + string-width@5.1.2: dependencies: eastasianwidth: 0.2.0 emoji-regex: 9.2.2 strip-ansi: 7.1.0 - dev: true - /string-width@7.2.0: - resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} - engines: {node: '>=18'} + string-width@7.2.0: dependencies: - emoji-regex: 10.3.0 - get-east-asian-width: 1.2.0 + emoji-regex: 10.4.0 + get-east-asian-width: 1.3.0 strip-ansi: 7.1.0 - dev: true - /string.prototype.padend@3.1.5: - resolution: {integrity: sha512-DOB27b/2UTTD+4myKUFh+/fXWcu/UDyASIXfg+7VzoCNNGOfWvoyU/x5pvVHr++ztyt/oSYI1BcWBBG/hmlNjA==} - engines: {node: '>= 0.4'} + string.prototype.padend@3.1.5: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 - dev: true + es-abstract: 1.23.5 - /string.prototype.trim@1.2.8: - resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} - engines: {node: '>= 0.4'} + string.prototype.trim@1.2.9: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 - dev: true + es-abstract: 1.23.5 + es-object-atoms: 1.0.0 - /string.prototype.trimend@1.0.7: - resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} + string.prototype.trimend@1.0.8: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 - dev: true + es-object-atoms: 1.0.0 - /string.prototype.trimstart@1.0.7: - resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} + string.prototype.trimstart@1.0.8: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 - dev: true + es-object-atoms: 1.0.0 - /string_decoder@1.1.1: - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + string_decoder@1.1.1: dependencies: safe-buffer: 5.1.2 - dev: true - /string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + string_decoder@1.3.0: dependencies: safe-buffer: 5.2.1 - dev: true - /stringify-entities@4.0.4: - resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} + stringify-entities@4.0.4: dependencies: character-entities-html4: 2.1.0 character-entities-legacy: 3.0.0 - dev: true - /stringify-object@3.3.0: - resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==} - engines: {node: '>=4'} + stringify-object@3.3.0: dependencies: get-own-enumerable-property-symbols: 3.0.2 is-obj: 1.0.1 is-regexp: 1.0.0 - dev: true - /strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} + strip-ansi@6.0.1: dependencies: ansi-regex: 5.0.1 - dev: true - /strip-ansi@7.1.0: - resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} - engines: {node: '>=12'} + strip-ansi@7.1.0: dependencies: ansi-regex: 6.0.1 - dev: true - /strip-bom@3.0.0: - resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} - engines: {node: '>=4'} - dev: true + strip-bom@3.0.0: {} - /strip-bom@4.0.0: - resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} - engines: {node: '>=8'} - dev: true + strip-bom@4.0.0: {} - /strip-comments-strings@1.2.0: - resolution: {integrity: sha512-zwF4bmnyEjZwRhaak9jUWNxc0DoeKBJ7lwSN/LEc8dQXZcUFG6auaaTQJokQWXopLdM3iTx01nQT8E4aL29DAQ==} - dev: true + strip-comments-strings@1.2.0: {} - /strip-final-newline@2.0.0: - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} - engines: {node: '>=6'} - dev: true + strip-final-newline@2.0.0: {} - /strip-final-newline@3.0.0: - resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} - engines: {node: '>=12'} - dev: true + strip-final-newline@3.0.0: {} - /strip-indent@3.0.0: - resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} - engines: {node: '>=8'} + strip-indent@3.0.0: dependencies: min-indent: 1.0.1 - dev: true - /strip-json-comments@3.1.1: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} - engines: {node: '>=8'} - dev: true + strip-json-comments@3.1.1: {} - /strip-json-comments@5.0.1: - resolution: {integrity: sha512-0fk9zBqO67Nq5M/m45qHCJxylV/DhBlIOVExqgOMiCCrzrhU6tCibRXNqE3jwJLftzE9SNuZtYbpzcO+i9FiKw==} - engines: {node: '>=14.16'} - dev: true + strip-json-comments@5.0.1: {} - /strong-log-transformer@2.1.0: - resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==} - engines: {node: '>=4'} - hasBin: true + strong-log-transformer@2.1.0: dependencies: duplexer: 0.1.2 minimist: 1.2.8 through: 2.3.8 - dev: true - /stylus-lookup@6.0.0: - resolution: {integrity: sha512-RaWKxAvPnIXrdby+UWCr1WRfa+lrPMSJPySte4Q6a+rWyjeJyFOLJxr5GrAVfcMCsfVlCuzTAJ/ysYT8p8do7Q==} - engines: {node: '>=18'} - hasBin: true + stylus-lookup@6.1.0: dependencies: commander: 12.1.0 - dev: true - /sucrase@3.34.0: - resolution: {integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==} - engines: {node: '>=8'} - hasBin: true + sucrase@3.35.0: dependencies: - '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/gen-mapping': 0.3.5 commander: 4.1.1 - glob: 7.1.6 + glob: 10.4.5 lines-and-columns: 1.2.4 mz: 2.7.0 pirates: 4.0.6 ts-interface-checker: 0.1.13 - dev: true - /supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} + supports-color@5.5.0: dependencies: has-flag: 3.0.0 - dev: true - /supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} + supports-color@7.2.0: dependencies: has-flag: 4.0.0 - dev: true - /supports-color@8.1.1: - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} - engines: {node: '>=10'} + supports-color@8.1.1: dependencies: has-flag: 4.0.0 - dev: true - /supports-color@9.4.0: - resolution: {integrity: sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==} - engines: {node: '>=12'} - dev: true + supports-color@9.4.0: {} - /supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} - dev: true + supports-preserve-symlinks-flag@1.0.0: {} - /sweepline-intersections@1.5.0: - resolution: {integrity: sha512-AoVmx72QHpKtItPu72TzFL+kcYjd67BPLDoR0LarIk+xyaRg+pDTMFXndIEvZf9xEKnJv6JdhgRMnocoG0D3AQ==} + sweepline-intersections@1.5.0: dependencies: tinyqueue: 2.0.3 - dev: false - /synckit@0.8.6: - resolution: {integrity: sha512-laHF2savN6sMeHCjLRkheIU4wo3Zg9Ln5YOjOo7sZ5dVQW8yF5pPE5SIw1dsPhq3TRp1jisKRCdPhfs/1WMqDA==} - engines: {node: ^14.18.0 || >=16.0.0} + synckit@0.11.4: dependencies: - '@pkgr/utils': 2.4.2 - tslib: 2.6.2 - dev: true + '@pkgr/core': 0.2.4 + tslib: 2.8.1 - /tapable@2.2.1: - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} - engines: {node: '>=6'} - dev: true + tapable@2.2.1: {} - /tape@5.7.2: - resolution: {integrity: sha512-cvSyprYahyOYXbtBwV/B7nrx7kINeZ3VZ9fKoSywoPwZN3oQ1WVLvt+Vl0XCz/gi37CDrY3dlW790nzviIzoPw==} - hasBin: true + tape@5.9.0: dependencies: - '@ljharb/resumer': 0.0.1 - '@ljharb/through': 2.3.11 - array.prototype.every: 1.1.5 - call-bind: 1.0.5 + '@ljharb/resumer': 0.1.3 + '@ljharb/through': 2.3.13 + array.prototype.every: 1.1.6 + call-bind: 1.0.7 deep-equal: 2.2.3 defined: 1.0.1 dotignore: 0.1.2 for-each: 0.3.3 get-package-type: 0.1.0 glob: 7.2.3 - has-dynamic-import: 2.0.1 - hasown: 2.0.0 + has-dynamic-import: 2.1.0 + hasown: 2.0.2 inherits: 2.0.4 is-regex: 1.1.4 minimist: 1.2.8 - mock-property: 1.0.3 - object-inspect: 1.13.1 - object-is: 1.1.5 + mock-property: 1.1.0 + object-inspect: 1.13.3 + object-is: 1.1.6 object-keys: 1.1.1 object.assign: 4.1.5 resolve: 2.0.0-next.5 - string.prototype.trim: 1.2.8 - dev: true + string.prototype.trim: 1.2.9 - /tar-stream@2.2.0: - resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} - engines: {node: '>=6'} + tar-stream@2.2.0: dependencies: bl: 4.1.0 end-of-stream: 1.4.4 fs-constants: 1.0.0 inherits: 2.0.4 readable-stream: 3.6.2 - dev: true - /tar@6.2.1: - resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} - engines: {node: '>=10'} + tar@6.2.1: dependencies: chownr: 2.0.0 fs-minipass: 2.1.0 @@ -16053,413 +17633,232 @@ packages: minizlib: 2.1.2 mkdirp: 1.0.4 yallist: 4.0.0 - dev: true - /temp-dir@1.0.0: - resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==} - engines: {node: '>=4'} - dev: true + temp-dir@1.0.0: {} - /terser@5.26.0: - resolution: {integrity: sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==} - engines: {node: '>=10'} - hasBin: true + terser@5.26.0: dependencies: '@jridgewell/source-map': 0.3.5 - acorn: 8.11.2 + acorn: 8.14.1 commander: 2.20.3 source-map-support: 0.5.21 - dev: true - /text-extensions@1.9.0: - resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} - engines: {node: '>=0.10'} - dev: true + text-extensions@1.9.0: {} - /text-hex@1.0.0: - resolution: {integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==} - dev: true + text-hex@1.0.0: {} - /text-table@0.2.0: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} - dev: true - - /thenify-all@1.6.0: - resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} - engines: {node: '>=0.8'} + thenify-all@1.6.0: dependencies: thenify: 3.3.1 - dev: true - /thenify@3.3.1: - resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} + thenify@3.3.1: dependencies: any-promise: 1.3.0 - dev: true - /through2@2.0.5: - resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} + through2@2.0.5: dependencies: readable-stream: 2.3.8 xtend: 4.0.2 - dev: true - /through@2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} - dev: true + through@2.3.8: {} - /tinyqueue@2.0.3: - resolution: {integrity: sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==} + tinyexec@0.3.2: {} - /titleize@3.0.0: - resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==} - engines: {node: '>=12'} - dev: true + tinyglobby@0.2.13: + dependencies: + fdir: 6.4.4(picomatch@4.0.2) + picomatch: 4.0.2 - /tmp@0.0.33: - resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} - engines: {node: '>=0.6.0'} + tinyqueue@2.0.3: {} + + tmp@0.0.33: dependencies: os-tmpdir: 1.0.2 - dev: true - /tmp@0.2.1: - resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==} - engines: {node: '>=8.17.0'} + tmp@0.2.1: dependencies: rimraf: 3.0.2 - dev: true - /to-fast-properties@2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} - dev: true - - /to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} + to-regex-range@5.0.1: dependencies: is-number: 7.0.0 - dev: true - /topojson-client@3.1.0: - resolution: {integrity: sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==} - hasBin: true + topojson-client@3.1.0: dependencies: commander: 2.20.3 - dev: false - /topojson-server@3.0.1: - resolution: {integrity: sha512-/VS9j/ffKr2XAOjlZ9CgyyeLmgJ9dMwq6Y0YEON8O7p/tGGk+dCWnrE03zEdu7i4L7YsFZLEPZPzCvcB7lEEXw==} - hasBin: true + topojson-server@3.0.1: dependencies: commander: 2.20.3 - dev: false - /tr46@0.0.3: - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} - dev: true + tr46@0.0.3: {} - /tr46@1.0.1: - resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==} + tr46@1.0.1: dependencies: punycode: 2.3.1 - dev: true - /tree-kill@1.2.2: - resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} - hasBin: true - dev: true + tree-kill@1.2.2: {} - /treeverse@3.0.0: - resolution: {integrity: sha512-gcANaAnd2QDZFmHFEOF4k7uc1J/6a6z3DJMd/QwEyxLoKGiptJRwid582r7QIsFlFMIZ3SnxfS52S4hm2DHkuQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + treeverse@3.0.0: {} - /trim-lines@3.0.1: - resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} - dev: true + trim-lines@3.0.1: {} - /trim-newlines@3.0.1: - resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} - engines: {node: '>=8'} - dev: true + trim-newlines@3.0.1: {} - /triple-beam@1.4.1: - resolution: {integrity: sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==} - engines: {node: '>= 14.0.0'} - dev: true + triple-beam@1.4.1: {} - /trough@2.2.0: - resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} - dev: true + trough@2.2.0: {} - /ts-api-utils@1.0.3(typescript@5.3.3): - resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==} - engines: {node: '>=16.13.0'} - peerDependencies: - typescript: '>=4.2.0' + ts-api-utils@2.1.0(typescript@5.8.3): dependencies: - typescript: 5.3.3 - dev: true + typescript: 5.8.3 - /ts-api-utils@1.3.0(typescript@5.5.4): - resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} - engines: {node: '>=16'} - peerDependencies: - typescript: '>=4.2.0' - dependencies: - typescript: 5.5.4 - dev: true + ts-interface-checker@0.1.13: {} - /ts-interface-checker@0.1.13: - resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} - dev: true - - /ts-node@9.1.1(typescript@5.3.3): - resolution: {integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==} - engines: {node: '>=10.0.0'} - hasBin: true - peerDependencies: - typescript: '>=2.7' - dependencies: - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 - source-map-support: 0.5.21 - typescript: 5.3.3 - yn: 3.1.1 - dev: true - - /tsconfig-paths@4.2.0: - resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} - engines: {node: '>=6'} + tsconfig-paths@4.2.0: dependencies: json5: 2.2.3 minimist: 1.2.8 strip-bom: 3.0.0 - dev: true - /tslib@2.6.2: - resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} + tslib@2.8.1: {} - /tsup@8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3): - resolution: {integrity: sha512-hvW7gUSG96j53ZTSlT4j/KL0q1Q2l6TqGBFc6/mu/L46IoNWqLLUzLRLP1R8Q7xrJTmkDxxDoojV5uCVs1sVOg==} - engines: {node: '>=18'} - hasBin: true - peerDependencies: - '@microsoft/api-extractor': ^7.36.0 - '@swc/core': ^1 - postcss: ^8.4.12 - typescript: '>=4.5.0' - peerDependenciesMeta: - '@microsoft/api-extractor': - optional: true - '@swc/core': - optional: true - postcss: - optional: true - typescript: - optional: true + tsup@8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3): dependencies: - bundle-require: 4.0.2(esbuild@0.19.11) + bundle-require: 5.1.0(esbuild@0.25.3) cac: 6.7.14 - chokidar: 3.5.3 - debug: 4.3.4 - esbuild: 0.19.11 - execa: 5.1.1 - globby: 11.1.0 + chokidar: 4.0.3 + consola: 3.4.2 + debug: 4.4.0 + esbuild: 0.25.3 joycon: 3.1.1 - postcss: 8.4.40 - postcss-load-config: 4.0.2(postcss@8.4.40)(ts-node@9.1.1) + picocolors: 1.1.1 + postcss: 8.5.3 + postcss-load-config: 6.0.1(postcss@8.5.3)(tsx@4.19.4) resolve-from: 5.0.0 - rollup: 4.9.0 + rollup: 4.40.1 source-map: 0.8.0-beta.0 - sucrase: 3.34.0 + sucrase: 3.35.0 + tinyexec: 0.3.2 + tinyglobby: 0.2.13 tree-kill: 1.2.2 - typescript: 5.3.3 + typescript: 5.8.3 transitivePeerDependencies: + - jiti - supports-color - - ts-node - dev: true + - tsx + - yaml - /tsx@4.6.2: - resolution: {integrity: sha512-QPpBdJo+ZDtqZgAnq86iY/PD2KYCUPSUGIunHdGwyII99GKH+f3z3FZ8XNFLSGQIA4I365ui8wnQpl8OKLqcsg==} - engines: {node: '>=18.0.0'} - hasBin: true + tsx@4.19.4: dependencies: - esbuild: 0.18.20 - get-tsconfig: 4.7.2 + esbuild: 0.25.3 + get-tsconfig: 4.8.1 optionalDependencies: fsevents: 2.3.3 - dev: true - /tuf-js@2.2.1: - resolution: {integrity: sha512-GwIJau9XaA8nLVbUXsN3IlFi7WmQ48gBUrl3FTkkL/XLu/POhBzfmX9hd33FNMX1qAsfl6ozO1iMmW9NC8YniA==} - engines: {node: ^16.14.0 || >=18.0.0} + tuf-js@2.2.1: dependencies: '@tufjs/models': 2.0.1 - debug: 4.3.4 + debug: 4.4.0 make-fetch-happen: 13.0.1 transitivePeerDependencies: - supports-color - dev: true - /type-check@0.4.0: - resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} - engines: {node: '>= 0.8.0'} + type-check@0.4.0: dependencies: prelude-ls: 1.2.1 - dev: true - /type-fest@0.18.1: - resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} - engines: {node: '>=10'} - dev: true + type-fest@0.18.1: {} - /type-fest@0.20.2: - resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} - engines: {node: '>=10'} - dev: true + type-fest@0.21.3: {} - /type-fest@0.21.3: - resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} - engines: {node: '>=10'} - dev: true + type-fest@0.4.1: {} - /type-fest@0.4.1: - resolution: {integrity: sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==} - engines: {node: '>=6'} - dev: true + type-fest@0.6.0: {} - /type-fest@0.6.0: - resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} - engines: {node: '>=8'} - dev: true + type-fest@0.8.1: {} - /type-fest@0.8.1: - resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} - engines: {node: '>=8'} - dev: true + type-fest@2.19.0: {} - /type-fest@2.19.0: - resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} - engines: {node: '>=12.20'} - dev: true - - /typed-array-buffer@1.0.0: - resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} - engines: {node: '>= 0.4'} + typed-array-buffer@1.0.2: dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - is-typed-array: 1.1.12 - dev: true + call-bind: 1.0.7 + es-errors: 1.3.0 + is-typed-array: 1.1.13 - /typed-array-byte-length@1.0.0: - resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} - engines: {node: '>= 0.4'} + typed-array-byte-length@1.0.1: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 for-each: 0.3.3 - has-proto: 1.0.1 - is-typed-array: 1.1.12 - dev: true + gopd: 1.1.0 + has-proto: 1.1.0 + is-typed-array: 1.1.13 - /typed-array-byte-offset@1.0.0: - resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} - engines: {node: '>= 0.4'} + typed-array-byte-offset@1.0.3: dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.5 + available-typed-arrays: 1.0.7 + call-bind: 1.0.7 for-each: 0.3.3 - has-proto: 1.0.1 - is-typed-array: 1.1.12 - dev: true + gopd: 1.1.0 + has-proto: 1.1.0 + is-typed-array: 1.1.13 + reflect.getprototypeof: 1.0.7 - /typed-array-length@1.0.4: - resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} + typed-array-length@1.0.7: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 for-each: 0.3.3 - is-typed-array: 1.1.12 - dev: true + gopd: 1.1.0 + is-typed-array: 1.1.13 + possible-typed-array-names: 1.0.0 + reflect.getprototypeof: 1.0.7 - /typedarray-to-buffer@3.1.5: - resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} + typedarray-to-buffer@3.1.5: dependencies: is-typedarray: 1.0.0 - dev: true - /typedarray@0.0.6: - resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} - dev: true + typedarray@0.0.6: {} - /typescript@5.3.3: - resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==} - engines: {node: '>=14.17'} - hasBin: true - dev: true + typescript-eslint@8.31.1(eslint@9.25.1)(typescript@5.8.3): + dependencies: + '@typescript-eslint/eslint-plugin': 8.31.1(@typescript-eslint/parser@8.31.1)(eslint@9.25.1)(typescript@5.8.3) + '@typescript-eslint/parser': 8.31.1(eslint@9.25.1)(typescript@5.8.3) + '@typescript-eslint/utils': 8.31.1(eslint@9.25.1)(typescript@5.8.3) + eslint: 9.25.1 + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color - /typescript@5.5.4: - resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==} - engines: {node: '>=14.17'} - hasBin: true - dev: true + typescript@5.8.3: {} - /uglify-js@3.19.1: - resolution: {integrity: sha512-y/2wiW+ceTYR2TSSptAhfnEtpLaQ4Ups5zrjB2d3kuVxHj16j/QJwPl5PvuGy9uARb39J0+iKxcRPvtpsx4A4A==} - engines: {node: '>=0.8.0'} - hasBin: true - requiresBuild: true - dev: true + uglify-js@3.19.3: optional: true - /unbox-primitive@1.0.2: - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + unbox-primitive@1.0.2: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 has-bigints: 1.0.2 - has-symbols: 1.0.3 - which-boxed-primitive: 1.0.2 - dev: true + has-symbols: 1.1.0 + which-boxed-primitive: 1.1.0 - /unc-path-regex@0.1.2: - resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==} - engines: {node: '>=0.10.0'} - dev: true + unc-path-regex@0.1.2: {} - /unicode-canonical-property-names-ecmascript@2.0.0: - resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} - engines: {node: '>=4'} - dev: true + undici-types@6.21.0: {} - /unicode-match-property-ecmascript@2.0.0: - resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} - engines: {node: '>=4'} + unicode-canonical-property-names-ecmascript@2.0.1: {} + + unicode-match-property-ecmascript@2.0.0: dependencies: - unicode-canonical-property-names-ecmascript: 2.0.0 + unicode-canonical-property-names-ecmascript: 2.0.1 unicode-property-aliases-ecmascript: 2.1.0 - dev: true - /unicode-match-property-value-ecmascript@2.1.0: - resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} - engines: {node: '>=4'} - dev: true + unicode-match-property-value-ecmascript@2.2.0: {} - /unicode-property-aliases-ecmascript@2.1.0: - resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} - engines: {node: '>=4'} - dev: true + unicode-property-aliases-ecmascript@2.1.0: {} - /unicorn-magic@0.1.0: - resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} - engines: {node: '>=18'} - dev: true + unicorn-magic@0.1.0: {} - /unified@10.1.2: - resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==} + unified@10.1.2: dependencies: '@types/unist': 2.0.10 bail: 2.0.2 @@ -16468,149 +17867,89 @@ packages: is-plain-obj: 4.1.0 trough: 2.2.0 vfile: 5.3.7 - dev: true - /unique-filename@3.0.0: - resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + unique-filename@3.0.0: dependencies: unique-slug: 4.0.0 - dev: true - /unique-slug@4.0.0: - resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + unique-slug@4.0.0: dependencies: imurmurhash: 0.1.4 - dev: true - /unist-builder@3.0.1: - resolution: {integrity: sha512-gnpOw7DIpCA0vpr6NqdPvTWnlPTApCTRzr+38E6hCWx3rz/cjo83SsKIlS1Z+L5ttScQ2AwutNnb8+tAvpb6qQ==} + unist-builder@3.0.1: dependencies: '@types/unist': 2.0.10 - dev: true - /unist-util-generated@2.0.1: - resolution: {integrity: sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==} - dev: true + unist-util-generated@2.0.1: {} - /unist-util-is@5.2.1: - resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==} + unist-util-is@5.2.1: dependencies: '@types/unist': 2.0.10 - dev: true - /unist-util-position@4.0.4: - resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==} + unist-util-position@4.0.4: dependencies: '@types/unist': 2.0.10 - dev: true - /unist-util-stringify-position@3.0.3: - resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==} + unist-util-stringify-position@3.0.3: dependencies: '@types/unist': 2.0.10 - dev: true - /unist-util-visit-parents@5.1.3: - resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==} + unist-util-visit-parents@5.1.3: dependencies: '@types/unist': 2.0.10 unist-util-is: 5.2.1 - dev: true - /unist-util-visit@4.1.2: - resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==} + unist-util-visit@4.1.2: dependencies: '@types/unist': 2.0.10 unist-util-is: 5.2.1 unist-util-visit-parents: 5.1.3 - dev: true - /universal-user-agent@6.0.1: - resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==} - dev: true + universal-user-agent@6.0.1: {} - /universalify@2.0.1: - resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} - engines: {node: '>= 10.0.0'} - dev: true + universalify@2.0.1: {} - /untildify@4.0.0: - resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} - engines: {node: '>=8'} - dev: true + upath@2.0.1: {} - /upath@2.0.1: - resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} - engines: {node: '>=4'} - dev: true - - /update-browserslist-db@1.0.13(browserslist@4.22.2): - resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' + update-browserslist-db@1.1.3(browserslist@4.24.4): dependencies: - browserslist: 4.22.2 - escalade: 3.1.1 - picocolors: 1.0.0 - dev: true + browserslist: 4.24.4 + escalade: 3.2.0 + picocolors: 1.1.1 - /uri-js@4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + uri-js@4.4.1: dependencies: punycode: 2.3.1 - dev: true - /util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - dev: true + util-deprecate@1.0.2: {} - /uuid@10.0.0: - resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==} - hasBin: true - dev: true + uuid@10.0.0: {} - /uvu@0.5.6: - resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==} - engines: {node: '>=8'} - hasBin: true + uvu@0.5.6: dependencies: dequal: 2.0.3 diff: 5.2.0 kleur: 4.1.5 sade: 1.8.1 - dev: true - /validate-npm-package-license@3.0.4: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + validate-npm-package-license@3.0.4: dependencies: spdx-correct: 3.2.0 spdx-expression-parse: 3.0.1 - dev: true - /validate-npm-package-name@5.0.1: - resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + validate-npm-package-name@5.0.1: {} - /vfile-location@4.1.0: - resolution: {integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==} + vfile-location@4.1.0: dependencies: '@types/unist': 2.0.10 vfile: 5.3.7 - dev: true - /vfile-message@3.1.4: - resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==} + vfile-message@3.1.4: dependencies: '@types/unist': 2.0.10 unist-util-stringify-position: 3.0.3 - dev: true - /vfile-reporter@7.0.5: - resolution: {integrity: sha512-NdWWXkv6gcd7AZMvDomlQbK3MqFWL1RlGzMn++/O2TI+68+nqxCPTvLugdOtfSzXmjh+xUyhp07HhlrbJjT+mw==} + vfile-reporter@7.0.5: dependencies: '@types/supports-color': 8.1.3 string-width: 5.1.2 @@ -16620,238 +17959,179 @@ packages: vfile-message: 3.1.4 vfile-sort: 3.0.1 vfile-statistics: 2.0.1 - dev: true - /vfile-sort@3.0.1: - resolution: {integrity: sha512-1os1733XY6y0D5x0ugqSeaVJm9lYgj0j5qdcZQFyxlZOSy1jYarL77lLyb5gK4Wqr1d5OxmuyflSO3zKyFnTFw==} + vfile-sort@3.0.1: dependencies: vfile: 5.3.7 vfile-message: 3.1.4 - dev: true - /vfile-statistics@2.0.1: - resolution: {integrity: sha512-W6dkECZmP32EG/l+dp2jCLdYzmnDBIw6jwiLZSER81oR5AHRcVqL+k3Z+pfH1R73le6ayDkJRMk0sutj1bMVeg==} + vfile-statistics@2.0.1: dependencies: vfile: 5.3.7 vfile-message: 3.1.4 - dev: true - /vfile@5.3.7: - resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==} + vfile@5.3.7: dependencies: '@types/unist': 2.0.10 is-buffer: 2.0.5 unist-util-stringify-position: 3.0.3 vfile-message: 3.1.4 - dev: true - /vue-template-compiler@2.7.16: - resolution: {integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==} - requiresBuild: true + vue-template-compiler@2.7.16: dependencies: de-indent: 1.0.2 he: 1.2.0 - dev: true optional: true - /walk-up-path@3.0.1: - resolution: {integrity: sha512-9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA==} - dev: true + walk-up-path@3.0.1: {} - /wcwidth@1.0.1: - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + wcwidth@1.0.1: dependencies: defaults: 1.0.4 - dev: true - /web-namespaces@2.0.1: - resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} - dev: true + web-namespaces@2.0.1: {} - /webidl-conversions@3.0.1: - resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} - dev: true + webidl-conversions@3.0.1: {} - /webidl-conversions@4.0.2: - resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} - dev: true + webidl-conversions@4.0.2: {} - /whatwg-url@5.0.0: - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + whatwg-url@5.0.0: dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 - dev: true - /whatwg-url@7.1.0: - resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} + whatwg-url@7.1.0: dependencies: lodash.sortby: 4.7.0 tr46: 1.0.1 webidl-conversions: 4.0.2 - dev: true - /which-boxed-primitive@1.0.2: - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + which-boxed-primitive@1.1.0: dependencies: - is-bigint: 1.0.4 - is-boolean-object: 1.1.2 - is-number-object: 1.0.7 - is-string: 1.0.7 - is-symbol: 1.0.4 - dev: true + is-bigint: 1.1.0 + is-boolean-object: 1.2.0 + is-number-object: 1.1.0 + is-string: 1.1.0 + is-symbol: 1.1.0 - /which-collection@1.0.1: - resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} + which-builtin-type@1.2.0: dependencies: - is-map: 2.0.2 - is-set: 2.0.2 - is-weakmap: 2.0.1 - is-weakset: 2.0.2 - dev: true + call-bind: 1.0.7 + function.prototype.name: 1.1.6 + has-tostringtag: 1.0.2 + is-async-function: 2.0.0 + is-date-object: 1.0.5 + is-finalizationregistry: 1.1.0 + is-generator-function: 1.0.10 + is-regex: 1.1.4 + is-weakref: 1.0.2 + isarray: 2.0.5 + which-boxed-primitive: 1.1.0 + which-collection: 1.0.2 + which-typed-array: 1.1.16 - /which-typed-array@1.1.13: - resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==} - engines: {node: '>= 0.4'} + which-collection@1.0.2: dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.5 + is-map: 2.0.3 + is-set: 2.0.3 + is-weakmap: 2.0.2 + is-weakset: 2.0.3 + + which-typed-array@1.1.16: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.7 for-each: 0.3.3 - gopd: 1.0.1 - has-tostringtag: 1.0.0 - dev: true + gopd: 1.1.0 + has-tostringtag: 1.0.2 - /which@1.3.1: - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} - hasBin: true + which@1.3.1: dependencies: isexe: 2.0.0 - dev: true - /which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} - hasBin: true + which@2.0.2: dependencies: isexe: 2.0.0 - dev: true - /which@4.0.0: - resolution: {integrity: sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==} - engines: {node: ^16.13.0 || >=18.0.0} - hasBin: true + which@4.0.0: dependencies: isexe: 3.1.1 - dev: true - /wide-align@1.1.5: - resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} + wide-align@1.1.5: dependencies: string-width: 4.2.3 - dev: true - /winston-transport@4.6.0: - resolution: {integrity: sha512-wbBA9PbPAHxKiygo7ub7BYRiKxms0tpfU2ljtWzb3SjRjv5yl6Ozuy/TkXf00HTAt+Uylo3gSkNwzc4ME0wiIg==} - engines: {node: '>= 12.0.0'} + winston-transport@4.9.0: dependencies: - logform: 2.6.0 + logform: 2.7.0 readable-stream: 3.6.2 triple-beam: 1.4.1 - dev: true - /winston@3.11.0: - resolution: {integrity: sha512-L3yR6/MzZAOl0DsysUXHVjOwv8mKZ71TrA/41EIduGpOOV5LQVodqN+QdQ6BS6PJ/RdIshZhq84P/fStEZkk7g==} - engines: {node: '>= 12.0.0'} + winston@3.17.0: dependencies: '@colors/colors': 1.6.0 '@dabh/diagnostics': 2.0.3 - async: 3.2.5 + async: 3.2.6 is-stream: 2.0.1 - logform: 2.6.0 + logform: 2.7.0 one-time: 1.0.0 readable-stream: 3.6.2 - safe-stable-stringify: 2.4.3 + safe-stable-stringify: 2.5.0 stack-trace: 0.0.10 triple-beam: 1.4.1 - winston-transport: 4.6.0 - dev: true + winston-transport: 4.9.0 - /wkt-parser@1.3.3: - resolution: {integrity: sha512-ZnV3yH8/k58ZPACOXeiHaMuXIiaTk1t0hSUVisbO0t4RjA5wPpUytcxeyiN2h+LZRrmuHIh/1UlrR9e7DHDvTw==} - dev: true + wkt-parser@1.3.3: {} - /wordwrap@1.0.0: - resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} - dev: true + word-wrap@1.2.5: {} - /wrap-ansi@6.2.0: - resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} - engines: {node: '>=8'} + wordwrap@1.0.0: {} + + wrap-ansi@6.2.0: dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 - dev: true - /wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} - engines: {node: '>=10'} + wrap-ansi@7.0.0: dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 - dev: true - /wrap-ansi@8.1.0: - resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} - engines: {node: '>=12'} + wrap-ansi@8.1.0: dependencies: ansi-styles: 6.2.1 string-width: 5.1.2 strip-ansi: 7.1.0 - dev: true - /wrap-ansi@9.0.0: - resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==} - engines: {node: '>=18'} + wrap-ansi@9.0.0: dependencies: ansi-styles: 6.2.1 string-width: 7.2.0 strip-ansi: 7.1.0 - dev: true - /wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - dev: true + wrappy@1.0.2: {} - /write-file-atomic@2.4.3: - resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} + write-file-atomic@2.4.3: dependencies: graceful-fs: 4.2.11 imurmurhash: 0.1.4 signal-exit: 3.0.7 - dev: true - /write-file-atomic@3.0.3: - resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} + write-file-atomic@3.0.3: dependencies: imurmurhash: 0.1.4 is-typedarray: 1.0.0 signal-exit: 3.0.7 typedarray-to-buffer: 3.1.5 - dev: true - /write-file-atomic@5.0.1: - resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + write-file-atomic@5.0.1: dependencies: imurmurhash: 0.1.4 signal-exit: 4.1.0 - dev: true - /write-json-file@3.2.0: - resolution: {integrity: sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==} - engines: {node: '>=6'} + write-json-file@3.2.0: dependencies: detect-indent: 5.0.0 graceful-fs: 4.2.11 @@ -16859,123 +18139,66 @@ packages: pify: 4.0.1 sort-keys: 2.0.0 write-file-atomic: 2.4.3 - dev: true - /write-json-file@5.0.0: - resolution: {integrity: sha512-ddSsCLa4aQ3kI21BthINo4q905/wfhvQ3JL3774AcRjBaiQmfn5v4rw77jQ7T6CmAit9VOQO+FsLyPkwxoB1fw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + write-json-file@6.0.0: dependencies: detect-indent: 7.0.1 is-plain-obj: 4.1.0 - sort-keys: 5.0.0 - write-file-atomic: 3.0.3 - dev: true + sort-keys: 5.1.0 + write-file-atomic: 5.0.1 - /write-pkg@4.0.0: - resolution: {integrity: sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==} - engines: {node: '>=8'} + write-pkg@4.0.0: dependencies: sort-keys: 2.0.0 type-fest: 0.4.1 write-json-file: 3.2.0 - dev: true - /write-yaml-file@4.2.0: - resolution: {integrity: sha512-LwyucHy0uhWqbrOkh9cBluZBeNVxzHjDaE9mwepZG3n3ZlbM4v3ndrFw51zW/NXYFFqP+QWZ72ihtLWTh05e4Q==} - engines: {node: '>=10.13'} + write-yaml-file@4.2.0: dependencies: js-yaml: 4.1.0 write-file-atomic: 3.0.3 - dev: true - /xtend@4.0.2: - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} - engines: {node: '>=0.4'} - dev: true + xtend@4.0.2: {} - /y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} - engines: {node: '>=10'} - dev: true + y18n@5.0.8: {} - /yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} - dev: true + yallist@3.1.1: {} - /yallist@4.0.0: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} - dev: true + yallist@4.0.0: {} - /yaml@2.3.4: - resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} - engines: {node: '>= 14'} - dev: true + yaml@2.7.1: {} - /yaml@2.5.0: - resolution: {integrity: sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==} - engines: {node: '>= 14'} - hasBin: true - dev: true - - /yamljs@0.3.0: - resolution: {integrity: sha512-C/FsVVhht4iPQYXOInoxUM/1ELSf9EsgKH34FofQOp6hwCPrW4vG4w5++TED3xRUo8gD7l0P1J1dLlDYzODsTQ==} - hasBin: true + yamljs@0.3.0: dependencies: argparse: 1.0.10 glob: 7.2.3 - dev: true - /yargs-parser@20.2.4: - resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==} - engines: {node: '>=10'} - dev: true + yargs-parser@20.2.4: {} - /yargs-parser@21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} - engines: {node: '>=12'} - dev: true + yargs-parser@21.1.1: {} - /yargs@16.2.0: - resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} - engines: {node: '>=10'} + yargs@16.2.0: dependencies: cliui: 7.0.4 - escalade: 3.1.1 + escalade: 3.2.0 get-caller-file: 2.0.5 require-directory: 2.1.1 string-width: 4.2.3 y18n: 5.0.8 yargs-parser: 20.2.4 - dev: true - /yargs@17.7.2: - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} - engines: {node: '>=12'} + yargs@17.7.2: dependencies: cliui: 8.0.1 - escalade: 3.1.1 + escalade: 3.2.0 get-caller-file: 2.0.5 require-directory: 2.1.1 string-width: 4.2.3 y18n: 5.0.8 yargs-parser: 21.1.1 - dev: true - /yn@3.1.1: - resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} - engines: {node: '>=6'} - dev: true + yocto-queue@0.1.0: {} - /yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} - dev: true + yocto-queue@1.0.0: {} - /yocto-queue@1.0.0: - resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} - engines: {node: '>=12.20'} - dev: true - - /zwitch@2.0.4: - resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} - dev: true + zwitch@2.0.4: {}